2016-01-26 06:06:02 -05:00
|
|
|
<?php
|
2016-03-01 11:25:15 -05:00
|
|
|
/**
|
2016-07-21 10:49:16 -04:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
|
*
|
2020-04-29 05:57:22 -04:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
2020-03-31 04:49:10 -04:00
|
|
|
* @author Gary Kim <gary@garykim.dev>
|
2017-11-06 14:15:27 -05:00
|
|
|
* @author Georg Ehrke <oc.list@georgehrke.com>
|
2016-07-21 10:49:16 -04:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2016-05-26 13:56:05 -04:00
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
2017-11-06 09:56:42 -05:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2020-03-31 04:49:10 -04:00
|
|
|
* @author Thomas Citharel <nextcloud@tcit.fr>
|
2016-03-01 11:25:15 -05: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 13:57:53 -05:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2016-03-01 11:25:15 -05:00
|
|
|
*
|
|
|
|
|
*/
|
2019-11-22 14:52:10 -05:00
|
|
|
|
2016-01-26 06:06:02 -05:00
|
|
|
namespace OCA\DAV\CalDAV;
|
|
|
|
|
|
|
|
|
|
use OCA\DAV\DAV\Sharing\IShareable;
|
2018-08-24 11:23:14 -04:00
|
|
|
use OCA\DAV\Exception\UnsupportedLimitOnInitialSyncException;
|
2017-10-20 09:09:52 -04:00
|
|
|
use OCP\IConfig;
|
2016-04-14 09:38:00 -04:00
|
|
|
use OCP\IL10N;
|
2016-03-10 06:32:46 -05:00
|
|
|
use Sabre\CalDAV\Backend\BackendInterface;
|
2016-02-02 07:50:46 -05:00
|
|
|
use Sabre\DAV\Exception\Forbidden;
|
2016-05-31 12:10:31 -04:00
|
|
|
use Sabre\DAV\Exception\NotFound;
|
2016-02-09 09:03:15 -05:00
|
|
|
use Sabre\DAV\PropPatch;
|
2016-01-26 06:06:02 -05:00
|
|
|
|
2017-02-23 04:37:49 -05:00
|
|
|
/**
|
|
|
|
|
* Class Calendar
|
|
|
|
|
*
|
|
|
|
|
* @package OCA\DAV\CalDAV
|
|
|
|
|
* @property BackendInterface|CalDavBackend $caldavBackend
|
|
|
|
|
*/
|
2016-07-06 06:42:32 -04:00
|
|
|
class Calendar extends \Sabre\CalDAV\Calendar implements IShareable {
|
2016-01-26 06:06:02 -05:00
|
|
|
|
2017-10-20 09:09:52 -04:00
|
|
|
/** @var IConfig */
|
|
|
|
|
private $config;
|
|
|
|
|
|
2020-01-09 12:07:24 -05:00
|
|
|
/** @var IL10N */
|
|
|
|
|
protected $l10n;
|
|
|
|
|
|
2019-08-14 07:38:11 -04:00
|
|
|
/**
|
|
|
|
|
* Calendar constructor.
|
|
|
|
|
*
|
|
|
|
|
* @param BackendInterface $caldavBackend
|
|
|
|
|
* @param $calendarInfo
|
|
|
|
|
* @param IL10N $l10n
|
|
|
|
|
* @param IConfig $config
|
|
|
|
|
*/
|
2017-10-20 09:09:52 -04:00
|
|
|
public function __construct(BackendInterface $caldavBackend, $calendarInfo, IL10N $l10n, IConfig $config) {
|
2016-03-10 06:32:46 -05:00
|
|
|
parent::__construct($caldavBackend, $calendarInfo);
|
|
|
|
|
|
|
|
|
|
if ($this->getName() === BirthdayService::BIRTHDAY_CALENDAR_URI) {
|
2016-04-14 09:38:00 -04:00
|
|
|
$this->calendarInfo['{DAV:}displayname'] = $l10n->t('Contact birthdays');
|
2016-03-10 06:32:46 -05:00
|
|
|
}
|
2016-09-20 08:09:08 -04:00
|
|
|
if ($this->getName() === CalDavBackend::PERSONAL_CALENDAR_URI &&
|
|
|
|
|
$this->calendarInfo['{DAV:}displayname'] === CalDavBackend::PERSONAL_CALENDAR_NAME) {
|
|
|
|
|
$this->calendarInfo['{DAV:}displayname'] = $l10n->t('Personal');
|
|
|
|
|
}
|
2017-10-20 09:09:52 -04:00
|
|
|
|
|
|
|
|
$this->config = $config;
|
2020-01-09 12:07:24 -05:00
|
|
|
$this->l10n = $l10n;
|
2016-03-10 06:32:46 -05:00
|
|
|
}
|
|
|
|
|
|
2016-01-26 06:06:02 -05:00
|
|
|
/**
|
|
|
|
|
* Updates the list of shares.
|
|
|
|
|
*
|
|
|
|
|
* The first array is a list of people that are to be added to the
|
|
|
|
|
* resource.
|
|
|
|
|
*
|
|
|
|
|
* 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 04:31:28 -05:00
|
|
|
* @throws Forbidden
|
2016-01-26 06:06:02 -05:00
|
|
|
*/
|
2017-02-23 04:31:28 -05:00
|
|
|
public function updateShares(array $add, array $remove) {
|
|
|
|
|
if ($this->isShared()) {
|
|
|
|
|
throw new Forbidden();
|
|
|
|
|
}
|
2017-02-23 04:37:49 -05:00
|
|
|
$this->caldavBackend->updateShares($this, $add, $remove);
|
2016-01-26 06:06:02 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Returns the list of people whom this resource 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 04:31:28 -05:00
|
|
|
public function getShares() {
|
|
|
|
|
if ($this->isShared()) {
|
|
|
|
|
return [];
|
|
|
|
|
}
|
2017-02-23 04:37:49 -05:00
|
|
|
return $this->caldavBackend->getShares($this->getResourceId());
|
2016-01-26 06:06:02 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @return int
|
|
|
|
|
*/
|
|
|
|
|
public function getResourceId() {
|
|
|
|
|
return $this->calendarInfo['id'];
|
|
|
|
|
}
|
|
|
|
|
|
2016-07-06 06:19:46 -04:00
|
|
|
/**
|
2016-07-08 10:52:20 -04:00
|
|
|
* @return string
|
2016-07-06 06:19:46 -04:00
|
|
|
*/
|
|
|
|
|
public function getPrincipalURI() {
|
|
|
|
|
return $this->calendarInfo['principaluri'];
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-14 07:38:11 -04:00
|
|
|
/**
|
|
|
|
|
* @return array
|
|
|
|
|
*/
|
2017-02-23 04:33:54 -05:00
|
|
|
public function getACL() {
|
2016-03-17 10:39:08 -04:00
|
|
|
$acl = [
|
|
|
|
|
[
|
|
|
|
|
'privilege' => '{DAV:}read',
|
|
|
|
|
'principal' => $this->getOwner(),
|
|
|
|
|
'protected' => true,
|
2019-08-14 07:38:11 -04:00
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
'privilege' => '{DAV:}read',
|
|
|
|
|
'principal' => $this->getOwner() . '/calendar-proxy-write',
|
|
|
|
|
'protected' => true,
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
'privilege' => '{DAV:}read',
|
|
|
|
|
'principal' => $this->getOwner() . '/calendar-proxy-read',
|
|
|
|
|
'protected' => true,
|
|
|
|
|
],
|
|
|
|
|
];
|
|
|
|
|
|
2016-04-21 07:36:52 -04:00
|
|
|
if ($this->getName() !== BirthdayService::BIRTHDAY_CALENDAR_URI) {
|
|
|
|
|
$acl[] = [
|
|
|
|
|
'privilege' => '{DAV:}write',
|
|
|
|
|
'principal' => $this->getOwner(),
|
|
|
|
|
'protected' => true,
|
|
|
|
|
];
|
2019-08-14 07:38:11 -04:00
|
|
|
$acl[] = [
|
|
|
|
|
'privilege' => '{DAV:}write',
|
|
|
|
|
'principal' => $this->getOwner() . '/calendar-proxy-write',
|
|
|
|
|
'protected' => true,
|
|
|
|
|
];
|
2017-06-08 02:00:52 -04:00
|
|
|
} else {
|
|
|
|
|
$acl[] = [
|
|
|
|
|
'privilege' => '{DAV:}write-properties',
|
|
|
|
|
'principal' => $this->getOwner(),
|
|
|
|
|
'protected' => true,
|
|
|
|
|
];
|
2019-08-14 07:38:11 -04:00
|
|
|
$acl[] = [
|
|
|
|
|
'privilege' => '{DAV:}write-properties',
|
|
|
|
|
'principal' => $this->getOwner() . '/calendar-proxy-write',
|
|
|
|
|
'protected' => true,
|
|
|
|
|
];
|
2016-04-21 07:36:52 -04:00
|
|
|
}
|
2017-06-08 02:00:52 -04:00
|
|
|
|
2019-08-14 07:38:11 -04:00
|
|
|
$acl[] = [
|
|
|
|
|
'privilege' => '{DAV:}write-properties',
|
|
|
|
|
'principal' => $this->getOwner() . '/calendar-proxy-read',
|
|
|
|
|
'protected' => true,
|
|
|
|
|
];
|
|
|
|
|
|
2018-11-14 14:50:46 -05:00
|
|
|
if (!$this->isShared()) {
|
2019-08-14 07:38:11 -04:00
|
|
|
return $acl;
|
2018-11-14 14:50:46 -05:00
|
|
|
}
|
|
|
|
|
|
2016-03-17 10:39:08 -04:00
|
|
|
if ($this->getOwner() !== parent::getOwner()) {
|
|
|
|
|
$acl[] = [
|
2020-04-09 03:22:29 -04:00
|
|
|
'privilege' => '{DAV:}read',
|
|
|
|
|
'principal' => parent::getOwner(),
|
|
|
|
|
'protected' => true,
|
|
|
|
|
];
|
2016-03-17 10:39:08 -04:00
|
|
|
if ($this->canWrite()) {
|
|
|
|
|
$acl[] = [
|
|
|
|
|
'privilege' => '{DAV:}write',
|
|
|
|
|
'principal' => parent::getOwner(),
|
|
|
|
|
'protected' => true,
|
|
|
|
|
];
|
2017-06-08 03:21:56 -04:00
|
|
|
} else {
|
|
|
|
|
$acl[] = [
|
|
|
|
|
'privilege' => '{DAV:}write-properties',
|
|
|
|
|
'principal' => parent::getOwner(),
|
|
|
|
|
'protected' => true,
|
|
|
|
|
];
|
2016-03-17 10:39:08 -04:00
|
|
|
}
|
|
|
|
|
}
|
2016-07-08 10:52:20 -04:00
|
|
|
if ($this->isPublic()) {
|
|
|
|
|
$acl[] = [
|
|
|
|
|
'privilege' => '{DAV:}read',
|
|
|
|
|
'principal' => 'principals/system/public',
|
|
|
|
|
'protected' => true,
|
|
|
|
|
];
|
|
|
|
|
}
|
2016-01-26 06:06:02 -05:00
|
|
|
|
2017-05-01 08:37:24 -04:00
|
|
|
$acl = $this->caldavBackend->applyShareAcl($this->getResourceId(), $acl);
|
2019-08-14 07:38:11 -04:00
|
|
|
$allowedPrincipals = [
|
|
|
|
|
$this->getOwner(),
|
|
|
|
|
$this->getOwner(). '/calendar-proxy-read',
|
|
|
|
|
$this->getOwner(). '/calendar-proxy-write',
|
|
|
|
|
parent::getOwner(),
|
|
|
|
|
'principals/system/public'
|
|
|
|
|
];
|
2020-04-09 07:53:40 -04:00
|
|
|
return array_filter($acl, function ($rule) use ($allowedPrincipals) {
|
2018-11-14 14:50:46 -05:00
|
|
|
return \in_array($rule['principal'], $allowedPrincipals, true);
|
2017-05-01 08:37:24 -04:00
|
|
|
});
|
2016-01-26 06:06:02 -05:00
|
|
|
}
|
|
|
|
|
|
2017-02-23 04:33:54 -05:00
|
|
|
public function getChildACL() {
|
2016-03-17 10:39:08 -04:00
|
|
|
return $this->getACL();
|
2016-01-26 06:06:02 -05:00
|
|
|
}
|
|
|
|
|
|
2017-02-23 04:33:54 -05:00
|
|
|
public function getOwner() {
|
2016-02-02 07:07:14 -05:00
|
|
|
if (isset($this->calendarInfo['{http://owncloud.org/ns}owner-principal'])) {
|
|
|
|
|
return $this->calendarInfo['{http://owncloud.org/ns}owner-principal'];
|
2016-01-26 06:06:02 -05:00
|
|
|
}
|
|
|
|
|
return parent::getOwner();
|
|
|
|
|
}
|
2016-02-02 07:07:14 -05:00
|
|
|
|
2017-02-23 04:33:54 -05:00
|
|
|
public function delete() {
|
2016-11-04 10:40:59 -04:00
|
|
|
if (isset($this->calendarInfo['{http://owncloud.org/ns}owner-principal']) &&
|
|
|
|
|
$this->calendarInfo['{http://owncloud.org/ns}owner-principal'] !== $this->calendarInfo['principaluri']) {
|
2016-02-02 07:50:46 -05:00
|
|
|
$principal = 'principal:' . parent::getOwner();
|
2017-02-23 04:31:28 -05:00
|
|
|
$shares = $this->caldavBackend->getShares($this->getResourceId());
|
2020-04-09 07:53:40 -04:00
|
|
|
$shares = array_filter($shares, function ($share) use ($principal) {
|
2016-02-02 07:50:46 -05:00
|
|
|
return $share['href'] === $principal;
|
|
|
|
|
});
|
|
|
|
|
if (empty($shares)) {
|
|
|
|
|
throw new Forbidden();
|
|
|
|
|
}
|
|
|
|
|
|
2017-02-23 04:37:49 -05:00
|
|
|
$this->caldavBackend->updateShares($this, [], [
|
2018-04-23 07:48:39 -04:00
|
|
|
$principal
|
2016-02-02 07:07:14 -05:00
|
|
|
]);
|
|
|
|
|
return;
|
|
|
|
|
}
|
2017-10-20 09:09:52 -04:00
|
|
|
|
|
|
|
|
// Remember when a user deleted their birthday calendar
|
|
|
|
|
// in order to not regenerate it on the next contacts change
|
|
|
|
|
if ($this->getName() === BirthdayService::BIRTHDAY_CALENDAR_URI) {
|
|
|
|
|
$principalURI = $this->getPrincipalURI();
|
|
|
|
|
$userId = substr($principalURI, 17);
|
|
|
|
|
|
|
|
|
|
$this->config->setUserValue($userId, 'dav', 'generateBirthdayCalendar', 'no');
|
|
|
|
|
}
|
|
|
|
|
|
2016-02-02 07:07:14 -05:00
|
|
|
parent::delete();
|
|
|
|
|
}
|
2016-02-09 09:03:15 -05:00
|
|
|
|
2017-02-23 04:33:54 -05:00
|
|
|
public function propPatch(PropPatch $propPatch) {
|
2017-02-25 08:26:02 -05:00
|
|
|
// parent::propPatch will only update calendars table
|
|
|
|
|
// if calendar is shared, changes have to be made to the properties table
|
|
|
|
|
if (!$this->isShared()) {
|
|
|
|
|
parent::propPatch($propPatch);
|
2016-02-09 09:03:15 -05:00
|
|
|
}
|
|
|
|
|
}
|
2016-03-17 10:39:08 -04:00
|
|
|
|
2017-02-23 04:33:54 -05:00
|
|
|
public function getChild($name) {
|
2016-05-31 12:10:31 -04:00
|
|
|
$obj = $this->caldavBackend->getCalendarObject($this->calendarInfo['id'], $name);
|
|
|
|
|
|
|
|
|
|
if (!$obj) {
|
|
|
|
|
throw new NotFound('Calendar object not found');
|
|
|
|
|
}
|
|
|
|
|
|
2017-02-23 04:37:49 -05:00
|
|
|
if ($obj['classification'] === CalDavBackend::CLASSIFICATION_PRIVATE && $this->isShared()) {
|
2016-05-31 12:10:31 -04:00
|
|
|
throw new NotFound('Calendar object not found');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$obj['acl'] = $this->getChildACL();
|
|
|
|
|
|
2020-01-09 12:07:24 -05:00
|
|
|
return new CalendarObject($this->caldavBackend, $this->l10n, $this->calendarInfo, $obj);
|
2016-05-31 12:10:31 -04:00
|
|
|
}
|
|
|
|
|
|
2017-02-23 04:33:54 -05:00
|
|
|
public function getChildren() {
|
2016-05-31 12:10:31 -04:00
|
|
|
$objs = $this->caldavBackend->getCalendarObjects($this->calendarInfo['id']);
|
|
|
|
|
$children = [];
|
|
|
|
|
foreach ($objs as $obj) {
|
2017-02-23 04:37:49 -05:00
|
|
|
if ($obj['classification'] === CalDavBackend::CLASSIFICATION_PRIVATE && $this->isShared()) {
|
2016-05-31 12:10:31 -04:00
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
$obj['acl'] = $this->getChildACL();
|
2020-01-09 12:07:24 -05:00
|
|
|
$children[] = new CalendarObject($this->caldavBackend, $this->l10n, $this->calendarInfo, $obj);
|
2016-05-31 12:10:31 -04:00
|
|
|
}
|
|
|
|
|
return $children;
|
|
|
|
|
}
|
|
|
|
|
|
2017-02-23 04:33:54 -05:00
|
|
|
public function getMultipleChildren(array $paths) {
|
2016-05-31 12:10:31 -04:00
|
|
|
$objs = $this->caldavBackend->getMultipleCalendarObjects($this->calendarInfo['id'], $paths);
|
|
|
|
|
$children = [];
|
|
|
|
|
foreach ($objs as $obj) {
|
2017-02-23 04:37:49 -05:00
|
|
|
if ($obj['classification'] === CalDavBackend::CLASSIFICATION_PRIVATE && $this->isShared()) {
|
2016-05-31 12:10:31 -04:00
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
$obj['acl'] = $this->getChildACL();
|
2020-01-09 12:07:24 -05:00
|
|
|
$children[] = new CalendarObject($this->caldavBackend, $this->l10n, $this->calendarInfo, $obj);
|
2016-05-31 12:10:31 -04:00
|
|
|
}
|
|
|
|
|
return $children;
|
|
|
|
|
}
|
|
|
|
|
|
2017-02-23 04:33:54 -05:00
|
|
|
public function childExists($name) {
|
2016-05-31 12:10:31 -04:00
|
|
|
$obj = $this->caldavBackend->getCalendarObject($this->calendarInfo['id'], $name);
|
|
|
|
|
if (!$obj) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2017-02-23 04:37:49 -05:00
|
|
|
if ($obj['classification'] === CalDavBackend::CLASSIFICATION_PRIVATE && $this->isShared()) {
|
2016-05-31 12:10:31 -04:00
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2017-02-23 04:33:54 -05:00
|
|
|
public function calendarQuery(array $filters) {
|
2016-05-31 12:10:31 -04:00
|
|
|
$uris = $this->caldavBackend->calendarQuery($this->calendarInfo['id'], $filters);
|
|
|
|
|
if ($this->isShared()) {
|
|
|
|
|
return array_filter($uris, function ($uri) {
|
|
|
|
|
return $this->childExists($uri);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return $uris;
|
|
|
|
|
}
|
|
|
|
|
|
2016-07-06 06:19:46 -04:00
|
|
|
/**
|
|
|
|
|
* @param boolean $value
|
2016-09-03 04:52:05 -04:00
|
|
|
* @return string|null
|
2016-07-06 06:19:46 -04:00
|
|
|
*/
|
2017-02-23 04:33:54 -05:00
|
|
|
public function setPublishStatus($value) {
|
2016-09-03 04:52:05 -04:00
|
|
|
$publicUri = $this->caldavBackend->setPublishStatus($value, $this);
|
|
|
|
|
$this->calendarInfo['publicuri'] = $publicUri;
|
|
|
|
|
return $publicUri;
|
2016-07-06 06:19:46 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2016-09-15 11:01:35 -04:00
|
|
|
* @return mixed $value
|
2016-07-06 06:19:46 -04:00
|
|
|
*/
|
2017-02-23 04:33:54 -05:00
|
|
|
public function getPublishStatus() {
|
2016-07-06 06:19:46 -04:00
|
|
|
return $this->caldavBackend->getPublishStatus($this);
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-17 05:05:55 -04:00
|
|
|
public function canWrite() {
|
|
|
|
|
if ($this->getName() === BirthdayService::BIRTHDAY_CALENDAR_URI) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2016-03-17 10:39:08 -04:00
|
|
|
if (isset($this->calendarInfo['{http://owncloud.org/ns}read-only'])) {
|
|
|
|
|
return !$this->calendarInfo['{http://owncloud.org/ns}read-only'];
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2016-07-08 10:52:20 -04:00
|
|
|
private function isPublic() {
|
|
|
|
|
return isset($this->calendarInfo['{http://owncloud.org/ns}public']);
|
|
|
|
|
}
|
|
|
|
|
|
2017-04-09 12:51:14 -04:00
|
|
|
protected function isShared() {
|
2016-11-04 10:40:59 -04:00
|
|
|
if (!isset($this->calendarInfo['{http://owncloud.org/ns}owner-principal'])) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2016-10-19 04:49:43 -04:00
|
|
|
return $this->calendarInfo['{http://owncloud.org/ns}owner-principal'] !== $this->calendarInfo['principaluri'];
|
2016-05-31 12:10:31 -04:00
|
|
|
}
|
|
|
|
|
|
2016-08-14 13:18:21 -04:00
|
|
|
public function isSubscription() {
|
|
|
|
|
return isset($this->calendarInfo['{http://calendarserver.org/ns/}source']);
|
|
|
|
|
}
|
|
|
|
|
|
2018-08-24 11:23:14 -04:00
|
|
|
/**
|
|
|
|
|
* @inheritDoc
|
|
|
|
|
*/
|
|
|
|
|
public function getChanges($syncToken, $syncLevel, $limit = null) {
|
|
|
|
|
if (!$syncToken && $limit) {
|
|
|
|
|
throw new UnsupportedLimitOnInitialSyncException();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return parent::getChanges($syncToken, $syncLevel, $limit);
|
|
|
|
|
}
|
2016-01-26 06:06:02 -05:00
|
|
|
}
|