123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594 |
- <?php
- /**
- * SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors
- * SPDX-FileCopyrightText: 2016 ownCloud, Inc.
- * SPDX-License-Identifier: AGPL-3.0-only
- */
- namespace OCA\DAV\CalDAV;
- use DateTime;
- use DateTimeImmutable;
- use DateTimeInterface;
- use OCA\DAV\AppInfo\Application;
- use OCA\DAV\CalDAV\Sharing\Backend;
- use OCA\DAV\Connector\Sabre\Principal;
- use OCA\DAV\DAV\Sharing\IShareable;
- use OCA\DAV\Events\CachedCalendarObjectCreatedEvent;
- use OCA\DAV\Events\CachedCalendarObjectDeletedEvent;
- use OCA\DAV\Events\CachedCalendarObjectUpdatedEvent;
- use OCA\DAV\Events\CalendarCreatedEvent;
- use OCA\DAV\Events\CalendarDeletedEvent;
- use OCA\DAV\Events\CalendarMovedToTrashEvent;
- use OCA\DAV\Events\CalendarObjectCreatedEvent;
- use OCA\DAV\Events\CalendarObjectDeletedEvent;
- use OCA\DAV\Events\CalendarObjectMovedEvent;
- use OCA\DAV\Events\CalendarObjectMovedToTrashEvent;
- use OCA\DAV\Events\CalendarObjectRestoredEvent;
- use OCA\DAV\Events\CalendarObjectUpdatedEvent;
- use OCA\DAV\Events\CalendarPublishedEvent;
- use OCA\DAV\Events\CalendarRestoredEvent;
- use OCA\DAV\Events\CalendarShareUpdatedEvent;
- use OCA\DAV\Events\CalendarUnpublishedEvent;
- use OCA\DAV\Events\CalendarUpdatedEvent;
- use OCA\DAV\Events\SubscriptionCreatedEvent;
- use OCA\DAV\Events\SubscriptionDeletedEvent;
- use OCA\DAV\Events\SubscriptionUpdatedEvent;
- use OCP\AppFramework\Db\TTransactional;
- use OCP\Calendar\Exceptions\CalendarException;
- use OCP\DB\Exception;
- use OCP\DB\QueryBuilder\IQueryBuilder;
- use OCP\EventDispatcher\IEventDispatcher;
- use OCP\IConfig;
- use OCP\IDBConnection;
- use OCP\IUserManager;
- use OCP\Security\ISecureRandom;
- use Psr\Log\LoggerInterface;
- use RuntimeException;
- use Sabre\CalDAV\Backend\AbstractBackend;
- use Sabre\CalDAV\Backend\SchedulingSupport;
- use Sabre\CalDAV\Backend\SubscriptionSupport;
- use Sabre\CalDAV\Backend\SyncSupport;
- use Sabre\CalDAV\Xml\Property\ScheduleCalendarTransp;
- use Sabre\CalDAV\Xml\Property\SupportedCalendarComponentSet;
- use Sabre\DAV;
- use Sabre\DAV\Exception\BadRequest;
- use Sabre\DAV\Exception\Forbidden;
- use Sabre\DAV\Exception\NotFound;
- use Sabre\DAV\PropPatch;
- use Sabre\Uri;
- use Sabre\VObject\Component;
- use Sabre\VObject\Component\VCalendar;
- use Sabre\VObject\Component\VTimeZone;
- use Sabre\VObject\DateTimeParser;
- use Sabre\VObject\InvalidDataException;
- use Sabre\VObject\ParseException;
- use Sabre\VObject\Property;
- use Sabre\VObject\Reader;
- use Sabre\VObject\Recur\EventIterator;
- use Sabre\VObject\Recur\MaxInstancesExceededException;
- use Sabre\VObject\Recur\NoInstancesException;
- use function array_column;
- use function array_map;
- use function array_merge;
- use function array_values;
- use function explode;
- use function is_array;
- use function is_resource;
- use function pathinfo;
- use function rewind;
- use function settype;
- use function sprintf;
- use function str_replace;
- use function strtolower;
- use function time;
- /**
- * Class CalDavBackend
- *
- * Code is heavily inspired by https://github.com/fruux/sabre-dav/blob/master/lib/CalDAV/Backend/PDO.php
- *
- * @package OCA\DAV\CalDAV
- */
- class CalDavBackend extends AbstractBackend implements SyncSupport, SubscriptionSupport, SchedulingSupport {
- use TTransactional;
- public const CALENDAR_TYPE_CALENDAR = 0;
- public const CALENDAR_TYPE_SUBSCRIPTION = 1;
- public const PERSONAL_CALENDAR_URI = 'personal';
- public const PERSONAL_CALENDAR_NAME = 'Personal';
- public const RESOURCE_BOOKING_CALENDAR_URI = 'calendar';
- public const RESOURCE_BOOKING_CALENDAR_NAME = 'Calendar';
- /**
- * We need to specify a max date, because we need to stop *somewhere*
- *
- * On 32 bit system the maximum for a signed integer is 2147483647, so
- * MAX_DATE cannot be higher than date('Y-m-d', 2147483647) which results
- * in 2038-01-19 to avoid problems when the date is converted
- * to a unix timestamp.
- */
- public const MAX_DATE = '2038-01-01';
- public const ACCESS_PUBLIC = 4;
- public const CLASSIFICATION_PUBLIC = 0;
- public const CLASSIFICATION_PRIVATE = 1;
- public const CLASSIFICATION_CONFIDENTIAL = 2;
- /**
- * List of CalDAV properties, and how they map to database field names and their type
- * Add your own properties by simply adding on to this array.
- *
- * @var array
- * @psalm-var array<string, string[]>
- */
- public array $propertyMap = [
- '{DAV:}displayname' => ['displayname', 'string'],
- '{urn:ietf:params:xml:ns:caldav}calendar-description' => ['description', 'string'],
- '{urn:ietf:params:xml:ns:caldav}calendar-timezone' => ['timezone', 'string'],
- '{http://apple.com/ns/ical/}calendar-order' => ['calendarorder', 'int'],
- '{http://apple.com/ns/ical/}calendar-color' => ['calendarcolor', 'string'],
- '{' . \OCA\DAV\DAV\Sharing\Plugin::NS_NEXTCLOUD . '}deleted-at' => ['deleted_at', 'int'],
- ];
- /**
- * List of subscription properties, and how they map to database field names.
- *
- * @var array
- */
- public array $subscriptionPropertyMap = [
- '{DAV:}displayname' => ['displayname', 'string'],
- '{http://apple.com/ns/ical/}refreshrate' => ['refreshrate', 'string'],
- '{http://apple.com/ns/ical/}calendar-order' => ['calendarorder', 'int'],
- '{http://apple.com/ns/ical/}calendar-color' => ['calendarcolor', 'string'],
- '{http://calendarserver.org/ns/}subscribed-strip-todos' => ['striptodos', 'bool'],
- '{http://calendarserver.org/ns/}subscribed-strip-alarms' => ['stripalarms', 'string'],
- '{http://calendarserver.org/ns/}subscribed-strip-attachments' => ['stripattachments', 'string'],
- ];
- /**
- * properties to index
- *
- * This list has to be kept in sync with ICalendarQuery::SEARCH_PROPERTY_*
- *
- * @see \OCP\Calendar\ICalendarQuery
- */
- private const INDEXED_PROPERTIES = [
- 'CATEGORIES',
- 'COMMENT',
- 'DESCRIPTION',
- 'LOCATION',
- 'RESOURCES',
- 'STATUS',
- 'SUMMARY',
- 'ATTENDEE',
- 'CONTACT',
- 'ORGANIZER'
- ];
- /** @var array parameters to index */
- public static array $indexParameters = [
- 'ATTENDEE' => ['CN'],
- 'ORGANIZER' => ['CN'],
- ];
- /**
- * @var string[] Map of uid => display name
- */
- protected array $userDisplayNames;
- private string $dbObjectsTable = 'calendarobjects';
- private string $dbObjectPropertiesTable = 'calendarobjects_props';
- private string $dbObjectInvitationsTable = 'calendar_invitations';
- private array $cachedObjects = [];
- public function __construct(
- private IDBConnection $db,
- private Principal $principalBackend,
- private IUserManager $userManager,
- private ISecureRandom $random,
- private LoggerInterface $logger,
- private IEventDispatcher $dispatcher,
- private IConfig $config,
- private Sharing\Backend $calendarSharingBackend,
- private bool $legacyEndpoint = false,
- ) {
- }
- /**
- * Return the number of calendars for a principal
- *
- * By default this excludes the automatically generated birthday calendar
- *
- * @param $principalUri
- * @param bool $excludeBirthday
- * @return int
- */
- public function getCalendarsForUserCount($principalUri, $excludeBirthday = true) {
- $principalUri = $this->convertPrincipal($principalUri, true);
- $query = $this->db->getQueryBuilder();
- $query->select($query->func()->count('*'))
- ->from('calendars');
- if ($principalUri === '') {
- $query->where($query->expr()->emptyString('principaluri'));
- } else {
- $query->where($query->expr()->eq('principaluri', $query->createNamedParameter($principalUri)));
- }
- if ($excludeBirthday) {
- $query->andWhere($query->expr()->neq('uri', $query->createNamedParameter(BirthdayService::BIRTHDAY_CALENDAR_URI)));
- }
- $result = $query->executeQuery();
- $column = (int)$result->fetchOne();
- $result->closeCursor();
- return $column;
- }
- /**
- * Return the number of subscriptions for a principal
- */
- public function getSubscriptionsForUserCount(string $principalUri): int {
- $principalUri = $this->convertPrincipal($principalUri, true);
- $query = $this->db->getQueryBuilder();
- $query->select($query->func()->count('*'))
- ->from('calendarsubscriptions');
- if ($principalUri === '') {
- $query->where($query->expr()->emptyString('principaluri'));
- } else {
- $query->where($query->expr()->eq('principaluri', $query->createNamedParameter($principalUri)));
- }
- $result = $query->executeQuery();
- $column = (int)$result->fetchOne();
- $result->closeCursor();
- return $column;
- }
- /**
- * @return array{id: int, deleted_at: int}[]
- */
- public function getDeletedCalendars(int $deletedBefore): array {
- $qb = $this->db->getQueryBuilder();
- $qb->select(['id', 'deleted_at'])
- ->from('calendars')
- ->where($qb->expr()->isNotNull('deleted_at'))
- ->andWhere($qb->expr()->lt('deleted_at', $qb->createNamedParameter($deletedBefore)));
- $result = $qb->executeQuery();
- $calendars = [];
- while (($row = $result->fetch()) !== false) {
- $calendars[] = [
- 'id' => (int)$row['id'],
- 'deleted_at' => (int)$row['deleted_at'],
- ];
- }
- $result->closeCursor();
- return $calendars;
- }
- /**
- * Returns a list of calendars for a principal.
- *
- * Every project is an array with the following keys:
- * * id, a unique id that will be used by other functions to modify the
- * calendar. This can be the same as the uri or a database key.
- * * uri, which the basename of the uri with which the calendar is
- * accessed.
- * * principaluri. The owner of the calendar. Almost always the same as
- * principalUri passed to this method.
- *
- * Furthermore it can contain webdav properties in clark notation. A very
- * common one is '{DAV:}displayname'.
- *
- * Many clients also require:
- * {urn:ietf:params:xml:ns:caldav}supported-calendar-component-set
- * For this property, you can just return an instance of
- * Sabre\CalDAV\Property\SupportedCalendarComponentSet.
- *
- * If you return {http://sabredav.org/ns}read-only and set the value to 1,
- * ACL will automatically be put in read-only mode.
- *
- * @param string $principalUri
- * @return array
- */
- public function getCalendarsForUser($principalUri) {
- return $this->atomic(function () use ($principalUri) {
- $principalUriOriginal = $principalUri;
- $principalUri = $this->convertPrincipal($principalUri, true);
- $fields = array_column($this->propertyMap, 0);
- $fields[] = 'id';
- $fields[] = 'uri';
- $fields[] = 'synctoken';
- $fields[] = 'components';
- $fields[] = 'principaluri';
- $fields[] = 'transparent';
- // Making fields a comma-delimited list
- $query = $this->db->getQueryBuilder();
- $query->select($fields)
- ->from('calendars')
- ->orderBy('calendarorder', 'ASC');
- if ($principalUri === '') {
- $query->where($query->expr()->emptyString('principaluri'));
- } else {
- $query->where($query->expr()->eq('principaluri', $query->createNamedParameter($principalUri)));
- }
- $result = $query->executeQuery();
- $calendars = [];
- while ($row = $result->fetch()) {
- $row['principaluri'] = (string)$row['principaluri'];
- $components = [];
- if ($row['components']) {
- $components = explode(',', $row['components']);
- }
- $calendar = [
- 'id' => $row['id'],
- 'uri' => $row['uri'],
- 'principaluri' => $this->convertPrincipal($row['principaluri'], !$this->legacyEndpoint),
- '{' . Plugin::NS_CALENDARSERVER . '}getctag' => 'http://sabre.io/ns/sync/' . ($row['synctoken'] ?: '0'),
- '{http://sabredav.org/ns}sync-token' => $row['synctoken'] ?: '0',
- '{' . Plugin::NS_CALDAV . '}supported-calendar-component-set' => new SupportedCalendarComponentSet($components),
- '{' . Plugin::NS_CALDAV . '}schedule-calendar-transp' => new ScheduleCalendarTransp($row['transparent']?'transparent':'opaque'),
- '{' . \OCA\DAV\DAV\Sharing\Plugin::NS_OWNCLOUD . '}owner-principal' => $this->convertPrincipal($principalUri, !$this->legacyEndpoint),
- ];
- $calendar = $this->rowToCalendar($row, $calendar);
- $calendar = $this->addOwnerPrincipalToCalendar($calendar);
- $calendar = $this->addResourceTypeToCalendar($row, $calendar);
- if (!isset($calendars[$calendar['id']])) {
- $calendars[$calendar['id']] = $calendar;
- }
- }
- $result->closeCursor();
- // query for shared calendars
- $principals = $this->principalBackend->getGroupMembership($principalUriOriginal, true);
- $principals = array_merge($principals, $this->principalBackend->getCircleMembership($principalUriOriginal));
- $principals[] = $principalUri;
- $fields = array_column($this->propertyMap, 0);
- $fields = array_map(function (string $field) {
- return 'a.' . $field;
- }, $fields);
- $fields[] = 'a.id';
- $fields[] = 'a.uri';
- $fields[] = 'a.synctoken';
- $fields[] = 'a.components';
- $fields[] = 'a.principaluri';
- $fields[] = 'a.transparent';
- $fields[] = 's.access';
- $select = $this->db->getQueryBuilder();
- $subSelect = $this->db->getQueryBuilder();
- $subSelect->select('resourceid')
- ->from('dav_shares', 'd')
- ->where($subSelect->expr()->eq('d.access', $select->createNamedParameter(Backend::ACCESS_UNSHARED, IQueryBuilder::PARAM_INT), IQueryBuilder::PARAM_INT))
- ->andWhere($subSelect->expr()->in('d.principaluri', $select->createNamedParameter($principals, IQueryBuilder::PARAM_STR_ARRAY), IQueryBuilder::PARAM_STR_ARRAY));
- $select->select($fields)
- ->from('dav_shares', 's')
- ->join('s', 'calendars', 'a', $select->expr()->eq('s.resourceid', 'a.id', IQueryBuilder::PARAM_INT))
- ->where($select->expr()->in('s.principaluri', $select->createNamedParameter($principals, IQueryBuilder::PARAM_STR_ARRAY), IQueryBuilder::PARAM_STR_ARRAY))
- ->andWhere($select->expr()->eq('s.type', $select->createNamedParameter('calendar', IQueryBuilder::PARAM_STR), IQueryBuilder::PARAM_STR))
- ->andWhere($select->expr()->notIn('a.id', $select->createFunction($subSelect->getSQL()), IQueryBuilder::PARAM_INT_ARRAY));
- $results = $select->executeQuery();
- $readOnlyPropertyName = '{' . \OCA\DAV\DAV\Sharing\Plugin::NS_OWNCLOUD . '}read-only';
- while ($row = $results->fetch()) {
- $row['principaluri'] = (string)$row['principaluri'];
- if ($row['principaluri'] === $principalUri) {
- continue;
- }
- $readOnly = (int)$row['access'] === Backend::ACCESS_READ;
- if (isset($calendars[$row['id']])) {
- if ($readOnly) {
- // New share can not have more permissions than the old one.
- continue;
- }
- if (isset($calendars[$row['id']][$readOnlyPropertyName]) &&
- $calendars[$row['id']][$readOnlyPropertyName] === 0) {
- // Old share is already read-write, no more permissions can be gained
- continue;
- }
- }
- [, $name] = Uri\split($row['principaluri']);
- $uri = $row['uri'] . '_shared_by_' . $name;
- $row['displayname'] = $row['displayname'] . ' (' . ($this->userManager->getDisplayName($name) ?? ($name ?? '')) . ')';
- $components = [];
- if ($row['components']) {
- $components = explode(',', $row['components']);
- }
- $calendar = [
- 'id' => $row['id'],
- 'uri' => $uri,
- 'principaluri' => $this->convertPrincipal($principalUri, !$this->legacyEndpoint),
- '{' . Plugin::NS_CALENDARSERVER . '}getctag' => 'http://sabre.io/ns/sync/' . ($row['synctoken'] ?: '0'),
- '{http://sabredav.org/ns}sync-token' => $row['synctoken'] ?: '0',
- '{' . Plugin::NS_CALDAV . '}supported-calendar-component-set' => new SupportedCalendarComponentSet($components),
- '{' . Plugin::NS_CALDAV . '}schedule-calendar-transp' => new ScheduleCalendarTransp('transparent'),
- '{' . \OCA\DAV\DAV\Sharing\Plugin::NS_OWNCLOUD . '}owner-principal' => $this->convertPrincipal($row['principaluri'], !$this->legacyEndpoint),
- $readOnlyPropertyName => $readOnly,
- ];
- $calendar = $this->rowToCalendar($row, $calendar);
- $calendar = $this->addOwnerPrincipalToCalendar($calendar);
- $calendar = $this->addResourceTypeToCalendar($row, $calendar);
- $calendars[$calendar['id']] = $calendar;
- }
- $result->closeCursor();
- return array_values($calendars);
- }, $this->db);
- }
- /**
- * @param $principalUri
- * @return array
- */
- public function getUsersOwnCalendars($principalUri) {
- $principalUri = $this->convertPrincipal($principalUri, true);
- $fields = array_column($this->propertyMap, 0);
- $fields[] = 'id';
- $fields[] = 'uri';
- $fields[] = 'synctoken';
- $fields[] = 'components';
- $fields[] = 'principaluri';
- $fields[] = 'transparent';
- // Making fields a comma-delimited list
- $query = $this->db->getQueryBuilder();
- $query->select($fields)->from('calendars')
- ->where($query->expr()->eq('principaluri', $query->createNamedParameter($principalUri)))
- ->orderBy('calendarorder', 'ASC');
- $stmt = $query->executeQuery();
- $calendars = [];
- while ($row = $stmt->fetch()) {
- $row['principaluri'] = (string)$row['principaluri'];
- $components = [];
- if ($row['components']) {
- $components = explode(',', $row['components']);
- }
- $calendar = [
- 'id' => $row['id'],
- 'uri' => $row['uri'],
- 'principaluri' => $this->convertPrincipal($row['principaluri'], !$this->legacyEndpoint),
- '{' . Plugin::NS_CALENDARSERVER . '}getctag' => 'http://sabre.io/ns/sync/' . ($row['synctoken'] ?: '0'),
- '{http://sabredav.org/ns}sync-token' => $row['synctoken'] ?: '0',
- '{' . Plugin::NS_CALDAV . '}supported-calendar-component-set' => new SupportedCalendarComponentSet($components),
- '{' . Plugin::NS_CALDAV . '}schedule-calendar-transp' => new ScheduleCalendarTransp($row['transparent']?'transparent':'opaque'),
- ];
- $calendar = $this->rowToCalendar($row, $calendar);
- $calendar = $this->addOwnerPrincipalToCalendar($calendar);
- $calendar = $this->addResourceTypeToCalendar($row, $calendar);
- if (!isset($calendars[$calendar['id']])) {
- $calendars[$calendar['id']] = $calendar;
- }
- }
- $stmt->closeCursor();
- return array_values($calendars);
- }
- /**
- * @return array
- */
- public function getPublicCalendars() {
- $fields = array_column($this->propertyMap, 0);
- $fields[] = 'a.id';
- $fields[] = 'a.uri';
- $fields[] = 'a.synctoken';
- $fields[] = 'a.components';
- $fields[] = 'a.principaluri';
- $fields[] = 'a.transparent';
- $fields[] = 's.access';
- $fields[] = 's.publicuri';
- $calendars = [];
- $query = $this->db->getQueryBuilder();
- $result = $query->select($fields)
- ->from('dav_shares', 's')
- ->join('s', 'calendars', 'a', $query->expr()->eq('s.resourceid', 'a.id'))
- ->where($query->expr()->in('s.access', $query->createNamedParameter(self::ACCESS_PUBLIC)))
- ->andWhere($query->expr()->eq('s.type', $query->createNamedParameter('calendar')))
- ->executeQuery();
- while ($row = $result->fetch()) {
- $row['principaluri'] = (string)$row['principaluri'];
- [, $name] = Uri\split($row['principaluri']);
- $row['displayname'] = $row['displayname'] . "($name)";
- $components = [];
- if ($row['components']) {
- $components = explode(',', $row['components']);
- }
- $calendar = [
- 'id' => $row['id'],
- 'uri' => $row['publicuri'],
- 'principaluri' => $this->convertPrincipal($row['principaluri'], !$this->legacyEndpoint),
- '{' . Plugin::NS_CALENDARSERVER . '}getctag' => 'http://sabre.io/ns/sync/' . ($row['synctoken'] ?: '0'),
- '{http://sabredav.org/ns}sync-token' => $row['synctoken'] ?: '0',
- '{' . Plugin::NS_CALDAV . '}supported-calendar-component-set' => new SupportedCalendarComponentSet($components),
- '{' . Plugin::NS_CALDAV . '}schedule-calendar-transp' => new ScheduleCalendarTransp($row['transparent']?'transparent':'opaque'),
- '{' . \OCA\DAV\DAV\Sharing\Plugin::NS_OWNCLOUD . '}owner-principal' => $this->convertPrincipal($row['principaluri'], $this->legacyEndpoint),
- '{' . \OCA\DAV\DAV\Sharing\Plugin::NS_OWNCLOUD . '}read-only' => (int)$row['access'] === Backend::ACCESS_READ,
- '{' . \OCA\DAV\DAV\Sharing\Plugin::NS_OWNCLOUD . '}public' => (int)$row['access'] === self::ACCESS_PUBLIC,
- ];
- $calendar = $this->rowToCalendar($row, $calendar);
- $calendar = $this->addOwnerPrincipalToCalendar($calendar);
- $calendar = $this->addResourceTypeToCalendar($row, $calendar);
- if (!isset($calendars[$calendar['id']])) {
- $calendars[$calendar['id']] = $calendar;
- }
- }
- $result->closeCursor();
- return array_values($calendars);
- }
- /**
- * @param string $uri
- * @return array
- * @throws NotFound
- */
- public function getPublicCalendar($uri) {
- $fields = array_column($this->propertyMap, 0);
- $fields[] = 'a.id';
- $fields[] = 'a.uri';
- $fields[] = 'a.synctoken';
- $fields[] = 'a.components';
- $fields[] = 'a.principaluri';
- $fields[] = 'a.transparent';
- $fields[] = 's.access';
- $fields[] = 's.publicuri';
- $query = $this->db->getQueryBuilder();
- $result = $query->select($fields)
- ->from('dav_shares', 's')
- ->join('s', 'calendars', 'a', $query->expr()->eq('s.resourceid', 'a.id'))
- ->where($query->expr()->in('s.access', $query->createNamedParameter(self::ACCESS_PUBLIC)))
- ->andWhere($query->expr()->eq('s.type', $query->createNamedParameter('calendar')))
- ->andWhere($query->expr()->eq('s.publicuri', $query->createNamedParameter($uri)))
- ->executeQuery();
- $row = $result->fetch();
- $result->closeCursor();
- if ($row === false) {
- throw new NotFound('Node with name \'' . $uri . '\' could not be found');
- }
- $row['principaluri'] = (string)$row['principaluri'];
- [, $name] = Uri\split($row['principaluri']);
- $row['displayname'] = $row['displayname'] . ' ' . "($name)";
- $components = [];
- if ($row['components']) {
- $components = explode(',', $row['components']);
- }
- $calendar = [
- 'id' => $row['id'],
- 'uri' => $row['publicuri'],
- 'principaluri' => $this->convertPrincipal($row['principaluri'], !$this->legacyEndpoint),
- '{' . Plugin::NS_CALENDARSERVER . '}getctag' => 'http://sabre.io/ns/sync/' . ($row['synctoken'] ?: '0'),
- '{http://sabredav.org/ns}sync-token' => $row['synctoken'] ?: '0',
- '{' . Plugin::NS_CALDAV . '}supported-calendar-component-set' => new SupportedCalendarComponentSet($components),
- '{' . Plugin::NS_CALDAV . '}schedule-calendar-transp' => new ScheduleCalendarTransp($row['transparent']?'transparent':'opaque'),
- '{' . \OCA\DAV\DAV\Sharing\Plugin::NS_OWNCLOUD . '}owner-principal' => $this->convertPrincipal($row['principaluri'], !$this->legacyEndpoint),
- '{' . \OCA\DAV\DAV\Sharing\Plugin::NS_OWNCLOUD . '}read-only' => (int)$row['access'] === Backend::ACCESS_READ,
- '{' . \OCA\DAV\DAV\Sharing\Plugin::NS_OWNCLOUD . '}public' => (int)$row['access'] === self::ACCESS_PUBLIC,
- ];
- $calendar = $this->rowToCalendar($row, $calendar);
- $calendar = $this->addOwnerPrincipalToCalendar($calendar);
- $calendar = $this->addResourceTypeToCalendar($row, $calendar);
- return $calendar;
- }
- /**
- * @param string $principal
- * @param string $uri
- * @return array|null
- */
- public function getCalendarByUri($principal, $uri) {
- $fields = array_column($this->propertyMap, 0);
- $fields[] = 'id';
- $fields[] = 'uri';
- $fields[] = 'synctoken';
- $fields[] = 'components';
- $fields[] = 'principaluri';
- $fields[] = 'transparent';
- // Making fields a comma-delimited list
- $query = $this->db->getQueryBuilder();
- $query->select($fields)->from('calendars')
- ->where($query->expr()->eq('uri', $query->createNamedParameter($uri)))
- ->andWhere($query->expr()->eq('principaluri', $query->createNamedParameter($principal)))
- ->setMaxResults(1);
- $stmt = $query->executeQuery();
- $row = $stmt->fetch();
- $stmt->closeCursor();
- if ($row === false) {
- return null;
- }
- $row['principaluri'] = (string)$row['principaluri'];
- $components = [];
- if ($row['components']) {
- $components = explode(',', $row['components']);
- }
- $calendar = [
- 'id' => $row['id'],
- 'uri' => $row['uri'],
- 'principaluri' => $this->convertPrincipal($row['principaluri'], !$this->legacyEndpoint),
- '{' . Plugin::NS_CALENDARSERVER . '}getctag' => 'http://sabre.io/ns/sync/' . ($row['synctoken'] ?: '0'),
- '{http://sabredav.org/ns}sync-token' => $row['synctoken'] ?: '0',
- '{' . Plugin::NS_CALDAV . '}supported-calendar-component-set' => new SupportedCalendarComponentSet($components),
- '{' . Plugin::NS_CALDAV . '}schedule-calendar-transp' => new ScheduleCalendarTransp($row['transparent']?'transparent':'opaque'),
- ];
- $calendar = $this->rowToCalendar($row, $calendar);
- $calendar = $this->addOwnerPrincipalToCalendar($calendar);
- $calendar = $this->addResourceTypeToCalendar($row, $calendar);
- return $calendar;
- }
- /**
- * @return array{id: int, uri: string, '{http://calendarserver.org/ns/}getctag': string, '{http://sabredav.org/ns}sync-token': int, '{urn:ietf:params:xml:ns:caldav}supported-calendar-component-set': SupportedCalendarComponentSet, '{urn:ietf:params:xml:ns:caldav}schedule-calendar-transp': ScheduleCalendarTransp, '{urn:ietf:params:xml:ns:caldav}calendar-timezone': ?string }|null
- */
- public function getCalendarById(int $calendarId): ?array {
- $fields = array_column($this->propertyMap, 0);
- $fields[] = 'id';
- $fields[] = 'uri';
- $fields[] = 'synctoken';
- $fields[] = 'components';
- $fields[] = 'principaluri';
- $fields[] = 'transparent';
- // Making fields a comma-delimited list
- $query = $this->db->getQueryBuilder();
- $query->select($fields)->from('calendars')
- ->where($query->expr()->eq('id', $query->createNamedParameter($calendarId)))
- ->setMaxResults(1);
- $stmt = $query->executeQuery();
- $row = $stmt->fetch();
- $stmt->closeCursor();
- if ($row === false) {
- return null;
- }
- $row['principaluri'] = (string)$row['principaluri'];
- $components = [];
- if ($row['components']) {
- $components = explode(',', $row['components']);
- }
- $calendar = [
- 'id' => $row['id'],
- 'uri' => $row['uri'],
- 'principaluri' => $this->convertPrincipal($row['principaluri'], !$this->legacyEndpoint),
- '{' . Plugin::NS_CALENDARSERVER . '}getctag' => 'http://sabre.io/ns/sync/' . ($row['synctoken'] ?: '0'),
- '{http://sabredav.org/ns}sync-token' => $row['synctoken'] ?? 0,
- '{' . Plugin::NS_CALDAV . '}supported-calendar-component-set' => new SupportedCalendarComponentSet($components),
- '{' . Plugin::NS_CALDAV . '}schedule-calendar-transp' => new ScheduleCalendarTransp($row['transparent']?'transparent':'opaque'),
- ];
- $calendar = $this->rowToCalendar($row, $calendar);
- $calendar = $this->addOwnerPrincipalToCalendar($calendar);
- $calendar = $this->addResourceTypeToCalendar($row, $calendar);
- return $calendar;
- }
- /**
- * @param $subscriptionId
- */
- public function getSubscriptionById($subscriptionId) {
- $fields = array_column($this->subscriptionPropertyMap, 0);
- $fields[] = 'id';
- $fields[] = 'uri';
- $fields[] = 'source';
- $fields[] = 'synctoken';
- $fields[] = 'principaluri';
- $fields[] = 'lastmodified';
- $query = $this->db->getQueryBuilder();
- $query->select($fields)
- ->from('calendarsubscriptions')
- ->where($query->expr()->eq('id', $query->createNamedParameter($subscriptionId)))
- ->orderBy('calendarorder', 'asc');
- $stmt = $query->executeQuery();
- $row = $stmt->fetch();
- $stmt->closeCursor();
- if ($row === false) {
- return null;
- }
- $row['principaluri'] = (string)$row['principaluri'];
- $subscription = [
- 'id' => $row['id'],
- 'uri' => $row['uri'],
- 'principaluri' => $row['principaluri'],
- 'source' => $row['source'],
- 'lastmodified' => $row['lastmodified'],
- '{' . Plugin::NS_CALDAV . '}supported-calendar-component-set' => new SupportedCalendarComponentSet(['VTODO', 'VEVENT']),
- '{http://sabredav.org/ns}sync-token' => $row['synctoken'] ?: '0',
- ];
- return $this->rowToSubscription($row, $subscription);
- }
- /**
- * Creates a new calendar for a principal.
- *
- * If the creation was a success, an id must be returned that can be used to reference
- * this calendar in other methods, such as updateCalendar.
- *
- * @param string $principalUri
- * @param string $calendarUri
- * @param array $properties
- * @return int
- *
- * @throws CalendarException
- */
- public function createCalendar($principalUri, $calendarUri, array $properties) {
- if (strlen($calendarUri) > 255) {
- throw new CalendarException('URI too long. Calendar not created');
- }
- $values = [
- 'principaluri' => $this->convertPrincipal($principalUri, true),
- 'uri' => $calendarUri,
- 'synctoken' => 1,
- 'transparent' => 0,
- 'components' => 'VEVENT,VTODO,VJOURNAL',
- 'displayname' => $calendarUri
- ];
- // Default value
- $sccs = '{urn:ietf:params:xml:ns:caldav}supported-calendar-component-set';
- if (isset($properties[$sccs])) {
- if (!($properties[$sccs] instanceof SupportedCalendarComponentSet)) {
- throw new DAV\Exception('The ' . $sccs . ' property must be of type: \Sabre\CalDAV\Property\SupportedCalendarComponentSet');
- }
- $values['components'] = implode(',', $properties[$sccs]->getValue());
- } elseif (isset($properties['components'])) {
- // Allow to provide components internally without having
- // to create a SupportedCalendarComponentSet object
- $values['components'] = $properties['components'];
- }
- $transp = '{' . Plugin::NS_CALDAV . '}schedule-calendar-transp';
- if (isset($properties[$transp])) {
- $values['transparent'] = (int)($properties[$transp]->getValue() === 'transparent');
- }
- foreach ($this->propertyMap as $xmlName => [$dbName, $type]) {
- if (isset($properties[$xmlName])) {
- $values[$dbName] = $properties[$xmlName];
- }
- }
- [$calendarId, $calendarData] = $this->atomic(function () use ($values) {
- $query = $this->db->getQueryBuilder();
- $query->insert('calendars');
- foreach ($values as $column => $value) {
- $query->setValue($column, $query->createNamedParameter($value));
- }
- $query->executeStatement();
- $calendarId = $query->getLastInsertId();
- $calendarData = $this->getCalendarById($calendarId);
- return [$calendarId, $calendarData];
- }, $this->db);
- $this->dispatcher->dispatchTyped(new CalendarCreatedEvent((int)$calendarId, $calendarData));
- return $calendarId;
- }
- /**
- * Updates properties for a calendar.
- *
- * The list of mutations is stored in a Sabre\DAV\PropPatch object.
- * To do the actual updates, you must tell this object which properties
- * you're going to process with the handle() method.
- *
- * Calling the handle method is like telling the PropPatch object "I
- * promise I can handle updating this property".
- *
- * Read the PropPatch documentation for more info and examples.
- *
- * @param mixed $calendarId
- * @param PropPatch $propPatch
- * @return void
- */
- public function updateCalendar($calendarId, PropPatch $propPatch) {
- $supportedProperties = array_keys($this->propertyMap);
- $supportedProperties[] = '{' . Plugin::NS_CALDAV . '}schedule-calendar-transp';
- $propPatch->handle($supportedProperties, function ($mutations) use ($calendarId) {
- $newValues = [];
- foreach ($mutations as $propertyName => $propertyValue) {
- switch ($propertyName) {
- case '{' . Plugin::NS_CALDAV . '}schedule-calendar-transp':
- $fieldName = 'transparent';
- $newValues[$fieldName] = (int)($propertyValue->getValue() === 'transparent');
- break;
- default:
- $fieldName = $this->propertyMap[$propertyName][0];
- $newValues[$fieldName] = $propertyValue;
- break;
- }
- }
- [$calendarData, $shares] = $this->atomic(function () use ($calendarId, $newValues) {
- $query = $this->db->getQueryBuilder();
- $query->update('calendars');
- foreach ($newValues as $fieldName => $value) {
- $query->set($fieldName, $query->createNamedParameter($value));
- }
- $query->where($query->expr()->eq('id', $query->createNamedParameter($calendarId)));
- $query->executeStatement();
- $this->addChanges($calendarId, [''], 2);
- $calendarData = $this->getCalendarById($calendarId);
- $shares = $this->getShares($calendarId);
- return [$calendarData, $shares];
- }, $this->db);
- $this->dispatcher->dispatchTyped(new CalendarUpdatedEvent($calendarId, $calendarData, $shares, $mutations));
- return true;
- });
- }
- /**
- * Delete a calendar and all it's objects
- *
- * @param mixed $calendarId
- * @return void
- */
- public function deleteCalendar($calendarId, bool $forceDeletePermanently = false) {
- $this->atomic(function () use ($calendarId, $forceDeletePermanently): void {
- // The calendar is deleted right away if this is either enforced by the caller
- // or the special contacts birthday calendar or when the preference of an empty
- // retention (0 seconds) is set, which signals a disabled trashbin.
- $calendarData = $this->getCalendarById($calendarId);
- $isBirthdayCalendar = isset($calendarData['uri']) && $calendarData['uri'] === BirthdayService::BIRTHDAY_CALENDAR_URI;
- $trashbinDisabled = $this->config->getAppValue(Application::APP_ID, RetentionService::RETENTION_CONFIG_KEY) === '0';
- if ($forceDeletePermanently || $isBirthdayCalendar || $trashbinDisabled) {
- $calendarData = $this->getCalendarById($calendarId);
- $shares = $this->getShares($calendarId);
- $this->purgeCalendarInvitations($calendarId);
- $qbDeleteCalendarObjectProps = $this->db->getQueryBuilder();
- $qbDeleteCalendarObjectProps->delete($this->dbObjectPropertiesTable)
- ->where($qbDeleteCalendarObjectProps->expr()->eq('calendarid', $qbDeleteCalendarObjectProps->createNamedParameter($calendarId)))
- ->andWhere($qbDeleteCalendarObjectProps->expr()->eq('calendartype', $qbDeleteCalendarObjectProps->createNamedParameter(self::CALENDAR_TYPE_CALENDAR)))
- ->executeStatement();
- $qbDeleteCalendarObjects = $this->db->getQueryBuilder();
- $qbDeleteCalendarObjects->delete('calendarobjects')
- ->where($qbDeleteCalendarObjects->expr()->eq('calendarid', $qbDeleteCalendarObjects->createNamedParameter($calendarId)))
- ->andWhere($qbDeleteCalendarObjects->expr()->eq('calendartype', $qbDeleteCalendarObjects->createNamedParameter(self::CALENDAR_TYPE_CALENDAR)))
- ->executeStatement();
- $qbDeleteCalendarChanges = $this->db->getQueryBuilder();
- $qbDeleteCalendarChanges->delete('calendarchanges')
- ->where($qbDeleteCalendarChanges->expr()->eq('calendarid', $qbDeleteCalendarChanges->createNamedParameter($calendarId)))
- ->andWhere($qbDeleteCalendarChanges->expr()->eq('calendartype', $qbDeleteCalendarChanges->createNamedParameter(self::CALENDAR_TYPE_CALENDAR)))
- ->executeStatement();
- $this->calendarSharingBackend->deleteAllShares($calendarId);
- $qbDeleteCalendar = $this->db->getQueryBuilder();
- $qbDeleteCalendar->delete('calendars')
- ->where($qbDeleteCalendar->expr()->eq('id', $qbDeleteCalendar->createNamedParameter($calendarId)))
- ->executeStatement();
- // Only dispatch if we actually deleted anything
- if ($calendarData) {
- $this->dispatcher->dispatchTyped(new CalendarDeletedEvent($calendarId, $calendarData, $shares));
- }
- } else {
- $qbMarkCalendarDeleted = $this->db->getQueryBuilder();
- $qbMarkCalendarDeleted->update('calendars')
- ->set('deleted_at', $qbMarkCalendarDeleted->createNamedParameter(time()))
- ->where($qbMarkCalendarDeleted->expr()->eq('id', $qbMarkCalendarDeleted->createNamedParameter($calendarId)))
- ->executeStatement();
- $calendarData = $this->getCalendarById($calendarId);
- $shares = $this->getShares($calendarId);
- if ($calendarData) {
- $this->dispatcher->dispatchTyped(new CalendarMovedToTrashEvent(
- $calendarId,
- $calendarData,
- $shares
- ));
- }
- }
- }, $this->db);
- }
- public function restoreCalendar(int $id): void {
- $this->atomic(function () use ($id): void {
- $qb = $this->db->getQueryBuilder();
- $update = $qb->update('calendars')
- ->set('deleted_at', $qb->createNamedParameter(null))
- ->where($qb->expr()->eq('id', $qb->createNamedParameter($id, IQueryBuilder::PARAM_INT), IQueryBuilder::PARAM_INT));
- $update->executeStatement();
- $calendarData = $this->getCalendarById($id);
- $shares = $this->getShares($id);
- if ($calendarData === null) {
- throw new RuntimeException('Calendar data that was just written can\'t be read back. Check your database configuration.');
- }
- $this->dispatcher->dispatchTyped(new CalendarRestoredEvent(
- $id,
- $calendarData,
- $shares
- ));
- }, $this->db);
- }
- /**
- * Returns all calendar objects with limited metadata for a calendar
- *
- * Every item contains an array with the following keys:
- * * id - the table row id
- * * etag - An arbitrary string
- * * uri - a unique key which will be used to construct the uri. This can
- * be any arbitrary string.
- * * calendardata - The iCalendar-compatible calendar data
- *
- * @param mixed $calendarId
- * @param int $calendarType
- * @return array
- */
- public function getLimitedCalendarObjects(int $calendarId, int $calendarType = self::CALENDAR_TYPE_CALENDAR):array {
- $query = $this->db->getQueryBuilder();
- $query->select(['id','uid', 'etag', 'uri', 'calendardata'])
- ->from('calendarobjects')
- ->where($query->expr()->eq('calendarid', $query->createNamedParameter($calendarId)))
- ->andWhere($query->expr()->eq('calendartype', $query->createNamedParameter($calendarType)))
- ->andWhere($query->expr()->isNull('deleted_at'));
- $stmt = $query->executeQuery();
- $result = [];
- while (($row = $stmt->fetch()) !== false) {
- $result[$row['uid']] = [
- 'id' => $row['id'],
- 'etag' => $row['etag'],
- 'uri' => $row['uri'],
- 'calendardata' => $row['calendardata'],
- ];
- }
- $stmt->closeCursor();
- return $result;
- }
- /**
- * Delete all of an user's shares
- *
- * @param string $principaluri
- * @return void
- */
- public function deleteAllSharesByUser($principaluri) {
- $this->calendarSharingBackend->deleteAllSharesByUser($principaluri);
- }
- /**
- * Returns all calendar objects within a calendar.
- *
- * Every item contains an array with the following keys:
- * * calendardata - The iCalendar-compatible calendar data
- * * uri - a unique key which will be used to construct the uri. This can
- * be any arbitrary string, but making sure it ends with '.ics' is a
- * good idea. This is only the basename, or filename, not the full
- * path.
- * * lastmodified - a timestamp of the last modification time
- * * etag - An arbitrary string, surrounded by double-quotes. (e.g.:
- * '"abcdef"')
- * * size - The size of the calendar objects, in bytes.
- * * component - optional, a string containing the type of object, such
- * as 'vevent' or 'vtodo'. If specified, this will be used to populate
- * the Content-Type header.
- *
- * Note that the etag is optional, but it's highly encouraged to return for
- * speed reasons.
- *
- * The calendardata is also optional. If it's not returned
- * 'getCalendarObject' will be called later, which *is* expected to return
- * calendardata.
- *
- * If neither etag or size are specified, the calendardata will be
- * used/fetched to determine these numbers. If both are specified the
- * amount of times this is needed is reduced by a great degree.
- *
- * @param mixed $calendarId
- * @param int $calendarType
- * @return array
- */
- public function getCalendarObjects($calendarId, $calendarType = self::CALENDAR_TYPE_CALENDAR):array {
- $query = $this->db->getQueryBuilder();
- $query->select(['id', 'uri', 'lastmodified', 'etag', 'calendarid', 'size', 'componenttype', 'classification'])
- ->from('calendarobjects')
- ->where($query->expr()->eq('calendarid', $query->createNamedParameter($calendarId)))
- ->andWhere($query->expr()->eq('calendartype', $query->createNamedParameter($calendarType)))
- ->andWhere($query->expr()->isNull('deleted_at'));
- $stmt = $query->executeQuery();
- $result = [];
- while (($row = $stmt->fetch()) !== false) {
- $result[] = [
- 'id' => $row['id'],
- 'uri' => $row['uri'],
- 'lastmodified' => $row['lastmodified'],
- 'etag' => '"' . $row['etag'] . '"',
- 'calendarid' => $row['calendarid'],
- 'size' => (int)$row['size'],
- 'component' => strtolower($row['componenttype']),
- 'classification' => (int)$row['classification']
- ];
- }
- $stmt->closeCursor();
- return $result;
- }
- public function getDeletedCalendarObjects(int $deletedBefore): array {
- $query = $this->db->getQueryBuilder();
- $query->select(['co.id', 'co.uri', 'co.lastmodified', 'co.etag', 'co.calendarid', 'co.calendartype', 'co.size', 'co.componenttype', 'co.classification', 'co.deleted_at'])
- ->from('calendarobjects', 'co')
- ->join('co', 'calendars', 'c', $query->expr()->eq('c.id', 'co.calendarid', IQueryBuilder::PARAM_INT))
- ->where($query->expr()->isNotNull('co.deleted_at'))
- ->andWhere($query->expr()->lt('co.deleted_at', $query->createNamedParameter($deletedBefore)));
- $stmt = $query->executeQuery();
- $result = [];
- while (($row = $stmt->fetch()) !== false) {
- $result[] = [
- 'id' => $row['id'],
- 'uri' => $row['uri'],
- 'lastmodified' => $row['lastmodified'],
- 'etag' => '"' . $row['etag'] . '"',
- 'calendarid' => (int)$row['calendarid'],
- 'calendartype' => (int)$row['calendartype'],
- 'size' => (int)$row['size'],
- 'component' => strtolower($row['componenttype']),
- 'classification' => (int)$row['classification'],
- '{' . \OCA\DAV\DAV\Sharing\Plugin::NS_NEXTCLOUD . '}deleted-at' => $row['deleted_at'] === null ? $row['deleted_at'] : (int)$row['deleted_at'],
- ];
- }
- $stmt->closeCursor();
- return $result;
- }
- /**
- * Return all deleted calendar objects by the given principal that are not
- * in deleted calendars.
- *
- * @param string $principalUri
- * @return array
- * @throws Exception
- */
- public function getDeletedCalendarObjectsByPrincipal(string $principalUri): array {
- $query = $this->db->getQueryBuilder();
- $query->select(['co.id', 'co.uri', 'co.lastmodified', 'co.etag', 'co.calendarid', 'co.size', 'co.componenttype', 'co.classification', 'co.deleted_at'])
- ->selectAlias('c.uri', 'calendaruri')
- ->from('calendarobjects', 'co')
- ->join('co', 'calendars', 'c', $query->expr()->eq('c.id', 'co.calendarid', IQueryBuilder::PARAM_INT))
- ->where($query->expr()->eq('principaluri', $query->createNamedParameter($principalUri)))
- ->andWhere($query->expr()->isNotNull('co.deleted_at'))
- ->andWhere($query->expr()->isNull('c.deleted_at'));
- $stmt = $query->executeQuery();
- $result = [];
- while ($row = $stmt->fetch()) {
- $result[] = [
- 'id' => $row['id'],
- 'uri' => $row['uri'],
- 'lastmodified' => $row['lastmodified'],
- 'etag' => '"' . $row['etag'] . '"',
- 'calendarid' => $row['calendarid'],
- 'calendaruri' => $row['calendaruri'],
- 'size' => (int)$row['size'],
- 'component' => strtolower($row['componenttype']),
- 'classification' => (int)$row['classification'],
- '{' . \OCA\DAV\DAV\Sharing\Plugin::NS_NEXTCLOUD . '}deleted-at' => $row['deleted_at'] === null ? $row['deleted_at'] : (int)$row['deleted_at'],
- ];
- }
- $stmt->closeCursor();
- return $result;
- }
- /**
- * Returns information from a single calendar object, based on it's object
- * uri.
- *
- * The object uri is only the basename, or filename and not a full path.
- *
- * The returned array must have the same keys as getCalendarObjects. The
- * 'calendardata' object is required here though, while it's not required
- * for getCalendarObjects.
- *
- * This method must return null if the object did not exist.
- *
- * @param mixed $calendarId
- * @param string $objectUri
- * @param int $calendarType
- * @return array|null
- */
- public function getCalendarObject($calendarId, $objectUri, int $calendarType = self::CALENDAR_TYPE_CALENDAR) {
- $key = $calendarId . '::' . $objectUri . '::' . $calendarType;
- if (isset($this->cachedObjects[$key])) {
- return $this->cachedObjects[$key];
- }
- $query = $this->db->getQueryBuilder();
- $query->select(['id', 'uri', 'uid', 'lastmodified', 'etag', 'calendarid', 'size', 'calendardata', 'componenttype', 'classification', 'deleted_at'])
- ->from('calendarobjects')
- ->where($query->expr()->eq('calendarid', $query->createNamedParameter($calendarId)))
- ->andWhere($query->expr()->eq('uri', $query->createNamedParameter($objectUri)))
- ->andWhere($query->expr()->eq('calendartype', $query->createNamedParameter($calendarType)));
- $stmt = $query->executeQuery();
- $row = $stmt->fetch();
- $stmt->closeCursor();
- if (!$row) {
- return null;
- }
- $object = $this->rowToCalendarObject($row);
- $this->cachedObjects[$key] = $object;
- return $object;
- }
- private function rowToCalendarObject(array $row): array {
- return [
- 'id' => $row['id'],
- 'uri' => $row['uri'],
- 'uid' => $row['uid'],
- 'lastmodified' => $row['lastmodified'],
- 'etag' => '"' . $row['etag'] . '"',
- 'calendarid' => $row['calendarid'],
- 'size' => (int)$row['size'],
- 'calendardata' => $this->readBlob($row['calendardata']),
- 'component' => strtolower($row['componenttype']),
- 'classification' => (int)$row['classification'],
- '{' . \OCA\DAV\DAV\Sharing\Plugin::NS_NEXTCLOUD . '}deleted-at' => $row['deleted_at'] === null ? $row['deleted_at'] : (int)$row['deleted_at'],
- ];
- }
- /**
- * Returns a list of calendar objects.
- *
- * This method should work identical to getCalendarObject, but instead
- * return all the calendar objects in the list as an array.
- *
- * If the backend supports this, it may allow for some speed-ups.
- *
- * @param mixed $calendarId
- * @param string[] $uris
- * @param int $calendarType
- * @return array
- */
- public function getMultipleCalendarObjects($calendarId, array $uris, $calendarType = self::CALENDAR_TYPE_CALENDAR):array {
- if (empty($uris)) {
- return [];
- }
- $chunks = array_chunk($uris, 100);
- $objects = [];
- $query = $this->db->getQueryBuilder();
- $query->select(['id', 'uri', 'lastmodified', 'etag', 'calendarid', 'size', 'calendardata', 'componenttype', 'classification'])
- ->from('calendarobjects')
- ->where($query->expr()->eq('calendarid', $query->createNamedParameter($calendarId)))
- ->andWhere($query->expr()->in('uri', $query->createParameter('uri')))
- ->andWhere($query->expr()->eq('calendartype', $query->createNamedParameter($calendarType)))
- ->andWhere($query->expr()->isNull('deleted_at'));
- foreach ($chunks as $uris) {
- $query->setParameter('uri', $uris, IQueryBuilder::PARAM_STR_ARRAY);
- $result = $query->executeQuery();
- while ($row = $result->fetch()) {
- $objects[] = [
- 'id' => $row['id'],
- 'uri' => $row['uri'],
- 'lastmodified' => $row['lastmodified'],
- 'etag' => '"' . $row['etag'] . '"',
- 'calendarid' => $row['calendarid'],
- 'size' => (int)$row['size'],
- 'calendardata' => $this->readBlob($row['calendardata']),
- 'component' => strtolower($row['componenttype']),
- 'classification' => (int)$row['classification']
- ];
- }
- $result->closeCursor();
- }
- return $objects;
- }
- /**
- * Creates a new calendar object.
- *
- * The object uri is only the basename, or filename and not a full path.
- *
- * It is possible return an etag from this function, which will be used in
- * the response to this PUT request. Note that the ETag must be surrounded
- * by double-quotes.
- *
- * However, you should only really return this ETag if you don't mangle the
- * calendar-data. If the result of a subsequent GET to this object is not
- * the exact same as this request body, you should omit the ETag.
- *
- * @param mixed $calendarId
- * @param string $objectUri
- * @param string $calendarData
- * @param int $calendarType
- * @return string
- */
- public function createCalendarObject($calendarId, $objectUri, $calendarData, $calendarType = self::CALENDAR_TYPE_CALENDAR) {
- $this->cachedObjects = [];
- $extraData = $this->getDenormalizedData($calendarData);
- return $this->atomic(function () use ($calendarId, $objectUri, $calendarData, $extraData, $calendarType) {
- // Try to detect duplicates
- $qb = $this->db->getQueryBuilder();
- $qb->select($qb->func()->count('*'))
- ->from('calendarobjects')
- ->where($qb->expr()->eq('calendarid', $qb->createNamedParameter($calendarId)))
- ->andWhere($qb->expr()->eq('uid', $qb->createNamedParameter($extraData['uid'])))
- ->andWhere($qb->expr()->eq('calendartype', $qb->createNamedParameter($calendarType)))
- ->andWhere($qb->expr()->isNull('deleted_at'));
- $result = $qb->executeQuery();
- $count = (int)$result->fetchOne();
- $result->closeCursor();
- if ($count !== 0) {
- throw new BadRequest('Calendar object with uid already exists in this calendar collection.');
- }
- // For a more specific error message we also try to explicitly look up the UID but as a deleted entry
- $qbDel = $this->db->getQueryBuilder();
- $qbDel->select('*')
- ->from('calendarobjects')
- ->where($qbDel->expr()->eq('calendarid', $qbDel->createNamedParameter($calendarId)))
- ->andWhere($qbDel->expr()->eq('uid', $qbDel->createNamedParameter($extraData['uid'])))
- ->andWhere($qbDel->expr()->eq('calendartype', $qbDel->createNamedParameter($calendarType)))
- ->andWhere($qbDel->expr()->isNotNull('deleted_at'));
- $result = $qbDel->executeQuery();
- $found = $result->fetch();
- $result->closeCursor();
- if ($found !== false) {
- // the object existed previously but has been deleted
- // remove the trashbin entry and continue as if it was a new object
- $this->deleteCalendarObject($calendarId, $found['uri']);
- }
- $query = $this->db->getQueryBuilder();
- $query->insert('calendarobjects')
- ->values([
- 'calendarid' => $query->createNamedParameter($calendarId),
- 'uri' => $query->createNamedParameter($objectUri),
- 'calendardata' => $query->createNamedParameter($calendarData, IQueryBuilder::PARAM_LOB),
- 'lastmodified' => $query->createNamedParameter(time()),
- 'etag' => $query->createNamedParameter($extraData['etag']),
- 'size' => $query->createNamedParameter($extraData['size']),
- 'componenttype' => $query->createNamedParameter($extraData['componentType']),
- 'firstoccurence' => $query->createNamedParameter($extraData['firstOccurence']),
- 'lastoccurence' => $query->createNamedParameter($extraData['lastOccurence']),
- 'classification' => $query->createNamedParameter($extraData['classification']),
- 'uid' => $query->createNamedParameter($extraData['uid']),
- 'calendartype' => $query->createNamedParameter($calendarType),
- ])
- ->executeStatement();
- $this->updateProperties($calendarId, $objectUri, $calendarData, $calendarType);
- $this->addChanges($calendarId, [$objectUri], 1, $calendarType);
- $objectRow = $this->getCalendarObject($calendarId, $objectUri, $calendarType);
- assert($objectRow !== null);
- if ($calendarType === self::CALENDAR_TYPE_CALENDAR) {
- $calendarRow = $this->getCalendarById($calendarId);
- $shares = $this->getShares($calendarId);
- $this->dispatcher->dispatchTyped(new CalendarObjectCreatedEvent($calendarId, $calendarRow, $shares, $objectRow));
- } else {
- $subscriptionRow = $this->getSubscriptionById($calendarId);
- $this->dispatcher->dispatchTyped(new CachedCalendarObjectCreatedEvent($calendarId, $subscriptionRow, [], $objectRow));
- }
- return '"' . $extraData['etag'] . '"';
- }, $this->db);
- }
- /**
- * Updates an existing calendarobject, based on it's uri.
- *
- * The object uri is only the basename, or filename and not a full path.
- *
- * It is possible return an etag from this function, which will be used in
- * the response to this PUT request. Note that the ETag must be surrounded
- * by double-quotes.
- *
- * However, you should only really return this ETag if you don't mangle the
- * calendar-data. If the result of a subsequent GET to this object is not
- * the exact same as this request body, you should omit the ETag.
- *
- * @param mixed $calendarId
- * @param string $objectUri
- * @param string $calendarData
- * @param int $calendarType
- * @return string
- */
- public function updateCalendarObject($calendarId, $objectUri, $calendarData, $calendarType = self::CALENDAR_TYPE_CALENDAR) {
- $this->cachedObjects = [];
- $extraData = $this->getDenormalizedData($calendarData);
- return $this->atomic(function () use ($calendarId, $objectUri, $calendarData, $extraData, $calendarType) {
- $query = $this->db->getQueryBuilder();
- $query->update('calendarobjects')
- ->set('calendardata', $query->createNamedParameter($calendarData, IQueryBuilder::PARAM_LOB))
- ->set('lastmodified', $query->createNamedParameter(time()))
- ->set('etag', $query->createNamedParameter($extraData['etag']))
- ->set('size', $query->createNamedParameter($extraData['size']))
- ->set('componenttype', $query->createNamedParameter($extraData['componentType']))
- ->set('firstoccurence', $query->createNamedParameter($extraData['firstOccurence']))
- ->set('lastoccurence', $query->createNamedParameter($extraData['lastOccurence']))
- ->set('classification', $query->createNamedParameter($extraData['classification']))
- ->set('uid', $query->createNamedParameter($extraData['uid']))
- ->where($query->expr()->eq('calendarid', $query->createNamedParameter($calendarId)))
- ->andWhere($query->expr()->eq('uri', $query->createNamedParameter($objectUri)))
- ->andWhere($query->expr()->eq('calendartype', $query->createNamedParameter($calendarType)))
- ->executeStatement();
- $this->updateProperties($calendarId, $objectUri, $calendarData, $calendarType);
- $this->addChanges($calendarId, [$objectUri], 2, $calendarType);
- $objectRow = $this->getCalendarObject($calendarId, $objectUri, $calendarType);
- if (is_array($objectRow)) {
- if ($calendarType === self::CALENDAR_TYPE_CALENDAR) {
- $calendarRow = $this->getCalendarById($calendarId);
- $shares = $this->getShares($calendarId);
- $this->dispatcher->dispatchTyped(new CalendarObjectUpdatedEvent($calendarId, $calendarRow, $shares, $objectRow));
- } else {
- $subscriptionRow = $this->getSubscriptionById($calendarId);
- $this->dispatcher->dispatchTyped(new CachedCalendarObjectUpdatedEvent($calendarId, $subscriptionRow, [], $objectRow));
- }
- }
- return '"' . $extraData['etag'] . '"';
- }, $this->db);
- }
- /**
- * Moves a calendar object from calendar to calendar.
- *
- * @param int $sourceCalendarId
- * @param int $targetCalendarId
- * @param int $objectId
- * @param string $oldPrincipalUri
- * @param string $newPrincipalUri
- * @param int $calendarType
- * @return bool
- * @throws Exception
- */
- public function moveCalendarObject(int $sourceCalendarId, int $targetCalendarId, int $objectId, string $oldPrincipalUri, string $newPrincipalUri, int $calendarType = self::CALENDAR_TYPE_CALENDAR): bool {
- $this->cachedObjects = [];
- return $this->atomic(function () use ($sourceCalendarId, $targetCalendarId, $objectId, $oldPrincipalUri, $newPrincipalUri, $calendarType) {
- $object = $this->getCalendarObjectById($oldPrincipalUri, $objectId);
- if (empty($object)) {
- return false;
- }
- $query = $this->db->getQueryBuilder();
- $query->update('calendarobjects')
- ->set('calendarid', $query->createNamedParameter($targetCalendarId, IQueryBuilder::PARAM_INT))
- ->where($query->expr()->eq('id', $query->createNamedParameter($objectId, IQueryBuilder::PARAM_INT), IQueryBuilder::PARAM_INT))
- ->andWhere($query->expr()->eq('calendartype', $query->createNamedParameter($calendarType, IQueryBuilder::PARAM_INT), IQueryBuilder::PARAM_INT))
- ->executeStatement();
- $this->purgeProperties($sourceCalendarId, $objectId);
- $this->updateProperties($targetCalendarId, $object['uri'], $object['calendardata'], $calendarType);
- $this->addChanges($sourceCalendarId, [$object['uri']], 3, $calendarType);
- $this->addChanges($targetCalendarId, [$object['uri']], 1, $calendarType);
- $object = $this->getCalendarObjectById($newPrincipalUri, $objectId);
- // Calendar Object wasn't found - possibly because it was deleted in the meantime by a different client
- if (empty($object)) {
- return false;
- }
- $targetCalendarRow = $this->getCalendarById($targetCalendarId);
- // the calendar this event is being moved to does not exist any longer
- if (empty($targetCalendarRow)) {
- return false;
- }
- if ($calendarType === self::CALENDAR_TYPE_CALENDAR) {
- $sourceShares = $this->getShares($sourceCalendarId);
- $targetShares = $this->getShares($targetCalendarId);
- $sourceCalendarRow = $this->getCalendarById($sourceCalendarId);
- $this->dispatcher->dispatchTyped(new CalendarObjectMovedEvent($sourceCalendarId, $sourceCalendarRow, $targetCalendarId, $targetCalendarRow, $sourceShares, $targetShares, $object));
- }
- return true;
- }, $this->db);
- }
- /**
- * @param int $calendarObjectId
- * @param int $classification
- */
- public function setClassification($calendarObjectId, $classification) {
- $this->cachedObjects = [];
- if (!in_array($classification, [
- self::CLASSIFICATION_PUBLIC, self::CLASSIFICATION_PRIVATE, self::CLASSIFICATION_CONFIDENTIAL
- ])) {
- throw new \InvalidArgumentException();
- }
- $query = $this->db->getQueryBuilder();
- $query->update('calendarobjects')
- ->set('classification', $query->createNamedParameter($classification))
- ->where($query->expr()->eq('id', $query->createNamedParameter($calendarObjectId)))
- ->executeStatement();
- }
- /**
- * Deletes an existing calendar object.
- *
- * The object uri is only the basename, or filename and not a full path.
- *
- * @param mixed $calendarId
- * @param string $objectUri
- * @param int $calendarType
- * @param bool $forceDeletePermanently
- * @return void
- */
- public function deleteCalendarObject($calendarId, $objectUri, $calendarType = self::CALENDAR_TYPE_CALENDAR, bool $forceDeletePermanently = false) {
- $this->cachedObjects = [];
- $this->atomic(function () use ($calendarId, $objectUri, $calendarType, $forceDeletePermanently): void {
- $data = $this->getCalendarObject($calendarId, $objectUri, $calendarType);
- if ($data === null) {
- // Nothing to delete
- return;
- }
- if ($forceDeletePermanently || $this->config->getAppValue(Application::APP_ID, RetentionService::RETENTION_CONFIG_KEY) === '0') {
- $stmt = $this->db->prepare('DELETE FROM `*PREFIX*calendarobjects` WHERE `calendarid` = ? AND `uri` = ? AND `calendartype` = ?');
- $stmt->execute([$calendarId, $objectUri, $calendarType]);
- $this->purgeProperties($calendarId, $data['id']);
- $this->purgeObjectInvitations($data['uid']);
- if ($calendarType === self::CALENDAR_TYPE_CALENDAR) {
- $calendarRow = $this->getCalendarById($calendarId);
- $shares = $this->getShares($calendarId);
- $this->dispatcher->dispatchTyped(new CalendarObjectDeletedEvent($calendarId, $calendarRow, $shares, $data));
- } else {
- $subscriptionRow = $this->getSubscriptionById($calendarId);
- $this->dispatcher->dispatchTyped(new CachedCalendarObjectDeletedEvent($calendarId, $subscriptionRow, [], $data));
- }
- } else {
- $pathInfo = pathinfo($data['uri']);
- if (!empty($pathInfo['extension'])) {
- // Append a suffix to "free" the old URI for recreation
- $newUri = sprintf(
- '%s-deleted.%s',
- $pathInfo['filename'],
- $pathInfo['extension']
- );
- } else {
- $newUri = sprintf(
- '%s-deleted',
- $pathInfo['filename']
- );
- }
- // Try to detect conflicts before the DB does
- // As unlikely as it seems, this can happen when the user imports, then deletes, imports and deletes again
- $newObject = $this->getCalendarObject($calendarId, $newUri, $calendarType);
- if ($newObject !== null) {
- throw new Forbidden("A calendar object with URI $newUri already exists in calendar $calendarId, therefore this object can't be moved into the trashbin");
- }
- $qb = $this->db->getQueryBuilder();
- $markObjectDeletedQuery = $qb->update('calendarobjects')
- ->set('deleted_at', $qb->createNamedParameter(time(), IQueryBuilder::PARAM_INT))
- ->set('uri', $qb->createNamedParameter($newUri))
- ->where(
- $qb->expr()->eq('calendarid', $qb->createNamedParameter($calendarId)),
- $qb->expr()->eq('calendartype', $qb->createNamedParameter($calendarType, IQueryBuilder::PARAM_INT), IQueryBuilder::PARAM_INT),
- $qb->expr()->eq('uri', $qb->createNamedParameter($objectUri))
- );
- $markObjectDeletedQuery->executeStatement();
- $calendarData = $this->getCalendarById($calendarId);
- if ($calendarData !== null) {
- $this->dispatcher->dispatchTyped(
- new CalendarObjectMovedToTrashEvent(
- $calendarId,
- $calendarData,
- $this->getShares($calendarId),
- $data
- )
- );
- }
- }
- $this->addChanges($calendarId, [$objectUri], 3, $calendarType);
- }, $this->db);
- }
- /**
- * @param mixed $objectData
- *
- * @throws Forbidden
- */
- public function restoreCalendarObject(array $objectData): void {
- $this->cachedObjects = [];
- $this->atomic(function () use ($objectData): void {
- $id = (int)$objectData['id'];
- $restoreUri = str_replace('-deleted.ics', '.ics', $objectData['uri']);
- $targetObject = $this->getCalendarObject(
- $objectData['calendarid'],
- $restoreUri
- );
- if ($targetObject !== null) {
- throw new Forbidden("Can not restore calendar $id because a calendar object with the URI $restoreUri already exists");
- }
- $qb = $this->db->getQueryBuilder();
- $update = $qb->update('calendarobjects')
- ->set('uri', $qb->createNamedParameter($restoreUri))
- ->set('deleted_at', $qb->createNamedParameter(null))
- ->where($qb->expr()->eq('id', $qb->createNamedParameter($id, IQueryBuilder::PARAM_INT), IQueryBuilder::PARAM_INT));
- $update->executeStatement();
- // Make sure this change is tracked in the changes table
- $qb2 = $this->db->getQueryBuilder();
- $selectObject = $qb2->select('calendardata', 'uri', 'calendarid', 'calendartype')
- ->selectAlias('componenttype', 'component')
- ->from('calendarobjects')
- ->where($qb2->expr()->eq('id', $qb2->createNamedParameter($id, IQueryBuilder::PARAM_INT), IQueryBuilder::PARAM_INT));
- $result = $selectObject->executeQuery();
- $row = $result->fetch();
- $result->closeCursor();
- if ($row === false) {
- // Welp, this should possibly not have happened, but let's ignore
- return;
- }
- $this->addChanges($row['calendarid'], [$row['uri']], 1, (int)$row['calendartype']);
- $calendarRow = $this->getCalendarById((int)$row['calendarid']);
- if ($calendarRow === null) {
- throw new RuntimeException('Calendar object data that was just written can\'t be read back. Check your database configuration.');
- }
- $this->dispatcher->dispatchTyped(
- new CalendarObjectRestoredEvent(
- (int)$objectData['calendarid'],
- $calendarRow,
- $this->getShares((int)$row['calendarid']),
- $row
- )
- );
- }, $this->db);
- }
- /**
- * Performs a calendar-query on the contents of this calendar.
- *
- * The calendar-query is defined in RFC4791 : CalDAV. Using the
- * calendar-query it is possible for a client to request a specific set of
- * object, based on contents of iCalendar properties, date-ranges and
- * iCalendar component types (VTODO, VEVENT).
- *
- * This method should just return a list of (relative) urls that match this
- * query.
- *
- * The list of filters are specified as an array. The exact array is
- * documented by Sabre\CalDAV\CalendarQueryParser.
- *
- * Note that it is extremely likely that getCalendarObject for every path
- * returned from this method will be called almost immediately after. You
- * may want to anticipate this to speed up these requests.
- *
- * This method provides a default implementation, which parses *all* the
- * iCalendar objects in the specified calendar.
- *
- * This default may well be good enough for personal use, and calendars
- * that aren't very large. But if you anticipate high usage, big calendars
- * or high loads, you are strongly advised to optimize certain paths.
- *
- * The best way to do so is override this method and to optimize
- * specifically for 'common filters'.
- *
- * Requests that are extremely common are:
- * * requests for just VEVENTS
- * * requests for just VTODO
- * * requests with a time-range-filter on either VEVENT or VTODO.
- *
- * ..and combinations of these requests. It may not be worth it to try to
- * handle every possible situation and just rely on the (relatively
- * easy to use) CalendarQueryValidator to handle the rest.
- *
- * Note that especially time-range-filters may be difficult to parse. A
- * time-range filter specified on a VEVENT must for instance also handle
- * recurrence rules correctly.
- * A good example of how to interpret all these filters can also simply
- * be found in Sabre\CalDAV\CalendarQueryFilter. This class is as correct
- * as possible, so it gives you a good idea on what type of stuff you need
- * to think of.
- *
- * @param mixed $calendarId
- * @param array $filters
- * @param int $calendarType
- * @return array
- */
- public function calendarQuery($calendarId, array $filters, $calendarType = self::CALENDAR_TYPE_CALENDAR):array {
- $componentType = null;
- $requirePostFilter = true;
- $timeRange = null;
- // if no filters were specified, we don't need to filter after a query
- if (!$filters['prop-filters'] && !$filters['comp-filters']) {
- $requirePostFilter = false;
- }
- // Figuring out if there's a component filter
- if (count($filters['comp-filters']) > 0 && !$filters['comp-filters'][0]['is-not-defined']) {
- $componentType = $filters['comp-filters'][0]['name'];
- // Checking if we need post-filters
- if (!$filters['prop-filters'] && !$filters['comp-filters'][0]['comp-filters'] && !$filters['comp-filters'][0]['time-range'] && !$filters['comp-filters'][0]['prop-filters']) {
- $requirePostFilter = false;
- }
- // There was a time-range filter
- if ($componentType === 'VEVENT' && isset($filters['comp-filters'][0]['time-range']) && is_array($filters['comp-filters'][0]['time-range'])) {
- $timeRange = $filters['comp-filters'][0]['time-range'];
- // If start time OR the end time is not specified, we can do a
- // 100% accurate mysql query.
- if (!$filters['prop-filters'] && !$filters['comp-filters'][0]['comp-filters'] && !$filters['comp-filters'][0]['prop-filters'] && (!$timeRange['start'] || !$timeRange['end'])) {
- $requirePostFilter = false;
- }
- }
- }
- $query = $this->db->getQueryBuilder();
- $query->select(['id', 'uri', 'uid', 'lastmodified', 'etag', 'calendarid', 'size', 'calendardata', 'componenttype', 'classification', 'deleted_at'])
- ->from('calendarobjects')
- ->where($query->expr()->eq('calendarid', $query->createNamedParameter($calendarId)))
- ->andWhere($query->expr()->eq('calendartype', $query->createNamedParameter($calendarType)))
- ->andWhere($query->expr()->isNull('deleted_at'));
- if ($componentType) {
- $query->andWhere($query->expr()->eq('componenttype', $query->createNamedParameter($componentType)));
- }
- if ($timeRange && $timeRange['start']) {
- $query->andWhere($query->expr()->gt('lastoccurence', $query->createNamedParameter($timeRange['start']->getTimeStamp())));
- }
- if ($timeRange && $timeRange['end']) {
- $query->andWhere($query->expr()->lt('firstoccurence', $query->createNamedParameter($timeRange['end']->getTimeStamp())));
- }
- $stmt = $query->executeQuery();
- $result = [];
- while ($row = $stmt->fetch()) {
- // if we leave it as a blob we can't read it both from the post filter and the rowToCalendarObject
- if (isset($row['calendardata'])) {
- $row['calendardata'] = $this->readBlob($row['calendardata']);
- }
- if ($requirePostFilter) {
- // validateFilterForObject will parse the calendar data
- // catch parsing errors
- try {
- $matches = $this->validateFilterForObject($row, $filters);
- } catch (ParseException $ex) {
- $this->logger->error('Caught parsing exception for calendar data. This usually indicates invalid calendar data. calendar-id:' . $calendarId . ' uri:' . $row['uri'], [
- 'app' => 'dav',
- 'exception' => $ex,
- ]);
- continue;
- } catch (InvalidDataException $ex) {
- $this->logger->error('Caught invalid data exception for calendar data. This usually indicates invalid calendar data. calendar-id:' . $calendarId . ' uri:' . $row['uri'], [
- 'app' => 'dav',
- 'exception' => $ex,
- ]);
- continue;
- } catch (MaxInstancesExceededException $ex) {
- $this->logger->warning('Caught max instances exceeded exception for calendar data. This usually indicates too much recurring (more than 3500) event in calendar data. Object uri: ' . $row['uri'], [
- 'app' => 'dav',
- 'exception' => $ex,
- ]);
- continue;
- }
- if (!$matches) {
- continue;
- }
- }
- $result[] = $row['uri'];
- $key = $calendarId . '::' . $row['uri'] . '::' . $calendarType;
- $this->cachedObjects[$key] = $this->rowToCalendarObject($row);
- }
- return $result;
- }
- /**
- * custom Nextcloud search extension for CalDAV
- *
- * TODO - this should optionally cover cached calendar objects as well
- *
- * @param string $principalUri
- * @param array $filters
- * @param integer|null $limit
- * @param integer|null $offset
- * @return array
- */
- public function calendarSearch($principalUri, array $filters, $limit = null, $offset = null) {
- return $this->atomic(function () use ($principalUri, $filters, $limit, $offset) {
- $calendars = $this->getCalendarsForUser($principalUri);
- $ownCalendars = [];
- $sharedCalendars = [];
- $uriMapper = [];
- foreach ($calendars as $calendar) {
- if ($calendar['{http://owncloud.org/ns}owner-principal'] === $principalUri) {
- $ownCalendars[] = $calendar['id'];
- } else {
- $sharedCalendars[] = $calendar['id'];
- }
- $uriMapper[$calendar['id']] = $calendar['uri'];
- }
- if (count($ownCalendars) === 0 && count($sharedCalendars) === 0) {
- return [];
- }
- $query = $this->db->getQueryBuilder();
- // Calendar id expressions
- $calendarExpressions = [];
- foreach ($ownCalendars as $id) {
- $calendarExpressions[] = $query->expr()->andX(
- $query->expr()->eq('c.calendarid',
- $query->createNamedParameter($id)),
- $query->expr()->eq('c.calendartype',
- $query->createNamedParameter(self::CALENDAR_TYPE_CALENDAR)));
- }
- foreach ($sharedCalendars as $id) {
- $calendarExpressions[] = $query->expr()->andX(
- $query->expr()->eq('c.calendarid',
- $query->createNamedParameter($id)),
- $query->expr()->eq('c.classification',
- $query->createNamedParameter(self::CLASSIFICATION_PUBLIC)),
- $query->expr()->eq('c.calendartype',
- $query->createNamedParameter(self::CALENDAR_TYPE_CALENDAR)));
- }
- if (count($calendarExpressions) === 1) {
- $calExpr = $calendarExpressions[0];
- } else {
- $calExpr = call_user_func_array([$query->expr(), 'orX'], $calendarExpressions);
- }
- // Component expressions
- $compExpressions = [];
- foreach ($filters['comps'] as $comp) {
- $compExpressions[] = $query->expr()
- ->eq('c.componenttype', $query->createNamedParameter($comp));
- }
- if (count($compExpressions) === 1) {
- $compExpr = $compExpressions[0];
- } else {
- $compExpr = call_user_func_array([$query->expr(), 'orX'], $compExpressions);
- }
- if (!isset($filters['props'])) {
- $filters['props'] = [];
- }
- if (!isset($filters['params'])) {
- $filters['params'] = [];
- }
- $propParamExpressions = [];
- foreach ($filters['props'] as $prop) {
- $propParamExpressions[] = $query->expr()->andX(
- $query->expr()->eq('i.name', $query->createNamedParameter($prop)),
- $query->expr()->isNull('i.parameter')
- );
- }
- foreach ($filters['params'] as $param) {
- $propParamExpressions[] = $query->expr()->andX(
- $query->expr()->eq('i.name', $query->createNamedParameter($param['property'])),
- $query->expr()->eq('i.parameter', $query->createNamedParameter($param['parameter']))
- );
- }
- if (count($propParamExpressions) === 1) {
- $propParamExpr = $propParamExpressions[0];
- } else {
- $propParamExpr = call_user_func_array([$query->expr(), 'orX'], $propParamExpressions);
- }
- $query->select(['c.calendarid', 'c.uri'])
- ->from($this->dbObjectPropertiesTable, 'i')
- ->join('i', 'calendarobjects', 'c', $query->expr()->eq('i.objectid', 'c.id'))
- ->where($calExpr)
- ->andWhere($compExpr)
- ->andWhere($propParamExpr)
- ->andWhere($query->expr()->iLike('i.value',
- $query->createNamedParameter('%' . $this->db->escapeLikeParameter($filters['search-term']) . '%')))
- ->andWhere($query->expr()->isNull('deleted_at'));
- if ($offset) {
- $query->setFirstResult($offset);
- }
- if ($limit) {
- $query->setMaxResults($limit);
- }
- $stmt = $query->executeQuery();
- $result = [];
- while ($row = $stmt->fetch()) {
- $path = $uriMapper[$row['calendarid']] . '/' . $row['uri'];
- if (!in_array($path, $result)) {
- $result[] = $path;
- }
- }
- return $result;
- }, $this->db);
- }
- /**
- * used for Nextcloud's calendar API
- *
- * @param array $calendarInfo
- * @param string $pattern
- * @param array $searchProperties
- * @param array $options
- * @param integer|null $limit
- * @param integer|null $offset
- *
- * @return array
- */
- public function search(
- array $calendarInfo,
- $pattern,
- array $searchProperties,
- array $options,
- $limit,
- $offset,
- ) {
- $outerQuery = $this->db->getQueryBuilder();
- $innerQuery = $this->db->getQueryBuilder();
- if (isset($calendarInfo['source'])) {
- $calendarType = self::CALENDAR_TYPE_SUBSCRIPTION;
- } else {
- $calendarType = self::CALENDAR_TYPE_CALENDAR;
- }
- $innerQuery->selectDistinct('op.objectid')
- ->from($this->dbObjectPropertiesTable, 'op')
- ->andWhere($innerQuery->expr()->eq('op.calendarid',
- $outerQuery->createNamedParameter($calendarInfo['id'])))
- ->andWhere($innerQuery->expr()->eq('op.calendartype',
- $outerQuery->createNamedParameter($calendarType)));
- $outerQuery->select('c.id', 'c.calendardata', 'c.componenttype', 'c.uid', 'c.uri')
- ->from('calendarobjects', 'c')
- ->where($outerQuery->expr()->isNull('deleted_at'));
- // only return public items for shared calendars for now
- if (isset($calendarInfo['{http://owncloud.org/ns}owner-principal']) === false || $calendarInfo['principaluri'] !== $calendarInfo['{http://owncloud.org/ns}owner-principal']) {
- $outerQuery->andWhere($outerQuery->expr()->eq('c.classification',
- $outerQuery->createNamedParameter(self::CLASSIFICATION_PUBLIC)));
- }
- if (!empty($searchProperties)) {
- $or = [];
- foreach ($searchProperties as $searchProperty) {
- $or[] = $innerQuery->expr()->eq('op.name',
- $outerQuery->createNamedParameter($searchProperty));
- }
- $innerQuery->andWhere($innerQuery->expr()->orX(...$or));
- }
- if ($pattern !== '') {
- $innerQuery->andWhere($innerQuery->expr()->iLike('op.value',
- $outerQuery->createNamedParameter('%' .
- $this->db->escapeLikeParameter($pattern) . '%')));
- }
- $start = null;
- $end = null;
- $hasLimit = is_int($limit);
- $hasTimeRange = false;
- if (isset($options['timerange']['start']) && $options['timerange']['start'] instanceof DateTimeInterface) {
- /** @var DateTimeInterface $start */
- $start = $options['timerange']['start'];
- $outerQuery->andWhere(
- $outerQuery->expr()->gt(
- 'lastoccurence',
- $outerQuery->createNamedParameter($start->getTimestamp())
- )
- );
- $hasTimeRange = true;
- }
- if (isset($options['timerange']['end']) && $options['timerange']['end'] instanceof DateTimeInterface) {
- /** @var DateTimeInterface $end */
- $end = $options['timerange']['end'];
- $outerQuery->andWhere(
- $outerQuery->expr()->lt(
- 'firstoccurence',
- $outerQuery->createNamedParameter($end->getTimestamp())
- )
- );
- $hasTimeRange = true;
- }
- if (isset($options['uid'])) {
- $outerQuery->andWhere($outerQuery->expr()->eq('uid', $outerQuery->createNamedParameter($options['uid'])));
- }
- if (!empty($options['types'])) {
- $or = [];
- foreach ($options['types'] as $type) {
- $or[] = $outerQuery->expr()->eq('componenttype',
- $outerQuery->createNamedParameter($type));
- }
- $outerQuery->andWhere($outerQuery->expr()->orX(...$or));
- }
- $outerQuery->andWhere($outerQuery->expr()->in('c.id', $outerQuery->createFunction($innerQuery->getSQL())));
- // Without explicit order by its undefined in which order the SQL server returns the events.
- // For the pagination with hasLimit and hasTimeRange, a stable ordering is helpful.
- $outerQuery->addOrderBy('id');
- $offset = (int)$offset;
- $outerQuery->setFirstResult($offset);
- $calendarObjects = [];
- if ($hasLimit && $hasTimeRange) {
- /**
- * Event recurrences are evaluated at runtime because the database only knows the first and last occurrence.
- *
- * Given, a user created 8 events with a yearly reoccurrence and two for events tomorrow.
- * The upcoming event widget asks the CalDAV backend for 7 events within the next 14 days.
- *
- * If limit 7 is applied to the SQL query, we find the 7 events with a yearly reoccurrence
- * and discard the events after evaluating the reoccurrence rules because they are not due within
- * the next 14 days and end up with an empty result even if there are two events to show.
- *
- * The workaround for search requests with a limit and time range is asking for more row than requested
- * and retrying if we have not reached the limit.
- *
- * 25 rows and 3 retries is entirely arbitrary.
- */
- $maxResults = (int)max($limit, 25);
- $outerQuery->setMaxResults($maxResults);
- for ($attempt = $objectsCount = 0; $attempt < 3 && $objectsCount < $limit; $attempt++) {
- $objectsCount = array_push($calendarObjects, ...$this->searchCalendarObjects($outerQuery, $start, $end));
- $outerQuery->setFirstResult($offset += $maxResults);
- }
- $calendarObjects = array_slice($calendarObjects, 0, $limit, false);
- } else {
- $outerQuery->setMaxResults($limit);
- $calendarObjects = $this->searchCalendarObjects($outerQuery, $start, $end);
- }
- $calendarObjects = array_map(function ($o) use ($options) {
- $calendarData = Reader::read($o['calendardata']);
- // Expand recurrences if an explicit time range is requested
- if ($calendarData instanceof VCalendar
- && isset($options['timerange']['start'], $options['timerange']['end'])) {
- $calendarData = $calendarData->expand(
- $options['timerange']['start'],
- $options['timerange']['end'],
- );
- }
- $comps = $calendarData->getComponents();
- $objects = [];
- $timezones = [];
- foreach ($comps as $comp) {
- if ($comp instanceof VTimeZone) {
- $timezones[] = $comp;
- } else {
- $objects[] = $comp;
- }
- }
- return [
- 'id' => $o['id'],
- 'type' => $o['componenttype'],
- 'uid' => $o['uid'],
- 'uri' => $o['uri'],
- 'objects' => array_map(function ($c) {
- return $this->transformSearchData($c);
- }, $objects),
- 'timezones' => array_map(function ($c) {
- return $this->transformSearchData($c);
- }, $timezones),
- ];
- }, $calendarObjects);
- usort($calendarObjects, function (array $a, array $b) {
- /** @var DateTimeImmutable $startA */
- $startA = $a['objects'][0]['DTSTART'][0] ?? new DateTimeImmutable(self::MAX_DATE);
- /** @var DateTimeImmutable $startB */
- $startB = $b['objects'][0]['DTSTART'][0] ?? new DateTimeImmutable(self::MAX_DATE);
- return $startA->getTimestamp() <=> $startB->getTimestamp();
- });
- return $calendarObjects;
- }
- private function searchCalendarObjects(IQueryBuilder $query, ?DateTimeInterface $start, ?DateTimeInterface $end): array {
- $calendarObjects = [];
- $filterByTimeRange = ($start instanceof DateTimeInterface) || ($end instanceof DateTimeInterface);
- $result = $query->executeQuery();
- while (($row = $result->fetch()) !== false) {
- if ($filterByTimeRange === false) {
- // No filter required
- $calendarObjects[] = $row;
- continue;
- }
- try {
- $isValid = $this->validateFilterForObject($row, [
- 'name' => 'VCALENDAR',
- 'comp-filters' => [
- [
- 'name' => 'VEVENT',
- 'comp-filters' => [],
- 'prop-filters' => [],
- 'is-not-defined' => false,
- 'time-range' => [
- 'start' => $start,
- 'end' => $end,
- ],
- ],
- ],
- 'prop-filters' => [],
- 'is-not-defined' => false,
- 'time-range' => null,
- ]);
- } catch (MaxInstancesExceededException $ex) {
- $this->logger->warning('Caught max instances exceeded exception for calendar data. This usually indicates too much recurring (more than 3500) event in calendar data. Object uri: ' . $row['uri'], [
- 'app' => 'dav',
- 'exception' => $ex,
- ]);
- continue;
- }
- if (is_resource($row['calendardata'])) {
- // Put the stream back to the beginning so it can be read another time
- rewind($row['calendardata']);
- }
- if ($isValid) {
- $calendarObjects[] = $row;
- }
- }
- $result->closeCursor();
- return $calendarObjects;
- }
- /**
- * @param Component $comp
- * @return array
- */
- private function transformSearchData(Component $comp) {
- $data = [];
- /** @var Component[] $subComponents */
- $subComponents = $comp->getComponents();
- /** @var Property[] $properties */
- $properties = array_filter($comp->children(), function ($c) {
- return $c instanceof Property;
- });
- $validationRules = $comp->getValidationRules();
- foreach ($subComponents as $subComponent) {
- $name = $subComponent->name;
- if (!isset($data[$name])) {
- $data[$name] = [];
- }
- $data[$name][] = $this->transformSearchData($subComponent);
- }
- foreach ($properties as $property) {
- $name = $property->name;
- if (!isset($validationRules[$name])) {
- $validationRules[$name] = '*';
- }
- $rule = $validationRules[$property->name];
- if ($rule === '+' || $rule === '*') { // multiple
- if (!isset($data[$name])) {
- $data[$name] = [];
- }
- $data[$name][] = $this->transformSearchProperty($property);
- } else { // once
- $data[$name] = $this->transformSearchProperty($property);
- }
- }
- return $data;
- }
- /**
- * @param Property $prop
- * @return array
- */
- private function transformSearchProperty(Property $prop) {
- // No need to check Date, as it extends DateTime
- if ($prop instanceof Property\ICalendar\DateTime) {
- $value = $prop->getDateTime();
- } else {
- $value = $prop->getValue();
- }
- return [
- $value,
- $prop->parameters()
- ];
- }
- /**
- * @param string $principalUri
- * @param string $pattern
- * @param array $componentTypes
- * @param array $searchProperties
- * @param array $searchParameters
- * @param array $options
- * @return array
- */
- public function searchPrincipalUri(string $principalUri,
- string $pattern,
- array $componentTypes,
- array $searchProperties,
- array $searchParameters,
- array $options = [],
- ): array {
- return $this->atomic(function () use ($principalUri, $pattern, $componentTypes, $searchProperties, $searchParameters, $options) {
- $escapePattern = !\array_key_exists('escape_like_param', $options) || $options['escape_like_param'] !== false;
- $calendarObjectIdQuery = $this->db->getQueryBuilder();
- $calendarOr = [];
- $searchOr = [];
- // Fetch calendars and subscription
- $calendars = $this->getCalendarsForUser($principalUri);
- $subscriptions = $this->getSubscriptionsForUser($principalUri);
- foreach ($calendars as $calendar) {
- $calendarAnd = $calendarObjectIdQuery->expr()->andX(
- $calendarObjectIdQuery->expr()->eq('cob.calendarid', $calendarObjectIdQuery->createNamedParameter((int)$calendar['id'])),
- $calendarObjectIdQuery->expr()->eq('cob.calendartype', $calendarObjectIdQuery->createNamedParameter(self::CALENDAR_TYPE_CALENDAR)),
- );
- // If it's shared, limit search to public events
- if (isset($calendar['{http://owncloud.org/ns}owner-principal'])
- && $calendar['principaluri'] !== $calendar['{http://owncloud.org/ns}owner-principal']) {
- $calendarAnd->add($calendarObjectIdQuery->expr()->eq('co.classification', $calendarObjectIdQuery->createNamedParameter(self::CLASSIFICATION_PUBLIC)));
- }
- $calendarOr[] = $calendarAnd;
- }
- foreach ($subscriptions as $subscription) {
- $subscriptionAnd = $calendarObjectIdQuery->expr()->andX(
- $calendarObjectIdQuery->expr()->eq('cob.calendarid', $calendarObjectIdQuery->createNamedParameter((int)$subscription['id'])),
- $calendarObjectIdQuery->expr()->eq('cob.calendartype', $calendarObjectIdQuery->createNamedParameter(self::CALENDAR_TYPE_SUBSCRIPTION)),
- );
- // If it's shared, limit search to public events
- if (isset($subscription['{http://owncloud.org/ns}owner-principal'])
- && $subscription['principaluri'] !== $subscription['{http://owncloud.org/ns}owner-principal']) {
- $subscriptionAnd->add($calendarObjectIdQuery->expr()->eq('co.classification', $calendarObjectIdQuery->createNamedParameter(self::CLASSIFICATION_PUBLIC)));
- }
- $calendarOr[] = $subscriptionAnd;
- }
- foreach ($searchProperties as $property) {
- $propertyAnd = $calendarObjectIdQuery->expr()->andX(
- $calendarObjectIdQuery->expr()->eq('cob.name', $calendarObjectIdQuery->createNamedParameter($property, IQueryBuilder::PARAM_STR)),
- $calendarObjectIdQuery->expr()->isNull('cob.parameter'),
- );
- $searchOr[] = $propertyAnd;
- }
- foreach ($searchParameters as $property => $parameter) {
- $parameterAnd = $calendarObjectIdQuery->expr()->andX(
- $calendarObjectIdQuery->expr()->eq('cob.name', $calendarObjectIdQuery->createNamedParameter($property, IQueryBuilder::PARAM_STR)),
- $calendarObjectIdQuery->expr()->eq('cob.parameter', $calendarObjectIdQuery->createNamedParameter($parameter, IQueryBuilder::PARAM_STR_ARRAY)),
- );
- $searchOr[] = $parameterAnd;
- }
- if (empty($calendarOr)) {
- return [];
- }
- if (empty($searchOr)) {
- return [];
- }
- $calendarObjectIdQuery->selectDistinct('cob.objectid')
- ->from($this->dbObjectPropertiesTable, 'cob')
- ->leftJoin('cob', 'calendarobjects', 'co', $calendarObjectIdQuery->expr()->eq('co.id', 'cob.objectid'))
- ->andWhere($calendarObjectIdQuery->expr()->in('co.componenttype', $calendarObjectIdQuery->createNamedParameter($componentTypes, IQueryBuilder::PARAM_STR_ARRAY)))
- ->andWhere($calendarObjectIdQuery->expr()->orX(...$calendarOr))
- ->andWhere($calendarObjectIdQuery->expr()->orX(...$searchOr))
- ->andWhere($calendarObjectIdQuery->expr()->isNull('deleted_at'));
- if ($pattern !== '') {
- if (!$escapePattern) {
- $calendarObjectIdQuery->andWhere($calendarObjectIdQuery->expr()->ilike('cob.value', $calendarObjectIdQuery->createNamedParameter($pattern)));
- } else {
- $calendarObjectIdQuery->andWhere($calendarObjectIdQuery->expr()->ilike('cob.value', $calendarObjectIdQuery->createNamedParameter('%' . $this->db->escapeLikeParameter($pattern) . '%')));
- }
- }
- if (isset($options['limit'])) {
- $calendarObjectIdQuery->setMaxResults($options['limit']);
- }
- if (isset($options['offset'])) {
- $calendarObjectIdQuery->setFirstResult($options['offset']);
- }
- if (isset($options['timerange'])) {
- if (isset($options['timerange']['start']) && $options['timerange']['start'] instanceof DateTimeInterface) {
- $calendarObjectIdQuery->andWhere($calendarObjectIdQuery->expr()->gt(
- 'lastoccurence',
- $calendarObjectIdQuery->createNamedParameter($options['timerange']['start']->getTimeStamp()),
- ));
- }
- if (isset($options['timerange']['end']) && $options['timerange']['end'] instanceof DateTimeInterface) {
- $calendarObjectIdQuery->andWhere($calendarObjectIdQuery->expr()->lt(
- 'firstoccurence',
- $calendarObjectIdQuery->createNamedParameter($options['timerange']['end']->getTimeStamp()),
- ));
- }
- }
- $result = $calendarObjectIdQuery->executeQuery();
- $matches = [];
- while (($row = $result->fetch()) !== false) {
- $matches[] = (int)$row['objectid'];
- }
- $result->closeCursor();
- $query = $this->db->getQueryBuilder();
- $query->select('calendardata', 'uri', 'calendarid', 'calendartype')
- ->from('calendarobjects')
- ->where($query->expr()->in('id', $query->createNamedParameter($matches, IQueryBuilder::PARAM_INT_ARRAY)));
- $result = $query->executeQuery();
- $calendarObjects = [];
- while (($array = $result->fetch()) !== false) {
- $array['calendarid'] = (int)$array['calendarid'];
- $array['calendartype'] = (int)$array['calendartype'];
- $array['calendardata'] = $this->readBlob($array['calendardata']);
- $calendarObjects[] = $array;
- }
- $result->closeCursor();
- return $calendarObjects;
- }, $this->db);
- }
- /**
- * Searches through all of a users calendars and calendar objects to find
- * an object with a specific UID.
- *
- * This method should return the path to this object, relative to the
- * calendar home, so this path usually only contains two parts:
- *
- * calendarpath/objectpath.ics
- *
- * If the uid is not found, return null.
- *
- * This method should only consider * objects that the principal owns, so
- * any calendars owned by other principals that also appear in this
- * collection should be ignored.
- *
- * @param string $principalUri
- * @param string $uid
- * @return string|null
- */
- public function getCalendarObjectByUID($principalUri, $uid) {
- $query = $this->db->getQueryBuilder();
- $query->selectAlias('c.uri', 'calendaruri')->selectAlias('co.uri', 'objecturi')
- ->from('calendarobjects', 'co')
- ->leftJoin('co', 'calendars', 'c', $query->expr()->eq('co.calendarid', 'c.id'))
- ->where($query->expr()->eq('c.principaluri', $query->createNamedParameter($principalUri)))
- ->andWhere($query->expr()->eq('co.uid', $query->createNamedParameter($uid)))
- ->andWhere($query->expr()->isNull('co.deleted_at'));
- $stmt = $query->executeQuery();
- $row = $stmt->fetch();
- $stmt->closeCursor();
- if ($row) {
- return $row['calendaruri'] . '/' . $row['objecturi'];
- }
- return null;
- }
- public function getCalendarObjectById(string $principalUri, int $id): ?array {
- $query = $this->db->getQueryBuilder();
- $query->select(['co.id', 'co.uri', 'co.lastmodified', 'co.etag', 'co.calendarid', 'co.size', 'co.calendardata', 'co.componenttype', 'co.classification', 'co.deleted_at'])
- ->selectAlias('c.uri', 'calendaruri')
- ->from('calendarobjects', 'co')
- ->join('co', 'calendars', 'c', $query->expr()->eq('c.id', 'co.calendarid', IQueryBuilder::PARAM_INT))
- ->where($query->expr()->eq('c.principaluri', $query->createNamedParameter($principalUri)))
- ->andWhere($query->expr()->eq('co.id', $query->createNamedParameter($id, IQueryBuilder::PARAM_INT), IQueryBuilder::PARAM_INT));
- $stmt = $query->executeQuery();
- $row = $stmt->fetch();
- $stmt->closeCursor();
- if (!$row) {
- return null;
- }
- return [
- 'id' => $row['id'],
- 'uri' => $row['uri'],
- 'lastmodified' => $row['lastmodified'],
- 'etag' => '"' . $row['etag'] . '"',
- 'calendarid' => $row['calendarid'],
- 'calendaruri' => $row['calendaruri'],
- 'size' => (int)$row['size'],
- 'calendardata' => $this->readBlob($row['calendardata']),
- 'component' => strtolower($row['componenttype']),
- 'classification' => (int)$row['classification'],
- 'deleted_at' => isset($row['deleted_at']) ? ((int)$row['deleted_at']) : null,
- ];
- }
- /**
- * The getChanges method returns all the changes that have happened, since
- * the specified syncToken in the specified calendar.
- *
- * This function should return an array, such as the following:
- *
- * [
- * 'syncToken' => 'The current synctoken',
- * 'added' => [
- * 'new.txt',
- * ],
- * 'modified' => [
- * 'modified.txt',
- * ],
- * 'deleted' => [
- * 'foo.php.bak',
- * 'old.txt'
- * ]
- * );
- *
- * The returned syncToken property should reflect the *current* syncToken
- * of the calendar, as reported in the {http://sabredav.org/ns}sync-token
- * property This is * needed here too, to ensure the operation is atomic.
- *
- * If the $syncToken argument is specified as null, this is an initial
- * sync, and all members should be reported.
- *
- * The modified property is an array of nodenames that have changed since
- * the last token.
- *
- * The deleted property is an array with nodenames, that have been deleted
- * from collection.
- *
- * The $syncLevel argument is basically the 'depth' of the report. If it's
- * 1, you only have to report changes that happened only directly in
- * immediate descendants. If it's 2, it should also include changes from
- * the nodes below the child collections. (grandchildren)
- *
- * The $limit argument allows a client to specify how many results should
- * be returned at most. If the limit is not specified, it should be treated
- * as infinite.
- *
- * If the limit (infinite or not) is higher than you're willing to return,
- * you should throw a Sabre\DAV\Exception\TooMuchMatches() exception.
- *
- * If the syncToken is expired (due to data cleanup) or unknown, you must
- * return null.
- *
- * The limit is 'suggestive'. You are free to ignore it.
- *
- * @param string $calendarId
- * @param string $syncToken
- * @param int $syncLevel
- * @param int|null $limit
- * @param int $calendarType
- * @return ?array
- */
- public function getChangesForCalendar($calendarId, $syncToken, $syncLevel, $limit = null, $calendarType = self::CALENDAR_TYPE_CALENDAR) {
- $table = $calendarType === self::CALENDAR_TYPE_CALENDAR ? 'calendars': 'calendarsubscriptions';
- return $this->atomic(function () use ($calendarId, $syncToken, $syncLevel, $limit, $calendarType, $table) {
- // Current synctoken
- $qb = $this->db->getQueryBuilder();
- $qb->select('synctoken')
- ->from($table)
- ->where(
- $qb->expr()->eq('id', $qb->createNamedParameter($calendarId))
- );
- $stmt = $qb->executeQuery();
- $currentToken = $stmt->fetchOne();
- $initialSync = !is_numeric($syncToken);
- if ($currentToken === false) {
- return null;
- }
- // evaluate if this is a initial sync and construct appropriate command
- if ($initialSync) {
- $qb = $this->db->getQueryBuilder();
- $qb->select('uri')
- ->from('calendarobjects')
- ->where($qb->expr()->eq('calendarid', $qb->createNamedParameter($calendarId)))
- ->andWhere($qb->expr()->eq('calendartype', $qb->createNamedParameter($calendarType)))
- ->andWhere($qb->expr()->isNull('deleted_at'));
- } else {
- $qb = $this->db->getQueryBuilder();
- $qb->select('uri', $qb->func()->max('operation'))
- ->from('calendarchanges')
- ->where($qb->expr()->eq('calendarid', $qb->createNamedParameter($calendarId)))
- ->andWhere($qb->expr()->eq('calendartype', $qb->createNamedParameter($calendarType)))
- ->andWhere($qb->expr()->gte('synctoken', $qb->createNamedParameter($syncToken)))
- ->andWhere($qb->expr()->lt('synctoken', $qb->createNamedParameter($currentToken)))
- ->groupBy('uri');
- }
- // evaluate if limit exists
- if (is_numeric($limit)) {
- $qb->setMaxResults($limit);
- }
- // execute command
- $stmt = $qb->executeQuery();
- // build results
- $result = ['syncToken' => $currentToken, 'added' => [], 'modified' => [], 'deleted' => []];
- // retrieve results
- if ($initialSync) {
- $result['added'] = $stmt->fetchAll(\PDO::FETCH_COLUMN);
- } else {
- // \PDO::FETCH_NUM is needed due to the inconsistent field names
- // produced by doctrine for MAX() with different databases
- while ($entry = $stmt->fetch(\PDO::FETCH_NUM)) {
- // assign uri (column 0) to appropriate mutation based on operation (column 1)
- // forced (int) is needed as doctrine with OCI returns the operation field as string not integer
- match ((int)$entry[1]) {
- 1 => $result['added'][] = $entry[0],
- 2 => $result['modified'][] = $entry[0],
- 3 => $result['deleted'][] = $entry[0],
- default => $this->logger->debug('Unknown calendar change operation detected')
- };
- }
- }
- $stmt->closeCursor();
- return $result;
- }, $this->db);
- }
- /**
- * Returns a list of subscriptions for a principal.
- *
- * Every subscription is an array with the following keys:
- * * id, a unique id that will be used by other functions to modify the
- * subscription. This can be the same as the uri or a database key.
- * * uri. This is just the 'base uri' or 'filename' of the subscription.
- * * principaluri. The owner of the subscription. Almost always the same as
- * principalUri passed to this method.
- *
- * Furthermore, all the subscription info must be returned too:
- *
- * 1. {DAV:}displayname
- * 2. {http://apple.com/ns/ical/}refreshrate
- * 3. {http://calendarserver.org/ns/}subscribed-strip-todos (omit if todos
- * should not be stripped).
- * 4. {http://calendarserver.org/ns/}subscribed-strip-alarms (omit if alarms
- * should not be stripped).
- * 5. {http://calendarserver.org/ns/}subscribed-strip-attachments (omit if
- * attachments should not be stripped).
- * 6. {http://calendarserver.org/ns/}source (Must be a
- * Sabre\DAV\Property\Href).
- * 7. {http://apple.com/ns/ical/}calendar-color
- * 8. {http://apple.com/ns/ical/}calendar-order
- * 9. {urn:ietf:params:xml:ns:caldav}supported-calendar-component-set
- * (should just be an instance of
- * Sabre\CalDAV\Property\SupportedCalendarComponentSet, with a bunch of
- * default components).
- *
- * @param string $principalUri
- * @return array
- */
- public function getSubscriptionsForUser($principalUri) {
- $fields = array_column($this->subscriptionPropertyMap, 0);
- $fields[] = 'id';
- $fields[] = 'uri';
- $fields[] = 'source';
- $fields[] = 'principaluri';
- $fields[] = 'lastmodified';
- $fields[] = 'synctoken';
- $query = $this->db->getQueryBuilder();
- $query->select($fields)
- ->from('calendarsubscriptions')
- ->where($query->expr()->eq('principaluri', $query->createNamedParameter($principalUri)))
- ->orderBy('calendarorder', 'asc');
- $stmt = $query->executeQuery();
- $subscriptions = [];
- while ($row = $stmt->fetch()) {
- $subscription = [
- 'id' => $row['id'],
- 'uri' => $row['uri'],
- 'principaluri' => $row['principaluri'],
- 'source' => $row['source'],
- 'lastmodified' => $row['lastmodified'],
- '{' . Plugin::NS_CALDAV . '}supported-calendar-component-set' => new SupportedCalendarComponentSet(['VTODO', 'VEVENT']),
- '{http://sabredav.org/ns}sync-token' => $row['synctoken'] ?: '0',
- ];
- $subscriptions[] = $this->rowToSubscription($row, $subscription);
- }
- return $subscriptions;
- }
- /**
- * Creates a new subscription for a principal.
- *
- * If the creation was a success, an id must be returned that can be used to reference
- * this subscription in other methods, such as updateSubscription.
- *
- * @param string $principalUri
- * @param string $uri
- * @param array $properties
- * @return mixed
- */
- public function createSubscription($principalUri, $uri, array $properties) {
- if (!isset($properties['{http://calendarserver.org/ns/}source'])) {
- throw new Forbidden('The {http://calendarserver.org/ns/}source property is required when creating subscriptions');
- }
- $values = [
- 'principaluri' => $principalUri,
- 'uri' => $uri,
- 'source' => $properties['{http://calendarserver.org/ns/}source']->getHref(),
- 'lastmodified' => time(),
- ];
- $propertiesBoolean = ['striptodos', 'stripalarms', 'stripattachments'];
- foreach ($this->subscriptionPropertyMap as $xmlName => [$dbName, $type]) {
- if (array_key_exists($xmlName, $properties)) {
- $values[$dbName] = $properties[$xmlName];
- if (in_array($dbName, $propertiesBoolean)) {
- $values[$dbName] = true;
- }
- }
- }
- [$subscriptionId, $subscriptionRow] = $this->atomic(function () use ($values) {
- $valuesToInsert = [];
- $query = $this->db->getQueryBuilder();
- foreach (array_keys($values) as $name) {
- $valuesToInsert[$name] = $query->createNamedParameter($values[$name]);
- }
- $query->insert('calendarsubscriptions')
- ->values($valuesToInsert)
- ->executeStatement();
- $subscriptionId = $query->getLastInsertId();
- $subscriptionRow = $this->getSubscriptionById($subscriptionId);
- return [$subscriptionId, $subscriptionRow];
- }, $this->db);
- $this->dispatcher->dispatchTyped(new SubscriptionCreatedEvent($subscriptionId, $subscriptionRow));
- return $subscriptionId;
- }
- /**
- * Updates a subscription
- *
- * The list of mutations is stored in a Sabre\DAV\PropPatch object.
- * To do the actual updates, you must tell this object which properties
- * you're going to process with the handle() method.
- *
- * Calling the handle method is like telling the PropPatch object "I
- * promise I can handle updating this property".
- *
- * Read the PropPatch documentation for more info and examples.
- *
- * @param mixed $subscriptionId
- * @param PropPatch $propPatch
- * @return void
- */
- public function updateSubscription($subscriptionId, PropPatch $propPatch) {
- $supportedProperties = array_keys($this->subscriptionPropertyMap);
- $supportedProperties[] = '{http://calendarserver.org/ns/}source';
- $propPatch->handle($supportedProperties, function ($mutations) use ($subscriptionId) {
- $newValues = [];
- foreach ($mutations as $propertyName => $propertyValue) {
- if ($propertyName === '{http://calendarserver.org/ns/}source') {
- $newValues['source'] = $propertyValue->getHref();
- } else {
- $fieldName = $this->subscriptionPropertyMap[$propertyName][0];
- $newValues[$fieldName] = $propertyValue;
- }
- }
- $subscriptionRow = $this->atomic(function () use ($subscriptionId, $newValues) {
- $query = $this->db->getQueryBuilder();
- $query->update('calendarsubscriptions')
- ->set('lastmodified', $query->createNamedParameter(time()));
- foreach ($newValues as $fieldName => $value) {
- $query->set($fieldName, $query->createNamedParameter($value));
- }
- $query->where($query->expr()->eq('id', $query->createNamedParameter($subscriptionId)))
- ->executeStatement();
- return $this->getSubscriptionById($subscriptionId);
- }, $this->db);
- $this->dispatcher->dispatchTyped(new SubscriptionUpdatedEvent((int)$subscriptionId, $subscriptionRow, [], $mutations));
- return true;
- });
- }
- /**
- * Deletes a subscription.
- *
- * @param mixed $subscriptionId
- * @return void
- */
- public function deleteSubscription($subscriptionId) {
- $this->atomic(function () use ($subscriptionId): void {
- $subscriptionRow = $this->getSubscriptionById($subscriptionId);
- $query = $this->db->getQueryBuilder();
- $query->delete('calendarsubscriptions')
- ->where($query->expr()->eq('id', $query->createNamedParameter($subscriptionId)))
- ->executeStatement();
- $query = $this->db->getQueryBuilder();
- $query->delete('calendarobjects')
- ->where($query->expr()->eq('calendarid', $query->createNamedParameter($subscriptionId)))
- ->andWhere($query->expr()->eq('calendartype', $query->createNamedParameter(self::CALENDAR_TYPE_SUBSCRIPTION)))
- ->executeStatement();
- $query->delete('calendarchanges')
- ->where($query->expr()->eq('calendarid', $query->createNamedParameter($subscriptionId)))
- ->andWhere($query->expr()->eq('calendartype', $query->createNamedParameter(self::CALENDAR_TYPE_SUBSCRIPTION)))
- ->executeStatement();
- $query->delete($this->dbObjectPropertiesTable)
- ->where($query->expr()->eq('calendarid', $query->createNamedParameter($subscriptionId)))
- ->andWhere($query->expr()->eq('calendartype', $query->createNamedParameter(self::CALENDAR_TYPE_SUBSCRIPTION)))
- ->executeStatement();
- if ($subscriptionRow) {
- $this->dispatcher->dispatchTyped(new SubscriptionDeletedEvent((int)$subscriptionId, $subscriptionRow, []));
- }
- }, $this->db);
- }
- /**
- * Returns a single scheduling object for the inbox collection.
- *
- * The returned array should contain the following elements:
- * * uri - A unique basename for the object. This will be used to
- * construct a full uri.
- * * calendardata - The iCalendar object
- * * lastmodified - The last modification date. Can be an int for a unix
- * timestamp, or a PHP DateTime object.
- * * etag - A unique token that must change if the object changed.
- * * size - The size of the object, in bytes.
- *
- * @param string $principalUri
- * @param string $objectUri
- * @return array
- */
- public function getSchedulingObject($principalUri, $objectUri) {
- $query = $this->db->getQueryBuilder();
- $stmt = $query->select(['uri', 'calendardata', 'lastmodified', 'etag', 'size'])
- ->from('schedulingobjects')
- ->where($query->expr()->eq('principaluri', $query->createNamedParameter($principalUri)))
- ->andWhere($query->expr()->eq('uri', $query->createNamedParameter($objectUri)))
- ->executeQuery();
- $row = $stmt->fetch();
- if (!$row) {
- return null;
- }
- return [
- 'uri' => $row['uri'],
- 'calendardata' => $row['calendardata'],
- 'lastmodified' => $row['lastmodified'],
- 'etag' => '"' . $row['etag'] . '"',
- 'size' => (int)$row['size'],
- ];
- }
- /**
- * Returns all scheduling objects for the inbox collection.
- *
- * These objects should be returned as an array. Every item in the array
- * should follow the same structure as returned from getSchedulingObject.
- *
- * The main difference is that 'calendardata' is optional.
- *
- * @param string $principalUri
- * @return array
- */
- public function getSchedulingObjects($principalUri) {
- $query = $this->db->getQueryBuilder();
- $stmt = $query->select(['uri', 'calendardata', 'lastmodified', 'etag', 'size'])
- ->from('schedulingobjects')
- ->where($query->expr()->eq('principaluri', $query->createNamedParameter($principalUri)))
- ->executeQuery();
- $results = [];
- while (($row = $stmt->fetch()) !== false) {
- $results[] = [
- 'calendardata' => $row['calendardata'],
- 'uri' => $row['uri'],
- 'lastmodified' => $row['lastmodified'],
- 'etag' => '"' . $row['etag'] . '"',
- 'size' => (int)$row['size'],
- ];
- }
- $stmt->closeCursor();
- return $results;
- }
- /**
- * Deletes a scheduling object from the inbox collection.
- *
- * @param string $principalUri
- * @param string $objectUri
- * @return void
- */
- public function deleteSchedulingObject($principalUri, $objectUri) {
- $this->cachedObjects = [];
- $query = $this->db->getQueryBuilder();
- $query->delete('schedulingobjects')
- ->where($query->expr()->eq('principaluri', $query->createNamedParameter($principalUri)))
- ->andWhere($query->expr()->eq('uri', $query->createNamedParameter($objectUri)))
- ->executeStatement();
- }
- /**
- * Deletes all scheduling objects last modified before $modifiedBefore from the inbox collection.
- *
- * @param int $modifiedBefore
- * @param int $limit
- * @return void
- */
- public function deleteOutdatedSchedulingObjects(int $modifiedBefore, int $limit): void {
- $query = $this->db->getQueryBuilder();
- $query->select('id')
- ->from('schedulingobjects')
- ->where($query->expr()->lt('lastmodified', $query->createNamedParameter($modifiedBefore)))
- ->setMaxResults($limit);
- $result = $query->executeQuery();
- $count = $result->rowCount();
- if ($count === 0) {
- return;
- }
- $ids = array_map(static function (array $id) {
- return (int)$id[0];
- }, $result->fetchAll(\PDO::FETCH_NUM));
- $result->closeCursor();
- $numDeleted = 0;
- $deleteQuery = $this->db->getQueryBuilder();
- $deleteQuery->delete('schedulingobjects')
- ->where($deleteQuery->expr()->in('id', $deleteQuery->createParameter('ids'), IQueryBuilder::PARAM_INT_ARRAY));
- foreach (array_chunk($ids, 1000) as $chunk) {
- $deleteQuery->setParameter('ids', $chunk, IQueryBuilder::PARAM_INT_ARRAY);
- $numDeleted += $deleteQuery->executeStatement();
- }
- if ($numDeleted === $limit) {
- $this->logger->info("Deleted $limit scheduling objects, continuing with next batch");
- $this->deleteOutdatedSchedulingObjects($modifiedBefore, $limit);
- }
- }
- /**
- * Creates a new scheduling object. This should land in a users' inbox.
- *
- * @param string $principalUri
- * @param string $objectUri
- * @param string $objectData
- * @return void
- */
- public function createSchedulingObject($principalUri, $objectUri, $objectData) {
- $this->cachedObjects = [];
- $query = $this->db->getQueryBuilder();
- $query->insert('schedulingobjects')
- ->values([
- 'principaluri' => $query->createNamedParameter($principalUri),
- 'calendardata' => $query->createNamedParameter($objectData, IQueryBuilder::PARAM_LOB),
- 'uri' => $query->createNamedParameter($objectUri),
- 'lastmodified' => $query->createNamedParameter(time()),
- 'etag' => $query->createNamedParameter(md5($objectData)),
- 'size' => $query->createNamedParameter(strlen($objectData))
- ])
- ->executeStatement();
- }
- /**
- * Adds a change record to the calendarchanges table.
- *
- * @param mixed $calendarId
- * @param string[] $objectUris
- * @param int $operation 1 = add, 2 = modify, 3 = delete.
- * @param int $calendarType
- * @return void
- */
- protected function addChanges(int $calendarId, array $objectUris, int $operation, int $calendarType = self::CALENDAR_TYPE_CALENDAR): void {
- $this->cachedObjects = [];
- $table = $calendarType === self::CALENDAR_TYPE_CALENDAR ? 'calendars': 'calendarsubscriptions';
- $this->atomic(function () use ($calendarId, $objectUris, $operation, $calendarType, $table): void {
- $query = $this->db->getQueryBuilder();
- $query->select('synctoken')
- ->from($table)
- ->where($query->expr()->eq('id', $query->createNamedParameter($calendarId)));
- $result = $query->executeQuery();
- $syncToken = (int)$result->fetchOne();
- $result->closeCursor();
- $query = $this->db->getQueryBuilder();
- $query->insert('calendarchanges')
- ->values([
- 'uri' => $query->createParameter('uri'),
- 'synctoken' => $query->createNamedParameter($syncToken),
- 'calendarid' => $query->createNamedParameter($calendarId),
- 'operation' => $query->createNamedParameter($operation),
- 'calendartype' => $query->createNamedParameter($calendarType),
- 'created_at' => time(),
- ]);
- foreach ($objectUris as $uri) {
- $query->setParameter('uri', $uri);
- $query->executeStatement();
- }
- $query = $this->db->getQueryBuilder();
- $query->update($table)
- ->set('synctoken', $query->createNamedParameter($syncToken + 1, IQueryBuilder::PARAM_INT))
- ->where($query->expr()->eq('id', $query->createNamedParameter($calendarId)))
- ->executeStatement();
- }, $this->db);
- }
- public function restoreChanges(int $calendarId, int $calendarType = self::CALENDAR_TYPE_CALENDAR): void {
- $this->cachedObjects = [];
- $this->atomic(function () use ($calendarId, $calendarType): void {
- $qbAdded = $this->db->getQueryBuilder();
- $qbAdded->select('uri')
- ->from('calendarobjects')
- ->where(
- $qbAdded->expr()->andX(
- $qbAdded->expr()->eq('calendarid', $qbAdded->createNamedParameter($calendarId)),
- $qbAdded->expr()->eq('calendartype', $qbAdded->createNamedParameter($calendarType)),
- $qbAdded->expr()->isNull('deleted_at'),
- )
- );
- $resultAdded = $qbAdded->executeQuery();
- $addedUris = $resultAdded->fetchAll(\PDO::FETCH_COLUMN);
- $resultAdded->closeCursor();
- // Track everything as changed
- // Tracking the creation is not necessary because \OCA\DAV\CalDAV\CalDavBackend::getChangesForCalendar
- // only returns the last change per object.
- $this->addChanges($calendarId, $addedUris, 2, $calendarType);
- $qbDeleted = $this->db->getQueryBuilder();
- $qbDeleted->select('uri')
- ->from('calendarobjects')
- ->where(
- $qbDeleted->expr()->andX(
- $qbDeleted->expr()->eq('calendarid', $qbDeleted->createNamedParameter($calendarId)),
- $qbDeleted->expr()->eq('calendartype', $qbDeleted->createNamedParameter($calendarType)),
- $qbDeleted->expr()->isNotNull('deleted_at'),
- )
- );
- $resultDeleted = $qbDeleted->executeQuery();
- $deletedUris = array_map(function (string $uri) {
- return str_replace('-deleted.ics', '.ics', $uri);
- }, $resultDeleted->fetchAll(\PDO::FETCH_COLUMN));
- $resultDeleted->closeCursor();
- $this->addChanges($calendarId, $deletedUris, 3, $calendarType);
- }, $this->db);
- }
- /**
- * Parses some information from calendar objects, used for optimized
- * calendar-queries.
- *
- * Returns an array with the following keys:
- * * etag - An md5 checksum of the object without the quotes.
- * * size - Size of the object in bytes
- * * componentType - VEVENT, VTODO or VJOURNAL
- * * firstOccurence
- * * lastOccurence
- * * uid - value of the UID property
- *
- * @param string $calendarData
- * @return array
- */
- public function getDenormalizedData(string $calendarData): array {
- $vObject = Reader::read($calendarData);
- $vEvents = [];
- $componentType = null;
- $component = null;
- $firstOccurrence = null;
- $lastOccurrence = null;
- $uid = null;
- $classification = self::CLASSIFICATION_PUBLIC;
- $hasDTSTART = false;
- foreach ($vObject->getComponents() as $component) {
- if ($component->name !== 'VTIMEZONE') {
- // Finding all VEVENTs, and track them
- if ($component->name === 'VEVENT') {
- $vEvents[] = $component;
- if ($component->DTSTART) {
- $hasDTSTART = true;
- }
- }
- // Track first component type and uid
- if ($uid === null) {
- $componentType = $component->name;
- $uid = (string)$component->UID;
- }
- }
- }
- if (!$componentType) {
- throw new BadRequest('Calendar objects must have a VJOURNAL, VEVENT or VTODO component');
- }
- if ($hasDTSTART) {
- $component = $vEvents[0];
- // Finding the last occurrence is a bit harder
- if (!isset($component->RRULE) && count($vEvents) === 1) {
- $firstOccurrence = $component->DTSTART->getDateTime()->getTimeStamp();
- if (isset($component->DTEND)) {
- $lastOccurrence = $component->DTEND->getDateTime()->getTimeStamp();
- } elseif (isset($component->DURATION)) {
- $endDate = clone $component->DTSTART->getDateTime();
- $endDate->add(DateTimeParser::parse($component->DURATION->getValue()));
- $lastOccurrence = $endDate->getTimeStamp();
- } elseif (!$component->DTSTART->hasTime()) {
- $endDate = clone $component->DTSTART->getDateTime();
- $endDate->modify('+1 day');
- $lastOccurrence = $endDate->getTimeStamp();
- } else {
- $lastOccurrence = $firstOccurrence;
- }
- } else {
- try {
- $it = new EventIterator($vEvents);
- } catch (NoInstancesException $e) {
- $this->logger->debug('Caught no instance exception for calendar data. This usually indicates invalid calendar data.', [
- 'app' => 'dav',
- 'exception' => $e,
- ]);
- throw new Forbidden($e->getMessage());
- }
- $maxDate = new DateTime(self::MAX_DATE);
- $firstOccurrence = $it->getDtStart()->getTimestamp();
- if ($it->isInfinite()) {
- $lastOccurrence = $maxDate->getTimestamp();
- } else {
- $end = $it->getDtEnd();
- while ($it->valid() && $end < $maxDate) {
- $end = $it->getDtEnd();
- $it->next();
- }
- $lastOccurrence = $end->getTimestamp();
- }
- }
- }
- if ($component->CLASS) {
- $classification = CalDavBackend::CLASSIFICATION_PRIVATE;
- switch ($component->CLASS->getValue()) {
- case 'PUBLIC':
- $classification = CalDavBackend::CLASSIFICATION_PUBLIC;
- break;
- case 'CONFIDENTIAL':
- $classification = CalDavBackend::CLASSIFICATION_CONFIDENTIAL;
- break;
- }
- }
- return [
- 'etag' => md5($calendarData),
- 'size' => strlen($calendarData),
- 'componentType' => $componentType,
- 'firstOccurence' => is_null($firstOccurrence) ? null : max(0, $firstOccurrence),
- 'lastOccurence' => is_null($lastOccurrence) ? null : max(0, $lastOccurrence),
- 'uid' => $uid,
- 'classification' => $classification
- ];
- }
- /**
- * @param $cardData
- * @return bool|string
- */
- private function readBlob($cardData) {
- if (is_resource($cardData)) {
- return stream_get_contents($cardData);
- }
- return $cardData;
- }
- /**
- * @param list<array{href: string, commonName: string, readOnly: bool}> $add
- * @param list<string> $remove
- */
- public function updateShares(IShareable $shareable, array $add, array $remove): void {
- $this->atomic(function () use ($shareable, $add, $remove): void {
- $calendarId = $shareable->getResourceId();
- $calendarRow = $this->getCalendarById($calendarId);
- if ($calendarRow === null) {
- throw new \RuntimeException('Trying to update shares for non-existing calendar: ' . $calendarId);
- }
- $oldShares = $this->getShares($calendarId);
- $this->calendarSharingBackend->updateShares($shareable, $add, $remove, $oldShares);
- $this->dispatcher->dispatchTyped(new CalendarShareUpdatedEvent($calendarId, $calendarRow, $oldShares, $add, $remove));
- }, $this->db);
- }
- /**
- * @return list<array{href: string, commonName: string, status: int, readOnly: bool, '{http://owncloud.org/ns}principal': string, '{http://owncloud.org/ns}group-share': bool}>
- */
- public function getShares(int $resourceId): array {
- return $this->calendarSharingBackend->getShares($resourceId);
- }
- public function preloadShares(array $resourceIds): void {
- $this->calendarSharingBackend->preloadShares($resourceIds);
- }
- /**
- * @param boolean $value
- * @param Calendar $calendar
- * @return string|null
- */
- public function setPublishStatus($value, $calendar) {
- return $this->atomic(function () use ($value, $calendar) {
- $calendarId = $calendar->getResourceId();
- $calendarData = $this->getCalendarById($calendarId);
- $query = $this->db->getQueryBuilder();
- if ($value) {
- $publicUri = $this->random->generate(16, ISecureRandom::CHAR_HUMAN_READABLE);
- $query->insert('dav_shares')
- ->values([
- 'principaluri' => $query->createNamedParameter($calendar->getPrincipalURI()),
- 'type' => $query->createNamedParameter('calendar'),
- 'access' => $query->createNamedParameter(self::ACCESS_PUBLIC),
- 'resourceid' => $query->createNamedParameter($calendar->getResourceId()),
- 'publicuri' => $query->createNamedParameter($publicUri)
- ]);
- $query->executeStatement();
- $this->dispatcher->dispatchTyped(new CalendarPublishedEvent($calendarId, $calendarData, $publicUri));
- return $publicUri;
- }
- $query->delete('dav_shares')
- ->where($query->expr()->eq('resourceid', $query->createNamedParameter($calendar->getResourceId())))
- ->andWhere($query->expr()->eq('access', $query->createNamedParameter(self::ACCESS_PUBLIC)));
- $query->executeStatement();
- $this->dispatcher->dispatchTyped(new CalendarUnpublishedEvent($calendarId, $calendarData));
- return null;
- }, $this->db);
- }
- /**
- * @param Calendar $calendar
- * @return mixed
- */
- public function getPublishStatus($calendar) {
- $query = $this->db->getQueryBuilder();
- $result = $query->select('publicuri')
- ->from('dav_shares')
- ->where($query->expr()->eq('resourceid', $query->createNamedParameter($calendar->getResourceId())))
- ->andWhere($query->expr()->eq('access', $query->createNamedParameter(self::ACCESS_PUBLIC)))
- ->executeQuery();
- $row = $result->fetch();
- $result->closeCursor();
- return $row ? reset($row) : false;
- }
- /**
- * @param int $resourceId
- * @param list<array{privilege: string, principal: string, protected: bool}> $acl
- * @return list<array{privilege: string, principal: string, protected: bool}>
- */
- public function applyShareAcl(int $resourceId, array $acl): array {
- $shares = $this->calendarSharingBackend->getShares($resourceId);
- return $this->calendarSharingBackend->applyShareAcl($shares, $acl);
- }
- /**
- * update properties table
- *
- * @param int $calendarId
- * @param string $objectUri
- * @param string $calendarData
- * @param int $calendarType
- */
- public function updateProperties($calendarId, $objectUri, $calendarData, $calendarType = self::CALENDAR_TYPE_CALENDAR) {
- $this->cachedObjects = [];
- $this->atomic(function () use ($calendarId, $objectUri, $calendarData, $calendarType): void {
- $objectId = $this->getCalendarObjectId($calendarId, $objectUri, $calendarType);
- try {
- $vCalendar = $this->readCalendarData($calendarData);
- } catch (\Exception $ex) {
- return;
- }
- $this->purgeProperties($calendarId, $objectId);
- $query = $this->db->getQueryBuilder();
- $query->insert($this->dbObjectPropertiesTable)
- ->values(
- [
- 'calendarid' => $query->createNamedParameter($calendarId),
- 'calendartype' => $query->createNamedParameter($calendarType),
- 'objectid' => $query->createNamedParameter($objectId),
- 'name' => $query->createParameter('name'),
- 'parameter' => $query->createParameter('parameter'),
- 'value' => $query->createParameter('value'),
- ]
- );
- $indexComponents = ['VEVENT', 'VJOURNAL', 'VTODO'];
- foreach ($vCalendar->getComponents() as $component) {
- if (!in_array($component->name, $indexComponents)) {
- continue;
- }
- foreach ($component->children() as $property) {
- if (in_array($property->name, self::INDEXED_PROPERTIES, true)) {
- $value = $property->getValue();
- // is this a shitty db?
- if (!$this->db->supports4ByteText()) {
- $value = preg_replace('/[\x{10000}-\x{10FFFF}]/u', "\xEF\xBF\xBD", $value);
- }
- $value = mb_strcut($value, 0, 254);
- $query->setParameter('name', $property->name);
- $query->setParameter('parameter', null);
- $query->setParameter('value', mb_strcut($value, 0, 254));
- $query->executeStatement();
- }
- if (array_key_exists($property->name, self::$indexParameters)) {
- $parameters = $property->parameters();
- $indexedParametersForProperty = self::$indexParameters[$property->name];
- foreach ($parameters as $key => $value) {
- if (in_array($key, $indexedParametersForProperty)) {
- // is this a shitty db?
- if ($this->db->supports4ByteText()) {
- $value = preg_replace('/[\x{10000}-\x{10FFFF}]/u', "\xEF\xBF\xBD", $value);
- }
- $query->setParameter('name', $property->name);
- $query->setParameter('parameter', mb_strcut($key, 0, 254));
- $query->setParameter('value', mb_strcut($value, 0, 254));
- $query->executeStatement();
- }
- }
- }
- }
- }
- }, $this->db);
- }
- /**
- * deletes all birthday calendars
- */
- public function deleteAllBirthdayCalendars() {
- $this->atomic(function (): void {
- $query = $this->db->getQueryBuilder();
- $result = $query->select(['id'])->from('calendars')
- ->where($query->expr()->eq('uri', $query->createNamedParameter(BirthdayService::BIRTHDAY_CALENDAR_URI)))
- ->executeQuery();
- while (($row = $result->fetch()) !== false) {
- $this->deleteCalendar(
- $row['id'],
- true // No data to keep in the trashbin, if the user re-enables then we regenerate
- );
- }
- $result->closeCursor();
- }, $this->db);
- }
- /**
- * @param $subscriptionId
- */
- public function purgeAllCachedEventsForSubscription($subscriptionId) {
- $this->atomic(function () use ($subscriptionId): void {
- $query = $this->db->getQueryBuilder();
- $query->select('uri')
- ->from('calendarobjects')
- ->where($query->expr()->eq('calendarid', $query->createNamedParameter($subscriptionId)))
- ->andWhere($query->expr()->eq('calendartype', $query->createNamedParameter(self::CALENDAR_TYPE_SUBSCRIPTION)));
- $stmt = $query->executeQuery();
- $uris = [];
- while (($row = $stmt->fetch()) !== false) {
- $uris[] = $row['uri'];
- }
- $stmt->closeCursor();
- $query = $this->db->getQueryBuilder();
- $query->delete('calendarobjects')
- ->where($query->expr()->eq('calendarid', $query->createNamedParameter($subscriptionId)))
- ->andWhere($query->expr()->eq('calendartype', $query->createNamedParameter(self::CALENDAR_TYPE_SUBSCRIPTION)))
- ->executeStatement();
- $query = $this->db->getQueryBuilder();
- $query->delete('calendarchanges')
- ->where($query->expr()->eq('calendarid', $query->createNamedParameter($subscriptionId)))
- ->andWhere($query->expr()->eq('calendartype', $query->createNamedParameter(self::CALENDAR_TYPE_SUBSCRIPTION)))
- ->executeStatement();
- $query = $this->db->getQueryBuilder();
- $query->delete($this->dbObjectPropertiesTable)
- ->where($query->expr()->eq('calendarid', $query->createNamedParameter($subscriptionId)))
- ->andWhere($query->expr()->eq('calendartype', $query->createNamedParameter(self::CALENDAR_TYPE_SUBSCRIPTION)))
- ->executeStatement();
- $this->addChanges($subscriptionId, $uris, 3, self::CALENDAR_TYPE_SUBSCRIPTION);
- }, $this->db);
- }
- /**
- * @param int $subscriptionId
- * @param array<int> $calendarObjectIds
- * @param array<string> $calendarObjectUris
- */
- public function purgeCachedEventsForSubscription(int $subscriptionId, array $calendarObjectIds, array $calendarObjectUris): void {
- if (empty($calendarObjectUris)) {
- return;
- }
- $this->atomic(function () use ($subscriptionId, $calendarObjectIds, $calendarObjectUris): void {
- foreach (array_chunk($calendarObjectIds, 1000) as $chunk) {
- $query = $this->db->getQueryBuilder();
- $query->delete($this->dbObjectPropertiesTable)
- ->where($query->expr()->eq('calendarid', $query->createNamedParameter($subscriptionId)))
- ->andWhere($query->expr()->eq('calendartype', $query->createNamedParameter(self::CALENDAR_TYPE_SUBSCRIPTION)))
- ->andWhere($query->expr()->in('id', $query->createNamedParameter($chunk, IQueryBuilder::PARAM_INT_ARRAY), IQueryBuilder::PARAM_INT_ARRAY))
- ->executeStatement();
- $query = $this->db->getQueryBuilder();
- $query->delete('calendarobjects')
- ->where($query->expr()->eq('calendarid', $query->createNamedParameter($subscriptionId)))
- ->andWhere($query->expr()->eq('calendartype', $query->createNamedParameter(self::CALENDAR_TYPE_SUBSCRIPTION)))
- ->andWhere($query->expr()->in('id', $query->createNamedParameter($chunk, IQueryBuilder::PARAM_INT_ARRAY), IQueryBuilder::PARAM_INT_ARRAY))
- ->executeStatement();
- }
- foreach (array_chunk($calendarObjectUris, 1000) as $chunk) {
- $query = $this->db->getQueryBuilder();
- $query->delete('calendarchanges')
- ->where($query->expr()->eq('calendarid', $query->createNamedParameter($subscriptionId)))
- ->andWhere($query->expr()->eq('calendartype', $query->createNamedParameter(self::CALENDAR_TYPE_SUBSCRIPTION)))
- ->andWhere($query->expr()->in('uri', $query->createNamedParameter($chunk, IQueryBuilder::PARAM_STR_ARRAY), IQueryBuilder::PARAM_STR_ARRAY))
- ->executeStatement();
- }
- $this->addChanges($subscriptionId, $calendarObjectUris, 3, self::CALENDAR_TYPE_SUBSCRIPTION);
- }, $this->db);
- }
- /**
- * Move a calendar from one user to another
- *
- * @param string $uriName
- * @param string $uriOrigin
- * @param string $uriDestination
- * @param string $newUriName (optional) the new uriName
- */
- public function moveCalendar($uriName, $uriOrigin, $uriDestination, $newUriName = null) {
- $query = $this->db->getQueryBuilder();
- $query->update('calendars')
- ->set('principaluri', $query->createNamedParameter($uriDestination))
- ->set('uri', $query->createNamedParameter($newUriName ?: $uriName))
- ->where($query->expr()->eq('principaluri', $query->createNamedParameter($uriOrigin)))
- ->andWhere($query->expr()->eq('uri', $query->createNamedParameter($uriName)))
- ->executeStatement();
- }
- /**
- * read VCalendar data into a VCalendar object
- *
- * @param string $objectData
- * @return VCalendar
- */
- protected function readCalendarData($objectData) {
- return Reader::read($objectData);
- }
- /**
- * delete all properties from a given calendar object
- *
- * @param int $calendarId
- * @param int $objectId
- */
- protected function purgeProperties($calendarId, $objectId) {
- $this->cachedObjects = [];
- $query = $this->db->getQueryBuilder();
- $query->delete($this->dbObjectPropertiesTable)
- ->where($query->expr()->eq('objectid', $query->createNamedParameter($objectId)))
- ->andWhere($query->expr()->eq('calendarid', $query->createNamedParameter($calendarId)));
- $query->executeStatement();
- }
- /**
- * get ID from a given calendar object
- *
- * @param int $calendarId
- * @param string $uri
- * @param int $calendarType
- * @return int
- */
- protected function getCalendarObjectId($calendarId, $uri, $calendarType):int {
- $query = $this->db->getQueryBuilder();
- $query->select('id')
- ->from('calendarobjects')
- ->where($query->expr()->eq('uri', $query->createNamedParameter($uri)))
- ->andWhere($query->expr()->eq('calendarid', $query->createNamedParameter($calendarId)))
- ->andWhere($query->expr()->eq('calendartype', $query->createNamedParameter($calendarType)));
- $result = $query->executeQuery();
- $objectIds = $result->fetch();
- $result->closeCursor();
- if (!isset($objectIds['id'])) {
- throw new \InvalidArgumentException('Calendarobject does not exists: ' . $uri);
- }
- return (int)$objectIds['id'];
- }
- /**
- * @throws \InvalidArgumentException
- */
- public function pruneOutdatedSyncTokens(int $keep, int $retention): int {
- if ($keep < 0) {
- throw new \InvalidArgumentException();
- }
- $query = $this->db->getQueryBuilder();
- $query->select($query->func()->max('id'))
- ->from('calendarchanges');
- $result = $query->executeQuery();
- $maxId = (int)$result->fetchOne();
- $result->closeCursor();
- if (!$maxId || $maxId < $keep) {
- return 0;
- }
- $query = $this->db->getQueryBuilder();
- $query->delete('calendarchanges')
- ->where(
- $query->expr()->lte('id', $query->createNamedParameter($maxId - $keep, IQueryBuilder::PARAM_INT), IQueryBuilder::PARAM_INT),
- $query->expr()->lte('created_at', $query->createNamedParameter($retention)),
- );
- return $query->executeStatement();
- }
- /**
- * return legacy endpoint principal name to new principal name
- *
- * @param $principalUri
- * @param $toV2
- * @return string
- */
- private function convertPrincipal($principalUri, $toV2) {
- if ($this->principalBackend->getPrincipalPrefix() === 'principals') {
- [, $name] = Uri\split($principalUri);
- if ($toV2 === true) {
- return "principals/users/$name";
- }
- return "principals/$name";
- }
- return $principalUri;
- }
- /**
- * adds information about an owner to the calendar data
- *
- */
- private function addOwnerPrincipalToCalendar(array $calendarInfo): array {
- $ownerPrincipalKey = '{' . \OCA\DAV\DAV\Sharing\Plugin::NS_OWNCLOUD . '}owner-principal';
- $displaynameKey = '{' . \OCA\DAV\DAV\Sharing\Plugin::NS_NEXTCLOUD . '}owner-displayname';
- if (isset($calendarInfo[$ownerPrincipalKey])) {
- $uri = $calendarInfo[$ownerPrincipalKey];
- } else {
- $uri = $calendarInfo['principaluri'];
- }
- $principalInformation = $this->principalBackend->getPrincipalByPath($uri);
- if (isset($principalInformation['{DAV:}displayname'])) {
- $calendarInfo[$displaynameKey] = $principalInformation['{DAV:}displayname'];
- }
- return $calendarInfo;
- }
- private function addResourceTypeToCalendar(array $row, array $calendar): array {
- if (isset($row['deleted_at'])) {
- // Columns is set and not null -> this is a deleted calendar
- // we send a custom resourcetype to hide the deleted calendar
- // from ordinary DAV clients, but the Calendar app will know
- // how to handle this special resource.
- $calendar['{DAV:}resourcetype'] = new DAV\Xml\Property\ResourceType([
- '{DAV:}collection',
- sprintf('{%s}deleted-calendar', \OCA\DAV\DAV\Sharing\Plugin::NS_NEXTCLOUD),
- ]);
- }
- return $calendar;
- }
- /**
- * Amend the calendar info with database row data
- *
- * @param array $row
- * @param array $calendar
- *
- * @return array
- */
- private function rowToCalendar($row, array $calendar): array {
- foreach ($this->propertyMap as $xmlName => [$dbName, $type]) {
- $value = $row[$dbName];
- if ($value !== null) {
- settype($value, $type);
- }
- $calendar[$xmlName] = $value;
- }
- return $calendar;
- }
- /**
- * Amend the subscription info with database row data
- *
- * @param array $row
- * @param array $subscription
- *
- * @return array
- */
- private function rowToSubscription($row, array $subscription): array {
- foreach ($this->subscriptionPropertyMap as $xmlName => [$dbName, $type]) {
- $value = $row[$dbName];
- if ($value !== null) {
- settype($value, $type);
- }
- $subscription[$xmlName] = $value;
- }
- return $subscription;
- }
- /**
- * delete all invitations from a given calendar
- *
- * @since 31.0.0
- *
- * @param int $calendarId
- *
- * @return void
- */
- protected function purgeCalendarInvitations(int $calendarId): void {
- // select all calendar object uid's
- $cmd = $this->db->getQueryBuilder();
- $cmd->select('uid')
- ->from($this->dbObjectsTable)
- ->where($cmd->expr()->eq('calendarid', $cmd->createNamedParameter($calendarId)));
- $allIds = $cmd->executeQuery()->fetchAll(\PDO::FETCH_COLUMN);
- // delete all links that match object uid's
- $cmd = $this->db->getQueryBuilder();
- $cmd->delete($this->dbObjectInvitationsTable)
- ->where($cmd->expr()->in('uid', $cmd->createParameter('uids'), IQueryBuilder::PARAM_STR_ARRAY));
- foreach (array_chunk($allIds, 1000) as $chunkIds) {
- $cmd->setParameter('uids', $chunkIds, IQueryBuilder::PARAM_STR_ARRAY);
- $cmd->executeStatement();
- }
- }
- /**
- * Delete all invitations from a given calendar event
- *
- * @since 31.0.0
- *
- * @param string $eventId UID of the event
- *
- * @return void
- */
- protected function purgeObjectInvitations(string $eventId): void {
- $cmd = $this->db->getQueryBuilder();
- $cmd->delete($this->dbObjectInvitationsTable)
- ->where($cmd->expr()->eq('uid', $cmd->createNamedParameter($eventId, IQueryBuilder::PARAM_STR), IQueryBuilder::PARAM_STR));
- $cmd->executeStatement();
- }
- }
|