123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650 |
- <?php
- /**
- * @copyright Copyright (c) 2016, ownCloud, Inc.
- * @copyright Copyright (c) 2018, Georg Ehrke
- *
- * @author Arthur Schiwon <blizzz@arthur-schiwon.de>
- * @author Bart Visscher <bartv@thisnet.nl>
- * @author Christoph Seitz <christoph.seitz@posteo.de>
- * @author Christoph Wurst <christoph@winzerhof-wurst.at>
- * @author Daniel Kesselberg <mail@danielkesselberg.de>
- * @author Georg Ehrke <oc.list@georgehrke.com>
- * @author Jakob Sack <mail@jakobsack.de>
- * @author Joas Schilling <coding@schilljs.com>
- * @author Julius Härtl <jus@bitgrid.net>
- * @author Lukas Reschke <lukas@statuscode.ch>
- * @author Maxence Lange <maxence@artificial-owl.com>
- * @author Morris Jobke <hey@morrisjobke.de>
- * @author Roeland Jago Douma <roeland@famdouma.nl>
- * @author Thomas Müller <thomas.mueller@tmit.eu>
- * @author Vincent Petry <vincent@nextcloud.com>
- * @author Vinicius Cubas Brand <vinicius@eita.org.br>
- *
- * @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 OCA\DAV\Connector\Sabre;
- use OC\KnownUser\KnownUserService;
- use OCA\Circles\Exceptions\CircleNotFoundException;
- use OCA\DAV\CalDAV\Proxy\ProxyMapper;
- use OCA\DAV\Traits\PrincipalProxyTrait;
- use OCP\Accounts\IAccountManager;
- use OCP\Accounts\IAccountProperty;
- use OCP\Accounts\PropertyDoesNotExistException;
- use OCP\App\IAppManager;
- use OCP\AppFramework\QueryException;
- use OCP\Constants;
- use OCP\IConfig;
- use OCP\IGroup;
- use OCP\IGroupManager;
- use OCP\IUser;
- use OCP\IUserManager;
- use OCP\IUserSession;
- use OCP\L10N\IFactory;
- use OCP\Share\IManager as IShareManager;
- use Sabre\DAV\Exception;
- use Sabre\DAV\PropPatch;
- use Sabre\DAVACL\PrincipalBackend\BackendInterface;
- class Principal implements BackendInterface {
- /** @var IUserManager */
- private $userManager;
- /** @var IGroupManager */
- private $groupManager;
- /** @var IAccountManager */
- private $accountManager;
- /** @var IShareManager */
- private $shareManager;
- /** @var IUserSession */
- private $userSession;
- /** @var IAppManager */
- private $appManager;
- /** @var string */
- private $principalPrefix;
- /** @var bool */
- private $hasGroups;
- /** @var bool */
- private $hasCircles;
- /** @var ProxyMapper */
- private $proxyMapper;
- /** @var KnownUserService */
- private $knownUserService;
- /** @var IConfig */
- private $config;
- /** @var IFactory */
- private $languageFactory;
- public function __construct(IUserManager $userManager,
- IGroupManager $groupManager,
- IAccountManager $accountManager,
- IShareManager $shareManager,
- IUserSession $userSession,
- IAppManager $appManager,
- ProxyMapper $proxyMapper,
- KnownUserService $knownUserService,
- IConfig $config,
- IFactory $languageFactory,
- string $principalPrefix = 'principals/users/') {
- $this->userManager = $userManager;
- $this->groupManager = $groupManager;
- $this->accountManager = $accountManager;
- $this->shareManager = $shareManager;
- $this->userSession = $userSession;
- $this->appManager = $appManager;
- $this->principalPrefix = trim($principalPrefix, '/');
- $this->hasGroups = $this->hasCircles = ($principalPrefix === 'principals/users/');
- $this->proxyMapper = $proxyMapper;
- $this->knownUserService = $knownUserService;
- $this->config = $config;
- $this->languageFactory = $languageFactory;
- }
- use PrincipalProxyTrait {
- getGroupMembership as protected traitGetGroupMembership;
- }
- /**
- * Returns a list of principals based on a prefix.
- *
- * This prefix will often contain something like 'principals'. You are only
- * expected to return principals that are in this base path.
- *
- * You are expected to return at least a 'uri' for every user, you can
- * return any additional properties if you wish so. Common properties are:
- * {DAV:}displayname
- *
- * @param string $prefixPath
- * @return string[]
- */
- public function getPrincipalsByPrefix($prefixPath) {
- $principals = [];
- if ($prefixPath === $this->principalPrefix) {
- foreach ($this->userManager->search('') as $user) {
- $principals[] = $this->userToPrincipal($user);
- }
- }
- return $principals;
- }
- /**
- * Returns a specific principal, specified by it's path.
- * The returned structure should be the exact same as from
- * getPrincipalsByPrefix.
- *
- * @param string $path
- * @return array
- */
- public function getPrincipalByPath($path) {
- [$prefix, $name] = \Sabre\Uri\split($path);
- $decodedName = urldecode($name);
- if ($name === 'calendar-proxy-write' || $name === 'calendar-proxy-read') {
- [$prefix2, $name2] = \Sabre\Uri\split($prefix);
- if ($prefix2 === $this->principalPrefix) {
- $user = $this->userManager->get($name2);
- if ($user !== null) {
- return [
- 'uri' => 'principals/users/' . $user->getUID() . '/' . $name,
- ];
- }
- return null;
- }
- }
- if ($prefix === $this->principalPrefix) {
- // Depending on where it is called, it may happen that this function
- // is called either with a urlencoded version of the name or with a non-urlencoded one.
- // The urldecode function replaces %## and +, both of which are forbidden in usernames.
- // Hence there can be no ambiguity here and it is safe to call urldecode on all usernames
- $user = $this->userManager->get($decodedName);
- if ($user !== null) {
- return $this->userToPrincipal($user);
- }
- } elseif ($prefix === 'principals/circles') {
- if ($this->userSession->getUser() !== null) {
- // At the time of writing - 2021-01-19 — a mixed state is possible.
- // The second condition can be removed when this is fixed.
- return $this->circleToPrincipal($decodedName)
- ?: $this->circleToPrincipal($name);
- }
- } elseif ($prefix === 'principals/groups') {
- // At the time of writing - 2021-01-19 — a mixed state is possible.
- // The second condition can be removed when this is fixed.
- $group = $this->groupManager->get($decodedName)
- ?: $this->groupManager->get($name);
- if ($group instanceof IGroup) {
- return [
- 'uri' => 'principals/groups/' . $name,
- '{DAV:}displayname' => $group->getDisplayName(),
- ];
- }
- }
- return null;
- }
- /**
- * Returns the list of groups a principal is a member of
- *
- * @param string $principal
- * @param bool $needGroups
- * @return array
- * @throws Exception
- */
- public function getGroupMembership($principal, $needGroups = false) {
- [$prefix, $name] = \Sabre\Uri\split($principal);
- if ($prefix !== $this->principalPrefix) {
- return [];
- }
- $user = $this->userManager->get($name);
- if (!$user) {
- throw new Exception('Principal not found');
- }
- $groups = [];
- if ($this->hasGroups || $needGroups) {
- $userGroups = $this->groupManager->getUserGroups($user);
- foreach ($userGroups as $userGroup) {
- $groups[] = 'principals/groups/' . urlencode($userGroup->getGID());
- }
- }
- $groups = array_unique(array_merge(
- $groups,
- $this->traitGetGroupMembership($principal, $needGroups)
- ));
- return $groups;
- }
- /**
- * @param string $path
- * @param PropPatch $propPatch
- * @return int
- */
- public function updatePrincipal($path, PropPatch $propPatch) {
- return 0;
- }
- /**
- * Search user principals
- *
- * @param array $searchProperties
- * @param string $test
- * @return array
- */
- protected function searchUserPrincipals(array $searchProperties, $test = 'allof') {
- $results = [];
- // If sharing is disabled, return the empty array
- $shareAPIEnabled = $this->shareManager->shareApiEnabled();
- if (!$shareAPIEnabled) {
- return [];
- }
- $allowEnumeration = $this->shareManager->allowEnumeration();
- $limitEnumerationGroup = $this->shareManager->limitEnumerationToGroups();
- $limitEnumerationPhone = $this->shareManager->limitEnumerationToPhone();
- $allowEnumerationFullMatch = $this->shareManager->allowEnumerationFullMatch();
- $ignoreSecondDisplayName = $this->shareManager->ignoreSecondDisplayName();
- $matchEmail = $this->shareManager->matchEmail();
- // If sharing is restricted to group members only,
- // return only members that have groups in common
- $restrictGroups = false;
- $currentUser = $this->userSession->getUser();
- if ($this->shareManager->shareWithGroupMembersOnly()) {
- if (!$currentUser instanceof IUser) {
- return [];
- }
- $restrictGroups = $this->groupManager->getUserGroupIds($currentUser);
- }
- $currentUserGroups = [];
- if ($limitEnumerationGroup) {
- if ($currentUser instanceof IUser) {
- $currentUserGroups = $this->groupManager->getUserGroupIds($currentUser);
- }
- }
- $searchLimit = $this->config->getSystemValueInt('sharing.maxAutocompleteResults', Constants::SHARING_MAX_AUTOCOMPLETE_RESULTS_DEFAULT);
- if ($searchLimit <= 0) {
- $searchLimit = null;
- }
- foreach ($searchProperties as $prop => $value) {
- switch ($prop) {
- case '{http://sabredav.org/ns}email-address':
- if (!$allowEnumeration) {
- if ($allowEnumerationFullMatch && $matchEmail) {
- $users = $this->userManager->getByEmail($value);
- } else {
- $users = [];
- }
- } else {
- $users = $this->userManager->getByEmail($value);
- $users = \array_filter($users, function (IUser $user) use ($currentUser, $value, $limitEnumerationPhone, $limitEnumerationGroup, $allowEnumerationFullMatch, $currentUserGroups) {
- if ($allowEnumerationFullMatch && $user->getSystemEMailAddress() === $value) {
- return true;
- }
- if ($limitEnumerationPhone
- && $currentUser instanceof IUser
- && $this->knownUserService->isKnownToUser($currentUser->getUID(), $user->getUID())) {
- // Synced phonebook match
- return true;
- }
- if (!$limitEnumerationGroup) {
- // No limitation on enumeration, all allowed
- return true;
- }
- return !empty($currentUserGroups) && !empty(array_intersect(
- $this->groupManager->getUserGroupIds($user),
- $currentUserGroups
- ));
- });
- }
- $results[] = array_reduce($users, function (array $carry, IUser $user) use ($restrictGroups) {
- // is sharing restricted to groups only?
- if ($restrictGroups !== false) {
- $userGroups = $this->groupManager->getUserGroupIds($user);
- if (count(array_intersect($userGroups, $restrictGroups)) === 0) {
- return $carry;
- }
- }
- $carry[] = $this->principalPrefix . '/' . $user->getUID();
- return $carry;
- }, []);
- break;
- case '{DAV:}displayname':
- if (!$allowEnumeration) {
- if ($allowEnumerationFullMatch) {
- $lowerSearch = strtolower($value);
- $users = $this->userManager->searchDisplayName($value, $searchLimit);
- $users = \array_filter($users, static function (IUser $user) use ($lowerSearch, $ignoreSecondDisplayName) {
- $lowerDisplayName = strtolower($user->getDisplayName());
- return $lowerDisplayName === $lowerSearch || ($ignoreSecondDisplayName && trim(preg_replace('/ \(.*\)$/', '', $lowerDisplayName)) === $lowerSearch);
- });
- } else {
- $users = [];
- }
- } else {
- $users = $this->userManager->searchDisplayName($value, $searchLimit);
- $users = \array_filter($users, function (IUser $user) use ($currentUser, $value, $limitEnumerationPhone, $limitEnumerationGroup, $allowEnumerationFullMatch, $currentUserGroups) {
- if ($allowEnumerationFullMatch && $user->getDisplayName() === $value) {
- return true;
- }
- if ($limitEnumerationPhone
- && $currentUser instanceof IUser
- && $this->knownUserService->isKnownToUser($currentUser->getUID(), $user->getUID())) {
- // Synced phonebook match
- return true;
- }
- if (!$limitEnumerationGroup) {
- // No limitation on enumeration, all allowed
- return true;
- }
- return !empty($currentUserGroups) && !empty(array_intersect(
- $this->groupManager->getUserGroupIds($user),
- $currentUserGroups
- ));
- });
- }
- $results[] = array_reduce($users, function (array $carry, IUser $user) use ($restrictGroups) {
- // is sharing restricted to groups only?
- if ($restrictGroups !== false) {
- $userGroups = $this->groupManager->getUserGroupIds($user);
- if (count(array_intersect($userGroups, $restrictGroups)) === 0) {
- return $carry;
- }
- }
- $carry[] = $this->principalPrefix . '/' . $user->getUID();
- return $carry;
- }, []);
- break;
- case '{urn:ietf:params:xml:ns:caldav}calendar-user-address-set':
- // If you add support for more search properties that qualify as a user-address,
- // please also add them to the array below
- $results[] = $this->searchUserPrincipals([
- // In theory this should also search for principal:principals/users/...
- // but that's used internally only anyway and i don't know of any client querying that
- '{http://sabredav.org/ns}email-address' => $value,
- ], 'anyof');
- break;
- default:
- $results[] = [];
- break;
- }
- }
- // results is an array of arrays, so this is not the first search result
- // but the results of the first searchProperty
- if (count($results) === 1) {
- return $results[0];
- }
- switch ($test) {
- case 'anyof':
- return array_values(array_unique(array_merge(...$results)));
- case 'allof':
- default:
- return array_values(array_intersect(...$results));
- }
- }
- /**
- * @param string $prefixPath
- * @param array $searchProperties
- * @param string $test
- * @return array
- */
- public function searchPrincipals($prefixPath, array $searchProperties, $test = 'allof') {
- if (count($searchProperties) === 0) {
- return [];
- }
- switch ($prefixPath) {
- case 'principals/users':
- return $this->searchUserPrincipals($searchProperties, $test);
- default:
- return [];
- }
- }
- /**
- * @param string $uri
- * @param string $principalPrefix
- * @return string
- */
- public function findByUri($uri, $principalPrefix) {
- // If sharing is disabled, return the empty array
- $shareAPIEnabled = $this->shareManager->shareApiEnabled();
- if (!$shareAPIEnabled) {
- return null;
- }
- // If sharing is restricted to group members only,
- // return only members that have groups in common
- $restrictGroups = false;
- if ($this->shareManager->shareWithGroupMembersOnly()) {
- $user = $this->userSession->getUser();
- if (!$user) {
- return null;
- }
- $restrictGroups = $this->groupManager->getUserGroupIds($user);
- }
- if (strpos($uri, 'mailto:') === 0) {
- if ($principalPrefix === 'principals/users') {
- $users = $this->userManager->getByEmail(substr($uri, 7));
- if (count($users) !== 1) {
- return null;
- }
- $user = $users[0];
- if ($restrictGroups !== false) {
- $userGroups = $this->groupManager->getUserGroupIds($user);
- if (count(array_intersect($userGroups, $restrictGroups)) === 0) {
- return null;
- }
- }
- return $this->principalPrefix . '/' . $user->getUID();
- }
- }
- if (substr($uri, 0, 10) === 'principal:') {
- $principal = substr($uri, 10);
- $principal = $this->getPrincipalByPath($principal);
- if ($principal !== null) {
- return $principal['uri'];
- }
- }
- return null;
- }
- /**
- * @param IUser $user
- * @return array
- * @throws PropertyDoesNotExistException
- */
- protected function userToPrincipal($user) {
- $userId = $user->getUID();
- $displayName = $user->getDisplayName();
- $principal = [
- 'uri' => $this->principalPrefix . '/' . $userId,
- '{DAV:}displayname' => is_null($displayName) ? $userId : $displayName,
- '{urn:ietf:params:xml:ns:caldav}calendar-user-type' => 'INDIVIDUAL',
- '{http://nextcloud.com/ns}language' => $this->languageFactory->getUserLanguage($user),
- ];
- $account = $this->accountManager->getAccount($user);
- $alternativeEmails = array_map(fn (IAccountProperty $property) => 'mailto:' . $property->getValue(), $account->getPropertyCollection(IAccountManager::COLLECTION_EMAIL)->getProperties());
- $email = $user->getSystemEMailAddress();
- if (!empty($email)) {
- $principal['{http://sabredav.org/ns}email-address'] = $email;
- }
- if (!empty($alternativeEmails)) {
- $principal['{DAV:}alternate-URI-set'] = $alternativeEmails;
- }
- return $principal;
- }
- public function getPrincipalPrefix() {
- return $this->principalPrefix;
- }
- /**
- * @param string $circleUniqueId
- * @return array|null
- */
- protected function circleToPrincipal($circleUniqueId) {
- if (!$this->appManager->isEnabledForUser('circles') || !class_exists('\OCA\Circles\Api\v1\Circles')) {
- return null;
- }
- try {
- $circle = \OCA\Circles\Api\v1\Circles::detailsCircle($circleUniqueId, true);
- } catch (QueryException $ex) {
- return null;
- } catch (CircleNotFoundException $ex) {
- return null;
- }
- if (!$circle) {
- return null;
- }
- $principal = [
- 'uri' => 'principals/circles/' . $circleUniqueId,
- '{DAV:}displayname' => $circle->getDisplayName(),
- ];
- return $principal;
- }
- /**
- * Returns the list of circles a principal is a member of
- *
- * @param string $principal
- * @return array
- * @throws Exception
- * @throws \OCP\AppFramework\QueryException
- * @suppress PhanUndeclaredClassMethod
- */
- public function getCircleMembership($principal):array {
- if (!$this->appManager->isEnabledForUser('circles') || !class_exists('\OCA\Circles\Api\v1\Circles')) {
- return [];
- }
- [$prefix, $name] = \Sabre\Uri\split($principal);
- if ($this->hasCircles && $prefix === $this->principalPrefix) {
- $user = $this->userManager->get($name);
- if (!$user) {
- throw new Exception('Principal not found');
- }
- $circles = \OCA\Circles\Api\v1\Circles::joinedCircles($name, true);
- $circles = array_map(function ($circle) {
- /** @var \OCA\Circles\Model\Circle $circle */
- return 'principals/circles/' . urlencode($circle->getSingleId());
- }, $circles);
- return $circles;
- }
- return [];
- }
- /**
- * Get all email addresses associated to a principal.
- *
- * @param array $principal Data from getPrincipal*()
- * @return string[] All email addresses without the mailto: prefix
- */
- public function getEmailAddressesOfPrincipal(array $principal): array {
- $emailAddresses = [];
- if (isset($principal['{http://sabredav.org/ns}email-address'])) {
- $emailAddresses[] = $principal['{http://sabredav.org/ns}email-address'];
- }
- if (isset($principal['{DAV:}alternate-URI-set'])) {
- foreach ($principal['{DAV:}alternate-URI-set'] as $address) {
- if (str_starts_with($address, 'mailto:')) {
- $emailAddresses[] = substr($address, 7);
- }
- }
- }
- if (isset($principal['{urn:ietf:params:xml:ns:caldav}calendar-user-address-set'])) {
- foreach ($principal['{urn:ietf:params:xml:ns:caldav}calendar-user-address-set'] as $address) {
- if (str_starts_with($address, 'mailto:')) {
- $emailAddresses[] = substr($address, 7);
- }
- }
- }
- if (isset($principal['{http://calendarserver.org/ns/}email-address-set'])) {
- foreach ($principal['{http://calendarserver.org/ns/}email-address-set'] as $address) {
- if (str_starts_with($address, 'mailto:')) {
- $emailAddresses[] = substr($address, 7);
- }
- }
- }
- return array_values(array_unique($emailAddresses));
- }
- }
|