- Add typing for most of the services, controllers and mappers - Add api doc for mappers - Use vendor-bin for psalm - Use attributes for controllers - Fix upload of attachments Signed-off-by: Carl Schwan <carl.schwan@nextcloud.com>
165 lines
5.0 KiB
PHP
165 lines
5.0 KiB
PHP
<?php
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
namespace OCA\Deck\Db;
|
|
|
|
use OCP\AppFramework\Db\DoesNotExistException;
|
|
use OCP\AppFramework\Db\Entity;
|
|
use OCP\AppFramework\Db\MultipleObjectsReturnedException;
|
|
use OCP\DB\QueryBuilder\IQueryBuilder;
|
|
use OCP\IDBConnection;
|
|
|
|
/** @template-extends DeckMapper<Label> */
|
|
class LabelMapper extends DeckMapper implements IPermissionMapper {
|
|
public function __construct(IDBConnection $db) {
|
|
parent::__construct($db, 'deck_labels', Label::class);
|
|
}
|
|
|
|
/**
|
|
* @return Label[]
|
|
* @throws \OCP\DB\Exception
|
|
*/
|
|
public function findAll(int $boardId, ?int $limit = null, int $offset = 0): array {
|
|
$qb = $this->db->getQueryBuilder();
|
|
$qb->select('*')
|
|
->from($this->getTableName())
|
|
->where($qb->expr()->eq('board_id', $qb->createNamedParameter($boardId, IQueryBuilder::PARAM_INT)))
|
|
->setMaxResults($limit)
|
|
->setFirstResult($offset);
|
|
return $this->findEntities($qb);
|
|
}
|
|
|
|
public function delete(Entity $entity): Entity {
|
|
// delete assigned labels
|
|
$this->deleteLabelAssignments($entity->getId());
|
|
// delete label
|
|
return parent::delete($entity);
|
|
}
|
|
|
|
/**
|
|
* @return Label[]
|
|
* @throws \OCP\DB\Exception
|
|
*/
|
|
public function findAssignedLabelsForCard(int $cardId, ?int $limit = null, int $offset = 0): array {
|
|
$qb = $this->db->getQueryBuilder();
|
|
$qb->select('l.*', 'card_id')
|
|
->from($this->getTableName(), 'l')
|
|
->innerJoin('l', 'deck_assigned_labels', 'al', 'l.id = al.label_id')
|
|
->where($qb->expr()->eq('card_id', $qb->createNamedParameter($cardId, IQueryBuilder::PARAM_INT)))
|
|
->orderBy('l.id')
|
|
->setMaxResults($limit)
|
|
->setFirstResult($offset);
|
|
|
|
return $this->findEntities($qb);
|
|
}
|
|
|
|
public function findAssignedLabelsForCards(array $cardIds, ?int $limit = null, int $offset = 0): array {
|
|
$qb = $this->db->getQueryBuilder();
|
|
$qb->select('l.*', 'card_id')
|
|
->from($this->getTableName(), 'l')
|
|
->innerJoin('l', 'deck_assigned_labels', 'al', 'l.id = al.label_id')
|
|
->where($qb->expr()->in('card_id', $qb->createNamedParameter($cardIds, IQueryBuilder::PARAM_INT_ARRAY)))
|
|
->orderBy('l.id')
|
|
->setMaxResults($limit)
|
|
->setFirstResult($offset);
|
|
|
|
return $this->findEntities($qb);
|
|
}
|
|
|
|
/**
|
|
* @return Label[]
|
|
* @throws \OCP\DB\Exception
|
|
*/
|
|
public function findAssignedLabelsForBoard(int $boardId, ?int $limit = null, int $offset = 0): array {
|
|
$qb = $this->db->getQueryBuilder();
|
|
$qb->select('l.id as id', 'l.title as title', 'l.color as color')
|
|
->selectAlias('c.id', 'card_id')
|
|
->from($this->getTableName(), 'l')
|
|
->innerJoin('l', 'deck_assigned_labels', 'al', 'al.label_id = l.id')
|
|
->innerJoin('l', 'deck_cards', 'c', 'al.card_id = c.id')
|
|
->where($qb->expr()->eq('board_id', $qb->createNamedParameter($boardId, IQueryBuilder::PARAM_INT)))
|
|
->orderBy('l.id')
|
|
->setMaxResults($limit)
|
|
->setFirstResult($offset);
|
|
|
|
return $this->findEntities($qb);
|
|
}
|
|
|
|
public function insert(Entity $entity): Entity {
|
|
if (!in_array('lastModified', $entity->getUpdatedFields())) {
|
|
$entity->setLastModified(time());
|
|
}
|
|
return parent::insert($entity);
|
|
}
|
|
|
|
public function update(Entity $entity, bool $updateModified = true): Entity {
|
|
if ($updateModified) {
|
|
$entity->setLastModified(time());
|
|
}
|
|
return parent::update($entity);
|
|
}
|
|
|
|
/**
|
|
* @return array<int, list<Label>>
|
|
* @throws \OCP\DB\Exception
|
|
*/
|
|
public function getAssignedLabelsForBoard(int $boardId): array {
|
|
$labels = $this->findAssignedLabelsForBoard($boardId);
|
|
$result = [];
|
|
foreach ($labels as $label) {
|
|
if (!array_key_exists($label->getCardId(), $result)) {
|
|
$result[$label->getCardId()] = [];
|
|
}
|
|
$result[$label->getCardId()][] = $label;
|
|
}
|
|
return $result;
|
|
}
|
|
|
|
/**
|
|
* @throws \OCP\DB\Exception
|
|
*/
|
|
public function deleteLabelAssignments(int $labelId): void {
|
|
$qb = $this->db->getQueryBuilder();
|
|
$qb->delete('deck_assigned_labels')
|
|
->where($qb->expr()->eq('label_id', $qb->createNamedParameter($labelId, IQueryBuilder::PARAM_INT)));
|
|
$qb->executeStatement();
|
|
}
|
|
|
|
/**
|
|
* @throws \OCP\DB\Exception
|
|
*/
|
|
public function deleteLabelAssignmentsForCard(int $cardId): void {
|
|
$qb = $this->db->getQueryBuilder();
|
|
$qb->delete('deck_assigned_labels')
|
|
->where($qb->expr()->eq('card_id', $qb->createNamedParameter($cardId, IQueryBuilder::PARAM_INT)));
|
|
$qb->executeStatement();
|
|
}
|
|
|
|
/**
|
|
* @throws \OCP\DB\Exception
|
|
*/
|
|
public function isOwner(string $userId, int $id): bool {
|
|
$qb = $this->db->getQueryBuilder();
|
|
$qb->select('l.id')
|
|
->from($this->getTableName(), 'l')
|
|
->innerJoin('l', 'deck_boards', 'b', 'l.board_id = b.id')
|
|
->where($qb->expr()->eq('l.id', $qb->createNamedParameter($id, IQueryBuilder::PARAM_INT)))
|
|
->andWhere($qb->expr()->eq('b.owner', $qb->createNamedParameter($userId, IQueryBuilder::PARAM_STR)));
|
|
|
|
return count($qb->executeQuery()->fetchAll()) > 0;
|
|
}
|
|
|
|
public function findBoardId(int $id): ?int {
|
|
try {
|
|
$entity = $this->find($id);
|
|
return $entity->getBoardId();
|
|
} catch (DoesNotExistException|MultipleObjectsReturnedException) {
|
|
return null;
|
|
}
|
|
}
|
|
}
|