When sharing calendars and addressbooks the principal has to be verified to be valid

d3fb8fcdd3

Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
pull/9268/head
Roeland Jago Douma 7 years ago
parent c5d5c7dc12
commit 240006bdf5
No known key found for this signature in database
GPG Key ID: F941078878347C0C
  1. 2
      apps/dav/lib/CalDAV/Calendar.php
  2. 2
      apps/dav/lib/CardDAV/AddressBook.php
  3. 7
      apps/dav/lib/Connector/Sabre/Principal.php
  4. 12
      apps/dav/lib/DAV/Sharing/Backend.php

@ -203,7 +203,7 @@ class Calendar extends \Sabre\CalDAV\Calendar implements IShareable {
}
$this->caldavBackend->updateShares($this, [], [
'href' => $principal
$principal
]);
return;
}

@ -181,7 +181,7 @@ class AddressBook extends \Sabre\CardDAV\AddressBook implements IShareable {
}
$this->carddavBackend->updateShares($this, [], [
'href' => $principal
$principal
]);
return;
}

@ -324,6 +324,13 @@ class Principal implements BackendInterface {
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;
}

@ -67,12 +67,18 @@ class Backend {
* @param string[] $add
* @param string[] $remove
*/
public function updateShares($shareable, $add, $remove) {
public function updateShares(IShareable $shareable, array $add, array $remove) {
foreach($add as $element) {
$this->shareWith($shareable, $element);
$principal = $this->principalBackend->findByUri($element['href'], '');
if ($principal !== '') {
$this->shareWith($shareable, $element);
}
}
foreach($remove as $element) {
$this->unshare($shareable, $element);
$principal = $this->principalBackend->findByUri($element, '');
if ($principal !== '') {
$this->unshare($shareable, $element);
}
}
}

Loading…
Cancel
Save