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 >
2019-12-03 21:57:53 +03:00
* @ 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\Xml\Request ;
2019-11-22 22:52:10 +03:00
use OCA\DAV\CalDAV\Search\SearchPlugin ;
2017-03-25 13:56:40 +03:00
use Sabre\DAV\Exception\BadRequest ;
use Sabre\Xml\Reader ;
use Sabre\Xml\XmlDeserializable ;
/**
* CalendarSearchReport request parser .
*
* This class parses the { urn : ietf : params : xml : ns : caldav } calendar - query
* REPORT , as defined in :
*
* https :// link to standard
*/
class CalendarSearchReport implements XmlDeserializable {
/**
* An array with requested properties .
*
* @ var array
*/
public $properties ;
/**
* List of property / component filters .
*
* @ var array
*/
public $filters ;
/**
* @ var int
*/
public $limit ;
/**
* @ var int
*/
public $offset ;
/**
* The deserialize method is called during xml parsing .
*
* This method is called statically , this is because in theory this method
* may be used as a type of constructor , or factory method .
*
* Often you want to return an instance of the current class , but you are
* free to return other data as well .
*
* You are responsible for advancing the reader to the next element . Not
* doing anything will result in a never - ending loop .
*
* If you just want to skip parsing for this element altogether , you can
* just call $reader -> next ();
*
* $reader -> parseInnerTree () will parse the entire sub - tree , and advance to
* the next element .
*
* @ param Reader $reader
* @ return mixed
*/
2020-04-10 17:51:06 +03:00
public static function xmlDeserialize ( Reader $reader ) {
2017-03-25 13:56:40 +03:00
$elems = $reader -> parseInnerTree ([
2020-10-05 16:12:57 +03:00
'{http://nextcloud.com/ns}comp-filter' => 'OCA\\DAV\\CalDAV\\Search\\Xml\\Filter\\CompFilter' ,
'{http://nextcloud.com/ns}prop-filter' => 'OCA\\DAV\\CalDAV\\Search\\Xml\\Filter\\PropFilter' ,
2017-03-25 13:56:40 +03:00
'{http://nextcloud.com/ns}param-filter' => 'OCA\\DAV\\CalDAV\\Search\\Xml\\Filter\\ParamFilter' ,
2020-10-05 16:12:57 +03:00
'{http://nextcloud.com/ns}search-term' => 'OCA\\DAV\\CalDAV\\Search\\Xml\\Filter\\SearchTermFilter' ,
'{http://nextcloud.com/ns}limit' => 'OCA\\DAV\\CalDAV\\Search\\Xml\\Filter\\LimitFilter' ,
'{http://nextcloud.com/ns}offset' => 'OCA\\DAV\\CalDAV\\Search\\Xml\\Filter\\OffsetFilter' ,
'{DAV:}prop' => 'Sabre\\Xml\\Element\\KeyValue' ,
2017-03-25 13:56:40 +03:00
]);
$newProps = [
2020-10-05 16:12:57 +03:00
'filters' => [],
2017-03-25 13:56:40 +03:00
'properties' => [],
2020-10-05 16:12:57 +03:00
'limit' => null ,
'offset' => null
2017-03-25 13:56:40 +03:00
];
if ( ! is_array ( $elems )) {
$elems = [];
}
foreach ( $elems as $elem ) {
switch ( $elem [ 'name' ]) {
case '{DAV:}prop' :
$newProps [ 'properties' ] = array_keys ( $elem [ 'value' ]);
break ;
case '{' . SearchPlugin :: NS_Nextcloud . '}filter' :
foreach ( $elem [ 'value' ] as $subElem ) {
if ( $subElem [ 'name' ] === '{' . SearchPlugin :: NS_Nextcloud . '}comp-filter' ) {
2017-04-25 17:37:13 +03:00
if ( ! isset ( $newProps [ 'filters' ][ 'comps' ]) || ! is_array ( $newProps [ 'filters' ][ 'comps' ])) {
2017-03-25 13:56:40 +03:00
$newProps [ 'filters' ][ 'comps' ] = [];
}
$newProps [ 'filters' ][ 'comps' ][] = $subElem [ 'value' ];
} elseif ( $subElem [ 'name' ] === '{' . SearchPlugin :: NS_Nextcloud . '}prop-filter' ) {
2017-04-25 17:37:13 +03:00
if ( ! isset ( $newProps [ 'filters' ][ 'props' ]) || ! is_array ( $newProps [ 'filters' ][ 'props' ])) {
2017-03-25 13:56:40 +03:00
$newProps [ 'filters' ][ 'props' ] = [];
}
$newProps [ 'filters' ][ 'props' ][] = $subElem [ 'value' ];
} elseif ( $subElem [ 'name' ] === '{' . SearchPlugin :: NS_Nextcloud . '}param-filter' ) {
2017-04-25 17:37:13 +03:00
if ( ! isset ( $newProps [ 'filters' ][ 'params' ]) || ! is_array ( $newProps [ 'filters' ][ 'params' ])) {
2017-03-25 13:56:40 +03:00
$newProps [ 'filters' ][ 'params' ] = [];
}
$newProps [ 'filters' ][ 'params' ][] = $subElem [ 'value' ];
} elseif ( $subElem [ 'name' ] === '{' . SearchPlugin :: NS_Nextcloud . '}search-term' ) {
$newProps [ 'filters' ][ 'search-term' ] = $subElem [ 'value' ];
}
}
break ;
case '{' . SearchPlugin :: NS_Nextcloud . '}limit' :
$newProps [ 'limit' ] = $elem [ 'value' ];
break ;
case '{' . SearchPlugin :: NS_Nextcloud . '}offset' :
$newProps [ 'offset' ] = $elem [ 'value' ];
break ;
}
}
if ( empty ( $newProps [ 'filters' ])) {
throw new BadRequest ( 'The {' . SearchPlugin :: NS_Nextcloud . '}filter element is required for this request' );
}
2017-04-25 19:20:32 +03:00
$propsOrParamsDefined = ( ! empty ( $newProps [ 'filters' ][ 'props' ]) || ! empty ( $newProps [ 'filters' ][ 'params' ]));
2017-03-25 13:56:40 +03:00
$noCompsDefined = empty ( $newProps [ 'filters' ][ 'comps' ]);
if ( $propsOrParamsDefined && $noCompsDefined ) {
throw new BadRequest ( '{' . SearchPlugin :: NS_Nextcloud . '}prop-filter or {' . SearchPlugin :: NS_Nextcloud . '}param-filter given without any {' . SearchPlugin :: NS_Nextcloud . '}comp-filter' );
}
2017-04-25 17:37:13 +03:00
if ( ! isset ( $newProps [ 'filters' ][ 'search-term' ])) {
throw new BadRequest ( '{' . SearchPlugin :: NS_Nextcloud . '}search-term is required for this request' );
}
2017-04-25 19:20:32 +03:00
if ( empty ( $newProps [ 'filters' ][ 'props' ]) && empty ( $newProps [ 'filters' ][ 'params' ])) {
throw new BadRequest ( 'At least one{' . SearchPlugin :: NS_Nextcloud . '}prop-filter or {' . SearchPlugin :: NS_Nextcloud . '}param-filter is required for this request' );
}
2017-03-25 13:56:40 +03:00
$obj = new self ();
foreach ( $newProps as $key => $value ) {
$obj -> $key = $value ;
}
return $obj ;
}
}