2017-03-25 13:56:40 +03:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @copyright Copyright (c) 2017 Georg Ehrke <oc.list@georgehrke.com>
|
2017-11-06 17:56:42 +03:00
|
|
|
*
|
2020-04-29 12:57:22 +03:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
2017-11-06 22:15:27 +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 Morris Jobke <hey@morrisjobke.de>
|
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2017-11-06 17:56:42 +03:00
|
|
|
*
|
2017-03-25 13:56:40 +03:00
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
2017-11-06 17:56:42 +03:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
2017-03-25 13:56:40 +03:00
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2017-11-06 17:56:42 +03:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2017-03-25 13:56:40 +03:00
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
2017-11-06 17:56:42 +03:00
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
2019-12-03 21:57:53 +03:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2017-03-25 13:56:40 +03:00
|
|
|
*
|
|
|
|
*/
|
2019-11-22 22:52:10 +03:00
|
|
|
|
2017-03-25 13:56:40 +03:00
|
|
|
namespace OCA\DAV\CalDAV\Search;
|
|
|
|
|
2019-11-22 22:52:10 +03:00
|
|
|
use OCA\DAV\CalDAV\CalendarHome;
|
2018-01-26 01:16:13 +03:00
|
|
|
use OCA\DAV\CalDAV\Search\Xml\Request\CalendarSearchReport;
|
2017-03-25 13:56:40 +03:00
|
|
|
use Sabre\DAV\Server;
|
|
|
|
use Sabre\DAV\ServerPlugin;
|
|
|
|
|
|
|
|
class SearchPlugin extends ServerPlugin {
|
2020-04-10 17:54:27 +03:00
|
|
|
public const NS_Nextcloud = 'http://nextcloud.com/ns';
|
2017-03-25 13:56:40 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Reference to SabreDAV server object.
|
|
|
|
*
|
|
|
|
* @var \Sabre\DAV\Server
|
|
|
|
*/
|
|
|
|
protected $server;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This method should return a list of server-features.
|
|
|
|
*
|
|
|
|
* This is for example 'versioning' and is added to the DAV: header
|
|
|
|
* in an OPTIONS response.
|
|
|
|
*
|
|
|
|
* @return string[]
|
|
|
|
*/
|
|
|
|
public function getFeatures() {
|
|
|
|
// May have to be changed to be detected
|
|
|
|
return ['nc-calendar-search'];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a plugin name.
|
|
|
|
*
|
|
|
|
* Using this name other plugins will be able to access other plugins
|
|
|
|
* using Sabre\DAV\Server::getPlugin
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getPluginName() {
|
|
|
|
return 'nc-calendar-search';
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This initializes the plugin.
|
|
|
|
*
|
|
|
|
* This function is called by Sabre\DAV\Server, after
|
|
|
|
* addPlugin is called.
|
|
|
|
*
|
|
|
|
* This method should set up the required event subscriptions.
|
|
|
|
*
|
|
|
|
* @param Server $server
|
|
|
|
*/
|
|
|
|
public function initialize(Server $server) {
|
|
|
|
$this->server = $server;
|
|
|
|
|
|
|
|
$server->on('report', [$this, 'report']);
|
|
|
|
|
|
|
|
$server->xml->elementMap['{' . self::NS_Nextcloud . '}calendar-search'] =
|
2018-01-26 01:16:13 +03:00
|
|
|
CalendarSearchReport::class;
|
2017-03-25 13:56:40 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This functions handles REPORT requests specific to CalDAV
|
|
|
|
*
|
|
|
|
* @param string $reportName
|
|
|
|
* @param mixed $report
|
|
|
|
* @param mixed $path
|
|
|
|
* @return bool
|
|
|
|
*/
|
2017-04-25 17:37:13 +03:00
|
|
|
public function report($reportName, $report, $path) {
|
2017-03-25 13:56:40 +03:00
|
|
|
switch ($reportName) {
|
2017-04-25 17:37:13 +03:00
|
|
|
case '{' . self::NS_Nextcloud . '}calendar-search':
|
2017-03-25 13:56:40 +03:00
|
|
|
$this->server->transactionType = 'report-nc-calendar-search';
|
|
|
|
$this->calendarSearch($report);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a list of reports this plugin supports.
|
|
|
|
*
|
|
|
|
* This will be used in the {DAV:}supported-report-set property.
|
|
|
|
* Note that you still need to subscribe to the 'report' event to actually
|
|
|
|
* implement them
|
|
|
|
*
|
|
|
|
* @param string $uri
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function getSupportedReportSet($uri) {
|
|
|
|
$node = $this->server->tree->getNodeForPath($uri);
|
|
|
|
|
|
|
|
$reports = [];
|
|
|
|
if ($node instanceof CalendarHome) {
|
|
|
|
$reports[] = '{' . self::NS_Nextcloud . '}calendar-search';
|
|
|
|
}
|
|
|
|
|
|
|
|
return $reports;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This function handles the calendar-query REPORT
|
|
|
|
*
|
|
|
|
* This report is used by clients to request calendar objects based on
|
|
|
|
* complex conditions.
|
|
|
|
*
|
|
|
|
* @param Xml\Request\CalendarSearchReport $report
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
private function calendarSearch($report) {
|
|
|
|
$node = $this->server->tree->getNodeForPath($this->server->getRequestUri());
|
2017-04-25 17:37:13 +03:00
|
|
|
$depth = $this->server->getHTTPDepth(2);
|
2017-03-25 13:56:40 +03:00
|
|
|
|
|
|
|
// The default result is an empty array
|
|
|
|
$result = [];
|
|
|
|
|
|
|
|
// If we're dealing with the calendar home, the calendar home itself is
|
|
|
|
// responsible for the calendar-query
|
2017-05-10 15:03:14 +03:00
|
|
|
if ($node instanceof CalendarHome && $depth === 2) {
|
2017-03-25 13:56:40 +03:00
|
|
|
$nodePaths = $node->calendarSearch($report->filters, $report->limit, $report->offset);
|
|
|
|
|
|
|
|
foreach ($nodePaths as $path) {
|
|
|
|
list($properties) = $this->server->getPropertiesForPath(
|
|
|
|
$this->server->getRequestUri() . '/' . $path,
|
|
|
|
$report->properties);
|
|
|
|
$result[] = $properties;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$prefer = $this->server->getHTTPPrefer();
|
|
|
|
|
|
|
|
$this->server->httpResponse->setStatus(207);
|
|
|
|
$this->server->httpResponse->setHeader('Content-Type',
|
|
|
|
'application/xml; charset=utf-8');
|
|
|
|
$this->server->httpResponse->setHeader('Vary', 'Brief,Prefer');
|
|
|
|
$this->server->httpResponse->setBody(
|
|
|
|
$this->server->generateMultiStatus($result,
|
|
|
|
$prefer['return'] === 'minimal'));
|
|
|
|
}
|
2017-05-10 15:03:14 +03:00
|
|
|
}
|