Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoeland Jago Douma <rullzer@users.noreply.github.com>2021-02-18 22:13:58 +0300
committerGitHub <noreply@github.com>2021-02-18 22:13:58 +0300
commitcb0c2243ac3391fb63bca0a51d585ef3ec4138ad (patch)
tree55fa6757e9b8e7a3d1201c3d10402ebbc1a873ea
parentb986c9e4e5b11ecda95cf9815d1464c4be815dcd (diff)
parentbf61a439d8598efc03eec0b853cfc9434e4cb5df (diff)
Merge pull request #25384 from nextcloud/backport/25218/stable20
[stable20] do not remove valid group shares
-rw-r--r--apps/dav/lib/Connector/Sabre/Principal.php20
1 files changed, 18 insertions, 2 deletions
diff --git a/apps/dav/lib/Connector/Sabre/Principal.php b/apps/dav/lib/Connector/Sabre/Principal.php
index 5dedb0a7d7b..09f369b8f9e 100644
--- a/apps/dav/lib/Connector/Sabre/Principal.php
+++ b/apps/dav/lib/Connector/Sabre/Principal.php
@@ -40,6 +40,7 @@ use OCA\DAV\Traits\PrincipalProxyTrait;
use OCP\App\IAppManager;
use OCP\AppFramework\QueryException;
use OCP\IConfig;
+use OCP\IGroup;
use OCP\IGroupManager;
use OCP\IUser;
use OCP\IUserManager;
@@ -151,6 +152,7 @@ class Principal implements BackendInterface {
*/
public function getPrincipalByPath($path) {
list($prefix, $name) = \Sabre\Uri\split($path);
+ $decodedName = urldecode($name);
if ($name === 'calendar-proxy-write' || $name === 'calendar-proxy-read') {
list($prefix2, $name2) = \Sabre\Uri\split($prefix);
@@ -172,14 +174,28 @@ class Principal implements BackendInterface {
// 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(urldecode($name));
+ $user = $this->userManager->get($decodedName);
if ($user !== null) {
return $this->userToPrincipal($user);
}
} elseif ($prefix === 'principals/circles') {
if ($this->userSession->getUser() !== null) {
- return $this->circleToPrincipal($name);
+ // 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;