2013-09-24 19:10:01 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 18:07:57 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Bernhard Reiter <ockham@raz.or.at>
|
2020-03-31 11:49:10 +03:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
|
|
|
* @author Thomas Tanghus <thomas@tanghus.net>
|
|
|
|
* @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,
|
2019-12-03 21:57:53 +03:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2015-03-26 13:44:34 +03:00
|
|
|
*
|
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Factory class creating instances of \OCP\ITags
|
2013-09-24 19:10:01 +04:00
|
|
|
*
|
2015-02-26 13:37:37 +03:00
|
|
|
* A tag can be e.g. 'Family', 'Work', 'Chore', 'Special Occation' or
|
|
|
|
* anything else that is either parsed from a vobject or that the user chooses
|
|
|
|
* to add.
|
|
|
|
* Tag names are not case-sensitive, but will be saved with the case they
|
|
|
|
* are entered in. If a user already has a tag 'family' for a type, and
|
|
|
|
* tries to add a tag named 'Family' it will be silently ignored.
|
2013-09-24 19:10:01 +04:00
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2013-09-24 19:10:01 +04:00
|
|
|
namespace OC;
|
|
|
|
|
2014-09-08 21:58:43 +04:00
|
|
|
use OC\Tagging\TagMapper;
|
2020-10-05 15:57:13 +03:00
|
|
|
use OCP\DB\QueryBuilder\IQueryBuilder;
|
|
|
|
use OCP\IDBConnection;
|
|
|
|
use OCP\ITagManager;
|
|
|
|
use OCP\ITags;
|
|
|
|
use OCP\IUserSession;
|
2014-09-08 21:58:43 +04:00
|
|
|
|
2020-10-05 15:57:13 +03:00
|
|
|
class TagManager implements ITagManager {
|
2013-09-24 19:10:01 +04:00
|
|
|
|
2020-10-05 15:57:13 +03:00
|
|
|
/** @var TagMapper */
|
|
|
|
private $mapper;
|
|
|
|
|
|
|
|
/** @var IUserSession */
|
2014-12-10 17:59:41 +03:00
|
|
|
private $userSession;
|
2013-09-24 19:10:01 +04:00
|
|
|
|
2020-10-05 15:57:13 +03:00
|
|
|
/** @var IDBConnection */
|
|
|
|
private $connection;
|
2014-09-08 21:58:43 +04:00
|
|
|
|
2020-10-05 15:57:13 +03:00
|
|
|
public function __construct(TagMapper $mapper, IUserSession $userSession, IDBConnection $connection) {
|
2014-09-08 21:58:43 +04:00
|
|
|
$this->mapper = $mapper;
|
2014-12-10 17:59:41 +03:00
|
|
|
$this->userSession = $userSession;
|
2020-10-05 15:57:13 +03:00
|
|
|
$this->connection = $connection;
|
2013-09-24 19:10:01 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-04-08 23:24:54 +03:00
|
|
|
* Create a new \OCP\ITags instance and load tags from db.
|
|
|
|
*
|
|
|
|
* @see \OCP\ITags
|
|
|
|
* @param string $type The type identifier e.g. 'contact' or 'event'.
|
|
|
|
* @param array $defaultTags An array of default tags to be used if none are stored.
|
|
|
|
* @param boolean $includeShared Whether to include tags for items shared with this user by others.
|
|
|
|
* @param string $userId user for which to retrieve the tags, defaults to the currently
|
|
|
|
* logged in user
|
|
|
|
* @return \OCP\ITags
|
2020-04-29 21:40:45 +03:00
|
|
|
*
|
|
|
|
* since 20.0.0 $includeShared isn't used anymore
|
2020-04-08 23:24:54 +03:00
|
|
|
*/
|
2020-03-26 11:30:18 +03:00
|
|
|
public function load($type, $defaultTags = [], $includeShared = false, $userId = null) {
|
2014-12-10 17:59:41 +03:00
|
|
|
if (is_null($userId)) {
|
2015-02-25 19:20:26 +03:00
|
|
|
$user = $this->userSession->getUser();
|
|
|
|
if ($user === null) {
|
|
|
|
// nothing we can do without a user
|
|
|
|
return null;
|
|
|
|
}
|
2014-12-10 17:59:41 +03:00
|
|
|
$userId = $this->userSession->getUser()->getUId();
|
|
|
|
}
|
2020-04-29 21:40:45 +03:00
|
|
|
return new Tags($this->mapper, $userId, $type, $defaultTags);
|
2013-09-24 19:10:01 +04:00
|
|
|
}
|
2020-10-05 15:57:13 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get all users who favorited an object
|
|
|
|
*
|
|
|
|
* @param string $objectType
|
|
|
|
* @param int $objectId
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function getUsersFavoritingObject(string $objectType, int $objectId): array {
|
|
|
|
$query = $this->connection->getQueryBuilder();
|
|
|
|
$query->select('uid')
|
|
|
|
->from('vcategory_to_object', 'o')
|
|
|
|
->innerJoin('o', 'vcategory', 'c', $query->expr()->eq('o.categoryid', 'c.id'))
|
|
|
|
->where($query->expr()->eq('objid', $query->createNamedParameter($objectId, IQueryBuilder::PARAM_INT)))
|
|
|
|
->andWhere($query->expr()->eq('c.type', $query->createNamedParameter($objectType)))
|
|
|
|
->andWhere($query->expr()->eq('c.category', $query->createNamedParameter(ITags::TAG_FAVORITE)));
|
|
|
|
|
2020-11-05 12:50:53 +03:00
|
|
|
$result = $query->execute();
|
|
|
|
$users = $result->fetchAll(\PDO::FETCH_COLUMN);
|
|
|
|
$result->closeCursor();
|
|
|
|
|
|
|
|
return $users;
|
2020-10-05 15:57:13 +03:00
|
|
|
}
|
2014-10-02 18:08:24 +04:00
|
|
|
}
|