diff options
Diffstat (limited to 'lib/private/Tagging/TagMapper.php')
-rw-r--r-- | lib/private/Tagging/TagMapper.php | 65 |
1 files changed, 26 insertions, 39 deletions
diff --git a/lib/private/Tagging/TagMapper.php b/lib/private/Tagging/TagMapper.php index f6179331e11..efac45a2e3a 100644 --- a/lib/private/Tagging/TagMapper.php +++ b/lib/private/Tagging/TagMapper.php @@ -1,39 +1,23 @@ <?php + /** - * @copyright Copyright (c) 2016, ownCloud, Inc. - * - * @author Bernhard Posselt <dev@bernhard-posselt.com> - * @author Bernhard Reiter <ockham@raz.or.at> - * @author Christoph Wurst <christoph@winzerhof-wurst.at> - * @author Morris Jobke <hey@morrisjobke.de> - * @author Roeland Jago Douma <roeland@famdouma.nl> - * - * @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/> - * + * SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors + * SPDX-FileCopyrightText: 2016 ownCloud, Inc. + * SPDX-License-Identifier: AGPL-3.0-only */ namespace OC\Tagging; use OCP\AppFramework\Db\DoesNotExistException; -use OCP\AppFramework\Db\Mapper; +use OCP\AppFramework\Db\QBMapper; +use OCP\DB\QueryBuilder\IQueryBuilder; use OCP\IDBConnection; /** * Mapper for Tag entity + * + * @template-extends QBMapper<Tag> */ -class TagMapper extends Mapper { - +class TagMapper extends QBMapper { /** * Constructor. * @@ -46,31 +30,34 @@ class TagMapper extends Mapper { /** * Load tags from the database. * - * @param array|string $owners The user(s) whose tags we are going to load. + * @param array $owners The user(s) whose tags we are going to load. * @param string $type The type of item for which we are loading tags. * @return array An array of Tag objects. */ - public function loadTags($owners, $type) { - if (!is_array($owners)) { - $owners = [$owners]; - } - - $sql = 'SELECT `id`, `uid`, `type`, `category` FROM `' . $this->getTableName() . '` ' - . 'WHERE `uid` IN (' . str_repeat('?,', count($owners) - 1) . '?) AND `type` = ? ORDER BY `category`'; - return $this->findEntities($sql, array_merge($owners, [$type])); + public function loadTags(array $owners, string $type): array { + $qb = $this->db->getQueryBuilder(); + $qb->select(['id', 'uid', 'type', 'category']) + ->from($this->getTableName()) + ->where($qb->expr()->in('uid', $qb->createNamedParameter($owners, IQueryBuilder::PARAM_STR_ARRAY))) + ->andWhere($qb->expr()->eq('type', $qb->createNamedParameter($type, IQueryBuilder::PARAM_STR))) + ->orderBy('category'); + return $this->findEntities($qb); } /** * Check if a given Tag object already exists in the database. * * @param Tag $tag The tag to look for in the database. - * @return bool */ - public function tagExists($tag) { - $sql = 'SELECT `id`, `uid`, `type`, `category` FROM `' . $this->getTableName() . '` ' - . 'WHERE `uid` = ? AND `type` = ? AND `category` = ?'; + public function tagExists(Tag $tag): bool { + $qb = $this->db->getQueryBuilder(); + $qb->select(['id', 'uid', 'type', 'category']) + ->from($this->getTableName()) + ->where($qb->expr()->eq('uid', $qb->createNamedParameter($tag->getOwner(), IQueryBuilder::PARAM_STR))) + ->andWhere($qb->expr()->eq('type', $qb->createNamedParameter($tag->getType(), IQueryBuilder::PARAM_STR))) + ->andWhere($qb->expr()->eq('category', $qb->createNamedParameter($tag->getName(), IQueryBuilder::PARAM_STR))); try { - $this->findEntity($sql, [$tag->getOwner(), $tag->getType(), $tag->getName()]); + $this->findEntity($qb); } catch (DoesNotExistException $e) { return false; } |