123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264 |
- <?php
- /**
- * @copyright Copyright (c) 2016, ownCloud, Inc.
- *
- * @author Joas Schilling <coding@schilljs.com>
- * @author Vincent Petry <pvince81@owncloud.com>
- *
- * @license AGPL-3.0
- *
- * This code is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License, version 3,
- * as published by the Free Software Foundation.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License, version 3,
- * along with this program. If not, see <http://www.gnu.org/licenses/>
- *
- */
- namespace OC\SystemTag;
- use Doctrine\DBAL\Exception\UniqueConstraintViolationException;
- use OCP\DB\QueryBuilder\IQueryBuilder;
- use OCP\IDBConnection;
- use OCP\SystemTag\ISystemTag;
- use OCP\SystemTag\ISystemTagManager;
- use OCP\SystemTag\ISystemTagObjectMapper;
- use OCP\SystemTag\MapperEvent;
- use OCP\SystemTag\TagNotFoundException;
- use Symfony\Component\EventDispatcher\EventDispatcherInterface;
- class SystemTagObjectMapper implements ISystemTagObjectMapper {
- const RELATION_TABLE = 'systemtag_object_mapping';
- /** @var ISystemTagManager */
- protected $tagManager;
- /** @var IDBConnection */
- protected $connection;
- /** @var EventDispatcherInterface */
- protected $dispatcher;
- /**
- * Constructor.
- *
- * @param IDBConnection $connection database connection
- * @param ISystemTagManager $tagManager system tag manager
- * @param EventDispatcherInterface $dispatcher
- */
- public function __construct(IDBConnection $connection, ISystemTagManager $tagManager, EventDispatcherInterface $dispatcher) {
- $this->connection = $connection;
- $this->tagManager = $tagManager;
- $this->dispatcher = $dispatcher;
- }
- /**
- * {@inheritdoc}
- */
- public function getTagIdsForObjects($objIds, $objectType) {
- if (!is_array($objIds)) {
- $objIds = [$objIds];
- } else if (empty($objIds)) {
- return [];
- }
- $query = $this->connection->getQueryBuilder();
- $query->select(['systemtagid', 'objectid'])
- ->from(self::RELATION_TABLE)
- ->where($query->expr()->in('objectid', $query->createParameter('objectids')))
- ->andWhere($query->expr()->eq('objecttype', $query->createParameter('objecttype')))
- ->setParameter('objectids', $objIds, IQueryBuilder::PARAM_INT_ARRAY)
- ->setParameter('objecttype', $objectType)
- ->addOrderBy('objectid', 'ASC')
- ->addOrderBy('systemtagid', 'ASC');
- $mapping = [];
- foreach ($objIds as $objId) {
- $mapping[$objId] = [];
- }
- $result = $query->execute();
- while ($row = $result->fetch()) {
- $objectId = $row['objectid'];
- $mapping[$objectId][] = $row['systemtagid'];
- }
- $result->closeCursor();
- return $mapping;
- }
- /**
- * {@inheritdoc}
- */
- public function getObjectIdsForTags($tagIds, $objectType, $limit = 0, $offset = '') {
- if (!is_array($tagIds)) {
- $tagIds = [$tagIds];
- }
- $this->assertTagsExist($tagIds);
- $query = $this->connection->getQueryBuilder();
- $query->selectDistinct('objectid')
- ->from(self::RELATION_TABLE)
- ->where($query->expr()->in('systemtagid', $query->createNamedParameter($tagIds, IQueryBuilder::PARAM_INT_ARRAY)))
- ->andWhere($query->expr()->eq('objecttype', $query->createNamedParameter($objectType)));
- if ($limit) {
- if (sizeof($tagIds) !== 1) {
- throw new \InvalidArgumentException('Limit is only allowed with a single tag');
- }
- $query->setMaxResults($limit)
- ->orderBy('objectid', 'ASC');
- if ($offset !== '') {
- $query->andWhere($query->expr()->gt('objectid', $query->createNamedParameter($offset)));
- }
- }
- $objectIds = [];
- $result = $query->execute();
- while ($row = $result->fetch()) {
- $objectIds[] = $row['objectid'];
- }
- return $objectIds;
- }
- /**
- * {@inheritdoc}
- */
- public function assignTags($objId, $objectType, $tagIds) {
- if (!is_array($tagIds)) {
- $tagIds = [$tagIds];
- }
- $this->assertTagsExist($tagIds);
- $query = $this->connection->getQueryBuilder();
- $query->insert(self::RELATION_TABLE)
- ->values([
- 'objectid' => $query->createNamedParameter($objId),
- 'objecttype' => $query->createNamedParameter($objectType),
- 'systemtagid' => $query->createParameter('tagid'),
- ]);
- foreach ($tagIds as $tagId) {
- try {
- $query->setParameter('tagid', $tagId);
- $query->execute();
- } catch (UniqueConstraintViolationException $e) {
- // ignore existing relations
- }
- }
- $this->dispatcher->dispatch(MapperEvent::EVENT_ASSIGN, new MapperEvent(
- MapperEvent::EVENT_ASSIGN,
- $objectType,
- $objId,
- $tagIds
- ));
- }
- /**
- * {@inheritdoc}
- */
- public function unassignTags($objId, $objectType, $tagIds) {
- if (!is_array($tagIds)) {
- $tagIds = [$tagIds];
- }
- $this->assertTagsExist($tagIds);
- $query = $this->connection->getQueryBuilder();
- $query->delete(self::RELATION_TABLE)
- ->where($query->expr()->eq('objectid', $query->createParameter('objectid')))
- ->andWhere($query->expr()->eq('objecttype', $query->createParameter('objecttype')))
- ->andWhere($query->expr()->in('systemtagid', $query->createParameter('tagids')))
- ->setParameter('objectid', $objId)
- ->setParameter('objecttype', $objectType)
- ->setParameter('tagids', $tagIds, IQueryBuilder::PARAM_INT_ARRAY)
- ->execute();
- $this->dispatcher->dispatch(MapperEvent::EVENT_UNASSIGN, new MapperEvent(
- MapperEvent::EVENT_UNASSIGN,
- $objectType,
- $objId,
- $tagIds
- ));
- }
- /**
- * {@inheritdoc}
- */
- public function haveTag($objIds, $objectType, $tagId, $all = true) {
- $this->assertTagsExist([$tagId]);
- if (!is_array($objIds)) {
- $objIds = [$objIds];
- }
- $query = $this->connection->getQueryBuilder();
- if (!$all) {
- // If we only need one entry, we make the query lighter, by not
- // counting the elements
- $query->select('*')
- ->setMaxResults(1);
- } else {
- $query->select($query->createFunction('COUNT(1)'));
- }
- $query->from(self::RELATION_TABLE)
- ->where($query->expr()->in('objectid', $query->createParameter('objectids')))
- ->andWhere($query->expr()->eq('objecttype', $query->createParameter('objecttype')))
- ->andWhere($query->expr()->eq('systemtagid', $query->createParameter('tagid')))
- ->setParameter('objectids', $objIds, IQueryBuilder::PARAM_STR_ARRAY)
- ->setParameter('tagid', $tagId)
- ->setParameter('objecttype', $objectType);
- $result = $query->execute();
- $row = $result->fetch(\PDO::FETCH_NUM);
- $result->closeCursor();
- if ($all) {
- return ((int)$row[0] === count($objIds));
- } else {
- return (bool) $row;
- }
- }
- /**
- * Asserts that all the given tag ids exist.
- *
- * @param string[] $tagIds tag ids to check
- *
- * @throws \OCP\SystemTag\TagNotFoundException if at least one tag did not exist
- */
- private function assertTagsExist($tagIds) {
- $tags = $this->tagManager->getTagsByIds($tagIds);
- if (count($tags) !== count($tagIds)) {
- // at least one tag missing, bail out
- $foundTagIds = array_map(
- function(ISystemTag $tag) {
- return $tag->getId();
- },
- $tags
- );
- $missingTagIds = array_diff($tagIds, $foundTagIds);
- throw new TagNotFoundException(
- 'Tags not found', 0, null, $missingTagIds
- );
- }
- }
- }
|