2015-11-05 18:46:37 +03:00
|
|
|
<?php
|
2016-01-12 17:02:16 +03:00
|
|
|
/**
|
2016-07-21 17:49:16 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author Georg Ehrke <oc.list@georgehrke.com>
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2016-01-12 17:02:16 +03:00
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
|
|
|
*
|
|
|
|
* @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/>
|
2016-01-12 17:02:16 +03:00
|
|
|
*
|
|
|
|
*/
|
2019-11-22 22:52:10 +03:00
|
|
|
|
2015-11-05 18:46:37 +03:00
|
|
|
namespace OCA\DAV\CardDAV;
|
|
|
|
|
2016-01-25 19:50:39 +03:00
|
|
|
use OCA\DAV\DAV\Sharing\IShareable;
|
2018-08-24 18:23:14 +03:00
|
|
|
use OCA\DAV\Exception\UnsupportedLimitOnInitialSyncException;
|
2016-09-20 15:15:23 +03:00
|
|
|
use OCP\IL10N;
|
|
|
|
use Sabre\CardDAV\Backend\BackendInterface;
|
2016-03-17 17:39:08 +03:00
|
|
|
use Sabre\CardDAV\Card;
|
2016-02-02 15:50:46 +03:00
|
|
|
use Sabre\DAV\Exception\Forbidden;
|
2015-11-30 17:10:06 +03:00
|
|
|
use Sabre\DAV\Exception\NotFound;
|
2016-02-09 17:03:15 +03:00
|
|
|
use Sabre\DAV\PropPatch;
|
2015-11-05 18:46:37 +03:00
|
|
|
|
2017-02-23 12:37:49 +03:00
|
|
|
/**
|
|
|
|
* Class AddressBook
|
|
|
|
*
|
|
|
|
* @package OCA\DAV\CardDAV
|
|
|
|
* @property BackendInterface|CardDavBackend $carddavBackend
|
|
|
|
*/
|
2016-01-25 19:50:39 +03:00
|
|
|
class AddressBook extends \Sabre\CardDAV\AddressBook implements IShareable {
|
2015-11-05 18:46:37 +03:00
|
|
|
|
2016-09-20 15:15:23 +03:00
|
|
|
/**
|
|
|
|
* AddressBook constructor.
|
|
|
|
*
|
|
|
|
* @param BackendInterface $carddavBackend
|
|
|
|
* @param array $addressBookInfo
|
|
|
|
* @param IL10N $l10n
|
|
|
|
*/
|
|
|
|
public function __construct(BackendInterface $carddavBackend, array $addressBookInfo, IL10N $l10n) {
|
|
|
|
parent::__construct($carddavBackend, $addressBookInfo);
|
|
|
|
|
2017-02-23 12:37:49 +03:00
|
|
|
if ($this->addressBookInfo['{DAV:}displayname'] === CardDavBackend::PERSONAL_ADDRESSBOOK_NAME &&
|
|
|
|
$this->getName() === CardDavBackend::PERSONAL_ADDRESSBOOK_URI) {
|
2016-09-20 15:15:23 +03:00
|
|
|
$this->addressBookInfo['{DAV:}displayname'] = $l10n->t('Contacts');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-05 18:46:37 +03:00
|
|
|
/**
|
|
|
|
* Updates the list of shares.
|
|
|
|
*
|
|
|
|
* The first array is a list of people that are to be added to the
|
|
|
|
* addressbook.
|
|
|
|
*
|
|
|
|
* Every element in the add array has the following properties:
|
|
|
|
* * href - A url. Usually a mailto: address
|
|
|
|
* * commonName - Usually a first and last name, or false
|
|
|
|
* * summary - A description of the share, can also be false
|
|
|
|
* * readOnly - A boolean value
|
|
|
|
*
|
|
|
|
* Every element in the remove array is just the address string.
|
|
|
|
*
|
|
|
|
* @param array $add
|
|
|
|
* @param array $remove
|
|
|
|
* @return void
|
2017-02-23 12:31:28 +03:00
|
|
|
* @throws Forbidden
|
2015-11-05 18:46:37 +03:00
|
|
|
*/
|
2017-02-23 12:33:54 +03:00
|
|
|
public function updateShares(array $add, array $remove) {
|
2017-02-23 12:31:28 +03:00
|
|
|
if ($this->isShared()) {
|
|
|
|
throw new Forbidden();
|
|
|
|
}
|
2017-02-23 12:37:49 +03:00
|
|
|
$this->carddavBackend->updateShares($this, $add, $remove);
|
2015-11-05 18:46:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the list of people whom this addressbook is shared with.
|
|
|
|
*
|
|
|
|
* Every element in this array should have the following properties:
|
|
|
|
* * href - Often a mailto: address
|
|
|
|
* * commonName - Optional, for example a first + last name
|
|
|
|
* * status - See the Sabre\CalDAV\SharingPlugin::STATUS_ constants.
|
|
|
|
* * readOnly - boolean
|
|
|
|
* * summary - Optional, a description for the share
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
2017-02-23 12:33:54 +03:00
|
|
|
public function getShares() {
|
2017-02-23 12:31:28 +03:00
|
|
|
if ($this->isShared()) {
|
|
|
|
return [];
|
|
|
|
}
|
2017-02-23 12:37:49 +03:00
|
|
|
return $this->carddavBackend->getShares($this->getResourceId());
|
2015-11-05 18:46:37 +03:00
|
|
|
}
|
2015-11-25 01:53:27 +03:00
|
|
|
|
2017-02-23 12:33:54 +03:00
|
|
|
public function getACL() {
|
2016-03-17 17:39:08 +03:00
|
|
|
$acl = [
|
|
|
|
[
|
|
|
|
'privilege' => '{DAV:}read',
|
|
|
|
'principal' => $this->getOwner(),
|
|
|
|
'protected' => true,
|
2018-11-14 22:50:46 +03:00
|
|
|
],[
|
2016-03-17 17:39:08 +03:00
|
|
|
'privilege' => '{DAV:}write',
|
|
|
|
'principal' => $this->getOwner(),
|
|
|
|
'protected' => true,
|
2018-11-14 22:50:46 +03:00
|
|
|
]
|
|
|
|
];
|
|
|
|
|
2018-12-04 15:33:03 +03:00
|
|
|
if ($this->getOwner() === 'principals/system/system') {
|
|
|
|
$acl[] = [
|
|
|
|
'privilege' => '{DAV:}read',
|
|
|
|
'principal' => '{DAV:}authenticated',
|
|
|
|
'protected' => true,
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
2018-11-14 22:50:46 +03:00
|
|
|
if (!$this->isShared()) {
|
|
|
|
return $acl;
|
|
|
|
}
|
|
|
|
|
2016-03-17 17:39:08 +03:00
|
|
|
if ($this->getOwner() !== parent::getOwner()) {
|
|
|
|
$acl[] = [
|
2020-04-09 10:22:29 +03:00
|
|
|
'privilege' => '{DAV:}read',
|
|
|
|
'principal' => parent::getOwner(),
|
|
|
|
'protected' => true,
|
|
|
|
];
|
2016-03-17 17:39:08 +03:00
|
|
|
if ($this->canWrite()) {
|
2016-01-12 15:23:50 +03:00
|
|
|
$acl[] = [
|
|
|
|
'privilege' => '{DAV:}write',
|
2016-03-17 17:39:08 +03:00
|
|
|
'principal' => parent::getOwner(),
|
2016-01-12 15:23:50 +03:00
|
|
|
'protected' => true,
|
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|
2015-11-25 01:53:27 +03:00
|
|
|
|
2018-11-14 22:50:46 +03:00
|
|
|
$acl = $this->carddavBackend->applyShareAcl($this->getResourceId(), $acl);
|
|
|
|
$allowedPrincipals = [$this->getOwner(), parent::getOwner(), 'principals/system/system'];
|
|
|
|
return array_filter($acl, function($rule) use ($allowedPrincipals) {
|
|
|
|
return \in_array($rule['principal'], $allowedPrincipals, true);
|
|
|
|
});
|
2015-11-25 01:53:27 +03:00
|
|
|
}
|
2015-11-30 17:10:06 +03:00
|
|
|
|
2017-02-23 12:33:54 +03:00
|
|
|
public function getChildACL() {
|
2016-03-17 17:39:08 +03:00
|
|
|
return $this->getACL();
|
|
|
|
}
|
|
|
|
|
2017-02-23 12:33:54 +03:00
|
|
|
public function getChild($name) {
|
2016-03-17 17:39:08 +03:00
|
|
|
|
|
|
|
$obj = $this->carddavBackend->getCard($this->addressBookInfo['id'], $name);
|
2015-11-30 17:10:06 +03:00
|
|
|
if (!$obj) {
|
|
|
|
throw new NotFound('Card not found');
|
|
|
|
}
|
2016-03-17 17:39:08 +03:00
|
|
|
$obj['acl'] = $this->getChildACL();
|
2015-11-30 17:10:06 +03:00
|
|
|
return new Card($this->carddavBackend, $this->addressBookInfo, $obj);
|
2016-03-17 17:39:08 +03:00
|
|
|
|
2015-11-30 17:10:06 +03:00
|
|
|
}
|
|
|
|
|
2015-12-22 18:11:53 +03:00
|
|
|
/**
|
|
|
|
* @return int
|
|
|
|
*/
|
2016-01-26 00:49:26 +03:00
|
|
|
public function getResourceId() {
|
2016-01-12 15:23:50 +03:00
|
|
|
return $this->addressBookInfo['id'];
|
|
|
|
}
|
2016-02-02 15:50:46 +03:00
|
|
|
|
2017-02-23 12:33:54 +03:00
|
|
|
public function getOwner() {
|
2016-02-02 15:50:46 +03:00
|
|
|
if (isset($this->addressBookInfo['{http://owncloud.org/ns}owner-principal'])) {
|
|
|
|
return $this->addressBookInfo['{http://owncloud.org/ns}owner-principal'];
|
|
|
|
}
|
|
|
|
return parent::getOwner();
|
|
|
|
}
|
|
|
|
|
2017-02-23 12:33:54 +03:00
|
|
|
public function delete() {
|
2016-02-02 15:50:46 +03:00
|
|
|
if (isset($this->addressBookInfo['{http://owncloud.org/ns}owner-principal'])) {
|
|
|
|
$principal = 'principal:' . parent::getOwner();
|
2017-02-23 12:31:28 +03:00
|
|
|
$shares = $this->carddavBackend->getShares($this->getResourceId());
|
2016-02-02 15:50:46 +03:00
|
|
|
$shares = array_filter($shares, function($share) use ($principal){
|
|
|
|
return $share['href'] === $principal;
|
|
|
|
});
|
|
|
|
if (empty($shares)) {
|
|
|
|
throw new Forbidden();
|
|
|
|
}
|
|
|
|
|
2017-02-23 12:37:49 +03:00
|
|
|
$this->carddavBackend->updateShares($this, [], [
|
2018-04-23 14:48:39 +03:00
|
|
|
$principal
|
2016-02-02 15:50:46 +03:00
|
|
|
]);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
parent::delete();
|
|
|
|
}
|
2016-02-10 19:06:13 +03:00
|
|
|
|
2017-02-23 12:33:54 +03:00
|
|
|
public function propPatch(PropPatch $propPatch) {
|
2016-02-09 17:03:15 +03:00
|
|
|
if (isset($this->addressBookInfo['{http://owncloud.org/ns}owner-principal'])) {
|
|
|
|
throw new Forbidden();
|
|
|
|
}
|
|
|
|
parent::propPatch($propPatch);
|
|
|
|
}
|
|
|
|
|
2016-02-10 19:06:13 +03:00
|
|
|
public function getContactsGroups() {
|
2017-02-23 12:37:49 +03:00
|
|
|
return $this->carddavBackend->collectCardProperties($this->getResourceId(), 'CATEGORIES');
|
2016-02-10 19:06:13 +03:00
|
|
|
}
|
2016-03-17 17:39:08 +03:00
|
|
|
|
2017-02-23 12:31:28 +03:00
|
|
|
private function isShared() {
|
|
|
|
if (!isset($this->addressBookInfo['{http://owncloud.org/ns}owner-principal'])) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->addressBookInfo['{http://owncloud.org/ns}owner-principal'] !== $this->addressBookInfo['principaluri'];
|
|
|
|
}
|
|
|
|
|
2016-03-17 17:39:08 +03:00
|
|
|
private function canWrite() {
|
|
|
|
if (isset($this->addressBookInfo['{http://owncloud.org/ns}read-only'])) {
|
|
|
|
return !$this->addressBookInfo['{http://owncloud.org/ns}read-only'];
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
2018-08-24 18:23:14 +03:00
|
|
|
|
|
|
|
public function getChanges($syncToken, $syncLevel, $limit = null) {
|
|
|
|
if (!$syncToken && $limit) {
|
|
|
|
throw new UnsupportedLimitOnInitialSyncException();
|
|
|
|
}
|
|
|
|
|
|
|
|
return parent::getChanges($syncToken, $syncLevel, $limit);
|
|
|
|
}
|
2015-11-20 15:35:23 +03:00
|
|
|
}
|