2015-11-27 15:14:55 +03:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 17:49:16 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2015-11-27 15:14:55 +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,
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace OCA\DAV\CardDAV;
|
|
|
|
|
2016-02-10 19:06:13 +03:00
|
|
|
use OCA\DAV\CardDAV\Xml\Groups;
|
|
|
|
use Sabre\DAV\INode;
|
|
|
|
use Sabre\DAV\PropFind;
|
|
|
|
use Sabre\DAV\Server;
|
2015-11-27 15:14:55 +03:00
|
|
|
|
|
|
|
class Plugin extends \Sabre\CardDAV\Plugin {
|
|
|
|
|
2016-02-10 19:06:13 +03:00
|
|
|
function initialize(Server $server) {
|
|
|
|
$server->on('propFind', [$this, 'propFind']);
|
|
|
|
parent::initialize($server);
|
|
|
|
}
|
|
|
|
|
2015-11-27 15:14:55 +03:00
|
|
|
/**
|
|
|
|
* Returns the addressbook home for a given principal
|
|
|
|
*
|
|
|
|
* @param string $principal
|
2018-09-02 00:04:07 +03:00
|
|
|
* @return string|null
|
2015-11-27 15:14:55 +03:00
|
|
|
*/
|
|
|
|
protected function getAddressbookHomeForPrincipal($principal) {
|
2016-02-10 19:06:13 +03:00
|
|
|
if (strrpos($principal, 'principals/users', -strlen($principal)) !== false) {
|
2017-07-20 10:43:23 +03:00
|
|
|
list(, $principalId) = \Sabre\Uri\split($principal);
|
2015-11-27 15:14:55 +03:00
|
|
|
return self::ADDRESSBOOK_ROOT . '/users/' . $principalId;
|
|
|
|
}
|
2016-03-17 20:00:06 +03:00
|
|
|
if (strrpos($principal, 'principals/groups', -strlen($principal)) !== false) {
|
2017-07-20 10:43:23 +03:00
|
|
|
list(, $principalId) = \Sabre\Uri\split($principal);
|
2016-03-17 20:00:06 +03:00
|
|
|
return self::ADDRESSBOOK_ROOT . '/groups/' . $principalId;
|
|
|
|
}
|
2016-02-10 19:06:13 +03:00
|
|
|
if (strrpos($principal, 'principals/system', -strlen($principal)) !== false) {
|
2017-07-20 10:43:23 +03:00
|
|
|
list(, $principalId) = \Sabre\Uri\split($principal);
|
2015-11-27 15:14:55 +03:00
|
|
|
return self::ADDRESSBOOK_ROOT . '/system/' . $principalId;
|
|
|
|
}
|
|
|
|
}
|
2016-02-10 19:06:13 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Adds all CardDAV-specific properties
|
|
|
|
*
|
|
|
|
* @param PropFind $propFind
|
|
|
|
* @param INode $node
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function propFind(PropFind $propFind, INode $node) {
|
|
|
|
|
|
|
|
$ns = '{http://owncloud.org/ns}';
|
|
|
|
|
|
|
|
if ($node instanceof AddressBook) {
|
|
|
|
|
|
|
|
$propFind->handle($ns . 'groups', function () use ($node) {
|
|
|
|
return new Groups($node->getContactsGroups());
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
2015-11-27 15:14:55 +03:00
|
|
|
}
|