@@ -62,1329 +62,1329 @@ |
||
62 | 62 | |
63 | 63 | class CardDavBackend implements BackendInterface, SyncSupport { |
64 | 64 | |
65 | - use TTransactional; |
|
66 | - |
|
67 | - public const PERSONAL_ADDRESSBOOK_URI = 'contacts'; |
|
68 | - public const PERSONAL_ADDRESSBOOK_NAME = 'Contacts'; |
|
69 | - |
|
70 | - private Principal $principalBackend; |
|
71 | - private string $dbCardsTable = 'cards'; |
|
72 | - private string $dbCardsPropertiesTable = 'cards_properties'; |
|
73 | - private IDBConnection $db; |
|
74 | - private Backend $sharingBackend; |
|
75 | - |
|
76 | - /** @var array properties to index */ |
|
77 | - public static array $indexProperties = [ |
|
78 | - 'BDAY', 'UID', 'N', 'FN', 'TITLE', 'ROLE', 'NOTE', 'NICKNAME', |
|
79 | - 'ORG', 'CATEGORIES', 'EMAIL', 'TEL', 'IMPP', 'ADR', 'URL', 'GEO', |
|
80 | - 'CLOUD', 'X-SOCIALPROFILE']; |
|
81 | - |
|
82 | - /** |
|
83 | - * @var string[] Map of uid => display name |
|
84 | - */ |
|
85 | - protected array $userDisplayNames; |
|
86 | - private IUserManager $userManager; |
|
87 | - private IEventDispatcher $dispatcher; |
|
88 | - private array $etagCache = []; |
|
89 | - |
|
90 | - /** |
|
91 | - * CardDavBackend constructor. |
|
92 | - * |
|
93 | - * @param IDBConnection $db |
|
94 | - * @param Principal $principalBackend |
|
95 | - * @param IUserManager $userManager |
|
96 | - * @param IGroupManager $groupManager |
|
97 | - * @param IEventDispatcher $dispatcher |
|
98 | - */ |
|
99 | - public function __construct(IDBConnection $db, |
|
100 | - Principal $principalBackend, |
|
101 | - IUserManager $userManager, |
|
102 | - IGroupManager $groupManager, |
|
103 | - IEventDispatcher $dispatcher) { |
|
104 | - $this->db = $db; |
|
105 | - $this->principalBackend = $principalBackend; |
|
106 | - $this->userManager = $userManager; |
|
107 | - $this->dispatcher = $dispatcher; |
|
108 | - $this->sharingBackend = new Backend($this->db, $this->userManager, $groupManager, $principalBackend, 'addressbook'); |
|
109 | - } |
|
110 | - |
|
111 | - /** |
|
112 | - * Return the number of address books for a principal |
|
113 | - * |
|
114 | - * @param $principalUri |
|
115 | - * @return int |
|
116 | - */ |
|
117 | - public function getAddressBooksForUserCount($principalUri) { |
|
118 | - $principalUri = $this->convertPrincipal($principalUri, true); |
|
119 | - $query = $this->db->getQueryBuilder(); |
|
120 | - $query->select($query->func()->count('*')) |
|
121 | - ->from('addressbooks') |
|
122 | - ->where($query->expr()->eq('principaluri', $query->createNamedParameter($principalUri))); |
|
123 | - |
|
124 | - $result = $query->executeQuery(); |
|
125 | - $column = (int) $result->fetchOne(); |
|
126 | - $result->closeCursor(); |
|
127 | - return $column; |
|
128 | - } |
|
129 | - |
|
130 | - /** |
|
131 | - * Returns the list of address books for a specific user. |
|
132 | - * |
|
133 | - * Every addressbook should have the following properties: |
|
134 | - * id - an arbitrary unique id |
|
135 | - * uri - the 'basename' part of the url |
|
136 | - * principaluri - Same as the passed parameter |
|
137 | - * |
|
138 | - * Any additional clark-notation property may be passed besides this. Some |
|
139 | - * common ones are : |
|
140 | - * {DAV:}displayname |
|
141 | - * {urn:ietf:params:xml:ns:carddav}addressbook-description |
|
142 | - * {http://calendarserver.org/ns/}getctag |
|
143 | - * |
|
144 | - * @param string $principalUri |
|
145 | - * @return array |
|
146 | - */ |
|
147 | - public function getAddressBooksForUser($principalUri) { |
|
148 | - $principalUriOriginal = $principalUri; |
|
149 | - $principalUri = $this->convertPrincipal($principalUri, true); |
|
150 | - $query = $this->db->getQueryBuilder(); |
|
151 | - $query->select(['id', 'uri', 'displayname', 'principaluri', 'description', 'synctoken']) |
|
152 | - ->from('addressbooks') |
|
153 | - ->where($query->expr()->eq('principaluri', $query->createNamedParameter($principalUri))); |
|
154 | - |
|
155 | - $addressBooks = []; |
|
156 | - |
|
157 | - $result = $query->execute(); |
|
158 | - while ($row = $result->fetch()) { |
|
159 | - $addressBooks[$row['id']] = [ |
|
160 | - 'id' => $row['id'], |
|
161 | - 'uri' => $row['uri'], |
|
162 | - 'principaluri' => $this->convertPrincipal($row['principaluri'], false), |
|
163 | - '{DAV:}displayname' => $row['displayname'], |
|
164 | - '{' . Plugin::NS_CARDDAV . '}addressbook-description' => $row['description'], |
|
165 | - '{http://calendarserver.org/ns/}getctag' => $row['synctoken'], |
|
166 | - '{http://sabredav.org/ns}sync-token' => $row['synctoken'] ?: '0', |
|
167 | - ]; |
|
168 | - |
|
169 | - $this->addOwnerPrincipal($addressBooks[$row['id']]); |
|
170 | - } |
|
171 | - $result->closeCursor(); |
|
172 | - |
|
173 | - // query for shared addressbooks |
|
174 | - $principals = $this->principalBackend->getGroupMembership($principalUriOriginal, true); |
|
175 | - $principals = array_merge($principals, $this->principalBackend->getCircleMembership($principalUriOriginal)); |
|
176 | - |
|
177 | - $principals[] = $principalUri; |
|
178 | - |
|
179 | - $query = $this->db->getQueryBuilder(); |
|
180 | - $result = $query->select(['a.id', 'a.uri', 'a.displayname', 'a.principaluri', 'a.description', 'a.synctoken', 's.access']) |
|
181 | - ->from('dav_shares', 's') |
|
182 | - ->join('s', 'addressbooks', 'a', $query->expr()->eq('s.resourceid', 'a.id')) |
|
183 | - ->where($query->expr()->in('s.principaluri', $query->createParameter('principaluri'))) |
|
184 | - ->andWhere($query->expr()->eq('s.type', $query->createParameter('type'))) |
|
185 | - ->setParameter('type', 'addressbook') |
|
186 | - ->setParameter('principaluri', $principals, IQueryBuilder::PARAM_STR_ARRAY) |
|
187 | - ->execute(); |
|
188 | - |
|
189 | - $readOnlyPropertyName = '{' . \OCA\DAV\DAV\Sharing\Plugin::NS_OWNCLOUD . '}read-only'; |
|
190 | - while ($row = $result->fetch()) { |
|
191 | - if ($row['principaluri'] === $principalUri) { |
|
192 | - continue; |
|
193 | - } |
|
194 | - |
|
195 | - $readOnly = (int)$row['access'] === Backend::ACCESS_READ; |
|
196 | - if (isset($addressBooks[$row['id']])) { |
|
197 | - if ($readOnly) { |
|
198 | - // New share can not have more permissions then the old one. |
|
199 | - continue; |
|
200 | - } |
|
201 | - if (isset($addressBooks[$row['id']][$readOnlyPropertyName]) && |
|
202 | - $addressBooks[$row['id']][$readOnlyPropertyName] === 0) { |
|
203 | - // Old share is already read-write, no more permissions can be gained |
|
204 | - continue; |
|
205 | - } |
|
206 | - } |
|
207 | - |
|
208 | - [, $name] = \Sabre\Uri\split($row['principaluri']); |
|
209 | - $uri = $row['uri'] . '_shared_by_' . $name; |
|
210 | - $displayName = $row['displayname'] . ' (' . $this->getUserDisplayName($name) . ')'; |
|
211 | - |
|
212 | - $addressBooks[$row['id']] = [ |
|
213 | - 'id' => $row['id'], |
|
214 | - 'uri' => $uri, |
|
215 | - 'principaluri' => $principalUriOriginal, |
|
216 | - '{DAV:}displayname' => $displayName, |
|
217 | - '{' . Plugin::NS_CARDDAV . '}addressbook-description' => $row['description'], |
|
218 | - '{http://calendarserver.org/ns/}getctag' => $row['synctoken'], |
|
219 | - '{http://sabredav.org/ns}sync-token' => $row['synctoken'] ?: '0', |
|
220 | - '{' . \OCA\DAV\DAV\Sharing\Plugin::NS_OWNCLOUD . '}owner-principal' => $row['principaluri'], |
|
221 | - $readOnlyPropertyName => $readOnly, |
|
222 | - ]; |
|
223 | - |
|
224 | - $this->addOwnerPrincipal($addressBooks[$row['id']]); |
|
225 | - } |
|
226 | - $result->closeCursor(); |
|
227 | - |
|
228 | - return array_values($addressBooks); |
|
229 | - } |
|
230 | - |
|
231 | - public function getUsersOwnAddressBooks($principalUri) { |
|
232 | - $principalUri = $this->convertPrincipal($principalUri, true); |
|
233 | - $query = $this->db->getQueryBuilder(); |
|
234 | - $query->select(['id', 'uri', 'displayname', 'principaluri', 'description', 'synctoken']) |
|
235 | - ->from('addressbooks') |
|
236 | - ->where($query->expr()->eq('principaluri', $query->createNamedParameter($principalUri))); |
|
237 | - |
|
238 | - $addressBooks = []; |
|
239 | - |
|
240 | - $result = $query->execute(); |
|
241 | - while ($row = $result->fetch()) { |
|
242 | - $addressBooks[$row['id']] = [ |
|
243 | - 'id' => $row['id'], |
|
244 | - 'uri' => $row['uri'], |
|
245 | - 'principaluri' => $this->convertPrincipal($row['principaluri'], false), |
|
246 | - '{DAV:}displayname' => $row['displayname'], |
|
247 | - '{' . Plugin::NS_CARDDAV . '}addressbook-description' => $row['description'], |
|
248 | - '{http://calendarserver.org/ns/}getctag' => $row['synctoken'], |
|
249 | - '{http://sabredav.org/ns}sync-token' => $row['synctoken'] ?: '0', |
|
250 | - ]; |
|
251 | - |
|
252 | - $this->addOwnerPrincipal($addressBooks[$row['id']]); |
|
253 | - } |
|
254 | - $result->closeCursor(); |
|
255 | - |
|
256 | - return array_values($addressBooks); |
|
257 | - } |
|
258 | - |
|
259 | - private function getUserDisplayName($uid) { |
|
260 | - if (!isset($this->userDisplayNames[$uid])) { |
|
261 | - $user = $this->userManager->get($uid); |
|
262 | - |
|
263 | - if ($user instanceof IUser) { |
|
264 | - $this->userDisplayNames[$uid] = $user->getDisplayName(); |
|
265 | - } else { |
|
266 | - $this->userDisplayNames[$uid] = $uid; |
|
267 | - } |
|
268 | - } |
|
269 | - |
|
270 | - return $this->userDisplayNames[$uid]; |
|
271 | - } |
|
272 | - |
|
273 | - /** |
|
274 | - * @param int $addressBookId |
|
275 | - */ |
|
276 | - public function getAddressBookById(int $addressBookId): ?array { |
|
277 | - $query = $this->db->getQueryBuilder(); |
|
278 | - $result = $query->select(['id', 'uri', 'displayname', 'principaluri', 'description', 'synctoken']) |
|
279 | - ->from('addressbooks') |
|
280 | - ->where($query->expr()->eq('id', $query->createNamedParameter($addressBookId, IQueryBuilder::PARAM_INT))) |
|
281 | - ->executeQuery(); |
|
282 | - $row = $result->fetch(); |
|
283 | - $result->closeCursor(); |
|
284 | - if (!$row) { |
|
285 | - return null; |
|
286 | - } |
|
287 | - |
|
288 | - $addressBook = [ |
|
289 | - 'id' => $row['id'], |
|
290 | - 'uri' => $row['uri'], |
|
291 | - 'principaluri' => $row['principaluri'], |
|
292 | - '{DAV:}displayname' => $row['displayname'], |
|
293 | - '{' . Plugin::NS_CARDDAV . '}addressbook-description' => $row['description'], |
|
294 | - '{http://calendarserver.org/ns/}getctag' => $row['synctoken'], |
|
295 | - '{http://sabredav.org/ns}sync-token' => $row['synctoken'] ?: '0', |
|
296 | - ]; |
|
297 | - |
|
298 | - $this->addOwnerPrincipal($addressBook); |
|
299 | - |
|
300 | - return $addressBook; |
|
301 | - } |
|
302 | - |
|
303 | - public function getAddressBooksByUri(string $principal, string $addressBookUri): ?array { |
|
304 | - $query = $this->db->getQueryBuilder(); |
|
305 | - $result = $query->select(['id', 'uri', 'displayname', 'principaluri', 'description', 'synctoken']) |
|
306 | - ->from('addressbooks') |
|
307 | - ->where($query->expr()->eq('uri', $query->createNamedParameter($addressBookUri))) |
|
308 | - ->andWhere($query->expr()->eq('principaluri', $query->createNamedParameter($principal))) |
|
309 | - ->setMaxResults(1) |
|
310 | - ->executeQuery(); |
|
311 | - |
|
312 | - $row = $result->fetch(); |
|
313 | - $result->closeCursor(); |
|
314 | - if ($row === false) { |
|
315 | - return null; |
|
316 | - } |
|
317 | - |
|
318 | - $addressBook = [ |
|
319 | - 'id' => $row['id'], |
|
320 | - 'uri' => $row['uri'], |
|
321 | - 'principaluri' => $row['principaluri'], |
|
322 | - '{DAV:}displayname' => $row['displayname'], |
|
323 | - '{' . Plugin::NS_CARDDAV . '}addressbook-description' => $row['description'], |
|
324 | - '{http://calendarserver.org/ns/}getctag' => $row['synctoken'], |
|
325 | - '{http://sabredav.org/ns}sync-token' => $row['synctoken'] ?: '0', |
|
326 | - ]; |
|
327 | - |
|
328 | - $this->addOwnerPrincipal($addressBook); |
|
329 | - |
|
330 | - return $addressBook; |
|
331 | - } |
|
332 | - |
|
333 | - /** |
|
334 | - * Updates properties for an address book. |
|
335 | - * |
|
336 | - * The list of mutations is stored in a Sabre\DAV\PropPatch object. |
|
337 | - * To do the actual updates, you must tell this object which properties |
|
338 | - * you're going to process with the handle() method. |
|
339 | - * |
|
340 | - * Calling the handle method is like telling the PropPatch object "I |
|
341 | - * promise I can handle updating this property". |
|
342 | - * |
|
343 | - * Read the PropPatch documentation for more info and examples. |
|
344 | - * |
|
345 | - * @param string $addressBookId |
|
346 | - * @param \Sabre\DAV\PropPatch $propPatch |
|
347 | - * @return void |
|
348 | - */ |
|
349 | - public function updateAddressBook($addressBookId, \Sabre\DAV\PropPatch $propPatch) { |
|
350 | - $supportedProperties = [ |
|
351 | - '{DAV:}displayname', |
|
352 | - '{' . Plugin::NS_CARDDAV . '}addressbook-description', |
|
353 | - ]; |
|
354 | - |
|
355 | - $propPatch->handle($supportedProperties, function ($mutations) use ($addressBookId) { |
|
356 | - $updates = []; |
|
357 | - foreach ($mutations as $property => $newValue) { |
|
358 | - switch ($property) { |
|
359 | - case '{DAV:}displayname': |
|
360 | - $updates['displayname'] = $newValue; |
|
361 | - break; |
|
362 | - case '{' . Plugin::NS_CARDDAV . '}addressbook-description': |
|
363 | - $updates['description'] = $newValue; |
|
364 | - break; |
|
365 | - } |
|
366 | - } |
|
367 | - $query = $this->db->getQueryBuilder(); |
|
368 | - $query->update('addressbooks'); |
|
369 | - |
|
370 | - foreach ($updates as $key => $value) { |
|
371 | - $query->set($key, $query->createNamedParameter($value)); |
|
372 | - } |
|
373 | - $query->where($query->expr()->eq('id', $query->createNamedParameter($addressBookId))) |
|
374 | - ->executeStatement(); |
|
375 | - |
|
376 | - $this->addChange($addressBookId, "", 2); |
|
377 | - |
|
378 | - $addressBookRow = $this->getAddressBookById((int)$addressBookId); |
|
379 | - $shares = $this->getShares((int)$addressBookId); |
|
380 | - $this->dispatcher->dispatchTyped(new AddressBookUpdatedEvent((int)$addressBookId, $addressBookRow, $shares, $mutations)); |
|
381 | - |
|
382 | - return true; |
|
383 | - }); |
|
384 | - } |
|
385 | - |
|
386 | - /** |
|
387 | - * Creates a new address book |
|
388 | - * |
|
389 | - * @param string $principalUri |
|
390 | - * @param string $url Just the 'basename' of the url. |
|
391 | - * @param array $properties |
|
392 | - * @return int |
|
393 | - * @throws BadRequest |
|
394 | - */ |
|
395 | - public function createAddressBook($principalUri, $url, array $properties) { |
|
396 | - if (strlen($url) > 255) { |
|
397 | - throw new BadRequest('URI too long. Address book not created'); |
|
398 | - } |
|
399 | - |
|
400 | - $values = [ |
|
401 | - 'displayname' => null, |
|
402 | - 'description' => null, |
|
403 | - 'principaluri' => $principalUri, |
|
404 | - 'uri' => $url, |
|
405 | - 'synctoken' => 1 |
|
406 | - ]; |
|
407 | - |
|
408 | - foreach ($properties as $property => $newValue) { |
|
409 | - switch ($property) { |
|
410 | - case '{DAV:}displayname': |
|
411 | - $values['displayname'] = $newValue; |
|
412 | - break; |
|
413 | - case '{' . Plugin::NS_CARDDAV . '}addressbook-description': |
|
414 | - $values['description'] = $newValue; |
|
415 | - break; |
|
416 | - default: |
|
417 | - throw new BadRequest('Unknown property: ' . $property); |
|
418 | - } |
|
419 | - } |
|
420 | - |
|
421 | - // Fallback to make sure the displayname is set. Some clients may refuse |
|
422 | - // to work with addressbooks not having a displayname. |
|
423 | - if (is_null($values['displayname'])) { |
|
424 | - $values['displayname'] = $url; |
|
425 | - } |
|
426 | - |
|
427 | - [$addressBookId, $addressBookRow] = $this->atomic(function() use ($values) { |
|
428 | - $query = $this->db->getQueryBuilder(); |
|
429 | - $query->insert('addressbooks') |
|
430 | - ->values([ |
|
431 | - 'uri' => $query->createParameter('uri'), |
|
432 | - 'displayname' => $query->createParameter('displayname'), |
|
433 | - 'description' => $query->createParameter('description'), |
|
434 | - 'principaluri' => $query->createParameter('principaluri'), |
|
435 | - 'synctoken' => $query->createParameter('synctoken'), |
|
436 | - ]) |
|
437 | - ->setParameters($values) |
|
438 | - ->execute(); |
|
439 | - |
|
440 | - $addressBookId = $query->getLastInsertId(); |
|
441 | - return [ |
|
442 | - $addressBookId, |
|
443 | - $this->getAddressBookById($addressBookId), |
|
444 | - ]; |
|
445 | - }, $this->db); |
|
446 | - |
|
447 | - $this->dispatcher->dispatchTyped(new AddressBookCreatedEvent($addressBookId, $addressBookRow)); |
|
448 | - |
|
449 | - return $addressBookId; |
|
450 | - } |
|
451 | - |
|
452 | - /** |
|
453 | - * Deletes an entire addressbook and all its contents |
|
454 | - * |
|
455 | - * @param mixed $addressBookId |
|
456 | - * @return void |
|
457 | - */ |
|
458 | - public function deleteAddressBook($addressBookId) { |
|
459 | - $addressBookId = (int)$addressBookId; |
|
460 | - $addressBookData = $this->getAddressBookById($addressBookId); |
|
461 | - $shares = $this->getShares($addressBookId); |
|
462 | - |
|
463 | - $query = $this->db->getQueryBuilder(); |
|
464 | - $query->delete($this->dbCardsTable) |
|
465 | - ->where($query->expr()->eq('addressbookid', $query->createParameter('addressbookid'))) |
|
466 | - ->setParameter('addressbookid', $addressBookId, IQueryBuilder::PARAM_INT) |
|
467 | - ->executeStatement(); |
|
468 | - |
|
469 | - $query->delete('addressbookchanges') |
|
470 | - ->where($query->expr()->eq('addressbookid', $query->createParameter('addressbookid'))) |
|
471 | - ->setParameter('addressbookid', $addressBookId, IQueryBuilder::PARAM_INT) |
|
472 | - ->executeStatement(); |
|
473 | - |
|
474 | - $query->delete('addressbooks') |
|
475 | - ->where($query->expr()->eq('id', $query->createParameter('id'))) |
|
476 | - ->setParameter('id', $addressBookId, IQueryBuilder::PARAM_INT) |
|
477 | - ->executeStatement(); |
|
478 | - |
|
479 | - $this->sharingBackend->deleteAllShares($addressBookId); |
|
480 | - |
|
481 | - $query->delete($this->dbCardsPropertiesTable) |
|
482 | - ->where($query->expr()->eq('addressbookid', $query->createNamedParameter($addressBookId, IQueryBuilder::PARAM_INT))) |
|
483 | - ->executeStatement(); |
|
484 | - |
|
485 | - if ($addressBookData) { |
|
486 | - $this->dispatcher->dispatchTyped(new AddressBookDeletedEvent($addressBookId, $addressBookData, $shares)); |
|
487 | - } |
|
488 | - } |
|
489 | - |
|
490 | - /** |
|
491 | - * Returns all cards for a specific addressbook id. |
|
492 | - * |
|
493 | - * This method should return the following properties for each card: |
|
494 | - * * carddata - raw vcard data |
|
495 | - * * uri - Some unique url |
|
496 | - * * lastmodified - A unix timestamp |
|
497 | - * |
|
498 | - * It's recommended to also return the following properties: |
|
499 | - * * etag - A unique etag. This must change every time the card changes. |
|
500 | - * * size - The size of the card in bytes. |
|
501 | - * |
|
502 | - * If these last two properties are provided, less time will be spent |
|
503 | - * calculating them. If they are specified, you can also omit carddata. |
|
504 | - * This may speed up certain requests, especially with large cards. |
|
505 | - * |
|
506 | - * @param mixed $addressbookId |
|
507 | - * @return array |
|
508 | - */ |
|
509 | - public function getCards($addressbookId) { |
|
510 | - $query = $this->db->getQueryBuilder(); |
|
511 | - $query->select(['id', 'uri', 'lastmodified', 'etag', 'size', 'carddata', 'uid']) |
|
512 | - ->from($this->dbCardsTable) |
|
513 | - ->where($query->expr()->eq('addressbookid', $query->createNamedParameter($addressbookId))); |
|
514 | - |
|
515 | - $cards = []; |
|
516 | - |
|
517 | - $result = $query->execute(); |
|
518 | - while ($row = $result->fetch()) { |
|
519 | - $row['etag'] = '"' . $row['etag'] . '"'; |
|
520 | - |
|
521 | - $modified = false; |
|
522 | - $row['carddata'] = $this->readBlob($row['carddata'], $modified); |
|
523 | - if ($modified) { |
|
524 | - $row['size'] = strlen($row['carddata']); |
|
525 | - } |
|
526 | - |
|
527 | - $cards[] = $row; |
|
528 | - } |
|
529 | - $result->closeCursor(); |
|
530 | - |
|
531 | - return $cards; |
|
532 | - } |
|
533 | - |
|
534 | - /** |
|
535 | - * Returns a specific card. |
|
536 | - * |
|
537 | - * The same set of properties must be returned as with getCards. The only |
|
538 | - * exception is that 'carddata' is absolutely required. |
|
539 | - * |
|
540 | - * If the card does not exist, you must return false. |
|
541 | - * |
|
542 | - * @param mixed $addressBookId |
|
543 | - * @param string $cardUri |
|
544 | - * @return array |
|
545 | - */ |
|
546 | - public function getCard($addressBookId, $cardUri) { |
|
547 | - $query = $this->db->getQueryBuilder(); |
|
548 | - $query->select(['id', 'uri', 'lastmodified', 'etag', 'size', 'carddata', 'uid']) |
|
549 | - ->from($this->dbCardsTable) |
|
550 | - ->where($query->expr()->eq('addressbookid', $query->createNamedParameter($addressBookId))) |
|
551 | - ->andWhere($query->expr()->eq('uri', $query->createNamedParameter($cardUri))) |
|
552 | - ->setMaxResults(1); |
|
553 | - |
|
554 | - $result = $query->execute(); |
|
555 | - $row = $result->fetch(); |
|
556 | - if (!$row) { |
|
557 | - return false; |
|
558 | - } |
|
559 | - $row['etag'] = '"' . $row['etag'] . '"'; |
|
560 | - |
|
561 | - $modified = false; |
|
562 | - $row['carddata'] = $this->readBlob($row['carddata'], $modified); |
|
563 | - if ($modified) { |
|
564 | - $row['size'] = strlen($row['carddata']); |
|
565 | - } |
|
566 | - |
|
567 | - return $row; |
|
568 | - } |
|
569 | - |
|
570 | - /** |
|
571 | - * Returns a list of cards. |
|
572 | - * |
|
573 | - * This method should work identical to getCard, but instead return all the |
|
574 | - * cards in the list as an array. |
|
575 | - * |
|
576 | - * If the backend supports this, it may allow for some speed-ups. |
|
577 | - * |
|
578 | - * @param mixed $addressBookId |
|
579 | - * @param array $uris |
|
580 | - * @return array |
|
581 | - */ |
|
582 | - public function getMultipleCards($addressBookId, array $uris) { |
|
583 | - if (empty($uris)) { |
|
584 | - return []; |
|
585 | - } |
|
586 | - |
|
587 | - $chunks = array_chunk($uris, 100); |
|
588 | - $cards = []; |
|
589 | - |
|
590 | - $query = $this->db->getQueryBuilder(); |
|
591 | - $query->select(['id', 'uri', 'lastmodified', 'etag', 'size', 'carddata', 'uid']) |
|
592 | - ->from($this->dbCardsTable) |
|
593 | - ->where($query->expr()->eq('addressbookid', $query->createNamedParameter($addressBookId))) |
|
594 | - ->andWhere($query->expr()->in('uri', $query->createParameter('uri'))); |
|
595 | - |
|
596 | - foreach ($chunks as $uris) { |
|
597 | - $query->setParameter('uri', $uris, IQueryBuilder::PARAM_STR_ARRAY); |
|
598 | - $result = $query->execute(); |
|
599 | - |
|
600 | - while ($row = $result->fetch()) { |
|
601 | - $row['etag'] = '"' . $row['etag'] . '"'; |
|
602 | - |
|
603 | - $modified = false; |
|
604 | - $row['carddata'] = $this->readBlob($row['carddata'], $modified); |
|
605 | - if ($modified) { |
|
606 | - $row['size'] = strlen($row['carddata']); |
|
607 | - } |
|
608 | - |
|
609 | - $cards[] = $row; |
|
610 | - } |
|
611 | - $result->closeCursor(); |
|
612 | - } |
|
613 | - return $cards; |
|
614 | - } |
|
615 | - |
|
616 | - /** |
|
617 | - * Creates a new card. |
|
618 | - * |
|
619 | - * The addressbook id will be passed as the first argument. This is the |
|
620 | - * same id as it is returned from the getAddressBooksForUser method. |
|
621 | - * |
|
622 | - * The cardUri is a base uri, and doesn't include the full path. The |
|
623 | - * cardData argument is the vcard body, and is passed as a string. |
|
624 | - * |
|
625 | - * It is possible to return an ETag from this method. This ETag is for the |
|
626 | - * newly created resource, and must be enclosed with double quotes (that |
|
627 | - * is, the string itself must contain the double quotes). |
|
628 | - * |
|
629 | - * You should only return the ETag if you store the carddata as-is. If a |
|
630 | - * subsequent GET request on the same card does not have the same body, |
|
631 | - * byte-by-byte and you did return an ETag here, clients tend to get |
|
632 | - * confused. |
|
633 | - * |
|
634 | - * If you don't return an ETag, you can just return null. |
|
635 | - * |
|
636 | - * @param mixed $addressBookId |
|
637 | - * @param string $cardUri |
|
638 | - * @param string $cardData |
|
639 | - * @param bool $checkAlreadyExists |
|
640 | - * @return string |
|
641 | - */ |
|
642 | - public function createCard($addressBookId, $cardUri, $cardData, bool $checkAlreadyExists = true) { |
|
643 | - $etag = md5($cardData); |
|
644 | - $uid = $this->getUID($cardData); |
|
645 | - |
|
646 | - if ($checkAlreadyExists) { |
|
647 | - $q = $this->db->getQueryBuilder(); |
|
648 | - $q->select('uid') |
|
649 | - ->from($this->dbCardsTable) |
|
650 | - ->where($q->expr()->eq('addressbookid', $q->createNamedParameter($addressBookId))) |
|
651 | - ->andWhere($q->expr()->eq('uid', $q->createNamedParameter($uid))) |
|
652 | - ->setMaxResults(1); |
|
653 | - $result = $q->executeQuery(); |
|
654 | - $count = (bool)$result->fetchOne(); |
|
655 | - $result->closeCursor(); |
|
656 | - if ($count) { |
|
657 | - throw new \Sabre\DAV\Exception\BadRequest('VCard object with uid already exists in this addressbook collection.'); |
|
658 | - } |
|
659 | - } |
|
660 | - |
|
661 | - $query = $this->db->getQueryBuilder(); |
|
662 | - $query->insert('cards') |
|
663 | - ->values([ |
|
664 | - 'carddata' => $query->createNamedParameter($cardData, IQueryBuilder::PARAM_LOB), |
|
665 | - 'uri' => $query->createNamedParameter($cardUri), |
|
666 | - 'lastmodified' => $query->createNamedParameter(time()), |
|
667 | - 'addressbookid' => $query->createNamedParameter($addressBookId), |
|
668 | - 'size' => $query->createNamedParameter(strlen($cardData)), |
|
669 | - 'etag' => $query->createNamedParameter($etag), |
|
670 | - 'uid' => $query->createNamedParameter($uid), |
|
671 | - ]) |
|
672 | - ->execute(); |
|
673 | - |
|
674 | - $etagCacheKey = "$addressBookId#$cardUri"; |
|
675 | - $this->etagCache[$etagCacheKey] = $etag; |
|
676 | - |
|
677 | - $this->addChange($addressBookId, $cardUri, 1); |
|
678 | - $this->updateProperties($addressBookId, $cardUri, $cardData); |
|
679 | - |
|
680 | - $addressBookData = $this->getAddressBookById($addressBookId); |
|
681 | - $shares = $this->getShares($addressBookId); |
|
682 | - $objectRow = $this->getCard($addressBookId, $cardUri); |
|
683 | - $this->dispatcher->dispatchTyped(new CardCreatedEvent($addressBookId, $addressBookData, $shares, $objectRow)); |
|
684 | - |
|
685 | - return '"' . $etag . '"'; |
|
686 | - } |
|
687 | - |
|
688 | - /** |
|
689 | - * Updates a card. |
|
690 | - * |
|
691 | - * The addressbook id will be passed as the first argument. This is the |
|
692 | - * same id as it is returned from the getAddressBooksForUser method. |
|
693 | - * |
|
694 | - * The cardUri is a base uri, and doesn't include the full path. The |
|
695 | - * cardData argument is the vcard body, and is passed as a string. |
|
696 | - * |
|
697 | - * It is possible to return an ETag from this method. This ETag should |
|
698 | - * match that of the updated resource, and must be enclosed with double |
|
699 | - * quotes (that is: the string itself must contain the actual quotes). |
|
700 | - * |
|
701 | - * You should only return the ETag if you store the carddata as-is. If a |
|
702 | - * subsequent GET request on the same card does not have the same body, |
|
703 | - * byte-by-byte and you did return an ETag here, clients tend to get |
|
704 | - * confused. |
|
705 | - * |
|
706 | - * If you don't return an ETag, you can just return null. |
|
707 | - * |
|
708 | - * @param mixed $addressBookId |
|
709 | - * @param string $cardUri |
|
710 | - * @param string $cardData |
|
711 | - * @return string |
|
712 | - */ |
|
713 | - public function updateCard($addressBookId, $cardUri, $cardData) { |
|
714 | - $uid = $this->getUID($cardData); |
|
715 | - $etag = md5($cardData); |
|
716 | - $query = $this->db->getQueryBuilder(); |
|
717 | - |
|
718 | - // check for recently stored etag and stop if it is the same |
|
719 | - $etagCacheKey = "$addressBookId#$cardUri"; |
|
720 | - if (isset($this->etagCache[$etagCacheKey]) && $this->etagCache[$etagCacheKey] === $etag) { |
|
721 | - return '"' . $etag . '"'; |
|
722 | - } |
|
723 | - |
|
724 | - $query->update($this->dbCardsTable) |
|
725 | - ->set('carddata', $query->createNamedParameter($cardData, IQueryBuilder::PARAM_LOB)) |
|
726 | - ->set('lastmodified', $query->createNamedParameter(time())) |
|
727 | - ->set('size', $query->createNamedParameter(strlen($cardData))) |
|
728 | - ->set('etag', $query->createNamedParameter($etag)) |
|
729 | - ->set('uid', $query->createNamedParameter($uid)) |
|
730 | - ->where($query->expr()->eq('uri', $query->createNamedParameter($cardUri))) |
|
731 | - ->andWhere($query->expr()->eq('addressbookid', $query->createNamedParameter($addressBookId))) |
|
732 | - ->execute(); |
|
733 | - |
|
734 | - $this->etagCache[$etagCacheKey] = $etag; |
|
735 | - |
|
736 | - $this->addChange($addressBookId, $cardUri, 2); |
|
737 | - $this->updateProperties($addressBookId, $cardUri, $cardData); |
|
738 | - |
|
739 | - $addressBookData = $this->getAddressBookById($addressBookId); |
|
740 | - $shares = $this->getShares($addressBookId); |
|
741 | - $objectRow = $this->getCard($addressBookId, $cardUri); |
|
742 | - $this->dispatcher->dispatchTyped(new CardUpdatedEvent($addressBookId, $addressBookData, $shares, $objectRow)); |
|
743 | - return '"' . $etag . '"'; |
|
744 | - } |
|
745 | - |
|
746 | - /** |
|
747 | - * Deletes a card |
|
748 | - * |
|
749 | - * @param mixed $addressBookId |
|
750 | - * @param string $cardUri |
|
751 | - * @return bool |
|
752 | - */ |
|
753 | - public function deleteCard($addressBookId, $cardUri) { |
|
754 | - $addressBookData = $this->getAddressBookById($addressBookId); |
|
755 | - $shares = $this->getShares($addressBookId); |
|
756 | - $objectRow = $this->getCard($addressBookId, $cardUri); |
|
757 | - |
|
758 | - try { |
|
759 | - $cardId = $this->getCardId($addressBookId, $cardUri); |
|
760 | - } catch (\InvalidArgumentException $e) { |
|
761 | - $cardId = null; |
|
762 | - } |
|
763 | - $query = $this->db->getQueryBuilder(); |
|
764 | - $ret = $query->delete($this->dbCardsTable) |
|
765 | - ->where($query->expr()->eq('addressbookid', $query->createNamedParameter($addressBookId))) |
|
766 | - ->andWhere($query->expr()->eq('uri', $query->createNamedParameter($cardUri))) |
|
767 | - ->executeStatement(); |
|
768 | - |
|
769 | - $this->addChange($addressBookId, $cardUri, 3); |
|
770 | - |
|
771 | - if ($ret === 1) { |
|
772 | - if ($cardId !== null) { |
|
773 | - $this->dispatcher->dispatchTyped(new CardDeletedEvent($addressBookId, $addressBookData, $shares, $objectRow)); |
|
774 | - $this->purgeProperties($addressBookId, $cardId); |
|
775 | - } |
|
776 | - return true; |
|
777 | - } |
|
778 | - |
|
779 | - return false; |
|
780 | - } |
|
781 | - |
|
782 | - /** |
|
783 | - * The getChanges method returns all the changes that have happened, since |
|
784 | - * the specified syncToken in the specified address book. |
|
785 | - * |
|
786 | - * This function should return an array, such as the following: |
|
787 | - * |
|
788 | - * [ |
|
789 | - * 'syncToken' => 'The current synctoken', |
|
790 | - * 'added' => [ |
|
791 | - * 'new.txt', |
|
792 | - * ], |
|
793 | - * 'modified' => [ |
|
794 | - * 'modified.txt', |
|
795 | - * ], |
|
796 | - * 'deleted' => [ |
|
797 | - * 'foo.php.bak', |
|
798 | - * 'old.txt' |
|
799 | - * ] |
|
800 | - * ]; |
|
801 | - * |
|
802 | - * The returned syncToken property should reflect the *current* syncToken |
|
803 | - * of the calendar, as reported in the {http://sabredav.org/ns}sync-token |
|
804 | - * property. This is needed here too, to ensure the operation is atomic. |
|
805 | - * |
|
806 | - * If the $syncToken argument is specified as null, this is an initial |
|
807 | - * sync, and all members should be reported. |
|
808 | - * |
|
809 | - * The modified property is an array of nodenames that have changed since |
|
810 | - * the last token. |
|
811 | - * |
|
812 | - * The deleted property is an array with nodenames, that have been deleted |
|
813 | - * from collection. |
|
814 | - * |
|
815 | - * The $syncLevel argument is basically the 'depth' of the report. If it's |
|
816 | - * 1, you only have to report changes that happened only directly in |
|
817 | - * immediate descendants. If it's 2, it should also include changes from |
|
818 | - * the nodes below the child collections. (grandchildren) |
|
819 | - * |
|
820 | - * The $limit argument allows a client to specify how many results should |
|
821 | - * be returned at most. If the limit is not specified, it should be treated |
|
822 | - * as infinite. |
|
823 | - * |
|
824 | - * If the limit (infinite or not) is higher than you're willing to return, |
|
825 | - * you should throw a Sabre\DAV\Exception\TooMuchMatches() exception. |
|
826 | - * |
|
827 | - * If the syncToken is expired (due to data cleanup) or unknown, you must |
|
828 | - * return null. |
|
829 | - * |
|
830 | - * The limit is 'suggestive'. You are free to ignore it. |
|
831 | - * |
|
832 | - * @param string $addressBookId |
|
833 | - * @param string $syncToken |
|
834 | - * @param int $syncLevel |
|
835 | - * @param int|null $limit |
|
836 | - * @return array |
|
837 | - */ |
|
838 | - public function getChangesForAddressBook($addressBookId, $syncToken, $syncLevel, $limit = null) { |
|
839 | - // Current synctoken |
|
840 | - $qb = $this->db->getQueryBuilder(); |
|
841 | - $qb->select('synctoken') |
|
842 | - ->from('addressbooks') |
|
843 | - ->where( |
|
844 | - $qb->expr()->eq('id', $qb->createNamedParameter($addressBookId)) |
|
845 | - ); |
|
846 | - $stmt = $qb->executeQuery(); |
|
847 | - $currentToken = $stmt->fetchOne(); |
|
848 | - $stmt->closeCursor(); |
|
849 | - |
|
850 | - if (is_null($currentToken)) { |
|
851 | - return []; |
|
852 | - } |
|
853 | - |
|
854 | - $result = [ |
|
855 | - 'syncToken' => $currentToken, |
|
856 | - 'added' => [], |
|
857 | - 'modified' => [], |
|
858 | - 'deleted' => [], |
|
859 | - ]; |
|
860 | - |
|
861 | - if ($syncToken) { |
|
862 | - $qb = $this->db->getQueryBuilder(); |
|
863 | - $qb->select('uri', 'operation') |
|
864 | - ->from('addressbookchanges') |
|
865 | - ->where( |
|
866 | - $qb->expr()->andX( |
|
867 | - $qb->expr()->gte('synctoken', $qb->createNamedParameter($syncToken)), |
|
868 | - $qb->expr()->lt('synctoken', $qb->createNamedParameter($currentToken)), |
|
869 | - $qb->expr()->eq('addressbookid', $qb->createNamedParameter($addressBookId)) |
|
870 | - ) |
|
871 | - )->orderBy('synctoken'); |
|
872 | - |
|
873 | - if (is_int($limit) && $limit > 0) { |
|
874 | - $qb->setMaxResults($limit); |
|
875 | - } |
|
876 | - |
|
877 | - // Fetching all changes |
|
878 | - $stmt = $qb->executeQuery(); |
|
879 | - |
|
880 | - $changes = []; |
|
881 | - |
|
882 | - // This loop ensures that any duplicates are overwritten, only the |
|
883 | - // last change on a node is relevant. |
|
884 | - while ($row = $stmt->fetch(\PDO::FETCH_ASSOC)) { |
|
885 | - $changes[$row['uri']] = $row['operation']; |
|
886 | - } |
|
887 | - $stmt->closeCursor(); |
|
888 | - |
|
889 | - foreach ($changes as $uri => $operation) { |
|
890 | - switch ($operation) { |
|
891 | - case 1: |
|
892 | - $result['added'][] = $uri; |
|
893 | - break; |
|
894 | - case 2: |
|
895 | - $result['modified'][] = $uri; |
|
896 | - break; |
|
897 | - case 3: |
|
898 | - $result['deleted'][] = $uri; |
|
899 | - break; |
|
900 | - } |
|
901 | - } |
|
902 | - } else { |
|
903 | - $qb = $this->db->getQueryBuilder(); |
|
904 | - $qb->select('uri') |
|
905 | - ->from('cards') |
|
906 | - ->where( |
|
907 | - $qb->expr()->eq('addressbookid', $qb->createNamedParameter($addressBookId)) |
|
908 | - ); |
|
909 | - // No synctoken supplied, this is the initial sync. |
|
910 | - $stmt = $qb->executeQuery(); |
|
911 | - $result['added'] = $stmt->fetchAll(\PDO::FETCH_COLUMN); |
|
912 | - $stmt->closeCursor(); |
|
913 | - } |
|
914 | - return $result; |
|
915 | - } |
|
916 | - |
|
917 | - /** |
|
918 | - * Adds a change record to the addressbookchanges table. |
|
919 | - * |
|
920 | - * @param mixed $addressBookId |
|
921 | - * @param string $objectUri |
|
922 | - * @param int $operation 1 = add, 2 = modify, 3 = delete |
|
923 | - * @return void |
|
924 | - */ |
|
925 | - protected function addChange($addressBookId, $objectUri, $operation) { |
|
926 | - $sql = 'INSERT INTO `*PREFIX*addressbookchanges`(`uri`, `synctoken`, `addressbookid`, `operation`) SELECT ?, `synctoken`, ?, ? FROM `*PREFIX*addressbooks` WHERE `id` = ?'; |
|
927 | - $stmt = $this->db->prepare($sql); |
|
928 | - $stmt->execute([ |
|
929 | - $objectUri, |
|
930 | - $addressBookId, |
|
931 | - $operation, |
|
932 | - $addressBookId |
|
933 | - ]); |
|
934 | - $stmt = $this->db->prepare('UPDATE `*PREFIX*addressbooks` SET `synctoken` = `synctoken` + 1 WHERE `id` = ?'); |
|
935 | - $stmt->execute([ |
|
936 | - $addressBookId |
|
937 | - ]); |
|
938 | - } |
|
939 | - |
|
940 | - /** |
|
941 | - * @param resource|string $cardData |
|
942 | - * @param bool $modified |
|
943 | - * @return string |
|
944 | - */ |
|
945 | - private function readBlob($cardData, &$modified = false) { |
|
946 | - if (is_resource($cardData)) { |
|
947 | - $cardData = stream_get_contents($cardData); |
|
948 | - } |
|
949 | - |
|
950 | - // Micro optimisation |
|
951 | - // don't loop through |
|
952 | - if (strpos($cardData, 'PHOTO:data:') === 0) { |
|
953 | - return $cardData; |
|
954 | - } |
|
955 | - |
|
956 | - $cardDataArray = explode("\r\n", $cardData); |
|
957 | - |
|
958 | - $cardDataFiltered = []; |
|
959 | - $removingPhoto = false; |
|
960 | - foreach ($cardDataArray as $line) { |
|
961 | - if (strpos($line, 'PHOTO:data:') === 0 |
|
962 | - && strpos($line, 'PHOTO:data:image/') !== 0) { |
|
963 | - // Filter out PHOTO data of non-images |
|
964 | - $removingPhoto = true; |
|
965 | - $modified = true; |
|
966 | - continue; |
|
967 | - } |
|
968 | - |
|
969 | - if ($removingPhoto) { |
|
970 | - if (strpos($line, ' ') === 0) { |
|
971 | - continue; |
|
972 | - } |
|
973 | - // No leading space means this is a new property |
|
974 | - $removingPhoto = false; |
|
975 | - } |
|
976 | - |
|
977 | - $cardDataFiltered[] = $line; |
|
978 | - } |
|
979 | - return implode("\r\n", $cardDataFiltered); |
|
980 | - } |
|
981 | - |
|
982 | - /** |
|
983 | - * @param list<array{href: string, commonName: string, readOnly: bool}> $add |
|
984 | - * @param list<string> $remove |
|
985 | - */ |
|
986 | - public function updateShares(IShareable $shareable, array $add, array $remove): void { |
|
987 | - $addressBookId = $shareable->getResourceId(); |
|
988 | - $addressBookData = $this->getAddressBookById($addressBookId); |
|
989 | - $oldShares = $this->getShares($addressBookId); |
|
990 | - |
|
991 | - $this->sharingBackend->updateShares($shareable, $add, $remove); |
|
992 | - |
|
993 | - $this->dispatcher->dispatchTyped(new AddressBookShareUpdatedEvent($addressBookId, $addressBookData, $oldShares, $add, $remove)); |
|
994 | - } |
|
995 | - |
|
996 | - /** |
|
997 | - * Search contacts in a specific address-book |
|
998 | - * |
|
999 | - * @param int $addressBookId |
|
1000 | - * @param string $pattern which should match within the $searchProperties |
|
1001 | - * @param array $searchProperties defines the properties within the query pattern should match |
|
1002 | - * @param array $options = array() to define the search behavior |
|
1003 | - * - 'escape_like_param' - If set to false wildcards _ and % are not escaped, otherwise they are |
|
1004 | - * - 'limit' - Set a numeric limit for the search results |
|
1005 | - * - 'offset' - Set the offset for the limited search results |
|
1006 | - * - 'wildcard' - Whether the search should use wildcards |
|
1007 | - * @psalm-param array{escape_like_param?: bool, limit?: int, offset?: int, wildcard?: bool} $options |
|
1008 | - * @return array an array of contacts which are arrays of key-value-pairs |
|
1009 | - */ |
|
1010 | - public function search($addressBookId, $pattern, $searchProperties, $options = []): array { |
|
1011 | - return $this->searchByAddressBookIds([$addressBookId], $pattern, $searchProperties, $options); |
|
1012 | - } |
|
1013 | - |
|
1014 | - /** |
|
1015 | - * Search contacts in all address-books accessible by a user |
|
1016 | - * |
|
1017 | - * @param string $principalUri |
|
1018 | - * @param string $pattern |
|
1019 | - * @param array $searchProperties |
|
1020 | - * @param array $options |
|
1021 | - * @return array |
|
1022 | - */ |
|
1023 | - public function searchPrincipalUri(string $principalUri, |
|
1024 | - string $pattern, |
|
1025 | - array $searchProperties, |
|
1026 | - array $options = []): array { |
|
1027 | - $addressBookIds = array_map(static function ($row):int { |
|
1028 | - return (int) $row['id']; |
|
1029 | - }, $this->getAddressBooksForUser($principalUri)); |
|
1030 | - |
|
1031 | - return $this->searchByAddressBookIds($addressBookIds, $pattern, $searchProperties, $options); |
|
1032 | - } |
|
1033 | - |
|
1034 | - /** |
|
1035 | - * @param array $addressBookIds |
|
1036 | - * @param string $pattern |
|
1037 | - * @param array $searchProperties |
|
1038 | - * @param array $options |
|
1039 | - * @psalm-param array{types?: bool, escape_like_param?: bool, limit?: int, offset?: int, wildcard?: bool} $options |
|
1040 | - * @return array |
|
1041 | - */ |
|
1042 | - private function searchByAddressBookIds(array $addressBookIds, |
|
1043 | - string $pattern, |
|
1044 | - array $searchProperties, |
|
1045 | - array $options = []): array { |
|
1046 | - $escapePattern = !\array_key_exists('escape_like_param', $options) || $options['escape_like_param'] !== false; |
|
1047 | - $useWildcards = !\array_key_exists('wildcard', $options) || $options['wildcard'] !== false; |
|
1048 | - |
|
1049 | - $query2 = $this->db->getQueryBuilder(); |
|
1050 | - |
|
1051 | - $addressBookOr = $query2->expr()->orX(); |
|
1052 | - foreach ($addressBookIds as $addressBookId) { |
|
1053 | - $addressBookOr->add($query2->expr()->eq('cp.addressbookid', $query2->createNamedParameter($addressBookId))); |
|
1054 | - } |
|
1055 | - |
|
1056 | - if ($addressBookOr->count() === 0) { |
|
1057 | - return []; |
|
1058 | - } |
|
1059 | - |
|
1060 | - $propertyOr = $query2->expr()->orX(); |
|
1061 | - foreach ($searchProperties as $property) { |
|
1062 | - if ($escapePattern) { |
|
1063 | - if ($property === 'EMAIL' && strpos($pattern, ' ') !== false) { |
|
1064 | - // There can be no spaces in emails |
|
1065 | - continue; |
|
1066 | - } |
|
1067 | - |
|
1068 | - if ($property === 'CLOUD' && preg_match('/[^a-zA-Z0-9 :_.@\/\-\']/', $pattern) === 1) { |
|
1069 | - // There can be no chars in cloud ids which are not valid for user ids plus :/ |
|
1070 | - // worst case: CA61590A-BBBC-423E-84AF-E6DF01455A53@https://my.nxt/srv/ |
|
1071 | - continue; |
|
1072 | - } |
|
1073 | - } |
|
1074 | - |
|
1075 | - $propertyOr->add($query2->expr()->eq('cp.name', $query2->createNamedParameter($property))); |
|
1076 | - } |
|
1077 | - |
|
1078 | - if ($propertyOr->count() === 0) { |
|
1079 | - return []; |
|
1080 | - } |
|
1081 | - |
|
1082 | - $query2->selectDistinct('cp.cardid') |
|
1083 | - ->from($this->dbCardsPropertiesTable, 'cp') |
|
1084 | - ->andWhere($addressBookOr) |
|
1085 | - ->andWhere($propertyOr); |
|
1086 | - |
|
1087 | - // No need for like when the pattern is empty |
|
1088 | - if ('' !== $pattern) { |
|
1089 | - if (!$useWildcards) { |
|
1090 | - $query2->andWhere($query2->expr()->eq('cp.value', $query2->createNamedParameter($pattern))); |
|
1091 | - } elseif (!$escapePattern) { |
|
1092 | - $query2->andWhere($query2->expr()->ilike('cp.value', $query2->createNamedParameter($pattern))); |
|
1093 | - } else { |
|
1094 | - $query2->andWhere($query2->expr()->ilike('cp.value', $query2->createNamedParameter('%' . $this->db->escapeLikeParameter($pattern) . '%'))); |
|
1095 | - } |
|
1096 | - } |
|
1097 | - |
|
1098 | - if (isset($options['limit'])) { |
|
1099 | - $query2->setMaxResults($options['limit']); |
|
1100 | - } |
|
1101 | - if (isset($options['offset'])) { |
|
1102 | - $query2->setFirstResult($options['offset']); |
|
1103 | - } |
|
1104 | - |
|
1105 | - $result = $query2->execute(); |
|
1106 | - $matches = $result->fetchAll(); |
|
1107 | - $result->closeCursor(); |
|
1108 | - $matches = array_map(function ($match) { |
|
1109 | - return (int)$match['cardid']; |
|
1110 | - }, $matches); |
|
1111 | - |
|
1112 | - $cards = []; |
|
1113 | - $query = $this->db->getQueryBuilder(); |
|
1114 | - $query->select('c.addressbookid', 'c.carddata', 'c.uri') |
|
1115 | - ->from($this->dbCardsTable, 'c') |
|
1116 | - ->where($query->expr()->in('c.id', $query->createParameter('matches'))); |
|
1117 | - |
|
1118 | - foreach (array_chunk($matches, 1000) as $matchesChunk) { |
|
1119 | - $query->setParameter('matches', $matchesChunk, IQueryBuilder::PARAM_INT_ARRAY); |
|
1120 | - $result = $query->executeQuery(); |
|
1121 | - $cards = array_merge($cards, $result->fetchAll()); |
|
1122 | - $result->closeCursor(); |
|
1123 | - } |
|
1124 | - |
|
1125 | - return array_map(function ($array) { |
|
1126 | - $array['addressbookid'] = (int) $array['addressbookid']; |
|
1127 | - $modified = false; |
|
1128 | - $array['carddata'] = $this->readBlob($array['carddata'], $modified); |
|
1129 | - if ($modified) { |
|
1130 | - $array['size'] = strlen($array['carddata']); |
|
1131 | - } |
|
1132 | - return $array; |
|
1133 | - }, $cards); |
|
1134 | - } |
|
1135 | - |
|
1136 | - /** |
|
1137 | - * @param int $bookId |
|
1138 | - * @param string $name |
|
1139 | - * @return array |
|
1140 | - */ |
|
1141 | - public function collectCardProperties($bookId, $name) { |
|
1142 | - $query = $this->db->getQueryBuilder(); |
|
1143 | - $result = $query->selectDistinct('value') |
|
1144 | - ->from($this->dbCardsPropertiesTable) |
|
1145 | - ->where($query->expr()->eq('name', $query->createNamedParameter($name))) |
|
1146 | - ->andWhere($query->expr()->eq('addressbookid', $query->createNamedParameter($bookId))) |
|
1147 | - ->execute(); |
|
1148 | - |
|
1149 | - $all = $result->fetchAll(PDO::FETCH_COLUMN); |
|
1150 | - $result->closeCursor(); |
|
1151 | - |
|
1152 | - return $all; |
|
1153 | - } |
|
1154 | - |
|
1155 | - /** |
|
1156 | - * get URI from a given contact |
|
1157 | - * |
|
1158 | - * @param int $id |
|
1159 | - * @return string |
|
1160 | - */ |
|
1161 | - public function getCardUri($id) { |
|
1162 | - $query = $this->db->getQueryBuilder(); |
|
1163 | - $query->select('uri')->from($this->dbCardsTable) |
|
1164 | - ->where($query->expr()->eq('id', $query->createParameter('id'))) |
|
1165 | - ->setParameter('id', $id); |
|
1166 | - |
|
1167 | - $result = $query->execute(); |
|
1168 | - $uri = $result->fetch(); |
|
1169 | - $result->closeCursor(); |
|
1170 | - |
|
1171 | - if (!isset($uri['uri'])) { |
|
1172 | - throw new \InvalidArgumentException('Card does not exists: ' . $id); |
|
1173 | - } |
|
1174 | - |
|
1175 | - return $uri['uri']; |
|
1176 | - } |
|
1177 | - |
|
1178 | - /** |
|
1179 | - * return contact with the given URI |
|
1180 | - * |
|
1181 | - * @param int $addressBookId |
|
1182 | - * @param string $uri |
|
1183 | - * @returns array |
|
1184 | - */ |
|
1185 | - public function getContact($addressBookId, $uri) { |
|
1186 | - $result = []; |
|
1187 | - $query = $this->db->getQueryBuilder(); |
|
1188 | - $query->select('*')->from($this->dbCardsTable) |
|
1189 | - ->where($query->expr()->eq('uri', $query->createNamedParameter($uri))) |
|
1190 | - ->andWhere($query->expr()->eq('addressbookid', $query->createNamedParameter($addressBookId))); |
|
1191 | - $queryResult = $query->execute(); |
|
1192 | - $contact = $queryResult->fetch(); |
|
1193 | - $queryResult->closeCursor(); |
|
1194 | - |
|
1195 | - if (is_array($contact)) { |
|
1196 | - $modified = false; |
|
1197 | - $contact['etag'] = '"' . $contact['etag'] . '"'; |
|
1198 | - $contact['carddata'] = $this->readBlob($contact['carddata'], $modified); |
|
1199 | - if ($modified) { |
|
1200 | - $contact['size'] = strlen($contact['carddata']); |
|
1201 | - } |
|
1202 | - |
|
1203 | - $result = $contact; |
|
1204 | - } |
|
1205 | - |
|
1206 | - return $result; |
|
1207 | - } |
|
1208 | - |
|
1209 | - /** |
|
1210 | - * Returns the list of people whom this address book is shared with. |
|
1211 | - * |
|
1212 | - * Every element in this array should have the following properties: |
|
1213 | - * * href - Often a mailto: address |
|
1214 | - * * commonName - Optional, for example a first + last name |
|
1215 | - * * status - See the Sabre\CalDAV\SharingPlugin::STATUS_ constants. |
|
1216 | - * * readOnly - boolean |
|
1217 | - * |
|
1218 | - * @return list<array{href: string, commonName: string, status: int, readOnly: bool, '{http://owncloud.org/ns}principal': string, '{http://owncloud.org/ns}group-share': bool}> |
|
1219 | - */ |
|
1220 | - public function getShares(int $addressBookId): array { |
|
1221 | - return $this->sharingBackend->getShares($addressBookId); |
|
1222 | - } |
|
1223 | - |
|
1224 | - /** |
|
1225 | - * update properties table |
|
1226 | - * |
|
1227 | - * @param int $addressBookId |
|
1228 | - * @param string $cardUri |
|
1229 | - * @param string $vCardSerialized |
|
1230 | - */ |
|
1231 | - protected function updateProperties($addressBookId, $cardUri, $vCardSerialized) { |
|
1232 | - $cardId = $this->getCardId($addressBookId, $cardUri); |
|
1233 | - $vCard = $this->readCard($vCardSerialized); |
|
1234 | - |
|
1235 | - $this->purgeProperties($addressBookId, $cardId); |
|
1236 | - |
|
1237 | - $query = $this->db->getQueryBuilder(); |
|
1238 | - $query->insert($this->dbCardsPropertiesTable) |
|
1239 | - ->values( |
|
1240 | - [ |
|
1241 | - 'addressbookid' => $query->createNamedParameter($addressBookId), |
|
1242 | - 'cardid' => $query->createNamedParameter($cardId), |
|
1243 | - 'name' => $query->createParameter('name'), |
|
1244 | - 'value' => $query->createParameter('value'), |
|
1245 | - 'preferred' => $query->createParameter('preferred') |
|
1246 | - ] |
|
1247 | - ); |
|
1248 | - |
|
1249 | - |
|
1250 | - $this->db->beginTransaction(); |
|
1251 | - |
|
1252 | - try { |
|
1253 | - foreach ($vCard->children() as $property) { |
|
1254 | - if (!in_array($property->name, self::$indexProperties)) { |
|
1255 | - continue; |
|
1256 | - } |
|
1257 | - $preferred = 0; |
|
1258 | - foreach ($property->parameters as $parameter) { |
|
1259 | - if ($parameter->name === 'TYPE' && strtoupper($parameter->getValue()) === 'PREF') { |
|
1260 | - $preferred = 1; |
|
1261 | - break; |
|
1262 | - } |
|
1263 | - } |
|
1264 | - $query->setParameter('name', $property->name); |
|
1265 | - $query->setParameter('value', mb_strcut($property->getValue(), 0, 254)); |
|
1266 | - $query->setParameter('preferred', $preferred); |
|
1267 | - $query->execute(); |
|
1268 | - } |
|
1269 | - $this->db->commit(); |
|
1270 | - } catch (\Exception $e) { |
|
1271 | - $this->db->rollBack(); |
|
1272 | - } |
|
1273 | - } |
|
1274 | - |
|
1275 | - /** |
|
1276 | - * read vCard data into a vCard object |
|
1277 | - * |
|
1278 | - * @param string $cardData |
|
1279 | - * @return VCard |
|
1280 | - */ |
|
1281 | - protected function readCard($cardData) { |
|
1282 | - return Reader::read($cardData); |
|
1283 | - } |
|
1284 | - |
|
1285 | - /** |
|
1286 | - * delete all properties from a given card |
|
1287 | - * |
|
1288 | - * @param int $addressBookId |
|
1289 | - * @param int $cardId |
|
1290 | - */ |
|
1291 | - protected function purgeProperties($addressBookId, $cardId) { |
|
1292 | - $query = $this->db->getQueryBuilder(); |
|
1293 | - $query->delete($this->dbCardsPropertiesTable) |
|
1294 | - ->where($query->expr()->eq('cardid', $query->createNamedParameter($cardId))) |
|
1295 | - ->andWhere($query->expr()->eq('addressbookid', $query->createNamedParameter($addressBookId))); |
|
1296 | - $query->execute(); |
|
1297 | - } |
|
1298 | - |
|
1299 | - /** |
|
1300 | - * Get ID from a given contact |
|
1301 | - */ |
|
1302 | - protected function getCardId(int $addressBookId, string $uri): int { |
|
1303 | - $query = $this->db->getQueryBuilder(); |
|
1304 | - $query->select('id')->from($this->dbCardsTable) |
|
1305 | - ->where($query->expr()->eq('uri', $query->createNamedParameter($uri))) |
|
1306 | - ->andWhere($query->expr()->eq('addressbookid', $query->createNamedParameter($addressBookId))); |
|
1307 | - |
|
1308 | - $result = $query->execute(); |
|
1309 | - $cardIds = $result->fetch(); |
|
1310 | - $result->closeCursor(); |
|
1311 | - |
|
1312 | - if (!isset($cardIds['id'])) { |
|
1313 | - throw new \InvalidArgumentException('Card does not exists: ' . $uri); |
|
1314 | - } |
|
1315 | - |
|
1316 | - return (int)$cardIds['id']; |
|
1317 | - } |
|
1318 | - |
|
1319 | - /** |
|
1320 | - * For shared address books the sharee is set in the ACL of the address book |
|
1321 | - * |
|
1322 | - * @param int $addressBookId |
|
1323 | - * @param list<array{privilege: string, principal: string, protected: bool}> $acl |
|
1324 | - * @return list<array{privilege: string, principal: string, protected: bool}> |
|
1325 | - */ |
|
1326 | - public function applyShareAcl(int $addressBookId, array $acl): array { |
|
1327 | - return $this->sharingBackend->applyShareAcl($addressBookId, $acl); |
|
1328 | - } |
|
1329 | - |
|
1330 | - /** |
|
1331 | - * @throws \InvalidArgumentException |
|
1332 | - */ |
|
1333 | - public function pruneOutdatedSyncTokens(int $keep = 10_000): int { |
|
1334 | - if ($keep < 0) { |
|
1335 | - throw new \InvalidArgumentException(); |
|
1336 | - } |
|
1337 | - $query = $this->db->getQueryBuilder(); |
|
1338 | - $query->delete('addressbookchanges') |
|
1339 | - ->orderBy('id', 'DESC') |
|
1340 | - ->setFirstResult($keep); |
|
1341 | - return $query->executeStatement(); |
|
1342 | - } |
|
1343 | - |
|
1344 | - private function convertPrincipal(string $principalUri, bool $toV2): string { |
|
1345 | - if ($this->principalBackend->getPrincipalPrefix() === 'principals') { |
|
1346 | - [, $name] = \Sabre\Uri\split($principalUri); |
|
1347 | - if ($toV2 === true) { |
|
1348 | - return "principals/users/$name"; |
|
1349 | - } |
|
1350 | - return "principals/$name"; |
|
1351 | - } |
|
1352 | - return $principalUri; |
|
1353 | - } |
|
1354 | - |
|
1355 | - private function addOwnerPrincipal(array &$addressbookInfo): void { |
|
1356 | - $ownerPrincipalKey = '{' . \OCA\DAV\DAV\Sharing\Plugin::NS_OWNCLOUD . '}owner-principal'; |
|
1357 | - $displaynameKey = '{' . \OCA\DAV\DAV\Sharing\Plugin::NS_NEXTCLOUD . '}owner-displayname'; |
|
1358 | - if (isset($addressbookInfo[$ownerPrincipalKey])) { |
|
1359 | - $uri = $addressbookInfo[$ownerPrincipalKey]; |
|
1360 | - } else { |
|
1361 | - $uri = $addressbookInfo['principaluri']; |
|
1362 | - } |
|
1363 | - |
|
1364 | - $principalInformation = $this->principalBackend->getPrincipalByPath($uri); |
|
1365 | - if (isset($principalInformation['{DAV:}displayname'])) { |
|
1366 | - $addressbookInfo[$displaynameKey] = $principalInformation['{DAV:}displayname']; |
|
1367 | - } |
|
1368 | - } |
|
1369 | - |
|
1370 | - /** |
|
1371 | - * Extract UID from vcard |
|
1372 | - * |
|
1373 | - * @param string $cardData the vcard raw data |
|
1374 | - * @return string the uid |
|
1375 | - * @throws BadRequest if no UID is available or vcard is empty |
|
1376 | - */ |
|
1377 | - private function getUID(string $cardData): string { |
|
1378 | - if ($cardData !== '') { |
|
1379 | - $vCard = Reader::read($cardData); |
|
1380 | - if ($vCard->UID) { |
|
1381 | - $uid = $vCard->UID->getValue(); |
|
1382 | - return $uid; |
|
1383 | - } |
|
1384 | - // should already be handled, but just in case |
|
1385 | - throw new BadRequest('vCards on CardDAV servers MUST have a UID property'); |
|
1386 | - } |
|
1387 | - // should already be handled, but just in case |
|
1388 | - throw new BadRequest('vCard can not be empty'); |
|
1389 | - } |
|
65 | + use TTransactional; |
|
66 | + |
|
67 | + public const PERSONAL_ADDRESSBOOK_URI = 'contacts'; |
|
68 | + public const PERSONAL_ADDRESSBOOK_NAME = 'Contacts'; |
|
69 | + |
|
70 | + private Principal $principalBackend; |
|
71 | + private string $dbCardsTable = 'cards'; |
|
72 | + private string $dbCardsPropertiesTable = 'cards_properties'; |
|
73 | + private IDBConnection $db; |
|
74 | + private Backend $sharingBackend; |
|
75 | + |
|
76 | + /** @var array properties to index */ |
|
77 | + public static array $indexProperties = [ |
|
78 | + 'BDAY', 'UID', 'N', 'FN', 'TITLE', 'ROLE', 'NOTE', 'NICKNAME', |
|
79 | + 'ORG', 'CATEGORIES', 'EMAIL', 'TEL', 'IMPP', 'ADR', 'URL', 'GEO', |
|
80 | + 'CLOUD', 'X-SOCIALPROFILE']; |
|
81 | + |
|
82 | + /** |
|
83 | + * @var string[] Map of uid => display name |
|
84 | + */ |
|
85 | + protected array $userDisplayNames; |
|
86 | + private IUserManager $userManager; |
|
87 | + private IEventDispatcher $dispatcher; |
|
88 | + private array $etagCache = []; |
|
89 | + |
|
90 | + /** |
|
91 | + * CardDavBackend constructor. |
|
92 | + * |
|
93 | + * @param IDBConnection $db |
|
94 | + * @param Principal $principalBackend |
|
95 | + * @param IUserManager $userManager |
|
96 | + * @param IGroupManager $groupManager |
|
97 | + * @param IEventDispatcher $dispatcher |
|
98 | + */ |
|
99 | + public function __construct(IDBConnection $db, |
|
100 | + Principal $principalBackend, |
|
101 | + IUserManager $userManager, |
|
102 | + IGroupManager $groupManager, |
|
103 | + IEventDispatcher $dispatcher) { |
|
104 | + $this->db = $db; |
|
105 | + $this->principalBackend = $principalBackend; |
|
106 | + $this->userManager = $userManager; |
|
107 | + $this->dispatcher = $dispatcher; |
|
108 | + $this->sharingBackend = new Backend($this->db, $this->userManager, $groupManager, $principalBackend, 'addressbook'); |
|
109 | + } |
|
110 | + |
|
111 | + /** |
|
112 | + * Return the number of address books for a principal |
|
113 | + * |
|
114 | + * @param $principalUri |
|
115 | + * @return int |
|
116 | + */ |
|
117 | + public function getAddressBooksForUserCount($principalUri) { |
|
118 | + $principalUri = $this->convertPrincipal($principalUri, true); |
|
119 | + $query = $this->db->getQueryBuilder(); |
|
120 | + $query->select($query->func()->count('*')) |
|
121 | + ->from('addressbooks') |
|
122 | + ->where($query->expr()->eq('principaluri', $query->createNamedParameter($principalUri))); |
|
123 | + |
|
124 | + $result = $query->executeQuery(); |
|
125 | + $column = (int) $result->fetchOne(); |
|
126 | + $result->closeCursor(); |
|
127 | + return $column; |
|
128 | + } |
|
129 | + |
|
130 | + /** |
|
131 | + * Returns the list of address books for a specific user. |
|
132 | + * |
|
133 | + * Every addressbook should have the following properties: |
|
134 | + * id - an arbitrary unique id |
|
135 | + * uri - the 'basename' part of the url |
|
136 | + * principaluri - Same as the passed parameter |
|
137 | + * |
|
138 | + * Any additional clark-notation property may be passed besides this. Some |
|
139 | + * common ones are : |
|
140 | + * {DAV:}displayname |
|
141 | + * {urn:ietf:params:xml:ns:carddav}addressbook-description |
|
142 | + * {http://calendarserver.org/ns/}getctag |
|
143 | + * |
|
144 | + * @param string $principalUri |
|
145 | + * @return array |
|
146 | + */ |
|
147 | + public function getAddressBooksForUser($principalUri) { |
|
148 | + $principalUriOriginal = $principalUri; |
|
149 | + $principalUri = $this->convertPrincipal($principalUri, true); |
|
150 | + $query = $this->db->getQueryBuilder(); |
|
151 | + $query->select(['id', 'uri', 'displayname', 'principaluri', 'description', 'synctoken']) |
|
152 | + ->from('addressbooks') |
|
153 | + ->where($query->expr()->eq('principaluri', $query->createNamedParameter($principalUri))); |
|
154 | + |
|
155 | + $addressBooks = []; |
|
156 | + |
|
157 | + $result = $query->execute(); |
|
158 | + while ($row = $result->fetch()) { |
|
159 | + $addressBooks[$row['id']] = [ |
|
160 | + 'id' => $row['id'], |
|
161 | + 'uri' => $row['uri'], |
|
162 | + 'principaluri' => $this->convertPrincipal($row['principaluri'], false), |
|
163 | + '{DAV:}displayname' => $row['displayname'], |
|
164 | + '{' . Plugin::NS_CARDDAV . '}addressbook-description' => $row['description'], |
|
165 | + '{http://calendarserver.org/ns/}getctag' => $row['synctoken'], |
|
166 | + '{http://sabredav.org/ns}sync-token' => $row['synctoken'] ?: '0', |
|
167 | + ]; |
|
168 | + |
|
169 | + $this->addOwnerPrincipal($addressBooks[$row['id']]); |
|
170 | + } |
|
171 | + $result->closeCursor(); |
|
172 | + |
|
173 | + // query for shared addressbooks |
|
174 | + $principals = $this->principalBackend->getGroupMembership($principalUriOriginal, true); |
|
175 | + $principals = array_merge($principals, $this->principalBackend->getCircleMembership($principalUriOriginal)); |
|
176 | + |
|
177 | + $principals[] = $principalUri; |
|
178 | + |
|
179 | + $query = $this->db->getQueryBuilder(); |
|
180 | + $result = $query->select(['a.id', 'a.uri', 'a.displayname', 'a.principaluri', 'a.description', 'a.synctoken', 's.access']) |
|
181 | + ->from('dav_shares', 's') |
|
182 | + ->join('s', 'addressbooks', 'a', $query->expr()->eq('s.resourceid', 'a.id')) |
|
183 | + ->where($query->expr()->in('s.principaluri', $query->createParameter('principaluri'))) |
|
184 | + ->andWhere($query->expr()->eq('s.type', $query->createParameter('type'))) |
|
185 | + ->setParameter('type', 'addressbook') |
|
186 | + ->setParameter('principaluri', $principals, IQueryBuilder::PARAM_STR_ARRAY) |
|
187 | + ->execute(); |
|
188 | + |
|
189 | + $readOnlyPropertyName = '{' . \OCA\DAV\DAV\Sharing\Plugin::NS_OWNCLOUD . '}read-only'; |
|
190 | + while ($row = $result->fetch()) { |
|
191 | + if ($row['principaluri'] === $principalUri) { |
|
192 | + continue; |
|
193 | + } |
|
194 | + |
|
195 | + $readOnly = (int)$row['access'] === Backend::ACCESS_READ; |
|
196 | + if (isset($addressBooks[$row['id']])) { |
|
197 | + if ($readOnly) { |
|
198 | + // New share can not have more permissions then the old one. |
|
199 | + continue; |
|
200 | + } |
|
201 | + if (isset($addressBooks[$row['id']][$readOnlyPropertyName]) && |
|
202 | + $addressBooks[$row['id']][$readOnlyPropertyName] === 0) { |
|
203 | + // Old share is already read-write, no more permissions can be gained |
|
204 | + continue; |
|
205 | + } |
|
206 | + } |
|
207 | + |
|
208 | + [, $name] = \Sabre\Uri\split($row['principaluri']); |
|
209 | + $uri = $row['uri'] . '_shared_by_' . $name; |
|
210 | + $displayName = $row['displayname'] . ' (' . $this->getUserDisplayName($name) . ')'; |
|
211 | + |
|
212 | + $addressBooks[$row['id']] = [ |
|
213 | + 'id' => $row['id'], |
|
214 | + 'uri' => $uri, |
|
215 | + 'principaluri' => $principalUriOriginal, |
|
216 | + '{DAV:}displayname' => $displayName, |
|
217 | + '{' . Plugin::NS_CARDDAV . '}addressbook-description' => $row['description'], |
|
218 | + '{http://calendarserver.org/ns/}getctag' => $row['synctoken'], |
|
219 | + '{http://sabredav.org/ns}sync-token' => $row['synctoken'] ?: '0', |
|
220 | + '{' . \OCA\DAV\DAV\Sharing\Plugin::NS_OWNCLOUD . '}owner-principal' => $row['principaluri'], |
|
221 | + $readOnlyPropertyName => $readOnly, |
|
222 | + ]; |
|
223 | + |
|
224 | + $this->addOwnerPrincipal($addressBooks[$row['id']]); |
|
225 | + } |
|
226 | + $result->closeCursor(); |
|
227 | + |
|
228 | + return array_values($addressBooks); |
|
229 | + } |
|
230 | + |
|
231 | + public function getUsersOwnAddressBooks($principalUri) { |
|
232 | + $principalUri = $this->convertPrincipal($principalUri, true); |
|
233 | + $query = $this->db->getQueryBuilder(); |
|
234 | + $query->select(['id', 'uri', 'displayname', 'principaluri', 'description', 'synctoken']) |
|
235 | + ->from('addressbooks') |
|
236 | + ->where($query->expr()->eq('principaluri', $query->createNamedParameter($principalUri))); |
|
237 | + |
|
238 | + $addressBooks = []; |
|
239 | + |
|
240 | + $result = $query->execute(); |
|
241 | + while ($row = $result->fetch()) { |
|
242 | + $addressBooks[$row['id']] = [ |
|
243 | + 'id' => $row['id'], |
|
244 | + 'uri' => $row['uri'], |
|
245 | + 'principaluri' => $this->convertPrincipal($row['principaluri'], false), |
|
246 | + '{DAV:}displayname' => $row['displayname'], |
|
247 | + '{' . Plugin::NS_CARDDAV . '}addressbook-description' => $row['description'], |
|
248 | + '{http://calendarserver.org/ns/}getctag' => $row['synctoken'], |
|
249 | + '{http://sabredav.org/ns}sync-token' => $row['synctoken'] ?: '0', |
|
250 | + ]; |
|
251 | + |
|
252 | + $this->addOwnerPrincipal($addressBooks[$row['id']]); |
|
253 | + } |
|
254 | + $result->closeCursor(); |
|
255 | + |
|
256 | + return array_values($addressBooks); |
|
257 | + } |
|
258 | + |
|
259 | + private function getUserDisplayName($uid) { |
|
260 | + if (!isset($this->userDisplayNames[$uid])) { |
|
261 | + $user = $this->userManager->get($uid); |
|
262 | + |
|
263 | + if ($user instanceof IUser) { |
|
264 | + $this->userDisplayNames[$uid] = $user->getDisplayName(); |
|
265 | + } else { |
|
266 | + $this->userDisplayNames[$uid] = $uid; |
|
267 | + } |
|
268 | + } |
|
269 | + |
|
270 | + return $this->userDisplayNames[$uid]; |
|
271 | + } |
|
272 | + |
|
273 | + /** |
|
274 | + * @param int $addressBookId |
|
275 | + */ |
|
276 | + public function getAddressBookById(int $addressBookId): ?array { |
|
277 | + $query = $this->db->getQueryBuilder(); |
|
278 | + $result = $query->select(['id', 'uri', 'displayname', 'principaluri', 'description', 'synctoken']) |
|
279 | + ->from('addressbooks') |
|
280 | + ->where($query->expr()->eq('id', $query->createNamedParameter($addressBookId, IQueryBuilder::PARAM_INT))) |
|
281 | + ->executeQuery(); |
|
282 | + $row = $result->fetch(); |
|
283 | + $result->closeCursor(); |
|
284 | + if (!$row) { |
|
285 | + return null; |
|
286 | + } |
|
287 | + |
|
288 | + $addressBook = [ |
|
289 | + 'id' => $row['id'], |
|
290 | + 'uri' => $row['uri'], |
|
291 | + 'principaluri' => $row['principaluri'], |
|
292 | + '{DAV:}displayname' => $row['displayname'], |
|
293 | + '{' . Plugin::NS_CARDDAV . '}addressbook-description' => $row['description'], |
|
294 | + '{http://calendarserver.org/ns/}getctag' => $row['synctoken'], |
|
295 | + '{http://sabredav.org/ns}sync-token' => $row['synctoken'] ?: '0', |
|
296 | + ]; |
|
297 | + |
|
298 | + $this->addOwnerPrincipal($addressBook); |
|
299 | + |
|
300 | + return $addressBook; |
|
301 | + } |
|
302 | + |
|
303 | + public function getAddressBooksByUri(string $principal, string $addressBookUri): ?array { |
|
304 | + $query = $this->db->getQueryBuilder(); |
|
305 | + $result = $query->select(['id', 'uri', 'displayname', 'principaluri', 'description', 'synctoken']) |
|
306 | + ->from('addressbooks') |
|
307 | + ->where($query->expr()->eq('uri', $query->createNamedParameter($addressBookUri))) |
|
308 | + ->andWhere($query->expr()->eq('principaluri', $query->createNamedParameter($principal))) |
|
309 | + ->setMaxResults(1) |
|
310 | + ->executeQuery(); |
|
311 | + |
|
312 | + $row = $result->fetch(); |
|
313 | + $result->closeCursor(); |
|
314 | + if ($row === false) { |
|
315 | + return null; |
|
316 | + } |
|
317 | + |
|
318 | + $addressBook = [ |
|
319 | + 'id' => $row['id'], |
|
320 | + 'uri' => $row['uri'], |
|
321 | + 'principaluri' => $row['principaluri'], |
|
322 | + '{DAV:}displayname' => $row['displayname'], |
|
323 | + '{' . Plugin::NS_CARDDAV . '}addressbook-description' => $row['description'], |
|
324 | + '{http://calendarserver.org/ns/}getctag' => $row['synctoken'], |
|
325 | + '{http://sabredav.org/ns}sync-token' => $row['synctoken'] ?: '0', |
|
326 | + ]; |
|
327 | + |
|
328 | + $this->addOwnerPrincipal($addressBook); |
|
329 | + |
|
330 | + return $addressBook; |
|
331 | + } |
|
332 | + |
|
333 | + /** |
|
334 | + * Updates properties for an address book. |
|
335 | + * |
|
336 | + * The list of mutations is stored in a Sabre\DAV\PropPatch object. |
|
337 | + * To do the actual updates, you must tell this object which properties |
|
338 | + * you're going to process with the handle() method. |
|
339 | + * |
|
340 | + * Calling the handle method is like telling the PropPatch object "I |
|
341 | + * promise I can handle updating this property". |
|
342 | + * |
|
343 | + * Read the PropPatch documentation for more info and examples. |
|
344 | + * |
|
345 | + * @param string $addressBookId |
|
346 | + * @param \Sabre\DAV\PropPatch $propPatch |
|
347 | + * @return void |
|
348 | + */ |
|
349 | + public function updateAddressBook($addressBookId, \Sabre\DAV\PropPatch $propPatch) { |
|
350 | + $supportedProperties = [ |
|
351 | + '{DAV:}displayname', |
|
352 | + '{' . Plugin::NS_CARDDAV . '}addressbook-description', |
|
353 | + ]; |
|
354 | + |
|
355 | + $propPatch->handle($supportedProperties, function ($mutations) use ($addressBookId) { |
|
356 | + $updates = []; |
|
357 | + foreach ($mutations as $property => $newValue) { |
|
358 | + switch ($property) { |
|
359 | + case '{DAV:}displayname': |
|
360 | + $updates['displayname'] = $newValue; |
|
361 | + break; |
|
362 | + case '{' . Plugin::NS_CARDDAV . '}addressbook-description': |
|
363 | + $updates['description'] = $newValue; |
|
364 | + break; |
|
365 | + } |
|
366 | + } |
|
367 | + $query = $this->db->getQueryBuilder(); |
|
368 | + $query->update('addressbooks'); |
|
369 | + |
|
370 | + foreach ($updates as $key => $value) { |
|
371 | + $query->set($key, $query->createNamedParameter($value)); |
|
372 | + } |
|
373 | + $query->where($query->expr()->eq('id', $query->createNamedParameter($addressBookId))) |
|
374 | + ->executeStatement(); |
|
375 | + |
|
376 | + $this->addChange($addressBookId, "", 2); |
|
377 | + |
|
378 | + $addressBookRow = $this->getAddressBookById((int)$addressBookId); |
|
379 | + $shares = $this->getShares((int)$addressBookId); |
|
380 | + $this->dispatcher->dispatchTyped(new AddressBookUpdatedEvent((int)$addressBookId, $addressBookRow, $shares, $mutations)); |
|
381 | + |
|
382 | + return true; |
|
383 | + }); |
|
384 | + } |
|
385 | + |
|
386 | + /** |
|
387 | + * Creates a new address book |
|
388 | + * |
|
389 | + * @param string $principalUri |
|
390 | + * @param string $url Just the 'basename' of the url. |
|
391 | + * @param array $properties |
|
392 | + * @return int |
|
393 | + * @throws BadRequest |
|
394 | + */ |
|
395 | + public function createAddressBook($principalUri, $url, array $properties) { |
|
396 | + if (strlen($url) > 255) { |
|
397 | + throw new BadRequest('URI too long. Address book not created'); |
|
398 | + } |
|
399 | + |
|
400 | + $values = [ |
|
401 | + 'displayname' => null, |
|
402 | + 'description' => null, |
|
403 | + 'principaluri' => $principalUri, |
|
404 | + 'uri' => $url, |
|
405 | + 'synctoken' => 1 |
|
406 | + ]; |
|
407 | + |
|
408 | + foreach ($properties as $property => $newValue) { |
|
409 | + switch ($property) { |
|
410 | + case '{DAV:}displayname': |
|
411 | + $values['displayname'] = $newValue; |
|
412 | + break; |
|
413 | + case '{' . Plugin::NS_CARDDAV . '}addressbook-description': |
|
414 | + $values['description'] = $newValue; |
|
415 | + break; |
|
416 | + default: |
|
417 | + throw new BadRequest('Unknown property: ' . $property); |
|
418 | + } |
|
419 | + } |
|
420 | + |
|
421 | + // Fallback to make sure the displayname is set. Some clients may refuse |
|
422 | + // to work with addressbooks not having a displayname. |
|
423 | + if (is_null($values['displayname'])) { |
|
424 | + $values['displayname'] = $url; |
|
425 | + } |
|
426 | + |
|
427 | + [$addressBookId, $addressBookRow] = $this->atomic(function() use ($values) { |
|
428 | + $query = $this->db->getQueryBuilder(); |
|
429 | + $query->insert('addressbooks') |
|
430 | + ->values([ |
|
431 | + 'uri' => $query->createParameter('uri'), |
|
432 | + 'displayname' => $query->createParameter('displayname'), |
|
433 | + 'description' => $query->createParameter('description'), |
|
434 | + 'principaluri' => $query->createParameter('principaluri'), |
|
435 | + 'synctoken' => $query->createParameter('synctoken'), |
|
436 | + ]) |
|
437 | + ->setParameters($values) |
|
438 | + ->execute(); |
|
439 | + |
|
440 | + $addressBookId = $query->getLastInsertId(); |
|
441 | + return [ |
|
442 | + $addressBookId, |
|
443 | + $this->getAddressBookById($addressBookId), |
|
444 | + ]; |
|
445 | + }, $this->db); |
|
446 | + |
|
447 | + $this->dispatcher->dispatchTyped(new AddressBookCreatedEvent($addressBookId, $addressBookRow)); |
|
448 | + |
|
449 | + return $addressBookId; |
|
450 | + } |
|
451 | + |
|
452 | + /** |
|
453 | + * Deletes an entire addressbook and all its contents |
|
454 | + * |
|
455 | + * @param mixed $addressBookId |
|
456 | + * @return void |
|
457 | + */ |
|
458 | + public function deleteAddressBook($addressBookId) { |
|
459 | + $addressBookId = (int)$addressBookId; |
|
460 | + $addressBookData = $this->getAddressBookById($addressBookId); |
|
461 | + $shares = $this->getShares($addressBookId); |
|
462 | + |
|
463 | + $query = $this->db->getQueryBuilder(); |
|
464 | + $query->delete($this->dbCardsTable) |
|
465 | + ->where($query->expr()->eq('addressbookid', $query->createParameter('addressbookid'))) |
|
466 | + ->setParameter('addressbookid', $addressBookId, IQueryBuilder::PARAM_INT) |
|
467 | + ->executeStatement(); |
|
468 | + |
|
469 | + $query->delete('addressbookchanges') |
|
470 | + ->where($query->expr()->eq('addressbookid', $query->createParameter('addressbookid'))) |
|
471 | + ->setParameter('addressbookid', $addressBookId, IQueryBuilder::PARAM_INT) |
|
472 | + ->executeStatement(); |
|
473 | + |
|
474 | + $query->delete('addressbooks') |
|
475 | + ->where($query->expr()->eq('id', $query->createParameter('id'))) |
|
476 | + ->setParameter('id', $addressBookId, IQueryBuilder::PARAM_INT) |
|
477 | + ->executeStatement(); |
|
478 | + |
|
479 | + $this->sharingBackend->deleteAllShares($addressBookId); |
|
480 | + |
|
481 | + $query->delete($this->dbCardsPropertiesTable) |
|
482 | + ->where($query->expr()->eq('addressbookid', $query->createNamedParameter($addressBookId, IQueryBuilder::PARAM_INT))) |
|
483 | + ->executeStatement(); |
|
484 | + |
|
485 | + if ($addressBookData) { |
|
486 | + $this->dispatcher->dispatchTyped(new AddressBookDeletedEvent($addressBookId, $addressBookData, $shares)); |
|
487 | + } |
|
488 | + } |
|
489 | + |
|
490 | + /** |
|
491 | + * Returns all cards for a specific addressbook id. |
|
492 | + * |
|
493 | + * This method should return the following properties for each card: |
|
494 | + * * carddata - raw vcard data |
|
495 | + * * uri - Some unique url |
|
496 | + * * lastmodified - A unix timestamp |
|
497 | + * |
|
498 | + * It's recommended to also return the following properties: |
|
499 | + * * etag - A unique etag. This must change every time the card changes. |
|
500 | + * * size - The size of the card in bytes. |
|
501 | + * |
|
502 | + * If these last two properties are provided, less time will be spent |
|
503 | + * calculating them. If they are specified, you can also omit carddata. |
|
504 | + * This may speed up certain requests, especially with large cards. |
|
505 | + * |
|
506 | + * @param mixed $addressbookId |
|
507 | + * @return array |
|
508 | + */ |
|
509 | + public function getCards($addressbookId) { |
|
510 | + $query = $this->db->getQueryBuilder(); |
|
511 | + $query->select(['id', 'uri', 'lastmodified', 'etag', 'size', 'carddata', 'uid']) |
|
512 | + ->from($this->dbCardsTable) |
|
513 | + ->where($query->expr()->eq('addressbookid', $query->createNamedParameter($addressbookId))); |
|
514 | + |
|
515 | + $cards = []; |
|
516 | + |
|
517 | + $result = $query->execute(); |
|
518 | + while ($row = $result->fetch()) { |
|
519 | + $row['etag'] = '"' . $row['etag'] . '"'; |
|
520 | + |
|
521 | + $modified = false; |
|
522 | + $row['carddata'] = $this->readBlob($row['carddata'], $modified); |
|
523 | + if ($modified) { |
|
524 | + $row['size'] = strlen($row['carddata']); |
|
525 | + } |
|
526 | + |
|
527 | + $cards[] = $row; |
|
528 | + } |
|
529 | + $result->closeCursor(); |
|
530 | + |
|
531 | + return $cards; |
|
532 | + } |
|
533 | + |
|
534 | + /** |
|
535 | + * Returns a specific card. |
|
536 | + * |
|
537 | + * The same set of properties must be returned as with getCards. The only |
|
538 | + * exception is that 'carddata' is absolutely required. |
|
539 | + * |
|
540 | + * If the card does not exist, you must return false. |
|
541 | + * |
|
542 | + * @param mixed $addressBookId |
|
543 | + * @param string $cardUri |
|
544 | + * @return array |
|
545 | + */ |
|
546 | + public function getCard($addressBookId, $cardUri) { |
|
547 | + $query = $this->db->getQueryBuilder(); |
|
548 | + $query->select(['id', 'uri', 'lastmodified', 'etag', 'size', 'carddata', 'uid']) |
|
549 | + ->from($this->dbCardsTable) |
|
550 | + ->where($query->expr()->eq('addressbookid', $query->createNamedParameter($addressBookId))) |
|
551 | + ->andWhere($query->expr()->eq('uri', $query->createNamedParameter($cardUri))) |
|
552 | + ->setMaxResults(1); |
|
553 | + |
|
554 | + $result = $query->execute(); |
|
555 | + $row = $result->fetch(); |
|
556 | + if (!$row) { |
|
557 | + return false; |
|
558 | + } |
|
559 | + $row['etag'] = '"' . $row['etag'] . '"'; |
|
560 | + |
|
561 | + $modified = false; |
|
562 | + $row['carddata'] = $this->readBlob($row['carddata'], $modified); |
|
563 | + if ($modified) { |
|
564 | + $row['size'] = strlen($row['carddata']); |
|
565 | + } |
|
566 | + |
|
567 | + return $row; |
|
568 | + } |
|
569 | + |
|
570 | + /** |
|
571 | + * Returns a list of cards. |
|
572 | + * |
|
573 | + * This method should work identical to getCard, but instead return all the |
|
574 | + * cards in the list as an array. |
|
575 | + * |
|
576 | + * If the backend supports this, it may allow for some speed-ups. |
|
577 | + * |
|
578 | + * @param mixed $addressBookId |
|
579 | + * @param array $uris |
|
580 | + * @return array |
|
581 | + */ |
|
582 | + public function getMultipleCards($addressBookId, array $uris) { |
|
583 | + if (empty($uris)) { |
|
584 | + return []; |
|
585 | + } |
|
586 | + |
|
587 | + $chunks = array_chunk($uris, 100); |
|
588 | + $cards = []; |
|
589 | + |
|
590 | + $query = $this->db->getQueryBuilder(); |
|
591 | + $query->select(['id', 'uri', 'lastmodified', 'etag', 'size', 'carddata', 'uid']) |
|
592 | + ->from($this->dbCardsTable) |
|
593 | + ->where($query->expr()->eq('addressbookid', $query->createNamedParameter($addressBookId))) |
|
594 | + ->andWhere($query->expr()->in('uri', $query->createParameter('uri'))); |
|
595 | + |
|
596 | + foreach ($chunks as $uris) { |
|
597 | + $query->setParameter('uri', $uris, IQueryBuilder::PARAM_STR_ARRAY); |
|
598 | + $result = $query->execute(); |
|
599 | + |
|
600 | + while ($row = $result->fetch()) { |
|
601 | + $row['etag'] = '"' . $row['etag'] . '"'; |
|
602 | + |
|
603 | + $modified = false; |
|
604 | + $row['carddata'] = $this->readBlob($row['carddata'], $modified); |
|
605 | + if ($modified) { |
|
606 | + $row['size'] = strlen($row['carddata']); |
|
607 | + } |
|
608 | + |
|
609 | + $cards[] = $row; |
|
610 | + } |
|
611 | + $result->closeCursor(); |
|
612 | + } |
|
613 | + return $cards; |
|
614 | + } |
|
615 | + |
|
616 | + /** |
|
617 | + * Creates a new card. |
|
618 | + * |
|
619 | + * The addressbook id will be passed as the first argument. This is the |
|
620 | + * same id as it is returned from the getAddressBooksForUser method. |
|
621 | + * |
|
622 | + * The cardUri is a base uri, and doesn't include the full path. The |
|
623 | + * cardData argument is the vcard body, and is passed as a string. |
|
624 | + * |
|
625 | + * It is possible to return an ETag from this method. This ETag is for the |
|
626 | + * newly created resource, and must be enclosed with double quotes (that |
|
627 | + * is, the string itself must contain the double quotes). |
|
628 | + * |
|
629 | + * You should only return the ETag if you store the carddata as-is. If a |
|
630 | + * subsequent GET request on the same card does not have the same body, |
|
631 | + * byte-by-byte and you did return an ETag here, clients tend to get |
|
632 | + * confused. |
|
633 | + * |
|
634 | + * If you don't return an ETag, you can just return null. |
|
635 | + * |
|
636 | + * @param mixed $addressBookId |
|
637 | + * @param string $cardUri |
|
638 | + * @param string $cardData |
|
639 | + * @param bool $checkAlreadyExists |
|
640 | + * @return string |
|
641 | + */ |
|
642 | + public function createCard($addressBookId, $cardUri, $cardData, bool $checkAlreadyExists = true) { |
|
643 | + $etag = md5($cardData); |
|
644 | + $uid = $this->getUID($cardData); |
|
645 | + |
|
646 | + if ($checkAlreadyExists) { |
|
647 | + $q = $this->db->getQueryBuilder(); |
|
648 | + $q->select('uid') |
|
649 | + ->from($this->dbCardsTable) |
|
650 | + ->where($q->expr()->eq('addressbookid', $q->createNamedParameter($addressBookId))) |
|
651 | + ->andWhere($q->expr()->eq('uid', $q->createNamedParameter($uid))) |
|
652 | + ->setMaxResults(1); |
|
653 | + $result = $q->executeQuery(); |
|
654 | + $count = (bool)$result->fetchOne(); |
|
655 | + $result->closeCursor(); |
|
656 | + if ($count) { |
|
657 | + throw new \Sabre\DAV\Exception\BadRequest('VCard object with uid already exists in this addressbook collection.'); |
|
658 | + } |
|
659 | + } |
|
660 | + |
|
661 | + $query = $this->db->getQueryBuilder(); |
|
662 | + $query->insert('cards') |
|
663 | + ->values([ |
|
664 | + 'carddata' => $query->createNamedParameter($cardData, IQueryBuilder::PARAM_LOB), |
|
665 | + 'uri' => $query->createNamedParameter($cardUri), |
|
666 | + 'lastmodified' => $query->createNamedParameter(time()), |
|
667 | + 'addressbookid' => $query->createNamedParameter($addressBookId), |
|
668 | + 'size' => $query->createNamedParameter(strlen($cardData)), |
|
669 | + 'etag' => $query->createNamedParameter($etag), |
|
670 | + 'uid' => $query->createNamedParameter($uid), |
|
671 | + ]) |
|
672 | + ->execute(); |
|
673 | + |
|
674 | + $etagCacheKey = "$addressBookId#$cardUri"; |
|
675 | + $this->etagCache[$etagCacheKey] = $etag; |
|
676 | + |
|
677 | + $this->addChange($addressBookId, $cardUri, 1); |
|
678 | + $this->updateProperties($addressBookId, $cardUri, $cardData); |
|
679 | + |
|
680 | + $addressBookData = $this->getAddressBookById($addressBookId); |
|
681 | + $shares = $this->getShares($addressBookId); |
|
682 | + $objectRow = $this->getCard($addressBookId, $cardUri); |
|
683 | + $this->dispatcher->dispatchTyped(new CardCreatedEvent($addressBookId, $addressBookData, $shares, $objectRow)); |
|
684 | + |
|
685 | + return '"' . $etag . '"'; |
|
686 | + } |
|
687 | + |
|
688 | + /** |
|
689 | + * Updates a card. |
|
690 | + * |
|
691 | + * The addressbook id will be passed as the first argument. This is the |
|
692 | + * same id as it is returned from the getAddressBooksForUser method. |
|
693 | + * |
|
694 | + * The cardUri is a base uri, and doesn't include the full path. The |
|
695 | + * cardData argument is the vcard body, and is passed as a string. |
|
696 | + * |
|
697 | + * It is possible to return an ETag from this method. This ETag should |
|
698 | + * match that of the updated resource, and must be enclosed with double |
|
699 | + * quotes (that is: the string itself must contain the actual quotes). |
|
700 | + * |
|
701 | + * You should only return the ETag if you store the carddata as-is. If a |
|
702 | + * subsequent GET request on the same card does not have the same body, |
|
703 | + * byte-by-byte and you did return an ETag here, clients tend to get |
|
704 | + * confused. |
|
705 | + * |
|
706 | + * If you don't return an ETag, you can just return null. |
|
707 | + * |
|
708 | + * @param mixed $addressBookId |
|
709 | + * @param string $cardUri |
|
710 | + * @param string $cardData |
|
711 | + * @return string |
|
712 | + */ |
|
713 | + public function updateCard($addressBookId, $cardUri, $cardData) { |
|
714 | + $uid = $this->getUID($cardData); |
|
715 | + $etag = md5($cardData); |
|
716 | + $query = $this->db->getQueryBuilder(); |
|
717 | + |
|
718 | + // check for recently stored etag and stop if it is the same |
|
719 | + $etagCacheKey = "$addressBookId#$cardUri"; |
|
720 | + if (isset($this->etagCache[$etagCacheKey]) && $this->etagCache[$etagCacheKey] === $etag) { |
|
721 | + return '"' . $etag . '"'; |
|
722 | + } |
|
723 | + |
|
724 | + $query->update($this->dbCardsTable) |
|
725 | + ->set('carddata', $query->createNamedParameter($cardData, IQueryBuilder::PARAM_LOB)) |
|
726 | + ->set('lastmodified', $query->createNamedParameter(time())) |
|
727 | + ->set('size', $query->createNamedParameter(strlen($cardData))) |
|
728 | + ->set('etag', $query->createNamedParameter($etag)) |
|
729 | + ->set('uid', $query->createNamedParameter($uid)) |
|
730 | + ->where($query->expr()->eq('uri', $query->createNamedParameter($cardUri))) |
|
731 | + ->andWhere($query->expr()->eq('addressbookid', $query->createNamedParameter($addressBookId))) |
|
732 | + ->execute(); |
|
733 | + |
|
734 | + $this->etagCache[$etagCacheKey] = $etag; |
|
735 | + |
|
736 | + $this->addChange($addressBookId, $cardUri, 2); |
|
737 | + $this->updateProperties($addressBookId, $cardUri, $cardData); |
|
738 | + |
|
739 | + $addressBookData = $this->getAddressBookById($addressBookId); |
|
740 | + $shares = $this->getShares($addressBookId); |
|
741 | + $objectRow = $this->getCard($addressBookId, $cardUri); |
|
742 | + $this->dispatcher->dispatchTyped(new CardUpdatedEvent($addressBookId, $addressBookData, $shares, $objectRow)); |
|
743 | + return '"' . $etag . '"'; |
|
744 | + } |
|
745 | + |
|
746 | + /** |
|
747 | + * Deletes a card |
|
748 | + * |
|
749 | + * @param mixed $addressBookId |
|
750 | + * @param string $cardUri |
|
751 | + * @return bool |
|
752 | + */ |
|
753 | + public function deleteCard($addressBookId, $cardUri) { |
|
754 | + $addressBookData = $this->getAddressBookById($addressBookId); |
|
755 | + $shares = $this->getShares($addressBookId); |
|
756 | + $objectRow = $this->getCard($addressBookId, $cardUri); |
|
757 | + |
|
758 | + try { |
|
759 | + $cardId = $this->getCardId($addressBookId, $cardUri); |
|
760 | + } catch (\InvalidArgumentException $e) { |
|
761 | + $cardId = null; |
|
762 | + } |
|
763 | + $query = $this->db->getQueryBuilder(); |
|
764 | + $ret = $query->delete($this->dbCardsTable) |
|
765 | + ->where($query->expr()->eq('addressbookid', $query->createNamedParameter($addressBookId))) |
|
766 | + ->andWhere($query->expr()->eq('uri', $query->createNamedParameter($cardUri))) |
|
767 | + ->executeStatement(); |
|
768 | + |
|
769 | + $this->addChange($addressBookId, $cardUri, 3); |
|
770 | + |
|
771 | + if ($ret === 1) { |
|
772 | + if ($cardId !== null) { |
|
773 | + $this->dispatcher->dispatchTyped(new CardDeletedEvent($addressBookId, $addressBookData, $shares, $objectRow)); |
|
774 | + $this->purgeProperties($addressBookId, $cardId); |
|
775 | + } |
|
776 | + return true; |
|
777 | + } |
|
778 | + |
|
779 | + return false; |
|
780 | + } |
|
781 | + |
|
782 | + /** |
|
783 | + * The getChanges method returns all the changes that have happened, since |
|
784 | + * the specified syncToken in the specified address book. |
|
785 | + * |
|
786 | + * This function should return an array, such as the following: |
|
787 | + * |
|
788 | + * [ |
|
789 | + * 'syncToken' => 'The current synctoken', |
|
790 | + * 'added' => [ |
|
791 | + * 'new.txt', |
|
792 | + * ], |
|
793 | + * 'modified' => [ |
|
794 | + * 'modified.txt', |
|
795 | + * ], |
|
796 | + * 'deleted' => [ |
|
797 | + * 'foo.php.bak', |
|
798 | + * 'old.txt' |
|
799 | + * ] |
|
800 | + * ]; |
|
801 | + * |
|
802 | + * The returned syncToken property should reflect the *current* syncToken |
|
803 | + * of the calendar, as reported in the {http://sabredav.org/ns}sync-token |
|
804 | + * property. This is needed here too, to ensure the operation is atomic. |
|
805 | + * |
|
806 | + * If the $syncToken argument is specified as null, this is an initial |
|
807 | + * sync, and all members should be reported. |
|
808 | + * |
|
809 | + * The modified property is an array of nodenames that have changed since |
|
810 | + * the last token. |
|
811 | + * |
|
812 | + * The deleted property is an array with nodenames, that have been deleted |
|
813 | + * from collection. |
|
814 | + * |
|
815 | + * The $syncLevel argument is basically the 'depth' of the report. If it's |
|
816 | + * 1, you only have to report changes that happened only directly in |
|
817 | + * immediate descendants. If it's 2, it should also include changes from |
|
818 | + * the nodes below the child collections. (grandchildren) |
|
819 | + * |
|
820 | + * The $limit argument allows a client to specify how many results should |
|
821 | + * be returned at most. If the limit is not specified, it should be treated |
|
822 | + * as infinite. |
|
823 | + * |
|
824 | + * If the limit (infinite or not) is higher than you're willing to return, |
|
825 | + * you should throw a Sabre\DAV\Exception\TooMuchMatches() exception. |
|
826 | + * |
|
827 | + * If the syncToken is expired (due to data cleanup) or unknown, you must |
|
828 | + * return null. |
|
829 | + * |
|
830 | + * The limit is 'suggestive'. You are free to ignore it. |
|
831 | + * |
|
832 | + * @param string $addressBookId |
|
833 | + * @param string $syncToken |
|
834 | + * @param int $syncLevel |
|
835 | + * @param int|null $limit |
|
836 | + * @return array |
|
837 | + */ |
|
838 | + public function getChangesForAddressBook($addressBookId, $syncToken, $syncLevel, $limit = null) { |
|
839 | + // Current synctoken |
|
840 | + $qb = $this->db->getQueryBuilder(); |
|
841 | + $qb->select('synctoken') |
|
842 | + ->from('addressbooks') |
|
843 | + ->where( |
|
844 | + $qb->expr()->eq('id', $qb->createNamedParameter($addressBookId)) |
|
845 | + ); |
|
846 | + $stmt = $qb->executeQuery(); |
|
847 | + $currentToken = $stmt->fetchOne(); |
|
848 | + $stmt->closeCursor(); |
|
849 | + |
|
850 | + if (is_null($currentToken)) { |
|
851 | + return []; |
|
852 | + } |
|
853 | + |
|
854 | + $result = [ |
|
855 | + 'syncToken' => $currentToken, |
|
856 | + 'added' => [], |
|
857 | + 'modified' => [], |
|
858 | + 'deleted' => [], |
|
859 | + ]; |
|
860 | + |
|
861 | + if ($syncToken) { |
|
862 | + $qb = $this->db->getQueryBuilder(); |
|
863 | + $qb->select('uri', 'operation') |
|
864 | + ->from('addressbookchanges') |
|
865 | + ->where( |
|
866 | + $qb->expr()->andX( |
|
867 | + $qb->expr()->gte('synctoken', $qb->createNamedParameter($syncToken)), |
|
868 | + $qb->expr()->lt('synctoken', $qb->createNamedParameter($currentToken)), |
|
869 | + $qb->expr()->eq('addressbookid', $qb->createNamedParameter($addressBookId)) |
|
870 | + ) |
|
871 | + )->orderBy('synctoken'); |
|
872 | + |
|
873 | + if (is_int($limit) && $limit > 0) { |
|
874 | + $qb->setMaxResults($limit); |
|
875 | + } |
|
876 | + |
|
877 | + // Fetching all changes |
|
878 | + $stmt = $qb->executeQuery(); |
|
879 | + |
|
880 | + $changes = []; |
|
881 | + |
|
882 | + // This loop ensures that any duplicates are overwritten, only the |
|
883 | + // last change on a node is relevant. |
|
884 | + while ($row = $stmt->fetch(\PDO::FETCH_ASSOC)) { |
|
885 | + $changes[$row['uri']] = $row['operation']; |
|
886 | + } |
|
887 | + $stmt->closeCursor(); |
|
888 | + |
|
889 | + foreach ($changes as $uri => $operation) { |
|
890 | + switch ($operation) { |
|
891 | + case 1: |
|
892 | + $result['added'][] = $uri; |
|
893 | + break; |
|
894 | + case 2: |
|
895 | + $result['modified'][] = $uri; |
|
896 | + break; |
|
897 | + case 3: |
|
898 | + $result['deleted'][] = $uri; |
|
899 | + break; |
|
900 | + } |
|
901 | + } |
|
902 | + } else { |
|
903 | + $qb = $this->db->getQueryBuilder(); |
|
904 | + $qb->select('uri') |
|
905 | + ->from('cards') |
|
906 | + ->where( |
|
907 | + $qb->expr()->eq('addressbookid', $qb->createNamedParameter($addressBookId)) |
|
908 | + ); |
|
909 | + // No synctoken supplied, this is the initial sync. |
|
910 | + $stmt = $qb->executeQuery(); |
|
911 | + $result['added'] = $stmt->fetchAll(\PDO::FETCH_COLUMN); |
|
912 | + $stmt->closeCursor(); |
|
913 | + } |
|
914 | + return $result; |
|
915 | + } |
|
916 | + |
|
917 | + /** |
|
918 | + * Adds a change record to the addressbookchanges table. |
|
919 | + * |
|
920 | + * @param mixed $addressBookId |
|
921 | + * @param string $objectUri |
|
922 | + * @param int $operation 1 = add, 2 = modify, 3 = delete |
|
923 | + * @return void |
|
924 | + */ |
|
925 | + protected function addChange($addressBookId, $objectUri, $operation) { |
|
926 | + $sql = 'INSERT INTO `*PREFIX*addressbookchanges`(`uri`, `synctoken`, `addressbookid`, `operation`) SELECT ?, `synctoken`, ?, ? FROM `*PREFIX*addressbooks` WHERE `id` = ?'; |
|
927 | + $stmt = $this->db->prepare($sql); |
|
928 | + $stmt->execute([ |
|
929 | + $objectUri, |
|
930 | + $addressBookId, |
|
931 | + $operation, |
|
932 | + $addressBookId |
|
933 | + ]); |
|
934 | + $stmt = $this->db->prepare('UPDATE `*PREFIX*addressbooks` SET `synctoken` = `synctoken` + 1 WHERE `id` = ?'); |
|
935 | + $stmt->execute([ |
|
936 | + $addressBookId |
|
937 | + ]); |
|
938 | + } |
|
939 | + |
|
940 | + /** |
|
941 | + * @param resource|string $cardData |
|
942 | + * @param bool $modified |
|
943 | + * @return string |
|
944 | + */ |
|
945 | + private function readBlob($cardData, &$modified = false) { |
|
946 | + if (is_resource($cardData)) { |
|
947 | + $cardData = stream_get_contents($cardData); |
|
948 | + } |
|
949 | + |
|
950 | + // Micro optimisation |
|
951 | + // don't loop through |
|
952 | + if (strpos($cardData, 'PHOTO:data:') === 0) { |
|
953 | + return $cardData; |
|
954 | + } |
|
955 | + |
|
956 | + $cardDataArray = explode("\r\n", $cardData); |
|
957 | + |
|
958 | + $cardDataFiltered = []; |
|
959 | + $removingPhoto = false; |
|
960 | + foreach ($cardDataArray as $line) { |
|
961 | + if (strpos($line, 'PHOTO:data:') === 0 |
|
962 | + && strpos($line, 'PHOTO:data:image/') !== 0) { |
|
963 | + // Filter out PHOTO data of non-images |
|
964 | + $removingPhoto = true; |
|
965 | + $modified = true; |
|
966 | + continue; |
|
967 | + } |
|
968 | + |
|
969 | + if ($removingPhoto) { |
|
970 | + if (strpos($line, ' ') === 0) { |
|
971 | + continue; |
|
972 | + } |
|
973 | + // No leading space means this is a new property |
|
974 | + $removingPhoto = false; |
|
975 | + } |
|
976 | + |
|
977 | + $cardDataFiltered[] = $line; |
|
978 | + } |
|
979 | + return implode("\r\n", $cardDataFiltered); |
|
980 | + } |
|
981 | + |
|
982 | + /** |
|
983 | + * @param list<array{href: string, commonName: string, readOnly: bool}> $add |
|
984 | + * @param list<string> $remove |
|
985 | + */ |
|
986 | + public function updateShares(IShareable $shareable, array $add, array $remove): void { |
|
987 | + $addressBookId = $shareable->getResourceId(); |
|
988 | + $addressBookData = $this->getAddressBookById($addressBookId); |
|
989 | + $oldShares = $this->getShares($addressBookId); |
|
990 | + |
|
991 | + $this->sharingBackend->updateShares($shareable, $add, $remove); |
|
992 | + |
|
993 | + $this->dispatcher->dispatchTyped(new AddressBookShareUpdatedEvent($addressBookId, $addressBookData, $oldShares, $add, $remove)); |
|
994 | + } |
|
995 | + |
|
996 | + /** |
|
997 | + * Search contacts in a specific address-book |
|
998 | + * |
|
999 | + * @param int $addressBookId |
|
1000 | + * @param string $pattern which should match within the $searchProperties |
|
1001 | + * @param array $searchProperties defines the properties within the query pattern should match |
|
1002 | + * @param array $options = array() to define the search behavior |
|
1003 | + * - 'escape_like_param' - If set to false wildcards _ and % are not escaped, otherwise they are |
|
1004 | + * - 'limit' - Set a numeric limit for the search results |
|
1005 | + * - 'offset' - Set the offset for the limited search results |
|
1006 | + * - 'wildcard' - Whether the search should use wildcards |
|
1007 | + * @psalm-param array{escape_like_param?: bool, limit?: int, offset?: int, wildcard?: bool} $options |
|
1008 | + * @return array an array of contacts which are arrays of key-value-pairs |
|
1009 | + */ |
|
1010 | + public function search($addressBookId, $pattern, $searchProperties, $options = []): array { |
|
1011 | + return $this->searchByAddressBookIds([$addressBookId], $pattern, $searchProperties, $options); |
|
1012 | + } |
|
1013 | + |
|
1014 | + /** |
|
1015 | + * Search contacts in all address-books accessible by a user |
|
1016 | + * |
|
1017 | + * @param string $principalUri |
|
1018 | + * @param string $pattern |
|
1019 | + * @param array $searchProperties |
|
1020 | + * @param array $options |
|
1021 | + * @return array |
|
1022 | + */ |
|
1023 | + public function searchPrincipalUri(string $principalUri, |
|
1024 | + string $pattern, |
|
1025 | + array $searchProperties, |
|
1026 | + array $options = []): array { |
|
1027 | + $addressBookIds = array_map(static function ($row):int { |
|
1028 | + return (int) $row['id']; |
|
1029 | + }, $this->getAddressBooksForUser($principalUri)); |
|
1030 | + |
|
1031 | + return $this->searchByAddressBookIds($addressBookIds, $pattern, $searchProperties, $options); |
|
1032 | + } |
|
1033 | + |
|
1034 | + /** |
|
1035 | + * @param array $addressBookIds |
|
1036 | + * @param string $pattern |
|
1037 | + * @param array $searchProperties |
|
1038 | + * @param array $options |
|
1039 | + * @psalm-param array{types?: bool, escape_like_param?: bool, limit?: int, offset?: int, wildcard?: bool} $options |
|
1040 | + * @return array |
|
1041 | + */ |
|
1042 | + private function searchByAddressBookIds(array $addressBookIds, |
|
1043 | + string $pattern, |
|
1044 | + array $searchProperties, |
|
1045 | + array $options = []): array { |
|
1046 | + $escapePattern = !\array_key_exists('escape_like_param', $options) || $options['escape_like_param'] !== false; |
|
1047 | + $useWildcards = !\array_key_exists('wildcard', $options) || $options['wildcard'] !== false; |
|
1048 | + |
|
1049 | + $query2 = $this->db->getQueryBuilder(); |
|
1050 | + |
|
1051 | + $addressBookOr = $query2->expr()->orX(); |
|
1052 | + foreach ($addressBookIds as $addressBookId) { |
|
1053 | + $addressBookOr->add($query2->expr()->eq('cp.addressbookid', $query2->createNamedParameter($addressBookId))); |
|
1054 | + } |
|
1055 | + |
|
1056 | + if ($addressBookOr->count() === 0) { |
|
1057 | + return []; |
|
1058 | + } |
|
1059 | + |
|
1060 | + $propertyOr = $query2->expr()->orX(); |
|
1061 | + foreach ($searchProperties as $property) { |
|
1062 | + if ($escapePattern) { |
|
1063 | + if ($property === 'EMAIL' && strpos($pattern, ' ') !== false) { |
|
1064 | + // There can be no spaces in emails |
|
1065 | + continue; |
|
1066 | + } |
|
1067 | + |
|
1068 | + if ($property === 'CLOUD' && preg_match('/[^a-zA-Z0-9 :_.@\/\-\']/', $pattern) === 1) { |
|
1069 | + // There can be no chars in cloud ids which are not valid for user ids plus :/ |
|
1070 | + // worst case: CA61590A-BBBC-423E-84AF-E6DF01455A53@https://my.nxt/srv/ |
|
1071 | + continue; |
|
1072 | + } |
|
1073 | + } |
|
1074 | + |
|
1075 | + $propertyOr->add($query2->expr()->eq('cp.name', $query2->createNamedParameter($property))); |
|
1076 | + } |
|
1077 | + |
|
1078 | + if ($propertyOr->count() === 0) { |
|
1079 | + return []; |
|
1080 | + } |
|
1081 | + |
|
1082 | + $query2->selectDistinct('cp.cardid') |
|
1083 | + ->from($this->dbCardsPropertiesTable, 'cp') |
|
1084 | + ->andWhere($addressBookOr) |
|
1085 | + ->andWhere($propertyOr); |
|
1086 | + |
|
1087 | + // No need for like when the pattern is empty |
|
1088 | + if ('' !== $pattern) { |
|
1089 | + if (!$useWildcards) { |
|
1090 | + $query2->andWhere($query2->expr()->eq('cp.value', $query2->createNamedParameter($pattern))); |
|
1091 | + } elseif (!$escapePattern) { |
|
1092 | + $query2->andWhere($query2->expr()->ilike('cp.value', $query2->createNamedParameter($pattern))); |
|
1093 | + } else { |
|
1094 | + $query2->andWhere($query2->expr()->ilike('cp.value', $query2->createNamedParameter('%' . $this->db->escapeLikeParameter($pattern) . '%'))); |
|
1095 | + } |
|
1096 | + } |
|
1097 | + |
|
1098 | + if (isset($options['limit'])) { |
|
1099 | + $query2->setMaxResults($options['limit']); |
|
1100 | + } |
|
1101 | + if (isset($options['offset'])) { |
|
1102 | + $query2->setFirstResult($options['offset']); |
|
1103 | + } |
|
1104 | + |
|
1105 | + $result = $query2->execute(); |
|
1106 | + $matches = $result->fetchAll(); |
|
1107 | + $result->closeCursor(); |
|
1108 | + $matches = array_map(function ($match) { |
|
1109 | + return (int)$match['cardid']; |
|
1110 | + }, $matches); |
|
1111 | + |
|
1112 | + $cards = []; |
|
1113 | + $query = $this->db->getQueryBuilder(); |
|
1114 | + $query->select('c.addressbookid', 'c.carddata', 'c.uri') |
|
1115 | + ->from($this->dbCardsTable, 'c') |
|
1116 | + ->where($query->expr()->in('c.id', $query->createParameter('matches'))); |
|
1117 | + |
|
1118 | + foreach (array_chunk($matches, 1000) as $matchesChunk) { |
|
1119 | + $query->setParameter('matches', $matchesChunk, IQueryBuilder::PARAM_INT_ARRAY); |
|
1120 | + $result = $query->executeQuery(); |
|
1121 | + $cards = array_merge($cards, $result->fetchAll()); |
|
1122 | + $result->closeCursor(); |
|
1123 | + } |
|
1124 | + |
|
1125 | + return array_map(function ($array) { |
|
1126 | + $array['addressbookid'] = (int) $array['addressbookid']; |
|
1127 | + $modified = false; |
|
1128 | + $array['carddata'] = $this->readBlob($array['carddata'], $modified); |
|
1129 | + if ($modified) { |
|
1130 | + $array['size'] = strlen($array['carddata']); |
|
1131 | + } |
|
1132 | + return $array; |
|
1133 | + }, $cards); |
|
1134 | + } |
|
1135 | + |
|
1136 | + /** |
|
1137 | + * @param int $bookId |
|
1138 | + * @param string $name |
|
1139 | + * @return array |
|
1140 | + */ |
|
1141 | + public function collectCardProperties($bookId, $name) { |
|
1142 | + $query = $this->db->getQueryBuilder(); |
|
1143 | + $result = $query->selectDistinct('value') |
|
1144 | + ->from($this->dbCardsPropertiesTable) |
|
1145 | + ->where($query->expr()->eq('name', $query->createNamedParameter($name))) |
|
1146 | + ->andWhere($query->expr()->eq('addressbookid', $query->createNamedParameter($bookId))) |
|
1147 | + ->execute(); |
|
1148 | + |
|
1149 | + $all = $result->fetchAll(PDO::FETCH_COLUMN); |
|
1150 | + $result->closeCursor(); |
|
1151 | + |
|
1152 | + return $all; |
|
1153 | + } |
|
1154 | + |
|
1155 | + /** |
|
1156 | + * get URI from a given contact |
|
1157 | + * |
|
1158 | + * @param int $id |
|
1159 | + * @return string |
|
1160 | + */ |
|
1161 | + public function getCardUri($id) { |
|
1162 | + $query = $this->db->getQueryBuilder(); |
|
1163 | + $query->select('uri')->from($this->dbCardsTable) |
|
1164 | + ->where($query->expr()->eq('id', $query->createParameter('id'))) |
|
1165 | + ->setParameter('id', $id); |
|
1166 | + |
|
1167 | + $result = $query->execute(); |
|
1168 | + $uri = $result->fetch(); |
|
1169 | + $result->closeCursor(); |
|
1170 | + |
|
1171 | + if (!isset($uri['uri'])) { |
|
1172 | + throw new \InvalidArgumentException('Card does not exists: ' . $id); |
|
1173 | + } |
|
1174 | + |
|
1175 | + return $uri['uri']; |
|
1176 | + } |
|
1177 | + |
|
1178 | + /** |
|
1179 | + * return contact with the given URI |
|
1180 | + * |
|
1181 | + * @param int $addressBookId |
|
1182 | + * @param string $uri |
|
1183 | + * @returns array |
|
1184 | + */ |
|
1185 | + public function getContact($addressBookId, $uri) { |
|
1186 | + $result = []; |
|
1187 | + $query = $this->db->getQueryBuilder(); |
|
1188 | + $query->select('*')->from($this->dbCardsTable) |
|
1189 | + ->where($query->expr()->eq('uri', $query->createNamedParameter($uri))) |
|
1190 | + ->andWhere($query->expr()->eq('addressbookid', $query->createNamedParameter($addressBookId))); |
|
1191 | + $queryResult = $query->execute(); |
|
1192 | + $contact = $queryResult->fetch(); |
|
1193 | + $queryResult->closeCursor(); |
|
1194 | + |
|
1195 | + if (is_array($contact)) { |
|
1196 | + $modified = false; |
|
1197 | + $contact['etag'] = '"' . $contact['etag'] . '"'; |
|
1198 | + $contact['carddata'] = $this->readBlob($contact['carddata'], $modified); |
|
1199 | + if ($modified) { |
|
1200 | + $contact['size'] = strlen($contact['carddata']); |
|
1201 | + } |
|
1202 | + |
|
1203 | + $result = $contact; |
|
1204 | + } |
|
1205 | + |
|
1206 | + return $result; |
|
1207 | + } |
|
1208 | + |
|
1209 | + /** |
|
1210 | + * Returns the list of people whom this address book is shared with. |
|
1211 | + * |
|
1212 | + * Every element in this array should have the following properties: |
|
1213 | + * * href - Often a mailto: address |
|
1214 | + * * commonName - Optional, for example a first + last name |
|
1215 | + * * status - See the Sabre\CalDAV\SharingPlugin::STATUS_ constants. |
|
1216 | + * * readOnly - boolean |
|
1217 | + * |
|
1218 | + * @return list<array{href: string, commonName: string, status: int, readOnly: bool, '{http://owncloud.org/ns}principal': string, '{http://owncloud.org/ns}group-share': bool}> |
|
1219 | + */ |
|
1220 | + public function getShares(int $addressBookId): array { |
|
1221 | + return $this->sharingBackend->getShares($addressBookId); |
|
1222 | + } |
|
1223 | + |
|
1224 | + /** |
|
1225 | + * update properties table |
|
1226 | + * |
|
1227 | + * @param int $addressBookId |
|
1228 | + * @param string $cardUri |
|
1229 | + * @param string $vCardSerialized |
|
1230 | + */ |
|
1231 | + protected function updateProperties($addressBookId, $cardUri, $vCardSerialized) { |
|
1232 | + $cardId = $this->getCardId($addressBookId, $cardUri); |
|
1233 | + $vCard = $this->readCard($vCardSerialized); |
|
1234 | + |
|
1235 | + $this->purgeProperties($addressBookId, $cardId); |
|
1236 | + |
|
1237 | + $query = $this->db->getQueryBuilder(); |
|
1238 | + $query->insert($this->dbCardsPropertiesTable) |
|
1239 | + ->values( |
|
1240 | + [ |
|
1241 | + 'addressbookid' => $query->createNamedParameter($addressBookId), |
|
1242 | + 'cardid' => $query->createNamedParameter($cardId), |
|
1243 | + 'name' => $query->createParameter('name'), |
|
1244 | + 'value' => $query->createParameter('value'), |
|
1245 | + 'preferred' => $query->createParameter('preferred') |
|
1246 | + ] |
|
1247 | + ); |
|
1248 | + |
|
1249 | + |
|
1250 | + $this->db->beginTransaction(); |
|
1251 | + |
|
1252 | + try { |
|
1253 | + foreach ($vCard->children() as $property) { |
|
1254 | + if (!in_array($property->name, self::$indexProperties)) { |
|
1255 | + continue; |
|
1256 | + } |
|
1257 | + $preferred = 0; |
|
1258 | + foreach ($property->parameters as $parameter) { |
|
1259 | + if ($parameter->name === 'TYPE' && strtoupper($parameter->getValue()) === 'PREF') { |
|
1260 | + $preferred = 1; |
|
1261 | + break; |
|
1262 | + } |
|
1263 | + } |
|
1264 | + $query->setParameter('name', $property->name); |
|
1265 | + $query->setParameter('value', mb_strcut($property->getValue(), 0, 254)); |
|
1266 | + $query->setParameter('preferred', $preferred); |
|
1267 | + $query->execute(); |
|
1268 | + } |
|
1269 | + $this->db->commit(); |
|
1270 | + } catch (\Exception $e) { |
|
1271 | + $this->db->rollBack(); |
|
1272 | + } |
|
1273 | + } |
|
1274 | + |
|
1275 | + /** |
|
1276 | + * read vCard data into a vCard object |
|
1277 | + * |
|
1278 | + * @param string $cardData |
|
1279 | + * @return VCard |
|
1280 | + */ |
|
1281 | + protected function readCard($cardData) { |
|
1282 | + return Reader::read($cardData); |
|
1283 | + } |
|
1284 | + |
|
1285 | + /** |
|
1286 | + * delete all properties from a given card |
|
1287 | + * |
|
1288 | + * @param int $addressBookId |
|
1289 | + * @param int $cardId |
|
1290 | + */ |
|
1291 | + protected function purgeProperties($addressBookId, $cardId) { |
|
1292 | + $query = $this->db->getQueryBuilder(); |
|
1293 | + $query->delete($this->dbCardsPropertiesTable) |
|
1294 | + ->where($query->expr()->eq('cardid', $query->createNamedParameter($cardId))) |
|
1295 | + ->andWhere($query->expr()->eq('addressbookid', $query->createNamedParameter($addressBookId))); |
|
1296 | + $query->execute(); |
|
1297 | + } |
|
1298 | + |
|
1299 | + /** |
|
1300 | + * Get ID from a given contact |
|
1301 | + */ |
|
1302 | + protected function getCardId(int $addressBookId, string $uri): int { |
|
1303 | + $query = $this->db->getQueryBuilder(); |
|
1304 | + $query->select('id')->from($this->dbCardsTable) |
|
1305 | + ->where($query->expr()->eq('uri', $query->createNamedParameter($uri))) |
|
1306 | + ->andWhere($query->expr()->eq('addressbookid', $query->createNamedParameter($addressBookId))); |
|
1307 | + |
|
1308 | + $result = $query->execute(); |
|
1309 | + $cardIds = $result->fetch(); |
|
1310 | + $result->closeCursor(); |
|
1311 | + |
|
1312 | + if (!isset($cardIds['id'])) { |
|
1313 | + throw new \InvalidArgumentException('Card does not exists: ' . $uri); |
|
1314 | + } |
|
1315 | + |
|
1316 | + return (int)$cardIds['id']; |
|
1317 | + } |
|
1318 | + |
|
1319 | + /** |
|
1320 | + * For shared address books the sharee is set in the ACL of the address book |
|
1321 | + * |
|
1322 | + * @param int $addressBookId |
|
1323 | + * @param list<array{privilege: string, principal: string, protected: bool}> $acl |
|
1324 | + * @return list<array{privilege: string, principal: string, protected: bool}> |
|
1325 | + */ |
|
1326 | + public function applyShareAcl(int $addressBookId, array $acl): array { |
|
1327 | + return $this->sharingBackend->applyShareAcl($addressBookId, $acl); |
|
1328 | + } |
|
1329 | + |
|
1330 | + /** |
|
1331 | + * @throws \InvalidArgumentException |
|
1332 | + */ |
|
1333 | + public function pruneOutdatedSyncTokens(int $keep = 10_000): int { |
|
1334 | + if ($keep < 0) { |
|
1335 | + throw new \InvalidArgumentException(); |
|
1336 | + } |
|
1337 | + $query = $this->db->getQueryBuilder(); |
|
1338 | + $query->delete('addressbookchanges') |
|
1339 | + ->orderBy('id', 'DESC') |
|
1340 | + ->setFirstResult($keep); |
|
1341 | + return $query->executeStatement(); |
|
1342 | + } |
|
1343 | + |
|
1344 | + private function convertPrincipal(string $principalUri, bool $toV2): string { |
|
1345 | + if ($this->principalBackend->getPrincipalPrefix() === 'principals') { |
|
1346 | + [, $name] = \Sabre\Uri\split($principalUri); |
|
1347 | + if ($toV2 === true) { |
|
1348 | + return "principals/users/$name"; |
|
1349 | + } |
|
1350 | + return "principals/$name"; |
|
1351 | + } |
|
1352 | + return $principalUri; |
|
1353 | + } |
|
1354 | + |
|
1355 | + private function addOwnerPrincipal(array &$addressbookInfo): void { |
|
1356 | + $ownerPrincipalKey = '{' . \OCA\DAV\DAV\Sharing\Plugin::NS_OWNCLOUD . '}owner-principal'; |
|
1357 | + $displaynameKey = '{' . \OCA\DAV\DAV\Sharing\Plugin::NS_NEXTCLOUD . '}owner-displayname'; |
|
1358 | + if (isset($addressbookInfo[$ownerPrincipalKey])) { |
|
1359 | + $uri = $addressbookInfo[$ownerPrincipalKey]; |
|
1360 | + } else { |
|
1361 | + $uri = $addressbookInfo['principaluri']; |
|
1362 | + } |
|
1363 | + |
|
1364 | + $principalInformation = $this->principalBackend->getPrincipalByPath($uri); |
|
1365 | + if (isset($principalInformation['{DAV:}displayname'])) { |
|
1366 | + $addressbookInfo[$displaynameKey] = $principalInformation['{DAV:}displayname']; |
|
1367 | + } |
|
1368 | + } |
|
1369 | + |
|
1370 | + /** |
|
1371 | + * Extract UID from vcard |
|
1372 | + * |
|
1373 | + * @param string $cardData the vcard raw data |
|
1374 | + * @return string the uid |
|
1375 | + * @throws BadRequest if no UID is available or vcard is empty |
|
1376 | + */ |
|
1377 | + private function getUID(string $cardData): string { |
|
1378 | + if ($cardData !== '') { |
|
1379 | + $vCard = Reader::read($cardData); |
|
1380 | + if ($vCard->UID) { |
|
1381 | + $uid = $vCard->UID->getValue(); |
|
1382 | + return $uid; |
|
1383 | + } |
|
1384 | + // should already be handled, but just in case |
|
1385 | + throw new BadRequest('vCards on CardDAV servers MUST have a UID property'); |
|
1386 | + } |
|
1387 | + // should already be handled, but just in case |
|
1388 | + throw new BadRequest('vCard can not be empty'); |
|
1389 | + } |
|
1390 | 1390 | } |
@@ -35,30 +35,30 @@ |
||
35 | 35 | |
36 | 36 | class PruneOutdatedSyncTokensJob extends TimedJob { |
37 | 37 | |
38 | - private IConfig $config; |
|
39 | - private LoggerInterface $logger; |
|
40 | - private CardDavBackend $cardDavBackend; |
|
41 | - private CalDavBackend $calDavBackend; |
|
38 | + private IConfig $config; |
|
39 | + private LoggerInterface $logger; |
|
40 | + private CardDavBackend $cardDavBackend; |
|
41 | + private CalDavBackend $calDavBackend; |
|
42 | 42 | |
43 | - public function __construct(ITimeFactory $timeFactory, CalDavBackend $calDavBackend, CardDavBackend $cardDavBackend, IConfig $config, LoggerInterface $logger) { |
|
44 | - parent::__construct($timeFactory); |
|
45 | - $this->calDavBackend = $calDavBackend; |
|
46 | - $this->cardDavBackend = $cardDavBackend; |
|
47 | - $this->config = $config; |
|
48 | - $this->logger = $logger; |
|
49 | - $this->setInterval(60 * 60 * 24); // One day |
|
50 | - $this->setTimeSensitivity(self::TIME_INSENSITIVE); |
|
51 | - } |
|
43 | + public function __construct(ITimeFactory $timeFactory, CalDavBackend $calDavBackend, CardDavBackend $cardDavBackend, IConfig $config, LoggerInterface $logger) { |
|
44 | + parent::__construct($timeFactory); |
|
45 | + $this->calDavBackend = $calDavBackend; |
|
46 | + $this->cardDavBackend = $cardDavBackend; |
|
47 | + $this->config = $config; |
|
48 | + $this->logger = $logger; |
|
49 | + $this->setInterval(60 * 60 * 24); // One day |
|
50 | + $this->setTimeSensitivity(self::TIME_INSENSITIVE); |
|
51 | + } |
|
52 | 52 | |
53 | - public function run($argument) { |
|
54 | - $limit = max(1, (int) $this->config->getAppValue(Application::APP_ID, 'totalNumberOfSyncTokensToKeep', '10000')); |
|
53 | + public function run($argument) { |
|
54 | + $limit = max(1, (int) $this->config->getAppValue(Application::APP_ID, 'totalNumberOfSyncTokensToKeep', '10000')); |
|
55 | 55 | |
56 | - $prunedCalendarSyncTokens = $this->calDavBackend->pruneOutdatedSyncTokens($limit); |
|
57 | - $prunedAddressBookSyncTokens = $this->cardDavBackend->pruneOutdatedSyncTokens($limit); |
|
56 | + $prunedCalendarSyncTokens = $this->calDavBackend->pruneOutdatedSyncTokens($limit); |
|
57 | + $prunedAddressBookSyncTokens = $this->cardDavBackend->pruneOutdatedSyncTokens($limit); |
|
58 | 58 | |
59 | - $this->logger->info('Pruned {calendarSyncTokensNumber} calendar sync tokens and {addressBooksSyncTokensNumber} address book sync tokens', [ |
|
60 | - 'calendarSyncTokensNumber' => $prunedCalendarSyncTokens, |
|
61 | - 'addressBooksSyncTokensNumber' => $prunedAddressBookSyncTokens |
|
62 | - ]); |
|
63 | - } |
|
59 | + $this->logger->info('Pruned {calendarSyncTokensNumber} calendar sync tokens and {addressBooksSyncTokensNumber} address book sync tokens', [ |
|
60 | + 'calendarSyncTokensNumber' => $prunedCalendarSyncTokens, |
|
61 | + 'addressBooksSyncTokensNumber' => $prunedAddressBookSyncTokens |
|
62 | + ]); |
|
63 | + } |
|
64 | 64 | } |
@@ -121,3090 +121,3090 @@ |
||
121 | 121 | */ |
122 | 122 | class CalDavBackend extends AbstractBackend implements SyncSupport, SubscriptionSupport, SchedulingSupport { |
123 | 123 | |
124 | - use TTransactional; |
|
125 | - |
|
126 | - public const CALENDAR_TYPE_CALENDAR = 0; |
|
127 | - public const CALENDAR_TYPE_SUBSCRIPTION = 1; |
|
128 | - |
|
129 | - public const PERSONAL_CALENDAR_URI = 'personal'; |
|
130 | - public const PERSONAL_CALENDAR_NAME = 'Personal'; |
|
131 | - |
|
132 | - public const RESOURCE_BOOKING_CALENDAR_URI = 'calendar'; |
|
133 | - public const RESOURCE_BOOKING_CALENDAR_NAME = 'Calendar'; |
|
134 | - |
|
135 | - /** |
|
136 | - * We need to specify a max date, because we need to stop *somewhere* |
|
137 | - * |
|
138 | - * On 32 bit system the maximum for a signed integer is 2147483647, so |
|
139 | - * MAX_DATE cannot be higher than date('Y-m-d', 2147483647) which results |
|
140 | - * in 2038-01-19 to avoid problems when the date is converted |
|
141 | - * to a unix timestamp. |
|
142 | - */ |
|
143 | - public const MAX_DATE = '2038-01-01'; |
|
144 | - |
|
145 | - public const ACCESS_PUBLIC = 4; |
|
146 | - public const CLASSIFICATION_PUBLIC = 0; |
|
147 | - public const CLASSIFICATION_PRIVATE = 1; |
|
148 | - public const CLASSIFICATION_CONFIDENTIAL = 2; |
|
149 | - |
|
150 | - /** |
|
151 | - * List of CalDAV properties, and how they map to database field names and their type |
|
152 | - * Add your own properties by simply adding on to this array. |
|
153 | - * |
|
154 | - * @var array |
|
155 | - * @psalm-var array<string, string[]> |
|
156 | - */ |
|
157 | - public array $propertyMap = [ |
|
158 | - '{DAV:}displayname' => ['displayname', 'string'], |
|
159 | - '{urn:ietf:params:xml:ns:caldav}calendar-description' => ['description', 'string'], |
|
160 | - '{urn:ietf:params:xml:ns:caldav}calendar-timezone' => ['timezone', 'string'], |
|
161 | - '{http://apple.com/ns/ical/}calendar-order' => ['calendarorder', 'int'], |
|
162 | - '{http://apple.com/ns/ical/}calendar-color' => ['calendarcolor', 'string'], |
|
163 | - '{' . \OCA\DAV\DAV\Sharing\Plugin::NS_NEXTCLOUD . '}deleted-at' => ['deleted_at', 'int'], |
|
164 | - ]; |
|
165 | - |
|
166 | - /** |
|
167 | - * List of subscription properties, and how they map to database field names. |
|
168 | - * |
|
169 | - * @var array |
|
170 | - */ |
|
171 | - public array $subscriptionPropertyMap = [ |
|
172 | - '{DAV:}displayname' => ['displayname', 'string'], |
|
173 | - '{http://apple.com/ns/ical/}refreshrate' => ['refreshrate', 'string'], |
|
174 | - '{http://apple.com/ns/ical/}calendar-order' => ['calendarorder', 'int'], |
|
175 | - '{http://apple.com/ns/ical/}calendar-color' => ['calendarcolor', 'string'], |
|
176 | - '{http://calendarserver.org/ns/}subscribed-strip-todos' => ['striptodos', 'bool'], |
|
177 | - '{http://calendarserver.org/ns/}subscribed-strip-alarms' => ['stripalarms', 'string'], |
|
178 | - '{http://calendarserver.org/ns/}subscribed-strip-attachments' => ['stripattachments', 'string'], |
|
179 | - ]; |
|
180 | - |
|
181 | - /** |
|
182 | - * properties to index |
|
183 | - * |
|
184 | - * This list has to be kept in sync with ICalendarQuery::SEARCH_PROPERTY_* |
|
185 | - * |
|
186 | - * @see \OCP\Calendar\ICalendarQuery |
|
187 | - */ |
|
188 | - private const INDEXED_PROPERTIES = [ |
|
189 | - 'CATEGORIES', |
|
190 | - 'COMMENT', |
|
191 | - 'DESCRIPTION', |
|
192 | - 'LOCATION', |
|
193 | - 'RESOURCES', |
|
194 | - 'STATUS', |
|
195 | - 'SUMMARY', |
|
196 | - 'ATTENDEE', |
|
197 | - 'CONTACT', |
|
198 | - 'ORGANIZER' |
|
199 | - ]; |
|
200 | - |
|
201 | - /** @var array parameters to index */ |
|
202 | - public static array $indexParameters = [ |
|
203 | - 'ATTENDEE' => ['CN'], |
|
204 | - 'ORGANIZER' => ['CN'], |
|
205 | - ]; |
|
206 | - |
|
207 | - /** |
|
208 | - * @var string[] Map of uid => display name |
|
209 | - */ |
|
210 | - protected array $userDisplayNames; |
|
211 | - |
|
212 | - private IDBConnection $db; |
|
213 | - private Backend $calendarSharingBackend; |
|
214 | - private Principal $principalBackend; |
|
215 | - private IUserManager $userManager; |
|
216 | - private ISecureRandom $random; |
|
217 | - private LoggerInterface $logger; |
|
218 | - private IEventDispatcher $dispatcher; |
|
219 | - private IConfig $config; |
|
220 | - private bool $legacyEndpoint; |
|
221 | - private string $dbObjectPropertiesTable = 'calendarobjects_props'; |
|
222 | - |
|
223 | - public function __construct(IDBConnection $db, |
|
224 | - Principal $principalBackend, |
|
225 | - IUserManager $userManager, |
|
226 | - IGroupManager $groupManager, |
|
227 | - ISecureRandom $random, |
|
228 | - LoggerInterface $logger, |
|
229 | - IEventDispatcher $dispatcher, |
|
230 | - IConfig $config, |
|
231 | - bool $legacyEndpoint = false) { |
|
232 | - $this->db = $db; |
|
233 | - $this->principalBackend = $principalBackend; |
|
234 | - $this->userManager = $userManager; |
|
235 | - $this->calendarSharingBackend = new Backend($this->db, $this->userManager, $groupManager, $principalBackend, 'calendar'); |
|
236 | - $this->random = $random; |
|
237 | - $this->logger = $logger; |
|
238 | - $this->dispatcher = $dispatcher; |
|
239 | - $this->config = $config; |
|
240 | - $this->legacyEndpoint = $legacyEndpoint; |
|
241 | - } |
|
242 | - |
|
243 | - /** |
|
244 | - * Return the number of calendars for a principal |
|
245 | - * |
|
246 | - * By default this excludes the automatically generated birthday calendar |
|
247 | - * |
|
248 | - * @param $principalUri |
|
249 | - * @param bool $excludeBirthday |
|
250 | - * @return int |
|
251 | - */ |
|
252 | - public function getCalendarsForUserCount($principalUri, $excludeBirthday = true) { |
|
253 | - $principalUri = $this->convertPrincipal($principalUri, true); |
|
254 | - $query = $this->db->getQueryBuilder(); |
|
255 | - $query->select($query->func()->count('*')) |
|
256 | - ->from('calendars'); |
|
257 | - |
|
258 | - if ($principalUri === '') { |
|
259 | - $query->where($query->expr()->emptyString('principaluri')); |
|
260 | - } else { |
|
261 | - $query->where($query->expr()->eq('principaluri', $query->createNamedParameter($principalUri))); |
|
262 | - } |
|
263 | - |
|
264 | - if ($excludeBirthday) { |
|
265 | - $query->andWhere($query->expr()->neq('uri', $query->createNamedParameter(BirthdayService::BIRTHDAY_CALENDAR_URI))); |
|
266 | - } |
|
267 | - |
|
268 | - $result = $query->executeQuery(); |
|
269 | - $column = (int)$result->fetchOne(); |
|
270 | - $result->closeCursor(); |
|
271 | - return $column; |
|
272 | - } |
|
273 | - |
|
274 | - /** |
|
275 | - * @return array{id: int, deleted_at: int}[] |
|
276 | - */ |
|
277 | - public function getDeletedCalendars(int $deletedBefore): array { |
|
278 | - $qb = $this->db->getQueryBuilder(); |
|
279 | - $qb->select(['id', 'deleted_at']) |
|
280 | - ->from('calendars') |
|
281 | - ->where($qb->expr()->isNotNull('deleted_at')) |
|
282 | - ->andWhere($qb->expr()->lt('deleted_at', $qb->createNamedParameter($deletedBefore))); |
|
283 | - $result = $qb->executeQuery(); |
|
284 | - $raw = $result->fetchAll(); |
|
285 | - $result->closeCursor(); |
|
286 | - return array_map(function ($row) { |
|
287 | - return [ |
|
288 | - 'id' => (int) $row['id'], |
|
289 | - 'deleted_at' => (int) $row['deleted_at'], |
|
290 | - ]; |
|
291 | - }, $raw); |
|
292 | - } |
|
293 | - |
|
294 | - /** |
|
295 | - * Returns a list of calendars for a principal. |
|
296 | - * |
|
297 | - * Every project is an array with the following keys: |
|
298 | - * * id, a unique id that will be used by other functions to modify the |
|
299 | - * calendar. This can be the same as the uri or a database key. |
|
300 | - * * uri, which the basename of the uri with which the calendar is |
|
301 | - * accessed. |
|
302 | - * * principaluri. The owner of the calendar. Almost always the same as |
|
303 | - * principalUri passed to this method. |
|
304 | - * |
|
305 | - * Furthermore it can contain webdav properties in clark notation. A very |
|
306 | - * common one is '{DAV:}displayname'. |
|
307 | - * |
|
308 | - * Many clients also require: |
|
309 | - * {urn:ietf:params:xml:ns:caldav}supported-calendar-component-set |
|
310 | - * For this property, you can just return an instance of |
|
311 | - * Sabre\CalDAV\Property\SupportedCalendarComponentSet. |
|
312 | - * |
|
313 | - * If you return {http://sabredav.org/ns}read-only and set the value to 1, |
|
314 | - * ACL will automatically be put in read-only mode. |
|
315 | - * |
|
316 | - * @param string $principalUri |
|
317 | - * @return array |
|
318 | - */ |
|
319 | - public function getCalendarsForUser($principalUri) { |
|
320 | - $principalUriOriginal = $principalUri; |
|
321 | - $principalUri = $this->convertPrincipal($principalUri, true); |
|
322 | - $fields = array_column($this->propertyMap, 0); |
|
323 | - $fields[] = 'id'; |
|
324 | - $fields[] = 'uri'; |
|
325 | - $fields[] = 'synctoken'; |
|
326 | - $fields[] = 'components'; |
|
327 | - $fields[] = 'principaluri'; |
|
328 | - $fields[] = 'transparent'; |
|
329 | - |
|
330 | - // Making fields a comma-delimited list |
|
331 | - $query = $this->db->getQueryBuilder(); |
|
332 | - $query->select($fields) |
|
333 | - ->from('calendars') |
|
334 | - ->orderBy('calendarorder', 'ASC'); |
|
335 | - |
|
336 | - if ($principalUri === '') { |
|
337 | - $query->where($query->expr()->emptyString('principaluri')); |
|
338 | - } else { |
|
339 | - $query->where($query->expr()->eq('principaluri', $query->createNamedParameter($principalUri))); |
|
340 | - } |
|
341 | - |
|
342 | - $result = $query->executeQuery(); |
|
343 | - |
|
344 | - $calendars = []; |
|
345 | - while ($row = $result->fetch()) { |
|
346 | - $row['principaluri'] = (string) $row['principaluri']; |
|
347 | - $components = []; |
|
348 | - if ($row['components']) { |
|
349 | - $components = explode(',',$row['components']); |
|
350 | - } |
|
351 | - |
|
352 | - $calendar = [ |
|
353 | - 'id' => $row['id'], |
|
354 | - 'uri' => $row['uri'], |
|
355 | - 'principaluri' => $this->convertPrincipal($row['principaluri'], !$this->legacyEndpoint), |
|
356 | - '{' . Plugin::NS_CALENDARSERVER . '}getctag' => 'http://sabre.io/ns/sync/' . ($row['synctoken']?$row['synctoken']:'0'), |
|
357 | - '{http://sabredav.org/ns}sync-token' => $row['synctoken']?$row['synctoken']:'0', |
|
358 | - '{' . Plugin::NS_CALDAV . '}supported-calendar-component-set' => new SupportedCalendarComponentSet($components), |
|
359 | - '{' . Plugin::NS_CALDAV . '}schedule-calendar-transp' => new ScheduleCalendarTransp($row['transparent']?'transparent':'opaque'), |
|
360 | - '{' . \OCA\DAV\DAV\Sharing\Plugin::NS_OWNCLOUD . '}owner-principal' => $this->convertPrincipal($principalUri, !$this->legacyEndpoint), |
|
361 | - ]; |
|
362 | - |
|
363 | - $calendar = $this->rowToCalendar($row, $calendar); |
|
364 | - $calendar = $this->addOwnerPrincipalToCalendar($calendar); |
|
365 | - $calendar = $this->addResourceTypeToCalendar($row, $calendar); |
|
366 | - |
|
367 | - if (!isset($calendars[$calendar['id']])) { |
|
368 | - $calendars[$calendar['id']] = $calendar; |
|
369 | - } |
|
370 | - } |
|
371 | - $result->closeCursor(); |
|
372 | - |
|
373 | - // query for shared calendars |
|
374 | - $principals = $this->principalBackend->getGroupMembership($principalUriOriginal, true); |
|
375 | - $principals = array_merge($principals, $this->principalBackend->getCircleMembership($principalUriOriginal)); |
|
376 | - |
|
377 | - $principals[] = $principalUri; |
|
378 | - |
|
379 | - $fields = array_column($this->propertyMap, 0); |
|
380 | - $fields[] = 'a.id'; |
|
381 | - $fields[] = 'a.uri'; |
|
382 | - $fields[] = 'a.synctoken'; |
|
383 | - $fields[] = 'a.components'; |
|
384 | - $fields[] = 'a.principaluri'; |
|
385 | - $fields[] = 'a.transparent'; |
|
386 | - $fields[] = 's.access'; |
|
387 | - $query = $this->db->getQueryBuilder(); |
|
388 | - $query->select($fields) |
|
389 | - ->from('dav_shares', 's') |
|
390 | - ->join('s', 'calendars', 'a', $query->expr()->eq('s.resourceid', 'a.id')) |
|
391 | - ->where($query->expr()->in('s.principaluri', $query->createParameter('principaluri'))) |
|
392 | - ->andWhere($query->expr()->eq('s.type', $query->createParameter('type'))) |
|
393 | - ->setParameter('type', 'calendar') |
|
394 | - ->setParameter('principaluri', $principals, \Doctrine\DBAL\Connection::PARAM_STR_ARRAY); |
|
395 | - |
|
396 | - $result = $query->executeQuery(); |
|
397 | - |
|
398 | - $readOnlyPropertyName = '{' . \OCA\DAV\DAV\Sharing\Plugin::NS_OWNCLOUD . '}read-only'; |
|
399 | - while ($row = $result->fetch()) { |
|
400 | - $row['principaluri'] = (string) $row['principaluri']; |
|
401 | - if ($row['principaluri'] === $principalUri) { |
|
402 | - continue; |
|
403 | - } |
|
404 | - |
|
405 | - $readOnly = (int) $row['access'] === Backend::ACCESS_READ; |
|
406 | - if (isset($calendars[$row['id']])) { |
|
407 | - if ($readOnly) { |
|
408 | - // New share can not have more permissions then the old one. |
|
409 | - continue; |
|
410 | - } |
|
411 | - if (isset($calendars[$row['id']][$readOnlyPropertyName]) && |
|
412 | - $calendars[$row['id']][$readOnlyPropertyName] === 0) { |
|
413 | - // Old share is already read-write, no more permissions can be gained |
|
414 | - continue; |
|
415 | - } |
|
416 | - } |
|
417 | - |
|
418 | - [, $name] = Uri\split($row['principaluri']); |
|
419 | - $uri = $row['uri'] . '_shared_by_' . $name; |
|
420 | - $row['displayname'] = $row['displayname'] . ' (' . $this->getUserDisplayName($name) . ')'; |
|
421 | - $components = []; |
|
422 | - if ($row['components']) { |
|
423 | - $components = explode(',',$row['components']); |
|
424 | - } |
|
425 | - $calendar = [ |
|
426 | - 'id' => $row['id'], |
|
427 | - 'uri' => $uri, |
|
428 | - 'principaluri' => $this->convertPrincipal($principalUri, !$this->legacyEndpoint), |
|
429 | - '{' . Plugin::NS_CALENDARSERVER . '}getctag' => 'http://sabre.io/ns/sync/' . ($row['synctoken']?$row['synctoken']:'0'), |
|
430 | - '{http://sabredav.org/ns}sync-token' => $row['synctoken']?$row['synctoken']:'0', |
|
431 | - '{' . Plugin::NS_CALDAV . '}supported-calendar-component-set' => new SupportedCalendarComponentSet($components), |
|
432 | - '{' . Plugin::NS_CALDAV . '}schedule-calendar-transp' => new ScheduleCalendarTransp('transparent'), |
|
433 | - '{' . \OCA\DAV\DAV\Sharing\Plugin::NS_OWNCLOUD . '}owner-principal' => $this->convertPrincipal($row['principaluri'], !$this->legacyEndpoint), |
|
434 | - $readOnlyPropertyName => $readOnly, |
|
435 | - ]; |
|
436 | - |
|
437 | - $calendar = $this->rowToCalendar($row, $calendar); |
|
438 | - $calendar = $this->addOwnerPrincipalToCalendar($calendar); |
|
439 | - $calendar = $this->addResourceTypeToCalendar($row, $calendar); |
|
440 | - |
|
441 | - $calendars[$calendar['id']] = $calendar; |
|
442 | - } |
|
443 | - $result->closeCursor(); |
|
444 | - |
|
445 | - return array_values($calendars); |
|
446 | - } |
|
447 | - |
|
448 | - /** |
|
449 | - * @param $principalUri |
|
450 | - * @return array |
|
451 | - */ |
|
452 | - public function getUsersOwnCalendars($principalUri) { |
|
453 | - $principalUri = $this->convertPrincipal($principalUri, true); |
|
454 | - $fields = array_column($this->propertyMap, 0); |
|
455 | - $fields[] = 'id'; |
|
456 | - $fields[] = 'uri'; |
|
457 | - $fields[] = 'synctoken'; |
|
458 | - $fields[] = 'components'; |
|
459 | - $fields[] = 'principaluri'; |
|
460 | - $fields[] = 'transparent'; |
|
461 | - // Making fields a comma-delimited list |
|
462 | - $query = $this->db->getQueryBuilder(); |
|
463 | - $query->select($fields)->from('calendars') |
|
464 | - ->where($query->expr()->eq('principaluri', $query->createNamedParameter($principalUri))) |
|
465 | - ->orderBy('calendarorder', 'ASC'); |
|
466 | - $stmt = $query->executeQuery(); |
|
467 | - $calendars = []; |
|
468 | - while ($row = $stmt->fetch()) { |
|
469 | - $row['principaluri'] = (string) $row['principaluri']; |
|
470 | - $components = []; |
|
471 | - if ($row['components']) { |
|
472 | - $components = explode(',',$row['components']); |
|
473 | - } |
|
474 | - $calendar = [ |
|
475 | - 'id' => $row['id'], |
|
476 | - 'uri' => $row['uri'], |
|
477 | - 'principaluri' => $this->convertPrincipal($row['principaluri'], !$this->legacyEndpoint), |
|
478 | - '{' . Plugin::NS_CALENDARSERVER . '}getctag' => 'http://sabre.io/ns/sync/' . ($row['synctoken']?$row['synctoken']:'0'), |
|
479 | - '{http://sabredav.org/ns}sync-token' => $row['synctoken']?$row['synctoken']:'0', |
|
480 | - '{' . Plugin::NS_CALDAV . '}supported-calendar-component-set' => new SupportedCalendarComponentSet($components), |
|
481 | - '{' . Plugin::NS_CALDAV . '}schedule-calendar-transp' => new ScheduleCalendarTransp($row['transparent']?'transparent':'opaque'), |
|
482 | - ]; |
|
483 | - |
|
484 | - $calendar = $this->rowToCalendar($row, $calendar); |
|
485 | - $calendar = $this->addOwnerPrincipalToCalendar($calendar); |
|
486 | - $calendar = $this->addResourceTypeToCalendar($row, $calendar); |
|
487 | - |
|
488 | - if (!isset($calendars[$calendar['id']])) { |
|
489 | - $calendars[$calendar['id']] = $calendar; |
|
490 | - } |
|
491 | - } |
|
492 | - $stmt->closeCursor(); |
|
493 | - return array_values($calendars); |
|
494 | - } |
|
495 | - |
|
496 | - |
|
497 | - /** |
|
498 | - * @param $uid |
|
499 | - * @return string |
|
500 | - */ |
|
501 | - private function getUserDisplayName($uid) { |
|
502 | - if (!isset($this->userDisplayNames[$uid])) { |
|
503 | - $user = $this->userManager->get($uid); |
|
504 | - |
|
505 | - if ($user instanceof IUser) { |
|
506 | - $this->userDisplayNames[$uid] = $user->getDisplayName(); |
|
507 | - } else { |
|
508 | - $this->userDisplayNames[$uid] = $uid; |
|
509 | - } |
|
510 | - } |
|
511 | - |
|
512 | - return $this->userDisplayNames[$uid]; |
|
513 | - } |
|
514 | - |
|
515 | - /** |
|
516 | - * @return array |
|
517 | - */ |
|
518 | - public function getPublicCalendars() { |
|
519 | - $fields = array_column($this->propertyMap, 0); |
|
520 | - $fields[] = 'a.id'; |
|
521 | - $fields[] = 'a.uri'; |
|
522 | - $fields[] = 'a.synctoken'; |
|
523 | - $fields[] = 'a.components'; |
|
524 | - $fields[] = 'a.principaluri'; |
|
525 | - $fields[] = 'a.transparent'; |
|
526 | - $fields[] = 's.access'; |
|
527 | - $fields[] = 's.publicuri'; |
|
528 | - $calendars = []; |
|
529 | - $query = $this->db->getQueryBuilder(); |
|
530 | - $result = $query->select($fields) |
|
531 | - ->from('dav_shares', 's') |
|
532 | - ->join('s', 'calendars', 'a', $query->expr()->eq('s.resourceid', 'a.id')) |
|
533 | - ->where($query->expr()->in('s.access', $query->createNamedParameter(self::ACCESS_PUBLIC))) |
|
534 | - ->andWhere($query->expr()->eq('s.type', $query->createNamedParameter('calendar'))) |
|
535 | - ->executeQuery(); |
|
536 | - |
|
537 | - while ($row = $result->fetch()) { |
|
538 | - $row['principaluri'] = (string) $row['principaluri']; |
|
539 | - [, $name] = Uri\split($row['principaluri']); |
|
540 | - $row['displayname'] = $row['displayname'] . "($name)"; |
|
541 | - $components = []; |
|
542 | - if ($row['components']) { |
|
543 | - $components = explode(',',$row['components']); |
|
544 | - } |
|
545 | - $calendar = [ |
|
546 | - 'id' => $row['id'], |
|
547 | - 'uri' => $row['publicuri'], |
|
548 | - 'principaluri' => $this->convertPrincipal($row['principaluri'], !$this->legacyEndpoint), |
|
549 | - '{' . Plugin::NS_CALENDARSERVER . '}getctag' => 'http://sabre.io/ns/sync/' . ($row['synctoken']?$row['synctoken']:'0'), |
|
550 | - '{http://sabredav.org/ns}sync-token' => $row['synctoken']?$row['synctoken']:'0', |
|
551 | - '{' . Plugin::NS_CALDAV . '}supported-calendar-component-set' => new SupportedCalendarComponentSet($components), |
|
552 | - '{' . Plugin::NS_CALDAV . '}schedule-calendar-transp' => new ScheduleCalendarTransp($row['transparent']?'transparent':'opaque'), |
|
553 | - '{' . \OCA\DAV\DAV\Sharing\Plugin::NS_OWNCLOUD . '}owner-principal' => $this->convertPrincipal($row['principaluri'], $this->legacyEndpoint), |
|
554 | - '{' . \OCA\DAV\DAV\Sharing\Plugin::NS_OWNCLOUD . '}read-only' => (int)$row['access'] === Backend::ACCESS_READ, |
|
555 | - '{' . \OCA\DAV\DAV\Sharing\Plugin::NS_OWNCLOUD . '}public' => (int)$row['access'] === self::ACCESS_PUBLIC, |
|
556 | - ]; |
|
557 | - |
|
558 | - $calendar = $this->rowToCalendar($row, $calendar); |
|
559 | - $calendar = $this->addOwnerPrincipalToCalendar($calendar); |
|
560 | - $calendar = $this->addResourceTypeToCalendar($row, $calendar); |
|
561 | - |
|
562 | - if (!isset($calendars[$calendar['id']])) { |
|
563 | - $calendars[$calendar['id']] = $calendar; |
|
564 | - } |
|
565 | - } |
|
566 | - $result->closeCursor(); |
|
567 | - |
|
568 | - return array_values($calendars); |
|
569 | - } |
|
570 | - |
|
571 | - /** |
|
572 | - * @param string $uri |
|
573 | - * @return array |
|
574 | - * @throws NotFound |
|
575 | - */ |
|
576 | - public function getPublicCalendar($uri) { |
|
577 | - $fields = array_column($this->propertyMap, 0); |
|
578 | - $fields[] = 'a.id'; |
|
579 | - $fields[] = 'a.uri'; |
|
580 | - $fields[] = 'a.synctoken'; |
|
581 | - $fields[] = 'a.components'; |
|
582 | - $fields[] = 'a.principaluri'; |
|
583 | - $fields[] = 'a.transparent'; |
|
584 | - $fields[] = 's.access'; |
|
585 | - $fields[] = 's.publicuri'; |
|
586 | - $query = $this->db->getQueryBuilder(); |
|
587 | - $result = $query->select($fields) |
|
588 | - ->from('dav_shares', 's') |
|
589 | - ->join('s', 'calendars', 'a', $query->expr()->eq('s.resourceid', 'a.id')) |
|
590 | - ->where($query->expr()->in('s.access', $query->createNamedParameter(self::ACCESS_PUBLIC))) |
|
591 | - ->andWhere($query->expr()->eq('s.type', $query->createNamedParameter('calendar'))) |
|
592 | - ->andWhere($query->expr()->eq('s.publicuri', $query->createNamedParameter($uri))) |
|
593 | - ->executeQuery(); |
|
594 | - |
|
595 | - $row = $result->fetch(); |
|
596 | - |
|
597 | - $result->closeCursor(); |
|
598 | - |
|
599 | - if ($row === false) { |
|
600 | - throw new NotFound('Node with name \'' . $uri . '\' could not be found'); |
|
601 | - } |
|
602 | - |
|
603 | - $row['principaluri'] = (string) $row['principaluri']; |
|
604 | - [, $name] = Uri\split($row['principaluri']); |
|
605 | - $row['displayname'] = $row['displayname'] . ' ' . "($name)"; |
|
606 | - $components = []; |
|
607 | - if ($row['components']) { |
|
608 | - $components = explode(',',$row['components']); |
|
609 | - } |
|
610 | - $calendar = [ |
|
611 | - 'id' => $row['id'], |
|
612 | - 'uri' => $row['publicuri'], |
|
613 | - 'principaluri' => $this->convertPrincipal($row['principaluri'], !$this->legacyEndpoint), |
|
614 | - '{' . Plugin::NS_CALENDARSERVER . '}getctag' => 'http://sabre.io/ns/sync/' . ($row['synctoken']?$row['synctoken']:'0'), |
|
615 | - '{http://sabredav.org/ns}sync-token' => $row['synctoken']?$row['synctoken']:'0', |
|
616 | - '{' . Plugin::NS_CALDAV . '}supported-calendar-component-set' => new SupportedCalendarComponentSet($components), |
|
617 | - '{' . Plugin::NS_CALDAV . '}schedule-calendar-transp' => new ScheduleCalendarTransp($row['transparent']?'transparent':'opaque'), |
|
618 | - '{' . \OCA\DAV\DAV\Sharing\Plugin::NS_OWNCLOUD . '}owner-principal' => $this->convertPrincipal($row['principaluri'], !$this->legacyEndpoint), |
|
619 | - '{' . \OCA\DAV\DAV\Sharing\Plugin::NS_OWNCLOUD . '}read-only' => (int)$row['access'] === Backend::ACCESS_READ, |
|
620 | - '{' . \OCA\DAV\DAV\Sharing\Plugin::NS_OWNCLOUD . '}public' => (int)$row['access'] === self::ACCESS_PUBLIC, |
|
621 | - ]; |
|
622 | - |
|
623 | - $calendar = $this->rowToCalendar($row, $calendar); |
|
624 | - $calendar = $this->addOwnerPrincipalToCalendar($calendar); |
|
625 | - $calendar = $this->addResourceTypeToCalendar($row, $calendar); |
|
626 | - |
|
627 | - return $calendar; |
|
628 | - } |
|
629 | - |
|
630 | - /** |
|
631 | - * @param string $principal |
|
632 | - * @param string $uri |
|
633 | - * @return array|null |
|
634 | - */ |
|
635 | - public function getCalendarByUri($principal, $uri) { |
|
636 | - $fields = array_column($this->propertyMap, 0); |
|
637 | - $fields[] = 'id'; |
|
638 | - $fields[] = 'uri'; |
|
639 | - $fields[] = 'synctoken'; |
|
640 | - $fields[] = 'components'; |
|
641 | - $fields[] = 'principaluri'; |
|
642 | - $fields[] = 'transparent'; |
|
643 | - |
|
644 | - // Making fields a comma-delimited list |
|
645 | - $query = $this->db->getQueryBuilder(); |
|
646 | - $query->select($fields)->from('calendars') |
|
647 | - ->where($query->expr()->eq('uri', $query->createNamedParameter($uri))) |
|
648 | - ->andWhere($query->expr()->eq('principaluri', $query->createNamedParameter($principal))) |
|
649 | - ->setMaxResults(1); |
|
650 | - $stmt = $query->executeQuery(); |
|
651 | - |
|
652 | - $row = $stmt->fetch(); |
|
653 | - $stmt->closeCursor(); |
|
654 | - if ($row === false) { |
|
655 | - return null; |
|
656 | - } |
|
657 | - |
|
658 | - $row['principaluri'] = (string) $row['principaluri']; |
|
659 | - $components = []; |
|
660 | - if ($row['components']) { |
|
661 | - $components = explode(',',$row['components']); |
|
662 | - } |
|
663 | - |
|
664 | - $calendar = [ |
|
665 | - 'id' => $row['id'], |
|
666 | - 'uri' => $row['uri'], |
|
667 | - 'principaluri' => $this->convertPrincipal($row['principaluri'], !$this->legacyEndpoint), |
|
668 | - '{' . Plugin::NS_CALENDARSERVER . '}getctag' => 'http://sabre.io/ns/sync/' . ($row['synctoken']?$row['synctoken']:'0'), |
|
669 | - '{http://sabredav.org/ns}sync-token' => $row['synctoken']?$row['synctoken']:'0', |
|
670 | - '{' . Plugin::NS_CALDAV . '}supported-calendar-component-set' => new SupportedCalendarComponentSet($components), |
|
671 | - '{' . Plugin::NS_CALDAV . '}schedule-calendar-transp' => new ScheduleCalendarTransp($row['transparent']?'transparent':'opaque'), |
|
672 | - ]; |
|
673 | - |
|
674 | - $calendar = $this->rowToCalendar($row, $calendar); |
|
675 | - $calendar = $this->addOwnerPrincipalToCalendar($calendar); |
|
676 | - $calendar = $this->addResourceTypeToCalendar($row, $calendar); |
|
677 | - |
|
678 | - return $calendar; |
|
679 | - } |
|
680 | - |
|
681 | - /** |
|
682 | - * @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 }|null |
|
683 | - */ |
|
684 | - public function getCalendarById(int $calendarId): ?array { |
|
685 | - $fields = array_column($this->propertyMap, 0); |
|
686 | - $fields[] = 'id'; |
|
687 | - $fields[] = 'uri'; |
|
688 | - $fields[] = 'synctoken'; |
|
689 | - $fields[] = 'components'; |
|
690 | - $fields[] = 'principaluri'; |
|
691 | - $fields[] = 'transparent'; |
|
692 | - |
|
693 | - // Making fields a comma-delimited list |
|
694 | - $query = $this->db->getQueryBuilder(); |
|
695 | - $query->select($fields)->from('calendars') |
|
696 | - ->where($query->expr()->eq('id', $query->createNamedParameter($calendarId))) |
|
697 | - ->setMaxResults(1); |
|
698 | - $stmt = $query->executeQuery(); |
|
699 | - |
|
700 | - $row = $stmt->fetch(); |
|
701 | - $stmt->closeCursor(); |
|
702 | - if ($row === false) { |
|
703 | - return null; |
|
704 | - } |
|
705 | - |
|
706 | - $row['principaluri'] = (string) $row['principaluri']; |
|
707 | - $components = []; |
|
708 | - if ($row['components']) { |
|
709 | - $components = explode(',',$row['components']); |
|
710 | - } |
|
711 | - |
|
712 | - $calendar = [ |
|
713 | - 'id' => $row['id'], |
|
714 | - 'uri' => $row['uri'], |
|
715 | - 'principaluri' => $this->convertPrincipal($row['principaluri'], !$this->legacyEndpoint), |
|
716 | - '{' . Plugin::NS_CALENDARSERVER . '}getctag' => 'http://sabre.io/ns/sync/' . ($row['synctoken']?$row['synctoken']:'0'), |
|
717 | - '{http://sabredav.org/ns}sync-token' => $row['synctoken'] ?? 0, |
|
718 | - '{' . Plugin::NS_CALDAV . '}supported-calendar-component-set' => new SupportedCalendarComponentSet($components), |
|
719 | - '{' . Plugin::NS_CALDAV . '}schedule-calendar-transp' => new ScheduleCalendarTransp($row['transparent']?'transparent':'opaque'), |
|
720 | - ]; |
|
721 | - |
|
722 | - $calendar = $this->rowToCalendar($row, $calendar); |
|
723 | - $calendar = $this->addOwnerPrincipalToCalendar($calendar); |
|
724 | - $calendar = $this->addResourceTypeToCalendar($row, $calendar); |
|
725 | - |
|
726 | - return $calendar; |
|
727 | - } |
|
728 | - |
|
729 | - /** |
|
730 | - * @param $subscriptionId |
|
731 | - */ |
|
732 | - public function getSubscriptionById($subscriptionId) { |
|
733 | - $fields = array_column($this->subscriptionPropertyMap, 0); |
|
734 | - $fields[] = 'id'; |
|
735 | - $fields[] = 'uri'; |
|
736 | - $fields[] = 'source'; |
|
737 | - $fields[] = 'synctoken'; |
|
738 | - $fields[] = 'principaluri'; |
|
739 | - $fields[] = 'lastmodified'; |
|
740 | - |
|
741 | - $query = $this->db->getQueryBuilder(); |
|
742 | - $query->select($fields) |
|
743 | - ->from('calendarsubscriptions') |
|
744 | - ->where($query->expr()->eq('id', $query->createNamedParameter($subscriptionId))) |
|
745 | - ->orderBy('calendarorder', 'asc'); |
|
746 | - $stmt = $query->executeQuery(); |
|
747 | - |
|
748 | - $row = $stmt->fetch(); |
|
749 | - $stmt->closeCursor(); |
|
750 | - if ($row === false) { |
|
751 | - return null; |
|
752 | - } |
|
753 | - |
|
754 | - $row['principaluri'] = (string) $row['principaluri']; |
|
755 | - $subscription = [ |
|
756 | - 'id' => $row['id'], |
|
757 | - 'uri' => $row['uri'], |
|
758 | - 'principaluri' => $row['principaluri'], |
|
759 | - 'source' => $row['source'], |
|
760 | - 'lastmodified' => $row['lastmodified'], |
|
761 | - '{' . Plugin::NS_CALDAV . '}supported-calendar-component-set' => new SupportedCalendarComponentSet(['VTODO', 'VEVENT']), |
|
762 | - '{http://sabredav.org/ns}sync-token' => $row['synctoken']?$row['synctoken']:'0', |
|
763 | - ]; |
|
764 | - |
|
765 | - return $this->rowToSubscription($row, $subscription); |
|
766 | - } |
|
767 | - |
|
768 | - /** |
|
769 | - * Creates a new calendar for a principal. |
|
770 | - * |
|
771 | - * If the creation was a success, an id must be returned that can be used to reference |
|
772 | - * this calendar in other methods, such as updateCalendar. |
|
773 | - * |
|
774 | - * @param string $principalUri |
|
775 | - * @param string $calendarUri |
|
776 | - * @param array $properties |
|
777 | - * @return int |
|
778 | - * |
|
779 | - * @throws CalendarException |
|
780 | - */ |
|
781 | - public function createCalendar($principalUri, $calendarUri, array $properties) { |
|
782 | - if (strlen($calendarUri) > 255) { |
|
783 | - throw new CalendarException('URI too long. Calendar not created'); |
|
784 | - } |
|
785 | - |
|
786 | - $values = [ |
|
787 | - 'principaluri' => $this->convertPrincipal($principalUri, true), |
|
788 | - 'uri' => $calendarUri, |
|
789 | - 'synctoken' => 1, |
|
790 | - 'transparent' => 0, |
|
791 | - 'components' => 'VEVENT,VTODO', |
|
792 | - 'displayname' => $calendarUri |
|
793 | - ]; |
|
794 | - |
|
795 | - // Default value |
|
796 | - $sccs = '{urn:ietf:params:xml:ns:caldav}supported-calendar-component-set'; |
|
797 | - if (isset($properties[$sccs])) { |
|
798 | - if (!($properties[$sccs] instanceof SupportedCalendarComponentSet)) { |
|
799 | - throw new DAV\Exception('The ' . $sccs . ' property must be of type: \Sabre\CalDAV\Property\SupportedCalendarComponentSet'); |
|
800 | - } |
|
801 | - $values['components'] = implode(',',$properties[$sccs]->getValue()); |
|
802 | - } elseif (isset($properties['components'])) { |
|
803 | - // Allow to provide components internally without having |
|
804 | - // to create a SupportedCalendarComponentSet object |
|
805 | - $values['components'] = $properties['components']; |
|
806 | - } |
|
807 | - |
|
808 | - $transp = '{' . Plugin::NS_CALDAV . '}schedule-calendar-transp'; |
|
809 | - if (isset($properties[$transp])) { |
|
810 | - $values['transparent'] = (int) ($properties[$transp]->getValue() === 'transparent'); |
|
811 | - } |
|
812 | - |
|
813 | - foreach ($this->propertyMap as $xmlName => [$dbName, $type]) { |
|
814 | - if (isset($properties[$xmlName])) { |
|
815 | - $values[$dbName] = $properties[$xmlName]; |
|
816 | - } |
|
817 | - } |
|
818 | - |
|
819 | - [$calendarId, $calendarData] = $this->atomic(function() use ($values) { |
|
820 | - $query = $this->db->getQueryBuilder(); |
|
821 | - $query->insert('calendars'); |
|
822 | - foreach ($values as $column => $value) { |
|
823 | - $query->setValue($column, $query->createNamedParameter($value)); |
|
824 | - } |
|
825 | - $query->executeStatement(); |
|
826 | - $calendarId = $query->getLastInsertId(); |
|
827 | - |
|
828 | - $calendarData = $this->getCalendarById($calendarId); |
|
829 | - return [$calendarId, $calendarData]; |
|
830 | - }, $this->db); |
|
831 | - |
|
832 | - $this->dispatcher->dispatchTyped(new CalendarCreatedEvent((int)$calendarId, $calendarData)); |
|
833 | - |
|
834 | - return $calendarId; |
|
835 | - } |
|
836 | - |
|
837 | - /** |
|
838 | - * Updates properties for a calendar. |
|
839 | - * |
|
840 | - * The list of mutations is stored in a Sabre\DAV\PropPatch object. |
|
841 | - * To do the actual updates, you must tell this object which properties |
|
842 | - * you're going to process with the handle() method. |
|
843 | - * |
|
844 | - * Calling the handle method is like telling the PropPatch object "I |
|
845 | - * promise I can handle updating this property". |
|
846 | - * |
|
847 | - * Read the PropPatch documentation for more info and examples. |
|
848 | - * |
|
849 | - * @param mixed $calendarId |
|
850 | - * @param PropPatch $propPatch |
|
851 | - * @return void |
|
852 | - */ |
|
853 | - public function updateCalendar($calendarId, PropPatch $propPatch) { |
|
854 | - $supportedProperties = array_keys($this->propertyMap); |
|
855 | - $supportedProperties[] = '{' . Plugin::NS_CALDAV . '}schedule-calendar-transp'; |
|
856 | - |
|
857 | - $propPatch->handle($supportedProperties, function ($mutations) use ($calendarId) { |
|
858 | - $newValues = []; |
|
859 | - foreach ($mutations as $propertyName => $propertyValue) { |
|
860 | - switch ($propertyName) { |
|
861 | - case '{' . Plugin::NS_CALDAV . '}schedule-calendar-transp': |
|
862 | - $fieldName = 'transparent'; |
|
863 | - $newValues[$fieldName] = (int) ($propertyValue->getValue() === 'transparent'); |
|
864 | - break; |
|
865 | - default: |
|
866 | - $fieldName = $this->propertyMap[$propertyName][0]; |
|
867 | - $newValues[$fieldName] = $propertyValue; |
|
868 | - break; |
|
869 | - } |
|
870 | - } |
|
871 | - $query = $this->db->getQueryBuilder(); |
|
872 | - $query->update('calendars'); |
|
873 | - foreach ($newValues as $fieldName => $value) { |
|
874 | - $query->set($fieldName, $query->createNamedParameter($value)); |
|
875 | - } |
|
876 | - $query->where($query->expr()->eq('id', $query->createNamedParameter($calendarId))); |
|
877 | - $query->executeStatement(); |
|
878 | - |
|
879 | - $this->addChange($calendarId, "", 2); |
|
880 | - |
|
881 | - $calendarData = $this->getCalendarById($calendarId); |
|
882 | - $shares = $this->getShares($calendarId); |
|
883 | - $this->dispatcher->dispatchTyped(new CalendarUpdatedEvent($calendarId, $calendarData, $shares, $mutations)); |
|
884 | - |
|
885 | - return true; |
|
886 | - }); |
|
887 | - } |
|
888 | - |
|
889 | - /** |
|
890 | - * Delete a calendar and all it's objects |
|
891 | - * |
|
892 | - * @param mixed $calendarId |
|
893 | - * @return void |
|
894 | - */ |
|
895 | - public function deleteCalendar($calendarId, bool $forceDeletePermanently = false) { |
|
896 | - // The calendar is deleted right away if this is either enforced by the caller |
|
897 | - // or the special contacts birthday calendar or when the preference of an empty |
|
898 | - // retention (0 seconds) is set, which signals a disabled trashbin. |
|
899 | - $calendarData = $this->getCalendarById($calendarId); |
|
900 | - $isBirthdayCalendar = isset($calendarData['uri']) && $calendarData['uri'] === BirthdayService::BIRTHDAY_CALENDAR_URI; |
|
901 | - $trashbinDisabled = $this->config->getAppValue(Application::APP_ID, RetentionService::RETENTION_CONFIG_KEY) === '0'; |
|
902 | - if ($forceDeletePermanently || $isBirthdayCalendar || $trashbinDisabled) { |
|
903 | - $calendarData = $this->getCalendarById($calendarId); |
|
904 | - $shares = $this->getShares($calendarId); |
|
905 | - |
|
906 | - $qbDeleteCalendarObjectProps = $this->db->getQueryBuilder(); |
|
907 | - $qbDeleteCalendarObjectProps->delete($this->dbObjectPropertiesTable) |
|
908 | - ->where($qbDeleteCalendarObjectProps->expr()->eq('calendarid', $qbDeleteCalendarObjectProps->createNamedParameter($calendarId))) |
|
909 | - ->andWhere($qbDeleteCalendarObjectProps->expr()->eq('calendartype', $qbDeleteCalendarObjectProps->createNamedParameter(self::CALENDAR_TYPE_CALENDAR))) |
|
910 | - ->executeStatement(); |
|
911 | - |
|
912 | - $qbDeleteCalendarObjects = $this->db->getQueryBuilder(); |
|
913 | - $qbDeleteCalendarObjects->delete('calendarobjects') |
|
914 | - ->where($qbDeleteCalendarObjects->expr()->eq('calendarid', $qbDeleteCalendarObjects->createNamedParameter($calendarId))) |
|
915 | - ->andWhere($qbDeleteCalendarObjects->expr()->eq('calendartype', $qbDeleteCalendarObjects->createNamedParameter(self::CALENDAR_TYPE_CALENDAR))) |
|
916 | - ->executeStatement(); |
|
917 | - |
|
918 | - $qbDeleteCalendarChanges = $this->db->getQueryBuilder(); |
|
919 | - $qbDeleteCalendarObjects->delete('calendarchanges') |
|
920 | - ->where($qbDeleteCalendarChanges->expr()->eq('calendarid', $qbDeleteCalendarChanges->createNamedParameter($calendarId))) |
|
921 | - ->andWhere($qbDeleteCalendarChanges->expr()->eq('calendartype', $qbDeleteCalendarChanges->createNamedParameter(self::CALENDAR_TYPE_CALENDAR))) |
|
922 | - ->executeStatement(); |
|
923 | - |
|
924 | - $this->calendarSharingBackend->deleteAllShares($calendarId); |
|
925 | - |
|
926 | - $qbDeleteCalendar = $this->db->getQueryBuilder(); |
|
927 | - $qbDeleteCalendarObjects->delete('calendars') |
|
928 | - ->where($qbDeleteCalendar->expr()->eq('id', $qbDeleteCalendar->createNamedParameter($calendarId))) |
|
929 | - ->executeStatement(); |
|
930 | - |
|
931 | - // Only dispatch if we actually deleted anything |
|
932 | - if ($calendarData) { |
|
933 | - $this->dispatcher->dispatchTyped(new CalendarDeletedEvent($calendarId, $calendarData, $shares)); |
|
934 | - } |
|
935 | - } else { |
|
936 | - $qbMarkCalendarDeleted = $this->db->getQueryBuilder(); |
|
937 | - $qbMarkCalendarDeleted->update('calendars') |
|
938 | - ->set('deleted_at', $qbMarkCalendarDeleted->createNamedParameter(time())) |
|
939 | - ->where($qbMarkCalendarDeleted->expr()->eq('id', $qbMarkCalendarDeleted->createNamedParameter($calendarId))) |
|
940 | - ->executeStatement(); |
|
941 | - |
|
942 | - $calendarData = $this->getCalendarById($calendarId); |
|
943 | - $shares = $this->getShares($calendarId); |
|
944 | - if ($calendarData) { |
|
945 | - $this->dispatcher->dispatchTyped(new CalendarMovedToTrashEvent( |
|
946 | - $calendarId, |
|
947 | - $calendarData, |
|
948 | - $shares |
|
949 | - )); |
|
950 | - } |
|
951 | - } |
|
952 | - } |
|
953 | - |
|
954 | - public function restoreCalendar(int $id): void { |
|
955 | - $qb = $this->db->getQueryBuilder(); |
|
956 | - $update = $qb->update('calendars') |
|
957 | - ->set('deleted_at', $qb->createNamedParameter(null)) |
|
958 | - ->where($qb->expr()->eq('id', $qb->createNamedParameter($id, IQueryBuilder::PARAM_INT), IQueryBuilder::PARAM_INT)); |
|
959 | - $update->executeStatement(); |
|
960 | - |
|
961 | - $calendarData = $this->getCalendarById($id); |
|
962 | - $shares = $this->getShares($id); |
|
963 | - if ($calendarData === null) { |
|
964 | - throw new RuntimeException('Calendar data that was just written can\'t be read back. Check your database configuration.'); |
|
965 | - } |
|
966 | - $this->dispatcher->dispatchTyped(new CalendarRestoredEvent( |
|
967 | - $id, |
|
968 | - $calendarData, |
|
969 | - $shares |
|
970 | - )); |
|
971 | - } |
|
972 | - |
|
973 | - /** |
|
974 | - * Delete all of an user's shares |
|
975 | - * |
|
976 | - * @param string $principaluri |
|
977 | - * @return void |
|
978 | - */ |
|
979 | - public function deleteAllSharesByUser($principaluri) { |
|
980 | - $this->calendarSharingBackend->deleteAllSharesByUser($principaluri); |
|
981 | - } |
|
982 | - |
|
983 | - /** |
|
984 | - * Returns all calendar objects within a calendar. |
|
985 | - * |
|
986 | - * Every item contains an array with the following keys: |
|
987 | - * * calendardata - The iCalendar-compatible calendar data |
|
988 | - * * uri - a unique key which will be used to construct the uri. This can |
|
989 | - * be any arbitrary string, but making sure it ends with '.ics' is a |
|
990 | - * good idea. This is only the basename, or filename, not the full |
|
991 | - * path. |
|
992 | - * * lastmodified - a timestamp of the last modification time |
|
993 | - * * etag - An arbitrary string, surrounded by double-quotes. (e.g.: |
|
994 | - * '"abcdef"') |
|
995 | - * * size - The size of the calendar objects, in bytes. |
|
996 | - * * component - optional, a string containing the type of object, such |
|
997 | - * as 'vevent' or 'vtodo'. If specified, this will be used to populate |
|
998 | - * the Content-Type header. |
|
999 | - * |
|
1000 | - * Note that the etag is optional, but it's highly encouraged to return for |
|
1001 | - * speed reasons. |
|
1002 | - * |
|
1003 | - * The calendardata is also optional. If it's not returned |
|
1004 | - * 'getCalendarObject' will be called later, which *is* expected to return |
|
1005 | - * calendardata. |
|
1006 | - * |
|
1007 | - * If neither etag or size are specified, the calendardata will be |
|
1008 | - * used/fetched to determine these numbers. If both are specified the |
|
1009 | - * amount of times this is needed is reduced by a great degree. |
|
1010 | - * |
|
1011 | - * @param mixed $calendarId |
|
1012 | - * @param int $calendarType |
|
1013 | - * @return array |
|
1014 | - */ |
|
1015 | - public function getCalendarObjects($calendarId, $calendarType = self::CALENDAR_TYPE_CALENDAR):array { |
|
1016 | - $query = $this->db->getQueryBuilder(); |
|
1017 | - $query->select(['id', 'uri', 'lastmodified', 'etag', 'calendarid', 'size', 'componenttype', 'classification']) |
|
1018 | - ->from('calendarobjects') |
|
1019 | - ->where($query->expr()->eq('calendarid', $query->createNamedParameter($calendarId))) |
|
1020 | - ->andWhere($query->expr()->eq('calendartype', $query->createNamedParameter($calendarType))) |
|
1021 | - ->andWhere($query->expr()->isNull('deleted_at')); |
|
1022 | - $stmt = $query->executeQuery(); |
|
1023 | - |
|
1024 | - $result = []; |
|
1025 | - foreach ($stmt->fetchAll() as $row) { |
|
1026 | - $result[] = [ |
|
1027 | - 'id' => $row['id'], |
|
1028 | - 'uri' => $row['uri'], |
|
1029 | - 'lastmodified' => $row['lastmodified'], |
|
1030 | - 'etag' => '"' . $row['etag'] . '"', |
|
1031 | - 'calendarid' => $row['calendarid'], |
|
1032 | - 'size' => (int)$row['size'], |
|
1033 | - 'component' => strtolower($row['componenttype']), |
|
1034 | - 'classification' => (int)$row['classification'] |
|
1035 | - ]; |
|
1036 | - } |
|
1037 | - $stmt->closeCursor(); |
|
1038 | - |
|
1039 | - return $result; |
|
1040 | - } |
|
1041 | - |
|
1042 | - public function getDeletedCalendarObjects(int $deletedBefore): array { |
|
1043 | - $query = $this->db->getQueryBuilder(); |
|
1044 | - $query->select(['co.id', 'co.uri', 'co.lastmodified', 'co.etag', 'co.calendarid', 'co.calendartype', 'co.size', 'co.componenttype', 'co.classification', 'co.deleted_at']) |
|
1045 | - ->from('calendarobjects', 'co') |
|
1046 | - ->join('co', 'calendars', 'c', $query->expr()->eq('c.id', 'co.calendarid', IQueryBuilder::PARAM_INT)) |
|
1047 | - ->where($query->expr()->isNotNull('co.deleted_at')) |
|
1048 | - ->andWhere($query->expr()->lt('co.deleted_at', $query->createNamedParameter($deletedBefore))); |
|
1049 | - $stmt = $query->executeQuery(); |
|
1050 | - |
|
1051 | - $result = []; |
|
1052 | - foreach ($stmt->fetchAll() as $row) { |
|
1053 | - $result[] = [ |
|
1054 | - 'id' => $row['id'], |
|
1055 | - 'uri' => $row['uri'], |
|
1056 | - 'lastmodified' => $row['lastmodified'], |
|
1057 | - 'etag' => '"' . $row['etag'] . '"', |
|
1058 | - 'calendarid' => (int) $row['calendarid'], |
|
1059 | - 'calendartype' => (int) $row['calendartype'], |
|
1060 | - 'size' => (int) $row['size'], |
|
1061 | - 'component' => strtolower($row['componenttype']), |
|
1062 | - 'classification' => (int) $row['classification'], |
|
1063 | - '{' . \OCA\DAV\DAV\Sharing\Plugin::NS_NEXTCLOUD . '}deleted-at' => $row['deleted_at'] === null ? $row['deleted_at'] : (int) $row['deleted_at'], |
|
1064 | - ]; |
|
1065 | - } |
|
1066 | - $stmt->closeCursor(); |
|
1067 | - |
|
1068 | - return $result; |
|
1069 | - } |
|
1070 | - |
|
1071 | - /** |
|
1072 | - * Return all deleted calendar objects by the given principal that are not |
|
1073 | - * in deleted calendars. |
|
1074 | - * |
|
1075 | - * @param string $principalUri |
|
1076 | - * @return array |
|
1077 | - * @throws Exception |
|
1078 | - */ |
|
1079 | - public function getDeletedCalendarObjectsByPrincipal(string $principalUri): array { |
|
1080 | - $query = $this->db->getQueryBuilder(); |
|
1081 | - $query->select(['co.id', 'co.uri', 'co.lastmodified', 'co.etag', 'co.calendarid', 'co.size', 'co.componenttype', 'co.classification', 'co.deleted_at']) |
|
1082 | - ->selectAlias('c.uri', 'calendaruri') |
|
1083 | - ->from('calendarobjects', 'co') |
|
1084 | - ->join('co', 'calendars', 'c', $query->expr()->eq('c.id', 'co.calendarid', IQueryBuilder::PARAM_INT)) |
|
1085 | - ->where($query->expr()->eq('principaluri', $query->createNamedParameter($principalUri))) |
|
1086 | - ->andWhere($query->expr()->isNotNull('co.deleted_at')) |
|
1087 | - ->andWhere($query->expr()->isNull('c.deleted_at')); |
|
1088 | - $stmt = $query->executeQuery(); |
|
1089 | - |
|
1090 | - $result = []; |
|
1091 | - while ($row = $stmt->fetch()) { |
|
1092 | - $result[] = [ |
|
1093 | - 'id' => $row['id'], |
|
1094 | - 'uri' => $row['uri'], |
|
1095 | - 'lastmodified' => $row['lastmodified'], |
|
1096 | - 'etag' => '"' . $row['etag'] . '"', |
|
1097 | - 'calendarid' => $row['calendarid'], |
|
1098 | - 'calendaruri' => $row['calendaruri'], |
|
1099 | - 'size' => (int)$row['size'], |
|
1100 | - 'component' => strtolower($row['componenttype']), |
|
1101 | - 'classification' => (int)$row['classification'], |
|
1102 | - '{' . \OCA\DAV\DAV\Sharing\Plugin::NS_NEXTCLOUD . '}deleted-at' => $row['deleted_at'] === null ? $row['deleted_at'] : (int) $row['deleted_at'], |
|
1103 | - ]; |
|
1104 | - } |
|
1105 | - $stmt->closeCursor(); |
|
1106 | - |
|
1107 | - return $result; |
|
1108 | - } |
|
1109 | - |
|
1110 | - /** |
|
1111 | - * Returns information from a single calendar object, based on it's object |
|
1112 | - * uri. |
|
1113 | - * |
|
1114 | - * The object uri is only the basename, or filename and not a full path. |
|
1115 | - * |
|
1116 | - * The returned array must have the same keys as getCalendarObjects. The |
|
1117 | - * 'calendardata' object is required here though, while it's not required |
|
1118 | - * for getCalendarObjects. |
|
1119 | - * |
|
1120 | - * This method must return null if the object did not exist. |
|
1121 | - * |
|
1122 | - * @param mixed $calendarId |
|
1123 | - * @param string $objectUri |
|
1124 | - * @param int $calendarType |
|
1125 | - * @return array|null |
|
1126 | - */ |
|
1127 | - public function getCalendarObject($calendarId, $objectUri, int $calendarType = self::CALENDAR_TYPE_CALENDAR) { |
|
1128 | - $query = $this->db->getQueryBuilder(); |
|
1129 | - $query->select(['id', 'uri', 'lastmodified', 'etag', 'calendarid', 'size', 'calendardata', 'componenttype', 'classification', 'deleted_at']) |
|
1130 | - ->from('calendarobjects') |
|
1131 | - ->where($query->expr()->eq('calendarid', $query->createNamedParameter($calendarId))) |
|
1132 | - ->andWhere($query->expr()->eq('uri', $query->createNamedParameter($objectUri))) |
|
1133 | - ->andWhere($query->expr()->eq('calendartype', $query->createNamedParameter($calendarType))); |
|
1134 | - $stmt = $query->executeQuery(); |
|
1135 | - $row = $stmt->fetch(); |
|
1136 | - $stmt->closeCursor(); |
|
1137 | - |
|
1138 | - if (!$row) { |
|
1139 | - return null; |
|
1140 | - } |
|
1141 | - |
|
1142 | - return [ |
|
1143 | - 'id' => $row['id'], |
|
1144 | - 'uri' => $row['uri'], |
|
1145 | - 'lastmodified' => $row['lastmodified'], |
|
1146 | - 'etag' => '"' . $row['etag'] . '"', |
|
1147 | - 'calendarid' => $row['calendarid'], |
|
1148 | - 'size' => (int)$row['size'], |
|
1149 | - 'calendardata' => $this->readBlob($row['calendardata']), |
|
1150 | - 'component' => strtolower($row['componenttype']), |
|
1151 | - 'classification' => (int)$row['classification'], |
|
1152 | - '{' . \OCA\DAV\DAV\Sharing\Plugin::NS_NEXTCLOUD . '}deleted-at' => $row['deleted_at'] === null ? $row['deleted_at'] : (int) $row['deleted_at'], |
|
1153 | - ]; |
|
1154 | - } |
|
1155 | - |
|
1156 | - /** |
|
1157 | - * Returns a list of calendar objects. |
|
1158 | - * |
|
1159 | - * This method should work identical to getCalendarObject, but instead |
|
1160 | - * return all the calendar objects in the list as an array. |
|
1161 | - * |
|
1162 | - * If the backend supports this, it may allow for some speed-ups. |
|
1163 | - * |
|
1164 | - * @param mixed $calendarId |
|
1165 | - * @param string[] $uris |
|
1166 | - * @param int $calendarType |
|
1167 | - * @return array |
|
1168 | - */ |
|
1169 | - public function getMultipleCalendarObjects($calendarId, array $uris, $calendarType = self::CALENDAR_TYPE_CALENDAR):array { |
|
1170 | - if (empty($uris)) { |
|
1171 | - return []; |
|
1172 | - } |
|
1173 | - |
|
1174 | - $chunks = array_chunk($uris, 100); |
|
1175 | - $objects = []; |
|
1176 | - |
|
1177 | - $query = $this->db->getQueryBuilder(); |
|
1178 | - $query->select(['id', 'uri', 'lastmodified', 'etag', 'calendarid', 'size', 'calendardata', 'componenttype', 'classification']) |
|
1179 | - ->from('calendarobjects') |
|
1180 | - ->where($query->expr()->eq('calendarid', $query->createNamedParameter($calendarId))) |
|
1181 | - ->andWhere($query->expr()->in('uri', $query->createParameter('uri'))) |
|
1182 | - ->andWhere($query->expr()->eq('calendartype', $query->createNamedParameter($calendarType))) |
|
1183 | - ->andWhere($query->expr()->isNull('deleted_at')); |
|
1184 | - |
|
1185 | - foreach ($chunks as $uris) { |
|
1186 | - $query->setParameter('uri', $uris, IQueryBuilder::PARAM_STR_ARRAY); |
|
1187 | - $result = $query->executeQuery(); |
|
1188 | - |
|
1189 | - while ($row = $result->fetch()) { |
|
1190 | - $objects[] = [ |
|
1191 | - 'id' => $row['id'], |
|
1192 | - 'uri' => $row['uri'], |
|
1193 | - 'lastmodified' => $row['lastmodified'], |
|
1194 | - 'etag' => '"' . $row['etag'] . '"', |
|
1195 | - 'calendarid' => $row['calendarid'], |
|
1196 | - 'size' => (int)$row['size'], |
|
1197 | - 'calendardata' => $this->readBlob($row['calendardata']), |
|
1198 | - 'component' => strtolower($row['componenttype']), |
|
1199 | - 'classification' => (int)$row['classification'] |
|
1200 | - ]; |
|
1201 | - } |
|
1202 | - $result->closeCursor(); |
|
1203 | - } |
|
1204 | - |
|
1205 | - return $objects; |
|
1206 | - } |
|
1207 | - |
|
1208 | - /** |
|
1209 | - * Creates a new calendar object. |
|
1210 | - * |
|
1211 | - * The object uri is only the basename, or filename and not a full path. |
|
1212 | - * |
|
1213 | - * It is possible return an etag from this function, which will be used in |
|
1214 | - * the response to this PUT request. Note that the ETag must be surrounded |
|
1215 | - * by double-quotes. |
|
1216 | - * |
|
1217 | - * However, you should only really return this ETag if you don't mangle the |
|
1218 | - * calendar-data. If the result of a subsequent GET to this object is not |
|
1219 | - * the exact same as this request body, you should omit the ETag. |
|
1220 | - * |
|
1221 | - * @param mixed $calendarId |
|
1222 | - * @param string $objectUri |
|
1223 | - * @param string $calendarData |
|
1224 | - * @param int $calendarType |
|
1225 | - * @return string |
|
1226 | - */ |
|
1227 | - public function createCalendarObject($calendarId, $objectUri, $calendarData, $calendarType = self::CALENDAR_TYPE_CALENDAR) { |
|
1228 | - $extraData = $this->getDenormalizedData($calendarData); |
|
1229 | - |
|
1230 | - // Try to detect duplicates |
|
1231 | - $qb = $this->db->getQueryBuilder(); |
|
1232 | - $qb->select($qb->func()->count('*')) |
|
1233 | - ->from('calendarobjects') |
|
1234 | - ->where($qb->expr()->eq('calendarid', $qb->createNamedParameter($calendarId))) |
|
1235 | - ->andWhere($qb->expr()->eq('uid', $qb->createNamedParameter($extraData['uid']))) |
|
1236 | - ->andWhere($qb->expr()->eq('calendartype', $qb->createNamedParameter($calendarType))) |
|
1237 | - ->andWhere($qb->expr()->isNull('deleted_at')); |
|
1238 | - $result = $qb->executeQuery(); |
|
1239 | - $count = (int) $result->fetchOne(); |
|
1240 | - $result->closeCursor(); |
|
1241 | - |
|
1242 | - if ($count !== 0) { |
|
1243 | - throw new BadRequest('Calendar object with uid already exists in this calendar collection.'); |
|
1244 | - } |
|
1245 | - // For a more specific error message we also try to explicitly look up the UID but as a deleted entry |
|
1246 | - $qbDel = $this->db->getQueryBuilder(); |
|
1247 | - $qbDel->select($qb->func()->count('*')) |
|
1248 | - ->from('calendarobjects') |
|
1249 | - ->where($qbDel->expr()->eq('calendarid', $qbDel->createNamedParameter($calendarId))) |
|
1250 | - ->andWhere($qbDel->expr()->eq('uid', $qbDel->createNamedParameter($extraData['uid']))) |
|
1251 | - ->andWhere($qbDel->expr()->eq('calendartype', $qbDel->createNamedParameter($calendarType))) |
|
1252 | - ->andWhere($qbDel->expr()->isNotNull('deleted_at')); |
|
1253 | - $result = $qbDel->executeQuery(); |
|
1254 | - $count = (int) $result->fetchOne(); |
|
1255 | - $result->closeCursor(); |
|
1256 | - if ($count !== 0) { |
|
1257 | - throw new BadRequest('Deleted calendar object with uid already exists in this calendar collection.'); |
|
1258 | - } |
|
1259 | - |
|
1260 | - $query = $this->db->getQueryBuilder(); |
|
1261 | - $query->insert('calendarobjects') |
|
1262 | - ->values([ |
|
1263 | - 'calendarid' => $query->createNamedParameter($calendarId), |
|
1264 | - 'uri' => $query->createNamedParameter($objectUri), |
|
1265 | - 'calendardata' => $query->createNamedParameter($calendarData, IQueryBuilder::PARAM_LOB), |
|
1266 | - 'lastmodified' => $query->createNamedParameter(time()), |
|
1267 | - 'etag' => $query->createNamedParameter($extraData['etag']), |
|
1268 | - 'size' => $query->createNamedParameter($extraData['size']), |
|
1269 | - 'componenttype' => $query->createNamedParameter($extraData['componentType']), |
|
1270 | - 'firstoccurence' => $query->createNamedParameter($extraData['firstOccurence']), |
|
1271 | - 'lastoccurence' => $query->createNamedParameter($extraData['lastOccurence']), |
|
1272 | - 'classification' => $query->createNamedParameter($extraData['classification']), |
|
1273 | - 'uid' => $query->createNamedParameter($extraData['uid']), |
|
1274 | - 'calendartype' => $query->createNamedParameter($calendarType), |
|
1275 | - ]) |
|
1276 | - ->executeStatement(); |
|
1277 | - |
|
1278 | - $this->updateProperties($calendarId, $objectUri, $calendarData, $calendarType); |
|
1279 | - $this->addChange($calendarId, $objectUri, 1, $calendarType); |
|
1280 | - |
|
1281 | - $objectRow = $this->getCalendarObject($calendarId, $objectUri, $calendarType); |
|
1282 | - assert($objectRow !== null); |
|
1283 | - |
|
1284 | - if ($calendarType === self::CALENDAR_TYPE_CALENDAR) { |
|
1285 | - $calendarRow = $this->getCalendarById($calendarId); |
|
1286 | - $shares = $this->getShares($calendarId); |
|
1287 | - |
|
1288 | - $this->dispatcher->dispatchTyped(new CalendarObjectCreatedEvent($calendarId, $calendarRow, $shares, $objectRow)); |
|
1289 | - } else { |
|
1290 | - $subscriptionRow = $this->getSubscriptionById($calendarId); |
|
1291 | - |
|
1292 | - $this->dispatcher->dispatchTyped(new CachedCalendarObjectCreatedEvent($calendarId, $subscriptionRow, [], $objectRow)); |
|
1293 | - } |
|
1294 | - |
|
1295 | - return '"' . $extraData['etag'] . '"'; |
|
1296 | - } |
|
1297 | - |
|
1298 | - /** |
|
1299 | - * Updates an existing calendarobject, based on it's uri. |
|
1300 | - * |
|
1301 | - * The object uri is only the basename, or filename and not a full path. |
|
1302 | - * |
|
1303 | - * It is possible return an etag from this function, which will be used in |
|
1304 | - * the response to this PUT request. Note that the ETag must be surrounded |
|
1305 | - * by double-quotes. |
|
1306 | - * |
|
1307 | - * However, you should only really return this ETag if you don't mangle the |
|
1308 | - * calendar-data. If the result of a subsequent GET to this object is not |
|
1309 | - * the exact same as this request body, you should omit the ETag. |
|
1310 | - * |
|
1311 | - * @param mixed $calendarId |
|
1312 | - * @param string $objectUri |
|
1313 | - * @param string $calendarData |
|
1314 | - * @param int $calendarType |
|
1315 | - * @return string |
|
1316 | - */ |
|
1317 | - public function updateCalendarObject($calendarId, $objectUri, $calendarData, $calendarType = self::CALENDAR_TYPE_CALENDAR) { |
|
1318 | - $extraData = $this->getDenormalizedData($calendarData); |
|
1319 | - $query = $this->db->getQueryBuilder(); |
|
1320 | - $query->update('calendarobjects') |
|
1321 | - ->set('calendardata', $query->createNamedParameter($calendarData, IQueryBuilder::PARAM_LOB)) |
|
1322 | - ->set('lastmodified', $query->createNamedParameter(time())) |
|
1323 | - ->set('etag', $query->createNamedParameter($extraData['etag'])) |
|
1324 | - ->set('size', $query->createNamedParameter($extraData['size'])) |
|
1325 | - ->set('componenttype', $query->createNamedParameter($extraData['componentType'])) |
|
1326 | - ->set('firstoccurence', $query->createNamedParameter($extraData['firstOccurence'])) |
|
1327 | - ->set('lastoccurence', $query->createNamedParameter($extraData['lastOccurence'])) |
|
1328 | - ->set('classification', $query->createNamedParameter($extraData['classification'])) |
|
1329 | - ->set('uid', $query->createNamedParameter($extraData['uid'])) |
|
1330 | - ->where($query->expr()->eq('calendarid', $query->createNamedParameter($calendarId))) |
|
1331 | - ->andWhere($query->expr()->eq('uri', $query->createNamedParameter($objectUri))) |
|
1332 | - ->andWhere($query->expr()->eq('calendartype', $query->createNamedParameter($calendarType))) |
|
1333 | - ->executeStatement(); |
|
1334 | - |
|
1335 | - $this->updateProperties($calendarId, $objectUri, $calendarData, $calendarType); |
|
1336 | - $this->addChange($calendarId, $objectUri, 2, $calendarType); |
|
1337 | - |
|
1338 | - $objectRow = $this->getCalendarObject($calendarId, $objectUri, $calendarType); |
|
1339 | - if (is_array($objectRow)) { |
|
1340 | - if ($calendarType === self::CALENDAR_TYPE_CALENDAR) { |
|
1341 | - $calendarRow = $this->getCalendarById($calendarId); |
|
1342 | - $shares = $this->getShares($calendarId); |
|
1343 | - |
|
1344 | - $this->dispatcher->dispatchTyped(new CalendarObjectUpdatedEvent($calendarId, $calendarRow, $shares, $objectRow)); |
|
1345 | - } else { |
|
1346 | - $subscriptionRow = $this->getSubscriptionById($calendarId); |
|
1347 | - |
|
1348 | - $this->dispatcher->dispatchTyped(new CachedCalendarObjectUpdatedEvent($calendarId, $subscriptionRow, [], $objectRow)); |
|
1349 | - } |
|
1350 | - } |
|
1351 | - |
|
1352 | - return '"' . $extraData['etag'] . '"'; |
|
1353 | - } |
|
1354 | - |
|
1355 | - /** |
|
1356 | - * Moves a calendar object from calendar to calendar. |
|
1357 | - * |
|
1358 | - * @param int $sourceCalendarId |
|
1359 | - * @param int $targetCalendarId |
|
1360 | - * @param int $objectId |
|
1361 | - * @param string $oldPrincipalUri |
|
1362 | - * @param string $newPrincipalUri |
|
1363 | - * @param int $calendarType |
|
1364 | - * @return bool |
|
1365 | - * @throws Exception |
|
1366 | - */ |
|
1367 | - public function moveCalendarObject(int $sourceCalendarId, int $targetCalendarId, int $objectId, string $oldPrincipalUri, string $newPrincipalUri, int $calendarType = self::CALENDAR_TYPE_CALENDAR): bool { |
|
1368 | - $object = $this->getCalendarObjectById($oldPrincipalUri, $objectId); |
|
1369 | - if (empty($object)) { |
|
1370 | - return false; |
|
1371 | - } |
|
1372 | - |
|
1373 | - $query = $this->db->getQueryBuilder(); |
|
1374 | - $query->update('calendarobjects') |
|
1375 | - ->set('calendarid', $query->createNamedParameter($targetCalendarId, IQueryBuilder::PARAM_INT)) |
|
1376 | - ->where($query->expr()->eq('id', $query->createNamedParameter($objectId, IQueryBuilder::PARAM_INT), IQueryBuilder::PARAM_INT)) |
|
1377 | - ->andWhere($query->expr()->eq('calendartype', $query->createNamedParameter($calendarType, IQueryBuilder::PARAM_INT), IQueryBuilder::PARAM_INT)) |
|
1378 | - ->executeStatement(); |
|
1379 | - |
|
1380 | - $this->purgeProperties($sourceCalendarId, $objectId); |
|
1381 | - $this->updateProperties($targetCalendarId, $object['uri'], $object['calendardata'], $calendarType); |
|
1382 | - |
|
1383 | - $this->addChange($sourceCalendarId, $object['uri'], 1, $calendarType); |
|
1384 | - $this->addChange($targetCalendarId, $object['uri'], 3, $calendarType); |
|
1385 | - |
|
1386 | - $object = $this->getCalendarObjectById($newPrincipalUri, $objectId); |
|
1387 | - // Calendar Object wasn't found - possibly because it was deleted in the meantime by a different client |
|
1388 | - if (empty($object)) { |
|
1389 | - return false; |
|
1390 | - } |
|
1391 | - |
|
1392 | - $targetCalendarRow = $this->getCalendarById($targetCalendarId); |
|
1393 | - // the calendar this event is being moved to does not exist any longer |
|
1394 | - if (empty($targetCalendarRow)) { |
|
1395 | - return false; |
|
1396 | - } |
|
1397 | - |
|
1398 | - if ($calendarType === self::CALENDAR_TYPE_CALENDAR) { |
|
1399 | - $sourceShares = $this->getShares($sourceCalendarId); |
|
1400 | - $targetShares = $this->getShares($targetCalendarId); |
|
1401 | - $sourceCalendarRow = $this->getCalendarById($sourceCalendarId); |
|
1402 | - $this->dispatcher->dispatchTyped(new CalendarObjectMovedEvent($sourceCalendarId, $sourceCalendarRow, $targetCalendarId, $targetCalendarRow, $sourceShares, $targetShares, $object)); |
|
1403 | - } |
|
1404 | - return true; |
|
1405 | - } |
|
1406 | - |
|
1407 | - |
|
1408 | - /** |
|
1409 | - * @param int $calendarObjectId |
|
1410 | - * @param int $classification |
|
1411 | - */ |
|
1412 | - public function setClassification($calendarObjectId, $classification) { |
|
1413 | - if (!in_array($classification, [ |
|
1414 | - self::CLASSIFICATION_PUBLIC, self::CLASSIFICATION_PRIVATE, self::CLASSIFICATION_CONFIDENTIAL |
|
1415 | - ])) { |
|
1416 | - throw new \InvalidArgumentException(); |
|
1417 | - } |
|
1418 | - $query = $this->db->getQueryBuilder(); |
|
1419 | - $query->update('calendarobjects') |
|
1420 | - ->set('classification', $query->createNamedParameter($classification)) |
|
1421 | - ->where($query->expr()->eq('id', $query->createNamedParameter($calendarObjectId))) |
|
1422 | - ->executeStatement(); |
|
1423 | - } |
|
1424 | - |
|
1425 | - /** |
|
1426 | - * Deletes an existing calendar object. |
|
1427 | - * |
|
1428 | - * The object uri is only the basename, or filename and not a full path. |
|
1429 | - * |
|
1430 | - * @param mixed $calendarId |
|
1431 | - * @param string $objectUri |
|
1432 | - * @param int $calendarType |
|
1433 | - * @param bool $forceDeletePermanently |
|
1434 | - * @return void |
|
1435 | - */ |
|
1436 | - public function deleteCalendarObject($calendarId, $objectUri, $calendarType = self::CALENDAR_TYPE_CALENDAR, bool $forceDeletePermanently = false) { |
|
1437 | - $data = $this->getCalendarObject($calendarId, $objectUri, $calendarType); |
|
1438 | - |
|
1439 | - if ($data === null) { |
|
1440 | - // Nothing to delete |
|
1441 | - return; |
|
1442 | - } |
|
1443 | - |
|
1444 | - if ($forceDeletePermanently || $this->config->getAppValue(Application::APP_ID, RetentionService::RETENTION_CONFIG_KEY) === '0') { |
|
1445 | - $stmt = $this->db->prepare('DELETE FROM `*PREFIX*calendarobjects` WHERE `calendarid` = ? AND `uri` = ? AND `calendartype` = ?'); |
|
1446 | - $stmt->execute([$calendarId, $objectUri, $calendarType]); |
|
1447 | - |
|
1448 | - $this->purgeProperties($calendarId, $data['id']); |
|
1449 | - |
|
1450 | - if ($calendarType === self::CALENDAR_TYPE_CALENDAR) { |
|
1451 | - $calendarRow = $this->getCalendarById($calendarId); |
|
1452 | - $shares = $this->getShares($calendarId); |
|
1453 | - |
|
1454 | - $this->dispatcher->dispatchTyped(new CalendarObjectDeletedEvent($calendarId, $calendarRow, $shares, $data)); |
|
1455 | - } else { |
|
1456 | - $subscriptionRow = $this->getSubscriptionById($calendarId); |
|
1457 | - |
|
1458 | - $this->dispatcher->dispatchTyped(new CachedCalendarObjectDeletedEvent($calendarId, $subscriptionRow, [], $data)); |
|
1459 | - } |
|
1460 | - } else { |
|
1461 | - $pathInfo = pathinfo($data['uri']); |
|
1462 | - if (!empty($pathInfo['extension'])) { |
|
1463 | - // Append a suffix to "free" the old URI for recreation |
|
1464 | - $newUri = sprintf( |
|
1465 | - "%s-deleted.%s", |
|
1466 | - $pathInfo['filename'], |
|
1467 | - $pathInfo['extension'] |
|
1468 | - ); |
|
1469 | - } else { |
|
1470 | - $newUri = sprintf( |
|
1471 | - "%s-deleted", |
|
1472 | - $pathInfo['filename'] |
|
1473 | - ); |
|
1474 | - } |
|
1475 | - |
|
1476 | - // Try to detect conflicts before the DB does |
|
1477 | - // As unlikely as it seems, this can happen when the user imports, then deletes, imports and deletes again |
|
1478 | - $newObject = $this->getCalendarObject($calendarId, $newUri, $calendarType); |
|
1479 | - if ($newObject !== null) { |
|
1480 | - throw new Forbidden("A calendar object with URI $newUri already exists in calendar $calendarId, therefore this object can't be moved into the trashbin"); |
|
1481 | - } |
|
1482 | - |
|
1483 | - $qb = $this->db->getQueryBuilder(); |
|
1484 | - $markObjectDeletedQuery = $qb->update('calendarobjects') |
|
1485 | - ->set('deleted_at', $qb->createNamedParameter(time(), IQueryBuilder::PARAM_INT)) |
|
1486 | - ->set('uri', $qb->createNamedParameter($newUri)) |
|
1487 | - ->where( |
|
1488 | - $qb->expr()->eq('calendarid', $qb->createNamedParameter($calendarId)), |
|
1489 | - $qb->expr()->eq('calendartype', $qb->createNamedParameter($calendarType, IQueryBuilder::PARAM_INT), IQueryBuilder::PARAM_INT), |
|
1490 | - $qb->expr()->eq('uri', $qb->createNamedParameter($objectUri)) |
|
1491 | - ); |
|
1492 | - $markObjectDeletedQuery->executeStatement(); |
|
1493 | - |
|
1494 | - $calendarData = $this->getCalendarById($calendarId); |
|
1495 | - if ($calendarData !== null) { |
|
1496 | - $this->dispatcher->dispatchTyped( |
|
1497 | - new CalendarObjectMovedToTrashEvent( |
|
1498 | - $calendarId, |
|
1499 | - $calendarData, |
|
1500 | - $this->getShares($calendarId), |
|
1501 | - $data |
|
1502 | - ) |
|
1503 | - ); |
|
1504 | - } |
|
1505 | - } |
|
1506 | - |
|
1507 | - $this->addChange($calendarId, $objectUri, 3, $calendarType); |
|
1508 | - } |
|
1509 | - |
|
1510 | - /** |
|
1511 | - * @param mixed $objectData |
|
1512 | - * |
|
1513 | - * @throws Forbidden |
|
1514 | - */ |
|
1515 | - public function restoreCalendarObject(array $objectData): void { |
|
1516 | - $id = (int) $objectData['id']; |
|
1517 | - $restoreUri = str_replace("-deleted.ics", ".ics", $objectData['uri']); |
|
1518 | - $targetObject = $this->getCalendarObject( |
|
1519 | - $objectData['calendarid'], |
|
1520 | - $restoreUri |
|
1521 | - ); |
|
1522 | - if ($targetObject !== null) { |
|
1523 | - throw new Forbidden("Can not restore calendar $id because a calendar object with the URI $restoreUri already exists"); |
|
1524 | - } |
|
1525 | - |
|
1526 | - $qb = $this->db->getQueryBuilder(); |
|
1527 | - $update = $qb->update('calendarobjects') |
|
1528 | - ->set('uri', $qb->createNamedParameter($restoreUri)) |
|
1529 | - ->set('deleted_at', $qb->createNamedParameter(null)) |
|
1530 | - ->where($qb->expr()->eq('id', $qb->createNamedParameter($id, IQueryBuilder::PARAM_INT), IQueryBuilder::PARAM_INT)); |
|
1531 | - $update->executeStatement(); |
|
1532 | - |
|
1533 | - // Make sure this change is tracked in the changes table |
|
1534 | - $qb2 = $this->db->getQueryBuilder(); |
|
1535 | - $selectObject = $qb2->select('calendardata', 'uri', 'calendarid', 'calendartype') |
|
1536 | - ->selectAlias('componenttype', 'component') |
|
1537 | - ->from('calendarobjects') |
|
1538 | - ->where($qb2->expr()->eq('id', $qb2->createNamedParameter($id, IQueryBuilder::PARAM_INT), IQueryBuilder::PARAM_INT)); |
|
1539 | - $result = $selectObject->executeQuery(); |
|
1540 | - $row = $result->fetch(); |
|
1541 | - $result->closeCursor(); |
|
1542 | - if ($row === false) { |
|
1543 | - // Welp, this should possibly not have happened, but let's ignore |
|
1544 | - return; |
|
1545 | - } |
|
1546 | - $this->addChange($row['calendarid'], $row['uri'], 1, (int) $row['calendartype']); |
|
1547 | - |
|
1548 | - $calendarRow = $this->getCalendarById((int) $row['calendarid']); |
|
1549 | - if ($calendarRow === null) { |
|
1550 | - throw new RuntimeException('Calendar object data that was just written can\'t be read back. Check your database configuration.'); |
|
1551 | - } |
|
1552 | - $this->dispatcher->dispatchTyped( |
|
1553 | - new CalendarObjectRestoredEvent( |
|
1554 | - (int) $objectData['calendarid'], |
|
1555 | - $calendarRow, |
|
1556 | - $this->getShares((int) $row['calendarid']), |
|
1557 | - $row |
|
1558 | - ) |
|
1559 | - ); |
|
1560 | - } |
|
1561 | - |
|
1562 | - /** |
|
1563 | - * Performs a calendar-query on the contents of this calendar. |
|
1564 | - * |
|
1565 | - * The calendar-query is defined in RFC4791 : CalDAV. Using the |
|
1566 | - * calendar-query it is possible for a client to request a specific set of |
|
1567 | - * object, based on contents of iCalendar properties, date-ranges and |
|
1568 | - * iCalendar component types (VTODO, VEVENT). |
|
1569 | - * |
|
1570 | - * This method should just return a list of (relative) urls that match this |
|
1571 | - * query. |
|
1572 | - * |
|
1573 | - * The list of filters are specified as an array. The exact array is |
|
1574 | - * documented by Sabre\CalDAV\CalendarQueryParser. |
|
1575 | - * |
|
1576 | - * Note that it is extremely likely that getCalendarObject for every path |
|
1577 | - * returned from this method will be called almost immediately after. You |
|
1578 | - * may want to anticipate this to speed up these requests. |
|
1579 | - * |
|
1580 | - * This method provides a default implementation, which parses *all* the |
|
1581 | - * iCalendar objects in the specified calendar. |
|
1582 | - * |
|
1583 | - * This default may well be good enough for personal use, and calendars |
|
1584 | - * that aren't very large. But if you anticipate high usage, big calendars |
|
1585 | - * or high loads, you are strongly advised to optimize certain paths. |
|
1586 | - * |
|
1587 | - * The best way to do so is override this method and to optimize |
|
1588 | - * specifically for 'common filters'. |
|
1589 | - * |
|
1590 | - * Requests that are extremely common are: |
|
1591 | - * * requests for just VEVENTS |
|
1592 | - * * requests for just VTODO |
|
1593 | - * * requests with a time-range-filter on either VEVENT or VTODO. |
|
1594 | - * |
|
1595 | - * ..and combinations of these requests. It may not be worth it to try to |
|
1596 | - * handle every possible situation and just rely on the (relatively |
|
1597 | - * easy to use) CalendarQueryValidator to handle the rest. |
|
1598 | - * |
|
1599 | - * Note that especially time-range-filters may be difficult to parse. A |
|
1600 | - * time-range filter specified on a VEVENT must for instance also handle |
|
1601 | - * recurrence rules correctly. |
|
1602 | - * A good example of how to interpret all these filters can also simply |
|
1603 | - * be found in Sabre\CalDAV\CalendarQueryFilter. This class is as correct |
|
1604 | - * as possible, so it gives you a good idea on what type of stuff you need |
|
1605 | - * to think of. |
|
1606 | - * |
|
1607 | - * @param mixed $calendarId |
|
1608 | - * @param array $filters |
|
1609 | - * @param int $calendarType |
|
1610 | - * @return array |
|
1611 | - */ |
|
1612 | - public function calendarQuery($calendarId, array $filters, $calendarType = self::CALENDAR_TYPE_CALENDAR):array { |
|
1613 | - $componentType = null; |
|
1614 | - $requirePostFilter = true; |
|
1615 | - $timeRange = null; |
|
1616 | - |
|
1617 | - // if no filters were specified, we don't need to filter after a query |
|
1618 | - if (!$filters['prop-filters'] && !$filters['comp-filters']) { |
|
1619 | - $requirePostFilter = false; |
|
1620 | - } |
|
1621 | - |
|
1622 | - // Figuring out if there's a component filter |
|
1623 | - if (count($filters['comp-filters']) > 0 && !$filters['comp-filters'][0]['is-not-defined']) { |
|
1624 | - $componentType = $filters['comp-filters'][0]['name']; |
|
1625 | - |
|
1626 | - // Checking if we need post-filters |
|
1627 | - if (!$filters['prop-filters'] && !$filters['comp-filters'][0]['comp-filters'] && !$filters['comp-filters'][0]['time-range'] && !$filters['comp-filters'][0]['prop-filters']) { |
|
1628 | - $requirePostFilter = false; |
|
1629 | - } |
|
1630 | - // There was a time-range filter |
|
1631 | - if ($componentType === 'VEVENT' && isset($filters['comp-filters'][0]['time-range']) && is_array($filters['comp-filters'][0]['time-range'])) { |
|
1632 | - $timeRange = $filters['comp-filters'][0]['time-range']; |
|
1633 | - |
|
1634 | - // If start time OR the end time is not specified, we can do a |
|
1635 | - // 100% accurate mysql query. |
|
1636 | - if (!$filters['prop-filters'] && !$filters['comp-filters'][0]['comp-filters'] && !$filters['comp-filters'][0]['prop-filters'] && (!$timeRange['start'] || !$timeRange['end'])) { |
|
1637 | - $requirePostFilter = false; |
|
1638 | - } |
|
1639 | - } |
|
1640 | - } |
|
1641 | - $columns = ['uri']; |
|
1642 | - if ($requirePostFilter) { |
|
1643 | - $columns = ['uri', 'calendardata']; |
|
1644 | - } |
|
1645 | - $query = $this->db->getQueryBuilder(); |
|
1646 | - $query->select($columns) |
|
1647 | - ->from('calendarobjects') |
|
1648 | - ->where($query->expr()->eq('calendarid', $query->createNamedParameter($calendarId))) |
|
1649 | - ->andWhere($query->expr()->eq('calendartype', $query->createNamedParameter($calendarType))) |
|
1650 | - ->andWhere($query->expr()->isNull('deleted_at')); |
|
1651 | - |
|
1652 | - if ($componentType) { |
|
1653 | - $query->andWhere($query->expr()->eq('componenttype', $query->createNamedParameter($componentType))); |
|
1654 | - } |
|
1655 | - |
|
1656 | - if ($timeRange && $timeRange['start']) { |
|
1657 | - $query->andWhere($query->expr()->gt('lastoccurence', $query->createNamedParameter($timeRange['start']->getTimeStamp()))); |
|
1658 | - } |
|
1659 | - if ($timeRange && $timeRange['end']) { |
|
1660 | - $query->andWhere($query->expr()->lt('firstoccurence', $query->createNamedParameter($timeRange['end']->getTimeStamp()))); |
|
1661 | - } |
|
1662 | - |
|
1663 | - $stmt = $query->executeQuery(); |
|
1664 | - |
|
1665 | - $result = []; |
|
1666 | - while ($row = $stmt->fetch()) { |
|
1667 | - if ($requirePostFilter) { |
|
1668 | - // validateFilterForObject will parse the calendar data |
|
1669 | - // catch parsing errors |
|
1670 | - try { |
|
1671 | - $matches = $this->validateFilterForObject($row, $filters); |
|
1672 | - } catch (ParseException $ex) { |
|
1673 | - $this->logger->error('Caught parsing exception for calendar data. This usually indicates invalid calendar data. calendar-id:'.$calendarId.' uri:'.$row['uri'], [ |
|
1674 | - 'app' => 'dav', |
|
1675 | - 'exception' => $ex, |
|
1676 | - ]); |
|
1677 | - continue; |
|
1678 | - } catch (InvalidDataException $ex) { |
|
1679 | - $this->logger->error('Caught invalid data exception for calendar data. This usually indicates invalid calendar data. calendar-id:'.$calendarId.' uri:'.$row['uri'], [ |
|
1680 | - 'app' => 'dav', |
|
1681 | - 'exception' => $ex, |
|
1682 | - ]); |
|
1683 | - continue; |
|
1684 | - } |
|
1685 | - |
|
1686 | - if (!$matches) { |
|
1687 | - continue; |
|
1688 | - } |
|
1689 | - } |
|
1690 | - $result[] = $row['uri']; |
|
1691 | - } |
|
1692 | - |
|
1693 | - return $result; |
|
1694 | - } |
|
1695 | - |
|
1696 | - /** |
|
1697 | - * custom Nextcloud search extension for CalDAV |
|
1698 | - * |
|
1699 | - * TODO - this should optionally cover cached calendar objects as well |
|
1700 | - * |
|
1701 | - * @param string $principalUri |
|
1702 | - * @param array $filters |
|
1703 | - * @param integer|null $limit |
|
1704 | - * @param integer|null $offset |
|
1705 | - * @return array |
|
1706 | - */ |
|
1707 | - public function calendarSearch($principalUri, array $filters, $limit = null, $offset = null) { |
|
1708 | - $calendars = $this->getCalendarsForUser($principalUri); |
|
1709 | - $ownCalendars = []; |
|
1710 | - $sharedCalendars = []; |
|
1711 | - |
|
1712 | - $uriMapper = []; |
|
1713 | - |
|
1714 | - foreach ($calendars as $calendar) { |
|
1715 | - if ($calendar['{http://owncloud.org/ns}owner-principal'] === $principalUri) { |
|
1716 | - $ownCalendars[] = $calendar['id']; |
|
1717 | - } else { |
|
1718 | - $sharedCalendars[] = $calendar['id']; |
|
1719 | - } |
|
1720 | - $uriMapper[$calendar['id']] = $calendar['uri']; |
|
1721 | - } |
|
1722 | - if (count($ownCalendars) === 0 && count($sharedCalendars) === 0) { |
|
1723 | - return []; |
|
1724 | - } |
|
1725 | - |
|
1726 | - $query = $this->db->getQueryBuilder(); |
|
1727 | - // Calendar id expressions |
|
1728 | - $calendarExpressions = []; |
|
1729 | - foreach ($ownCalendars as $id) { |
|
1730 | - $calendarExpressions[] = $query->expr()->andX( |
|
1731 | - $query->expr()->eq('c.calendarid', |
|
1732 | - $query->createNamedParameter($id)), |
|
1733 | - $query->expr()->eq('c.calendartype', |
|
1734 | - $query->createNamedParameter(self::CALENDAR_TYPE_CALENDAR))); |
|
1735 | - } |
|
1736 | - foreach ($sharedCalendars as $id) { |
|
1737 | - $calendarExpressions[] = $query->expr()->andX( |
|
1738 | - $query->expr()->eq('c.calendarid', |
|
1739 | - $query->createNamedParameter($id)), |
|
1740 | - $query->expr()->eq('c.classification', |
|
1741 | - $query->createNamedParameter(self::CLASSIFICATION_PUBLIC)), |
|
1742 | - $query->expr()->eq('c.calendartype', |
|
1743 | - $query->createNamedParameter(self::CALENDAR_TYPE_CALENDAR))); |
|
1744 | - } |
|
1745 | - |
|
1746 | - if (count($calendarExpressions) === 1) { |
|
1747 | - $calExpr = $calendarExpressions[0]; |
|
1748 | - } else { |
|
1749 | - $calExpr = call_user_func_array([$query->expr(), 'orX'], $calendarExpressions); |
|
1750 | - } |
|
1751 | - |
|
1752 | - // Component expressions |
|
1753 | - $compExpressions = []; |
|
1754 | - foreach ($filters['comps'] as $comp) { |
|
1755 | - $compExpressions[] = $query->expr() |
|
1756 | - ->eq('c.componenttype', $query->createNamedParameter($comp)); |
|
1757 | - } |
|
1758 | - |
|
1759 | - if (count($compExpressions) === 1) { |
|
1760 | - $compExpr = $compExpressions[0]; |
|
1761 | - } else { |
|
1762 | - $compExpr = call_user_func_array([$query->expr(), 'orX'], $compExpressions); |
|
1763 | - } |
|
1764 | - |
|
1765 | - if (!isset($filters['props'])) { |
|
1766 | - $filters['props'] = []; |
|
1767 | - } |
|
1768 | - if (!isset($filters['params'])) { |
|
1769 | - $filters['params'] = []; |
|
1770 | - } |
|
1771 | - |
|
1772 | - $propParamExpressions = []; |
|
1773 | - foreach ($filters['props'] as $prop) { |
|
1774 | - $propParamExpressions[] = $query->expr()->andX( |
|
1775 | - $query->expr()->eq('i.name', $query->createNamedParameter($prop)), |
|
1776 | - $query->expr()->isNull('i.parameter') |
|
1777 | - ); |
|
1778 | - } |
|
1779 | - foreach ($filters['params'] as $param) { |
|
1780 | - $propParamExpressions[] = $query->expr()->andX( |
|
1781 | - $query->expr()->eq('i.name', $query->createNamedParameter($param['property'])), |
|
1782 | - $query->expr()->eq('i.parameter', $query->createNamedParameter($param['parameter'])) |
|
1783 | - ); |
|
1784 | - } |
|
1785 | - |
|
1786 | - if (count($propParamExpressions) === 1) { |
|
1787 | - $propParamExpr = $propParamExpressions[0]; |
|
1788 | - } else { |
|
1789 | - $propParamExpr = call_user_func_array([$query->expr(), 'orX'], $propParamExpressions); |
|
1790 | - } |
|
1791 | - |
|
1792 | - $query->select(['c.calendarid', 'c.uri']) |
|
1793 | - ->from($this->dbObjectPropertiesTable, 'i') |
|
1794 | - ->join('i', 'calendarobjects', 'c', $query->expr()->eq('i.objectid', 'c.id')) |
|
1795 | - ->where($calExpr) |
|
1796 | - ->andWhere($compExpr) |
|
1797 | - ->andWhere($propParamExpr) |
|
1798 | - ->andWhere($query->expr()->iLike('i.value', |
|
1799 | - $query->createNamedParameter('%'.$this->db->escapeLikeParameter($filters['search-term']).'%'))) |
|
1800 | - ->andWhere($query->expr()->isNull('deleted_at')); |
|
1801 | - |
|
1802 | - if ($offset) { |
|
1803 | - $query->setFirstResult($offset); |
|
1804 | - } |
|
1805 | - if ($limit) { |
|
1806 | - $query->setMaxResults($limit); |
|
1807 | - } |
|
1808 | - |
|
1809 | - $stmt = $query->executeQuery(); |
|
1810 | - |
|
1811 | - $result = []; |
|
1812 | - while ($row = $stmt->fetch()) { |
|
1813 | - $path = $uriMapper[$row['calendarid']] . '/' . $row['uri']; |
|
1814 | - if (!in_array($path, $result)) { |
|
1815 | - $result[] = $path; |
|
1816 | - } |
|
1817 | - } |
|
1818 | - |
|
1819 | - return $result; |
|
1820 | - } |
|
1821 | - |
|
1822 | - /** |
|
1823 | - * used for Nextcloud's calendar API |
|
1824 | - * |
|
1825 | - * @param array $calendarInfo |
|
1826 | - * @param string $pattern |
|
1827 | - * @param array $searchProperties |
|
1828 | - * @param array $options |
|
1829 | - * @param integer|null $limit |
|
1830 | - * @param integer|null $offset |
|
1831 | - * |
|
1832 | - * @return array |
|
1833 | - */ |
|
1834 | - public function search(array $calendarInfo, $pattern, array $searchProperties, |
|
1835 | - array $options, $limit, $offset) { |
|
1836 | - $outerQuery = $this->db->getQueryBuilder(); |
|
1837 | - $innerQuery = $this->db->getQueryBuilder(); |
|
1838 | - |
|
1839 | - $innerQuery->selectDistinct('op.objectid') |
|
1840 | - ->from($this->dbObjectPropertiesTable, 'op') |
|
1841 | - ->andWhere($innerQuery->expr()->eq('op.calendarid', |
|
1842 | - $outerQuery->createNamedParameter($calendarInfo['id']))) |
|
1843 | - ->andWhere($innerQuery->expr()->eq('op.calendartype', |
|
1844 | - $outerQuery->createNamedParameter(self::CALENDAR_TYPE_CALENDAR))); |
|
1845 | - |
|
1846 | - // only return public items for shared calendars for now |
|
1847 | - if (isset($calendarInfo['{http://owncloud.org/ns}owner-principal']) === false || $calendarInfo['principaluri'] !== $calendarInfo['{http://owncloud.org/ns}owner-principal']) { |
|
1848 | - $innerQuery->andWhere($innerQuery->expr()->eq('c.classification', |
|
1849 | - $outerQuery->createNamedParameter(self::CLASSIFICATION_PUBLIC))); |
|
1850 | - } |
|
1851 | - |
|
1852 | - if (!empty($searchProperties)) { |
|
1853 | - $or = $innerQuery->expr()->orX(); |
|
1854 | - foreach ($searchProperties as $searchProperty) { |
|
1855 | - $or->add($innerQuery->expr()->eq('op.name', |
|
1856 | - $outerQuery->createNamedParameter($searchProperty))); |
|
1857 | - } |
|
1858 | - $innerQuery->andWhere($or); |
|
1859 | - } |
|
1860 | - |
|
1861 | - if ($pattern !== '') { |
|
1862 | - $innerQuery->andWhere($innerQuery->expr()->iLike('op.value', |
|
1863 | - $outerQuery->createNamedParameter('%' . |
|
1864 | - $this->db->escapeLikeParameter($pattern) . '%'))); |
|
1865 | - } |
|
1866 | - |
|
1867 | - $outerQuery->select('c.id', 'c.calendardata', 'c.componenttype', 'c.uid', 'c.uri') |
|
1868 | - ->from('calendarobjects', 'c') |
|
1869 | - ->where($outerQuery->expr()->isNull('deleted_at')); |
|
1870 | - |
|
1871 | - if (isset($options['timerange'])) { |
|
1872 | - if (isset($options['timerange']['start']) && $options['timerange']['start'] instanceof DateTimeInterface) { |
|
1873 | - $outerQuery->andWhere($outerQuery->expr()->gt('lastoccurence', |
|
1874 | - $outerQuery->createNamedParameter($options['timerange']['start']->getTimeStamp()))); |
|
1875 | - } |
|
1876 | - if (isset($options['timerange']['end']) && $options['timerange']['end'] instanceof DateTimeInterface) { |
|
1877 | - $outerQuery->andWhere($outerQuery->expr()->lt('firstoccurence', |
|
1878 | - $outerQuery->createNamedParameter($options['timerange']['end']->getTimeStamp()))); |
|
1879 | - } |
|
1880 | - } |
|
1881 | - |
|
1882 | - if(isset($options['uid'])) { |
|
1883 | - $outerQuery->andWhere($outerQuery->expr()->eq('uid', $outerQuery->createNamedParameter($options['uid']))); |
|
1884 | - } |
|
1885 | - |
|
1886 | - if (!empty($options['types'])) { |
|
1887 | - $or = $outerQuery->expr()->orX(); |
|
1888 | - foreach ($options['types'] as $type) { |
|
1889 | - $or->add($outerQuery->expr()->eq('componenttype', |
|
1890 | - $outerQuery->createNamedParameter($type))); |
|
1891 | - } |
|
1892 | - $outerQuery->andWhere($or); |
|
1893 | - } |
|
1894 | - |
|
1895 | - $outerQuery->andWhere($outerQuery->expr()->in('c.id', $outerQuery->createFunction($innerQuery->getSQL()))); |
|
1896 | - |
|
1897 | - if ($offset) { |
|
1898 | - $outerQuery->setFirstResult($offset); |
|
1899 | - } |
|
1900 | - if ($limit) { |
|
1901 | - $outerQuery->setMaxResults($limit); |
|
1902 | - } |
|
1903 | - |
|
1904 | - $result = $outerQuery->executeQuery(); |
|
1905 | - $calendarObjects = array_filter($result->fetchAll(), function (array $row) use ($options) { |
|
1906 | - $start = $options['timerange']['start'] ?? null; |
|
1907 | - $end = $options['timerange']['end'] ?? null; |
|
1908 | - |
|
1909 | - if ($start === null || !($start instanceof DateTimeInterface) || $end === null || !($end instanceof DateTimeInterface)) { |
|
1910 | - // No filter required |
|
1911 | - return true; |
|
1912 | - } |
|
1913 | - |
|
1914 | - $isValid = $this->validateFilterForObject($row, [ |
|
1915 | - 'name' => 'VCALENDAR', |
|
1916 | - 'comp-filters' => [ |
|
1917 | - [ |
|
1918 | - 'name' => 'VEVENT', |
|
1919 | - 'comp-filters' => [], |
|
1920 | - 'prop-filters' => [], |
|
1921 | - 'is-not-defined' => false, |
|
1922 | - 'time-range' => [ |
|
1923 | - 'start' => $start, |
|
1924 | - 'end' => $end, |
|
1925 | - ], |
|
1926 | - ], |
|
1927 | - ], |
|
1928 | - 'prop-filters' => [], |
|
1929 | - 'is-not-defined' => false, |
|
1930 | - 'time-range' => null, |
|
1931 | - ]); |
|
1932 | - if (is_resource($row['calendardata'])) { |
|
1933 | - // Put the stream back to the beginning so it can be read another time |
|
1934 | - rewind($row['calendardata']); |
|
1935 | - } |
|
1936 | - return $isValid; |
|
1937 | - }); |
|
1938 | - $result->closeCursor(); |
|
1939 | - |
|
1940 | - return array_map(function ($o) { |
|
1941 | - $calendarData = Reader::read($o['calendardata']); |
|
1942 | - $comps = $calendarData->getComponents(); |
|
1943 | - $objects = []; |
|
1944 | - $timezones = []; |
|
1945 | - foreach ($comps as $comp) { |
|
1946 | - if ($comp instanceof VTimeZone) { |
|
1947 | - $timezones[] = $comp; |
|
1948 | - } else { |
|
1949 | - $objects[] = $comp; |
|
1950 | - } |
|
1951 | - } |
|
1952 | - |
|
1953 | - return [ |
|
1954 | - 'id' => $o['id'], |
|
1955 | - 'type' => $o['componenttype'], |
|
1956 | - 'uid' => $o['uid'], |
|
1957 | - 'uri' => $o['uri'], |
|
1958 | - 'objects' => array_map(function ($c) { |
|
1959 | - return $this->transformSearchData($c); |
|
1960 | - }, $objects), |
|
1961 | - 'timezones' => array_map(function ($c) { |
|
1962 | - return $this->transformSearchData($c); |
|
1963 | - }, $timezones), |
|
1964 | - ]; |
|
1965 | - }, $calendarObjects); |
|
1966 | - } |
|
1967 | - |
|
1968 | - /** |
|
1969 | - * @param Component $comp |
|
1970 | - * @return array |
|
1971 | - */ |
|
1972 | - private function transformSearchData(Component $comp) { |
|
1973 | - $data = []; |
|
1974 | - /** @var Component[] $subComponents */ |
|
1975 | - $subComponents = $comp->getComponents(); |
|
1976 | - /** @var Property[] $properties */ |
|
1977 | - $properties = array_filter($comp->children(), function ($c) { |
|
1978 | - return $c instanceof Property; |
|
1979 | - }); |
|
1980 | - $validationRules = $comp->getValidationRules(); |
|
1981 | - |
|
1982 | - foreach ($subComponents as $subComponent) { |
|
1983 | - $name = $subComponent->name; |
|
1984 | - if (!isset($data[$name])) { |
|
1985 | - $data[$name] = []; |
|
1986 | - } |
|
1987 | - $data[$name][] = $this->transformSearchData($subComponent); |
|
1988 | - } |
|
1989 | - |
|
1990 | - foreach ($properties as $property) { |
|
1991 | - $name = $property->name; |
|
1992 | - if (!isset($validationRules[$name])) { |
|
1993 | - $validationRules[$name] = '*'; |
|
1994 | - } |
|
1995 | - |
|
1996 | - $rule = $validationRules[$property->name]; |
|
1997 | - if ($rule === '+' || $rule === '*') { // multiple |
|
1998 | - if (!isset($data[$name])) { |
|
1999 | - $data[$name] = []; |
|
2000 | - } |
|
2001 | - |
|
2002 | - $data[$name][] = $this->transformSearchProperty($property); |
|
2003 | - } else { // once |
|
2004 | - $data[$name] = $this->transformSearchProperty($property); |
|
2005 | - } |
|
2006 | - } |
|
2007 | - |
|
2008 | - return $data; |
|
2009 | - } |
|
2010 | - |
|
2011 | - /** |
|
2012 | - * @param Property $prop |
|
2013 | - * @return array |
|
2014 | - */ |
|
2015 | - private function transformSearchProperty(Property $prop) { |
|
2016 | - // No need to check Date, as it extends DateTime |
|
2017 | - if ($prop instanceof Property\ICalendar\DateTime) { |
|
2018 | - $value = $prop->getDateTime(); |
|
2019 | - } else { |
|
2020 | - $value = $prop->getValue(); |
|
2021 | - } |
|
2022 | - |
|
2023 | - return [ |
|
2024 | - $value, |
|
2025 | - $prop->parameters() |
|
2026 | - ]; |
|
2027 | - } |
|
2028 | - |
|
2029 | - /** |
|
2030 | - * @param string $principalUri |
|
2031 | - * @param string $pattern |
|
2032 | - * @param array $componentTypes |
|
2033 | - * @param array $searchProperties |
|
2034 | - * @param array $searchParameters |
|
2035 | - * @param array $options |
|
2036 | - * @return array |
|
2037 | - */ |
|
2038 | - public function searchPrincipalUri(string $principalUri, |
|
2039 | - string $pattern, |
|
2040 | - array $componentTypes, |
|
2041 | - array $searchProperties, |
|
2042 | - array $searchParameters, |
|
2043 | - array $options = []): array { |
|
2044 | - $escapePattern = !\array_key_exists('escape_like_param', $options) || $options['escape_like_param'] !== false; |
|
2045 | - |
|
2046 | - $calendarObjectIdQuery = $this->db->getQueryBuilder(); |
|
2047 | - $calendarOr = $calendarObjectIdQuery->expr()->orX(); |
|
2048 | - $searchOr = $calendarObjectIdQuery->expr()->orX(); |
|
2049 | - |
|
2050 | - // Fetch calendars and subscription |
|
2051 | - $calendars = $this->getCalendarsForUser($principalUri); |
|
2052 | - $subscriptions = $this->getSubscriptionsForUser($principalUri); |
|
2053 | - foreach ($calendars as $calendar) { |
|
2054 | - $calendarAnd = $calendarObjectIdQuery->expr()->andX(); |
|
2055 | - $calendarAnd->add($calendarObjectIdQuery->expr()->eq('cob.calendarid', $calendarObjectIdQuery->createNamedParameter((int)$calendar['id']))); |
|
2056 | - $calendarAnd->add($calendarObjectIdQuery->expr()->eq('cob.calendartype', $calendarObjectIdQuery->createNamedParameter(self::CALENDAR_TYPE_CALENDAR))); |
|
2057 | - |
|
2058 | - // If it's shared, limit search to public events |
|
2059 | - if (isset($calendar['{http://owncloud.org/ns}owner-principal']) |
|
2060 | - && $calendar['principaluri'] !== $calendar['{http://owncloud.org/ns}owner-principal']) { |
|
2061 | - $calendarAnd->add($calendarObjectIdQuery->expr()->eq('co.classification', $calendarObjectIdQuery->createNamedParameter(self::CLASSIFICATION_PUBLIC))); |
|
2062 | - } |
|
2063 | - |
|
2064 | - $calendarOr->add($calendarAnd); |
|
2065 | - } |
|
2066 | - foreach ($subscriptions as $subscription) { |
|
2067 | - $subscriptionAnd = $calendarObjectIdQuery->expr()->andX(); |
|
2068 | - $subscriptionAnd->add($calendarObjectIdQuery->expr()->eq('cob.calendarid', $calendarObjectIdQuery->createNamedParameter((int)$subscription['id']))); |
|
2069 | - $subscriptionAnd->add($calendarObjectIdQuery->expr()->eq('cob.calendartype', $calendarObjectIdQuery->createNamedParameter(self::CALENDAR_TYPE_SUBSCRIPTION))); |
|
2070 | - |
|
2071 | - // If it's shared, limit search to public events |
|
2072 | - if (isset($subscription['{http://owncloud.org/ns}owner-principal']) |
|
2073 | - && $subscription['principaluri'] !== $subscription['{http://owncloud.org/ns}owner-principal']) { |
|
2074 | - $subscriptionAnd->add($calendarObjectIdQuery->expr()->eq('co.classification', $calendarObjectIdQuery->createNamedParameter(self::CLASSIFICATION_PUBLIC))); |
|
2075 | - } |
|
2076 | - |
|
2077 | - $calendarOr->add($subscriptionAnd); |
|
2078 | - } |
|
2079 | - |
|
2080 | - foreach ($searchProperties as $property) { |
|
2081 | - $propertyAnd = $calendarObjectIdQuery->expr()->andX(); |
|
2082 | - $propertyAnd->add($calendarObjectIdQuery->expr()->eq('cob.name', $calendarObjectIdQuery->createNamedParameter($property, IQueryBuilder::PARAM_STR))); |
|
2083 | - $propertyAnd->add($calendarObjectIdQuery->expr()->isNull('cob.parameter')); |
|
2084 | - |
|
2085 | - $searchOr->add($propertyAnd); |
|
2086 | - } |
|
2087 | - foreach ($searchParameters as $property => $parameter) { |
|
2088 | - $parameterAnd = $calendarObjectIdQuery->expr()->andX(); |
|
2089 | - $parameterAnd->add($calendarObjectIdQuery->expr()->eq('cob.name', $calendarObjectIdQuery->createNamedParameter($property, IQueryBuilder::PARAM_STR))); |
|
2090 | - $parameterAnd->add($calendarObjectIdQuery->expr()->eq('cob.parameter', $calendarObjectIdQuery->createNamedParameter($parameter, IQueryBuilder::PARAM_STR_ARRAY))); |
|
2091 | - |
|
2092 | - $searchOr->add($parameterAnd); |
|
2093 | - } |
|
2094 | - |
|
2095 | - if ($calendarOr->count() === 0) { |
|
2096 | - return []; |
|
2097 | - } |
|
2098 | - if ($searchOr->count() === 0) { |
|
2099 | - return []; |
|
2100 | - } |
|
2101 | - |
|
2102 | - $calendarObjectIdQuery->selectDistinct('cob.objectid') |
|
2103 | - ->from($this->dbObjectPropertiesTable, 'cob') |
|
2104 | - ->leftJoin('cob', 'calendarobjects', 'co', $calendarObjectIdQuery->expr()->eq('co.id', 'cob.objectid')) |
|
2105 | - ->andWhere($calendarObjectIdQuery->expr()->in('co.componenttype', $calendarObjectIdQuery->createNamedParameter($componentTypes, IQueryBuilder::PARAM_STR_ARRAY))) |
|
2106 | - ->andWhere($calendarOr) |
|
2107 | - ->andWhere($searchOr) |
|
2108 | - ->andWhere($calendarObjectIdQuery->expr()->isNull('deleted_at')); |
|
2109 | - |
|
2110 | - if ('' !== $pattern) { |
|
2111 | - if (!$escapePattern) { |
|
2112 | - $calendarObjectIdQuery->andWhere($calendarObjectIdQuery->expr()->ilike('cob.value', $calendarObjectIdQuery->createNamedParameter($pattern))); |
|
2113 | - } else { |
|
2114 | - $calendarObjectIdQuery->andWhere($calendarObjectIdQuery->expr()->ilike('cob.value', $calendarObjectIdQuery->createNamedParameter('%' . $this->db->escapeLikeParameter($pattern) . '%'))); |
|
2115 | - } |
|
2116 | - } |
|
2117 | - |
|
2118 | - if (isset($options['limit'])) { |
|
2119 | - $calendarObjectIdQuery->setMaxResults($options['limit']); |
|
2120 | - } |
|
2121 | - if (isset($options['offset'])) { |
|
2122 | - $calendarObjectIdQuery->setFirstResult($options['offset']); |
|
2123 | - } |
|
2124 | - |
|
2125 | - $result = $calendarObjectIdQuery->executeQuery(); |
|
2126 | - $matches = $result->fetchAll(); |
|
2127 | - $result->closeCursor(); |
|
2128 | - $matches = array_map(static function (array $match):int { |
|
2129 | - return (int) $match['objectid']; |
|
2130 | - }, $matches); |
|
2131 | - |
|
2132 | - $query = $this->db->getQueryBuilder(); |
|
2133 | - $query->select('calendardata', 'uri', 'calendarid', 'calendartype') |
|
2134 | - ->from('calendarobjects') |
|
2135 | - ->where($query->expr()->in('id', $query->createNamedParameter($matches, IQueryBuilder::PARAM_INT_ARRAY))); |
|
2136 | - |
|
2137 | - $result = $query->executeQuery(); |
|
2138 | - $calendarObjects = $result->fetchAll(); |
|
2139 | - $result->closeCursor(); |
|
2140 | - |
|
2141 | - return array_map(function (array $array): array { |
|
2142 | - $array['calendarid'] = (int)$array['calendarid']; |
|
2143 | - $array['calendartype'] = (int)$array['calendartype']; |
|
2144 | - $array['calendardata'] = $this->readBlob($array['calendardata']); |
|
2145 | - |
|
2146 | - return $array; |
|
2147 | - }, $calendarObjects); |
|
2148 | - } |
|
2149 | - |
|
2150 | - /** |
|
2151 | - * Searches through all of a users calendars and calendar objects to find |
|
2152 | - * an object with a specific UID. |
|
2153 | - * |
|
2154 | - * This method should return the path to this object, relative to the |
|
2155 | - * calendar home, so this path usually only contains two parts: |
|
2156 | - * |
|
2157 | - * calendarpath/objectpath.ics |
|
2158 | - * |
|
2159 | - * If the uid is not found, return null. |
|
2160 | - * |
|
2161 | - * This method should only consider * objects that the principal owns, so |
|
2162 | - * any calendars owned by other principals that also appear in this |
|
2163 | - * collection should be ignored. |
|
2164 | - * |
|
2165 | - * @param string $principalUri |
|
2166 | - * @param string $uid |
|
2167 | - * @return string|null |
|
2168 | - */ |
|
2169 | - public function getCalendarObjectByUID($principalUri, $uid) { |
|
2170 | - $query = $this->db->getQueryBuilder(); |
|
2171 | - $query->selectAlias('c.uri', 'calendaruri')->selectAlias('co.uri', 'objecturi') |
|
2172 | - ->from('calendarobjects', 'co') |
|
2173 | - ->leftJoin('co', 'calendars', 'c', $query->expr()->eq('co.calendarid', 'c.id')) |
|
2174 | - ->where($query->expr()->eq('c.principaluri', $query->createNamedParameter($principalUri))) |
|
2175 | - ->andWhere($query->expr()->eq('co.uid', $query->createNamedParameter($uid))) |
|
2176 | - ->andWhere($query->expr()->isNull('co.deleted_at')); |
|
2177 | - $stmt = $query->executeQuery(); |
|
2178 | - $row = $stmt->fetch(); |
|
2179 | - $stmt->closeCursor(); |
|
2180 | - if ($row) { |
|
2181 | - return $row['calendaruri'] . '/' . $row['objecturi']; |
|
2182 | - } |
|
2183 | - |
|
2184 | - return null; |
|
2185 | - } |
|
2186 | - |
|
2187 | - public function getCalendarObjectById(string $principalUri, int $id): ?array { |
|
2188 | - $query = $this->db->getQueryBuilder(); |
|
2189 | - $query->select(['co.id', 'co.uri', 'co.lastmodified', 'co.etag', 'co.calendarid', 'co.size', 'co.calendardata', 'co.componenttype', 'co.classification', 'co.deleted_at']) |
|
2190 | - ->selectAlias('c.uri', 'calendaruri') |
|
2191 | - ->from('calendarobjects', 'co') |
|
2192 | - ->join('co', 'calendars', 'c', $query->expr()->eq('c.id', 'co.calendarid', IQueryBuilder::PARAM_INT)) |
|
2193 | - ->where($query->expr()->eq('c.principaluri', $query->createNamedParameter($principalUri))) |
|
2194 | - ->andWhere($query->expr()->eq('co.id', $query->createNamedParameter($id, IQueryBuilder::PARAM_INT), IQueryBuilder::PARAM_INT)); |
|
2195 | - $stmt = $query->executeQuery(); |
|
2196 | - $row = $stmt->fetch(); |
|
2197 | - $stmt->closeCursor(); |
|
2198 | - |
|
2199 | - if (!$row) { |
|
2200 | - return null; |
|
2201 | - } |
|
2202 | - |
|
2203 | - return [ |
|
2204 | - 'id' => $row['id'], |
|
2205 | - 'uri' => $row['uri'], |
|
2206 | - 'lastmodified' => $row['lastmodified'], |
|
2207 | - 'etag' => '"' . $row['etag'] . '"', |
|
2208 | - 'calendarid' => $row['calendarid'], |
|
2209 | - 'calendaruri' => $row['calendaruri'], |
|
2210 | - 'size' => (int)$row['size'], |
|
2211 | - 'calendardata' => $this->readBlob($row['calendardata']), |
|
2212 | - 'component' => strtolower($row['componenttype']), |
|
2213 | - 'classification' => (int)$row['classification'], |
|
2214 | - 'deleted_at' => isset($row['deleted_at']) ? ((int) $row['deleted_at']) : null, |
|
2215 | - ]; |
|
2216 | - } |
|
2217 | - |
|
2218 | - /** |
|
2219 | - * The getChanges method returns all the changes that have happened, since |
|
2220 | - * the specified syncToken in the specified calendar. |
|
2221 | - * |
|
2222 | - * This function should return an array, such as the following: |
|
2223 | - * |
|
2224 | - * [ |
|
2225 | - * 'syncToken' => 'The current synctoken', |
|
2226 | - * 'added' => [ |
|
2227 | - * 'new.txt', |
|
2228 | - * ], |
|
2229 | - * 'modified' => [ |
|
2230 | - * 'modified.txt', |
|
2231 | - * ], |
|
2232 | - * 'deleted' => [ |
|
2233 | - * 'foo.php.bak', |
|
2234 | - * 'old.txt' |
|
2235 | - * ] |
|
2236 | - * ); |
|
2237 | - * |
|
2238 | - * The returned syncToken property should reflect the *current* syncToken |
|
2239 | - * of the calendar, as reported in the {http://sabredav.org/ns}sync-token |
|
2240 | - * property This is * needed here too, to ensure the operation is atomic. |
|
2241 | - * |
|
2242 | - * If the $syncToken argument is specified as null, this is an initial |
|
2243 | - * sync, and all members should be reported. |
|
2244 | - * |
|
2245 | - * The modified property is an array of nodenames that have changed since |
|
2246 | - * the last token. |
|
2247 | - * |
|
2248 | - * The deleted property is an array with nodenames, that have been deleted |
|
2249 | - * from collection. |
|
2250 | - * |
|
2251 | - * The $syncLevel argument is basically the 'depth' of the report. If it's |
|
2252 | - * 1, you only have to report changes that happened only directly in |
|
2253 | - * immediate descendants. If it's 2, it should also include changes from |
|
2254 | - * the nodes below the child collections. (grandchildren) |
|
2255 | - * |
|
2256 | - * The $limit argument allows a client to specify how many results should |
|
2257 | - * be returned at most. If the limit is not specified, it should be treated |
|
2258 | - * as infinite. |
|
2259 | - * |
|
2260 | - * If the limit (infinite or not) is higher than you're willing to return, |
|
2261 | - * you should throw a Sabre\DAV\Exception\TooMuchMatches() exception. |
|
2262 | - * |
|
2263 | - * If the syncToken is expired (due to data cleanup) or unknown, you must |
|
2264 | - * return null. |
|
2265 | - * |
|
2266 | - * The limit is 'suggestive'. You are free to ignore it. |
|
2267 | - * |
|
2268 | - * @param string $calendarId |
|
2269 | - * @param string $syncToken |
|
2270 | - * @param int $syncLevel |
|
2271 | - * @param int|null $limit |
|
2272 | - * @param int $calendarType |
|
2273 | - * @return array |
|
2274 | - */ |
|
2275 | - public function getChangesForCalendar($calendarId, $syncToken, $syncLevel, $limit = null, $calendarType = self::CALENDAR_TYPE_CALENDAR) { |
|
2276 | - // Current synctoken |
|
2277 | - $qb = $this->db->getQueryBuilder(); |
|
2278 | - $qb->select('synctoken') |
|
2279 | - ->from('calendars') |
|
2280 | - ->where( |
|
2281 | - $qb->expr()->eq('id', $qb->createNamedParameter($calendarId)) |
|
2282 | - ); |
|
2283 | - $stmt = $qb->executeQuery(); |
|
2284 | - $currentToken = $stmt->fetchOne(); |
|
2285 | - |
|
2286 | - if ($currentToken === false) { |
|
2287 | - return null; |
|
2288 | - } |
|
2289 | - |
|
2290 | - $result = [ |
|
2291 | - 'syncToken' => $currentToken, |
|
2292 | - 'added' => [], |
|
2293 | - 'modified' => [], |
|
2294 | - 'deleted' => [], |
|
2295 | - ]; |
|
2296 | - |
|
2297 | - if ($syncToken) { |
|
2298 | - $qb = $this->db->getQueryBuilder(); |
|
2299 | - |
|
2300 | - $qb->select('uri', 'operation') |
|
2301 | - ->from('calendarchanges') |
|
2302 | - ->where( |
|
2303 | - $qb->expr()->andX( |
|
2304 | - $qb->expr()->gte('synctoken', $qb->createNamedParameter($syncToken)), |
|
2305 | - $qb->expr()->lt('synctoken', $qb->createNamedParameter($currentToken)), |
|
2306 | - $qb->expr()->eq('calendarid', $qb->createNamedParameter($calendarId)), |
|
2307 | - $qb->expr()->eq('calendartype', $qb->createNamedParameter($calendarType)) |
|
2308 | - ) |
|
2309 | - )->orderBy('synctoken'); |
|
2310 | - if (is_int($limit) && $limit > 0) { |
|
2311 | - $qb->setMaxResults($limit); |
|
2312 | - } |
|
2313 | - |
|
2314 | - // Fetching all changes |
|
2315 | - $stmt = $qb->executeQuery(); |
|
2316 | - $changes = []; |
|
2317 | - |
|
2318 | - // This loop ensures that any duplicates are overwritten, only the |
|
2319 | - // last change on a node is relevant. |
|
2320 | - while ($row = $stmt->fetch()) { |
|
2321 | - $changes[$row['uri']] = $row['operation']; |
|
2322 | - } |
|
2323 | - $stmt->closeCursor(); |
|
2324 | - |
|
2325 | - foreach ($changes as $uri => $operation) { |
|
2326 | - switch ($operation) { |
|
2327 | - case 1: |
|
2328 | - $result['added'][] = $uri; |
|
2329 | - break; |
|
2330 | - case 2: |
|
2331 | - $result['modified'][] = $uri; |
|
2332 | - break; |
|
2333 | - case 3: |
|
2334 | - $result['deleted'][] = $uri; |
|
2335 | - break; |
|
2336 | - } |
|
2337 | - } |
|
2338 | - } else { |
|
2339 | - // No synctoken supplied, this is the initial sync. |
|
2340 | - $qb = $this->db->getQueryBuilder(); |
|
2341 | - $qb->select('uri') |
|
2342 | - ->from('calendarobjects') |
|
2343 | - ->where( |
|
2344 | - $qb->expr()->andX( |
|
2345 | - $qb->expr()->eq('calendarid', $qb->createNamedParameter($calendarId)), |
|
2346 | - $qb->expr()->eq('calendartype', $qb->createNamedParameter($calendarType)) |
|
2347 | - ) |
|
2348 | - ); |
|
2349 | - $stmt = $qb->executeQuery(); |
|
2350 | - $result['added'] = $stmt->fetchAll(\PDO::FETCH_COLUMN); |
|
2351 | - $stmt->closeCursor(); |
|
2352 | - } |
|
2353 | - return $result; |
|
2354 | - } |
|
2355 | - |
|
2356 | - /** |
|
2357 | - * Returns a list of subscriptions for a principal. |
|
2358 | - * |
|
2359 | - * Every subscription is an array with the following keys: |
|
2360 | - * * id, a unique id that will be used by other functions to modify the |
|
2361 | - * subscription. This can be the same as the uri or a database key. |
|
2362 | - * * uri. This is just the 'base uri' or 'filename' of the subscription. |
|
2363 | - * * principaluri. The owner of the subscription. Almost always the same as |
|
2364 | - * principalUri passed to this method. |
|
2365 | - * |
|
2366 | - * Furthermore, all the subscription info must be returned too: |
|
2367 | - * |
|
2368 | - * 1. {DAV:}displayname |
|
2369 | - * 2. {http://apple.com/ns/ical/}refreshrate |
|
2370 | - * 3. {http://calendarserver.org/ns/}subscribed-strip-todos (omit if todos |
|
2371 | - * should not be stripped). |
|
2372 | - * 4. {http://calendarserver.org/ns/}subscribed-strip-alarms (omit if alarms |
|
2373 | - * should not be stripped). |
|
2374 | - * 5. {http://calendarserver.org/ns/}subscribed-strip-attachments (omit if |
|
2375 | - * attachments should not be stripped). |
|
2376 | - * 6. {http://calendarserver.org/ns/}source (Must be a |
|
2377 | - * Sabre\DAV\Property\Href). |
|
2378 | - * 7. {http://apple.com/ns/ical/}calendar-color |
|
2379 | - * 8. {http://apple.com/ns/ical/}calendar-order |
|
2380 | - * 9. {urn:ietf:params:xml:ns:caldav}supported-calendar-component-set |
|
2381 | - * (should just be an instance of |
|
2382 | - * Sabre\CalDAV\Property\SupportedCalendarComponentSet, with a bunch of |
|
2383 | - * default components). |
|
2384 | - * |
|
2385 | - * @param string $principalUri |
|
2386 | - * @return array |
|
2387 | - */ |
|
2388 | - public function getSubscriptionsForUser($principalUri) { |
|
2389 | - $fields = array_column($this->subscriptionPropertyMap, 0); |
|
2390 | - $fields[] = 'id'; |
|
2391 | - $fields[] = 'uri'; |
|
2392 | - $fields[] = 'source'; |
|
2393 | - $fields[] = 'principaluri'; |
|
2394 | - $fields[] = 'lastmodified'; |
|
2395 | - $fields[] = 'synctoken'; |
|
2396 | - |
|
2397 | - $query = $this->db->getQueryBuilder(); |
|
2398 | - $query->select($fields) |
|
2399 | - ->from('calendarsubscriptions') |
|
2400 | - ->where($query->expr()->eq('principaluri', $query->createNamedParameter($principalUri))) |
|
2401 | - ->orderBy('calendarorder', 'asc'); |
|
2402 | - $stmt = $query->executeQuery(); |
|
2403 | - |
|
2404 | - $subscriptions = []; |
|
2405 | - while ($row = $stmt->fetch()) { |
|
2406 | - $subscription = [ |
|
2407 | - 'id' => $row['id'], |
|
2408 | - 'uri' => $row['uri'], |
|
2409 | - 'principaluri' => $row['principaluri'], |
|
2410 | - 'source' => $row['source'], |
|
2411 | - 'lastmodified' => $row['lastmodified'], |
|
2412 | - |
|
2413 | - '{' . Plugin::NS_CALDAV . '}supported-calendar-component-set' => new SupportedCalendarComponentSet(['VTODO', 'VEVENT']), |
|
2414 | - '{http://sabredav.org/ns}sync-token' => $row['synctoken']?$row['synctoken']:'0', |
|
2415 | - ]; |
|
2416 | - |
|
2417 | - $subscriptions[] = $this->rowToSubscription($row, $subscription); |
|
2418 | - } |
|
2419 | - |
|
2420 | - return $subscriptions; |
|
2421 | - } |
|
2422 | - |
|
2423 | - /** |
|
2424 | - * Creates a new subscription for a principal. |
|
2425 | - * |
|
2426 | - * If the creation was a success, an id must be returned that can be used to reference |
|
2427 | - * this subscription in other methods, such as updateSubscription. |
|
2428 | - * |
|
2429 | - * @param string $principalUri |
|
2430 | - * @param string $uri |
|
2431 | - * @param array $properties |
|
2432 | - * @return mixed |
|
2433 | - */ |
|
2434 | - public function createSubscription($principalUri, $uri, array $properties) { |
|
2435 | - if (!isset($properties['{http://calendarserver.org/ns/}source'])) { |
|
2436 | - throw new Forbidden('The {http://calendarserver.org/ns/}source property is required when creating subscriptions'); |
|
2437 | - } |
|
2438 | - |
|
2439 | - $values = [ |
|
2440 | - 'principaluri' => $principalUri, |
|
2441 | - 'uri' => $uri, |
|
2442 | - 'source' => $properties['{http://calendarserver.org/ns/}source']->getHref(), |
|
2443 | - 'lastmodified' => time(), |
|
2444 | - ]; |
|
2445 | - |
|
2446 | - $propertiesBoolean = ['striptodos', 'stripalarms', 'stripattachments']; |
|
2447 | - |
|
2448 | - foreach ($this->subscriptionPropertyMap as $xmlName => [$dbName, $type]) { |
|
2449 | - if (array_key_exists($xmlName, $properties)) { |
|
2450 | - $values[$dbName] = $properties[$xmlName]; |
|
2451 | - if (in_array($dbName, $propertiesBoolean)) { |
|
2452 | - $values[$dbName] = true; |
|
2453 | - } |
|
2454 | - } |
|
2455 | - } |
|
2456 | - |
|
2457 | - [$subscriptionId, $subscriptionRow] = $this->atomic(function() use ($values) { |
|
2458 | - $valuesToInsert = []; |
|
2459 | - $query = $this->db->getQueryBuilder(); |
|
2460 | - foreach (array_keys($values) as $name) { |
|
2461 | - $valuesToInsert[$name] = $query->createNamedParameter($values[$name]); |
|
2462 | - } |
|
2463 | - $query->insert('calendarsubscriptions') |
|
2464 | - ->values($valuesToInsert) |
|
2465 | - ->executeStatement(); |
|
2466 | - |
|
2467 | - $subscriptionId = $query->getLastInsertId(); |
|
2468 | - |
|
2469 | - $subscriptionRow = $this->getSubscriptionById($subscriptionId); |
|
2470 | - return [$subscriptionId, $subscriptionRow]; |
|
2471 | - }, $this->db); |
|
2472 | - |
|
2473 | - $this->dispatcher->dispatchTyped(new SubscriptionCreatedEvent($subscriptionId, $subscriptionRow)); |
|
2474 | - |
|
2475 | - return $subscriptionId; |
|
2476 | - } |
|
2477 | - |
|
2478 | - /** |
|
2479 | - * Updates a subscription |
|
2480 | - * |
|
2481 | - * The list of mutations is stored in a Sabre\DAV\PropPatch object. |
|
2482 | - * To do the actual updates, you must tell this object which properties |
|
2483 | - * you're going to process with the handle() method. |
|
2484 | - * |
|
2485 | - * Calling the handle method is like telling the PropPatch object "I |
|
2486 | - * promise I can handle updating this property". |
|
2487 | - * |
|
2488 | - * Read the PropPatch documentation for more info and examples. |
|
2489 | - * |
|
2490 | - * @param mixed $subscriptionId |
|
2491 | - * @param PropPatch $propPatch |
|
2492 | - * @return void |
|
2493 | - */ |
|
2494 | - public function updateSubscription($subscriptionId, PropPatch $propPatch) { |
|
2495 | - $supportedProperties = array_keys($this->subscriptionPropertyMap); |
|
2496 | - $supportedProperties[] = '{http://calendarserver.org/ns/}source'; |
|
2497 | - |
|
2498 | - $propPatch->handle($supportedProperties, function ($mutations) use ($subscriptionId) { |
|
2499 | - $newValues = []; |
|
2500 | - |
|
2501 | - foreach ($mutations as $propertyName => $propertyValue) { |
|
2502 | - if ($propertyName === '{http://calendarserver.org/ns/}source') { |
|
2503 | - $newValues['source'] = $propertyValue->getHref(); |
|
2504 | - } else { |
|
2505 | - $fieldName = $this->subscriptionPropertyMap[$propertyName][0]; |
|
2506 | - $newValues[$fieldName] = $propertyValue; |
|
2507 | - } |
|
2508 | - } |
|
2509 | - |
|
2510 | - $query = $this->db->getQueryBuilder(); |
|
2511 | - $query->update('calendarsubscriptions') |
|
2512 | - ->set('lastmodified', $query->createNamedParameter(time())); |
|
2513 | - foreach ($newValues as $fieldName => $value) { |
|
2514 | - $query->set($fieldName, $query->createNamedParameter($value)); |
|
2515 | - } |
|
2516 | - $query->where($query->expr()->eq('id', $query->createNamedParameter($subscriptionId))) |
|
2517 | - ->executeStatement(); |
|
2518 | - |
|
2519 | - $subscriptionRow = $this->getSubscriptionById($subscriptionId); |
|
2520 | - $this->dispatcher->dispatchTyped(new SubscriptionUpdatedEvent((int)$subscriptionId, $subscriptionRow, [], $mutations)); |
|
2521 | - |
|
2522 | - return true; |
|
2523 | - }); |
|
2524 | - } |
|
2525 | - |
|
2526 | - /** |
|
2527 | - * Deletes a subscription. |
|
2528 | - * |
|
2529 | - * @param mixed $subscriptionId |
|
2530 | - * @return void |
|
2531 | - */ |
|
2532 | - public function deleteSubscription($subscriptionId) { |
|
2533 | - $subscriptionRow = $this->getSubscriptionById($subscriptionId); |
|
2534 | - |
|
2535 | - $query = $this->db->getQueryBuilder(); |
|
2536 | - $query->delete('calendarsubscriptions') |
|
2537 | - ->where($query->expr()->eq('id', $query->createNamedParameter($subscriptionId))) |
|
2538 | - ->executeStatement(); |
|
2539 | - |
|
2540 | - $query = $this->db->getQueryBuilder(); |
|
2541 | - $query->delete('calendarobjects') |
|
2542 | - ->where($query->expr()->eq('calendarid', $query->createNamedParameter($subscriptionId))) |
|
2543 | - ->andWhere($query->expr()->eq('calendartype', $query->createNamedParameter(self::CALENDAR_TYPE_SUBSCRIPTION))) |
|
2544 | - ->executeStatement(); |
|
2545 | - |
|
2546 | - $query->delete('calendarchanges') |
|
2547 | - ->where($query->expr()->eq('calendarid', $query->createNamedParameter($subscriptionId))) |
|
2548 | - ->andWhere($query->expr()->eq('calendartype', $query->createNamedParameter(self::CALENDAR_TYPE_SUBSCRIPTION))) |
|
2549 | - ->executeStatement(); |
|
2550 | - |
|
2551 | - $query->delete($this->dbObjectPropertiesTable) |
|
2552 | - ->where($query->expr()->eq('calendarid', $query->createNamedParameter($subscriptionId))) |
|
2553 | - ->andWhere($query->expr()->eq('calendartype', $query->createNamedParameter(self::CALENDAR_TYPE_SUBSCRIPTION))) |
|
2554 | - ->executeStatement(); |
|
2555 | - |
|
2556 | - if ($subscriptionRow) { |
|
2557 | - $this->dispatcher->dispatchTyped(new SubscriptionDeletedEvent((int)$subscriptionId, $subscriptionRow, [])); |
|
2558 | - } |
|
2559 | - } |
|
2560 | - |
|
2561 | - /** |
|
2562 | - * Returns a single scheduling object for the inbox collection. |
|
2563 | - * |
|
2564 | - * The returned array should contain the following elements: |
|
2565 | - * * uri - A unique basename for the object. This will be used to |
|
2566 | - * construct a full uri. |
|
2567 | - * * calendardata - The iCalendar object |
|
2568 | - * * lastmodified - The last modification date. Can be an int for a unix |
|
2569 | - * timestamp, or a PHP DateTime object. |
|
2570 | - * * etag - A unique token that must change if the object changed. |
|
2571 | - * * size - The size of the object, in bytes. |
|
2572 | - * |
|
2573 | - * @param string $principalUri |
|
2574 | - * @param string $objectUri |
|
2575 | - * @return array |
|
2576 | - */ |
|
2577 | - public function getSchedulingObject($principalUri, $objectUri) { |
|
2578 | - $query = $this->db->getQueryBuilder(); |
|
2579 | - $stmt = $query->select(['uri', 'calendardata', 'lastmodified', 'etag', 'size']) |
|
2580 | - ->from('schedulingobjects') |
|
2581 | - ->where($query->expr()->eq('principaluri', $query->createNamedParameter($principalUri))) |
|
2582 | - ->andWhere($query->expr()->eq('uri', $query->createNamedParameter($objectUri))) |
|
2583 | - ->executeQuery(); |
|
2584 | - |
|
2585 | - $row = $stmt->fetch(); |
|
2586 | - |
|
2587 | - if (!$row) { |
|
2588 | - return null; |
|
2589 | - } |
|
2590 | - |
|
2591 | - return [ |
|
2592 | - 'uri' => $row['uri'], |
|
2593 | - 'calendardata' => $row['calendardata'], |
|
2594 | - 'lastmodified' => $row['lastmodified'], |
|
2595 | - 'etag' => '"' . $row['etag'] . '"', |
|
2596 | - 'size' => (int)$row['size'], |
|
2597 | - ]; |
|
2598 | - } |
|
2599 | - |
|
2600 | - /** |
|
2601 | - * Returns all scheduling objects for the inbox collection. |
|
2602 | - * |
|
2603 | - * These objects should be returned as an array. Every item in the array |
|
2604 | - * should follow the same structure as returned from getSchedulingObject. |
|
2605 | - * |
|
2606 | - * The main difference is that 'calendardata' is optional. |
|
2607 | - * |
|
2608 | - * @param string $principalUri |
|
2609 | - * @return array |
|
2610 | - */ |
|
2611 | - public function getSchedulingObjects($principalUri) { |
|
2612 | - $query = $this->db->getQueryBuilder(); |
|
2613 | - $stmt = $query->select(['uri', 'calendardata', 'lastmodified', 'etag', 'size']) |
|
2614 | - ->from('schedulingobjects') |
|
2615 | - ->where($query->expr()->eq('principaluri', $query->createNamedParameter($principalUri))) |
|
2616 | - ->executeQuery(); |
|
2617 | - |
|
2618 | - $result = []; |
|
2619 | - foreach ($stmt->fetchAll() as $row) { |
|
2620 | - $result[] = [ |
|
2621 | - 'calendardata' => $row['calendardata'], |
|
2622 | - 'uri' => $row['uri'], |
|
2623 | - 'lastmodified' => $row['lastmodified'], |
|
2624 | - 'etag' => '"' . $row['etag'] . '"', |
|
2625 | - 'size' => (int)$row['size'], |
|
2626 | - ]; |
|
2627 | - } |
|
2628 | - $stmt->closeCursor(); |
|
2629 | - |
|
2630 | - return $result; |
|
2631 | - } |
|
2632 | - |
|
2633 | - /** |
|
2634 | - * Deletes a scheduling object from the inbox collection. |
|
2635 | - * |
|
2636 | - * @param string $principalUri |
|
2637 | - * @param string $objectUri |
|
2638 | - * @return void |
|
2639 | - */ |
|
2640 | - public function deleteSchedulingObject($principalUri, $objectUri) { |
|
2641 | - $query = $this->db->getQueryBuilder(); |
|
2642 | - $query->delete('schedulingobjects') |
|
2643 | - ->where($query->expr()->eq('principaluri', $query->createNamedParameter($principalUri))) |
|
2644 | - ->andWhere($query->expr()->eq('uri', $query->createNamedParameter($objectUri))) |
|
2645 | - ->executeStatement(); |
|
2646 | - } |
|
2647 | - |
|
2648 | - /** |
|
2649 | - * Creates a new scheduling object. This should land in a users' inbox. |
|
2650 | - * |
|
2651 | - * @param string $principalUri |
|
2652 | - * @param string $objectUri |
|
2653 | - * @param string $objectData |
|
2654 | - * @return void |
|
2655 | - */ |
|
2656 | - public function createSchedulingObject($principalUri, $objectUri, $objectData) { |
|
2657 | - $query = $this->db->getQueryBuilder(); |
|
2658 | - $query->insert('schedulingobjects') |
|
2659 | - ->values([ |
|
2660 | - 'principaluri' => $query->createNamedParameter($principalUri), |
|
2661 | - 'calendardata' => $query->createNamedParameter($objectData, IQueryBuilder::PARAM_LOB), |
|
2662 | - 'uri' => $query->createNamedParameter($objectUri), |
|
2663 | - 'lastmodified' => $query->createNamedParameter(time()), |
|
2664 | - 'etag' => $query->createNamedParameter(md5($objectData)), |
|
2665 | - 'size' => $query->createNamedParameter(strlen($objectData)) |
|
2666 | - ]) |
|
2667 | - ->executeStatement(); |
|
2668 | - } |
|
2669 | - |
|
2670 | - /** |
|
2671 | - * Adds a change record to the calendarchanges table. |
|
2672 | - * |
|
2673 | - * @param mixed $calendarId |
|
2674 | - * @param string $objectUri |
|
2675 | - * @param int $operation 1 = add, 2 = modify, 3 = delete. |
|
2676 | - * @param int $calendarType |
|
2677 | - * @return void |
|
2678 | - */ |
|
2679 | - protected function addChange($calendarId, $objectUri, $operation, $calendarType = self::CALENDAR_TYPE_CALENDAR) { |
|
2680 | - $table = $calendarType === self::CALENDAR_TYPE_CALENDAR ? 'calendars': 'calendarsubscriptions'; |
|
2681 | - |
|
2682 | - $query = $this->db->getQueryBuilder(); |
|
2683 | - $query->select('synctoken') |
|
2684 | - ->from($table) |
|
2685 | - ->where($query->expr()->eq('id', $query->createNamedParameter($calendarId))); |
|
2686 | - $result = $query->executeQuery(); |
|
2687 | - $syncToken = (int)$result->fetchOne(); |
|
2688 | - $result->closeCursor(); |
|
2689 | - |
|
2690 | - $query = $this->db->getQueryBuilder(); |
|
2691 | - $query->insert('calendarchanges') |
|
2692 | - ->values([ |
|
2693 | - 'uri' => $query->createNamedParameter($objectUri), |
|
2694 | - 'synctoken' => $query->createNamedParameter($syncToken), |
|
2695 | - 'calendarid' => $query->createNamedParameter($calendarId), |
|
2696 | - 'operation' => $query->createNamedParameter($operation), |
|
2697 | - 'calendartype' => $query->createNamedParameter($calendarType), |
|
2698 | - ]) |
|
2699 | - ->executeStatement(); |
|
2700 | - |
|
2701 | - $stmt = $this->db->prepare("UPDATE `*PREFIX*$table` SET `synctoken` = `synctoken` + 1 WHERE `id` = ?"); |
|
2702 | - $stmt->execute([ |
|
2703 | - $calendarId |
|
2704 | - ]); |
|
2705 | - } |
|
2706 | - |
|
2707 | - /** |
|
2708 | - * Parses some information from calendar objects, used for optimized |
|
2709 | - * calendar-queries. |
|
2710 | - * |
|
2711 | - * Returns an array with the following keys: |
|
2712 | - * * etag - An md5 checksum of the object without the quotes. |
|
2713 | - * * size - Size of the object in bytes |
|
2714 | - * * componentType - VEVENT, VTODO or VJOURNAL |
|
2715 | - * * firstOccurence |
|
2716 | - * * lastOccurence |
|
2717 | - * * uid - value of the UID property |
|
2718 | - * |
|
2719 | - * @param string $calendarData |
|
2720 | - * @return array |
|
2721 | - */ |
|
2722 | - public function getDenormalizedData($calendarData) { |
|
2723 | - $vObject = Reader::read($calendarData); |
|
2724 | - $vEvents = []; |
|
2725 | - $componentType = null; |
|
2726 | - $component = null; |
|
2727 | - $firstOccurrence = null; |
|
2728 | - $lastOccurrence = null; |
|
2729 | - $uid = null; |
|
2730 | - $classification = self::CLASSIFICATION_PUBLIC; |
|
2731 | - $hasDTSTART = false; |
|
2732 | - foreach ($vObject->getComponents() as $component) { |
|
2733 | - if ($component->name !== 'VTIMEZONE') { |
|
2734 | - // Finding all VEVENTs, and track them |
|
2735 | - if ($component->name === 'VEVENT') { |
|
2736 | - array_push($vEvents, $component); |
|
2737 | - if ($component->DTSTART) { |
|
2738 | - $hasDTSTART = true; |
|
2739 | - } |
|
2740 | - } |
|
2741 | - // Track first component type and uid |
|
2742 | - if ($uid === null) { |
|
2743 | - $componentType = $component->name; |
|
2744 | - $uid = (string)$component->UID; |
|
2745 | - } |
|
2746 | - } |
|
2747 | - } |
|
2748 | - if (!$componentType) { |
|
2749 | - throw new BadRequest('Calendar objects must have a VJOURNAL, VEVENT or VTODO component'); |
|
2750 | - } |
|
2751 | - |
|
2752 | - if ($hasDTSTART) { |
|
2753 | - $component = $vEvents[0]; |
|
2754 | - |
|
2755 | - // Finding the last occurrence is a bit harder |
|
2756 | - if (!isset($component->RRULE) && count($vEvents) === 1) { |
|
2757 | - $firstOccurrence = $component->DTSTART->getDateTime()->getTimeStamp(); |
|
2758 | - if (isset($component->DTEND)) { |
|
2759 | - $lastOccurrence = $component->DTEND->getDateTime()->getTimeStamp(); |
|
2760 | - } elseif (isset($component->DURATION)) { |
|
2761 | - $endDate = clone $component->DTSTART->getDateTime(); |
|
2762 | - $endDate->add(DateTimeParser::parse($component->DURATION->getValue())); |
|
2763 | - $lastOccurrence = $endDate->getTimeStamp(); |
|
2764 | - } elseif (!$component->DTSTART->hasTime()) { |
|
2765 | - $endDate = clone $component->DTSTART->getDateTime(); |
|
2766 | - $endDate->modify('+1 day'); |
|
2767 | - $lastOccurrence = $endDate->getTimeStamp(); |
|
2768 | - } else { |
|
2769 | - $lastOccurrence = $firstOccurrence; |
|
2770 | - } |
|
2771 | - } else { |
|
2772 | - $it = new EventIterator($vEvents); |
|
2773 | - $maxDate = new DateTime(self::MAX_DATE); |
|
2774 | - $firstOccurrence = $it->getDtStart()->getTimestamp(); |
|
2775 | - if ($it->isInfinite()) { |
|
2776 | - $lastOccurrence = $maxDate->getTimestamp(); |
|
2777 | - } else { |
|
2778 | - $end = $it->getDtEnd(); |
|
2779 | - while ($it->valid() && $end < $maxDate) { |
|
2780 | - $end = $it->getDtEnd(); |
|
2781 | - $it->next(); |
|
2782 | - } |
|
2783 | - $lastOccurrence = $end->getTimestamp(); |
|
2784 | - } |
|
2785 | - } |
|
2786 | - } |
|
2787 | - |
|
2788 | - if ($component->CLASS) { |
|
2789 | - $classification = CalDavBackend::CLASSIFICATION_PRIVATE; |
|
2790 | - switch ($component->CLASS->getValue()) { |
|
2791 | - case 'PUBLIC': |
|
2792 | - $classification = CalDavBackend::CLASSIFICATION_PUBLIC; |
|
2793 | - break; |
|
2794 | - case 'CONFIDENTIAL': |
|
2795 | - $classification = CalDavBackend::CLASSIFICATION_CONFIDENTIAL; |
|
2796 | - break; |
|
2797 | - } |
|
2798 | - } |
|
2799 | - return [ |
|
2800 | - 'etag' => md5($calendarData), |
|
2801 | - 'size' => strlen($calendarData), |
|
2802 | - 'componentType' => $componentType, |
|
2803 | - 'firstOccurence' => is_null($firstOccurrence) ? null : max(0, $firstOccurrence), |
|
2804 | - 'lastOccurence' => $lastOccurrence, |
|
2805 | - 'uid' => $uid, |
|
2806 | - 'classification' => $classification |
|
2807 | - ]; |
|
2808 | - } |
|
2809 | - |
|
2810 | - /** |
|
2811 | - * @param $cardData |
|
2812 | - * @return bool|string |
|
2813 | - */ |
|
2814 | - private function readBlob($cardData) { |
|
2815 | - if (is_resource($cardData)) { |
|
2816 | - return stream_get_contents($cardData); |
|
2817 | - } |
|
2818 | - |
|
2819 | - return $cardData; |
|
2820 | - } |
|
2821 | - |
|
2822 | - /** |
|
2823 | - * @param list<array{href: string, commonName: string, readOnly: bool}> $add |
|
2824 | - * @param list<string> $remove |
|
2825 | - */ |
|
2826 | - public function updateShares(IShareable $shareable, array $add, array $remove): void { |
|
2827 | - $calendarId = $shareable->getResourceId(); |
|
2828 | - $calendarRow = $this->getCalendarById($calendarId); |
|
2829 | - if ($calendarRow === null) { |
|
2830 | - throw new \RuntimeException('Trying to update shares for innexistant calendar: ' . $calendarId); |
|
2831 | - } |
|
2832 | - $oldShares = $this->getShares($calendarId); |
|
2833 | - |
|
2834 | - $this->calendarSharingBackend->updateShares($shareable, $add, $remove); |
|
2835 | - |
|
2836 | - $this->dispatcher->dispatchTyped(new CalendarShareUpdatedEvent($calendarId, $calendarRow, $oldShares, $add, $remove)); |
|
2837 | - } |
|
2838 | - |
|
2839 | - /** |
|
2840 | - * @return list<array{href: string, commonName: string, status: int, readOnly: bool, '{http://owncloud.org/ns}principal': string, '{http://owncloud.org/ns}group-share': bool}> |
|
2841 | - */ |
|
2842 | - public function getShares(int $resourceId): array { |
|
2843 | - return $this->calendarSharingBackend->getShares($resourceId); |
|
2844 | - } |
|
2845 | - |
|
2846 | - /** |
|
2847 | - * @param boolean $value |
|
2848 | - * @param \OCA\DAV\CalDAV\Calendar $calendar |
|
2849 | - * @return string|null |
|
2850 | - */ |
|
2851 | - public function setPublishStatus($value, $calendar) { |
|
2852 | - $calendarId = $calendar->getResourceId(); |
|
2853 | - $calendarData = $this->getCalendarById($calendarId); |
|
2854 | - |
|
2855 | - $query = $this->db->getQueryBuilder(); |
|
2856 | - if ($value) { |
|
2857 | - $publicUri = $this->random->generate(16, ISecureRandom::CHAR_HUMAN_READABLE); |
|
2858 | - $query->insert('dav_shares') |
|
2859 | - ->values([ |
|
2860 | - 'principaluri' => $query->createNamedParameter($calendar->getPrincipalURI()), |
|
2861 | - 'type' => $query->createNamedParameter('calendar'), |
|
2862 | - 'access' => $query->createNamedParameter(self::ACCESS_PUBLIC), |
|
2863 | - 'resourceid' => $query->createNamedParameter($calendar->getResourceId()), |
|
2864 | - 'publicuri' => $query->createNamedParameter($publicUri) |
|
2865 | - ]); |
|
2866 | - $query->executeStatement(); |
|
2867 | - |
|
2868 | - $this->dispatcher->dispatchTyped(new CalendarPublishedEvent($calendarId, $calendarData, $publicUri)); |
|
2869 | - return $publicUri; |
|
2870 | - } |
|
2871 | - $query->delete('dav_shares') |
|
2872 | - ->where($query->expr()->eq('resourceid', $query->createNamedParameter($calendar->getResourceId()))) |
|
2873 | - ->andWhere($query->expr()->eq('access', $query->createNamedParameter(self::ACCESS_PUBLIC))); |
|
2874 | - $query->executeStatement(); |
|
2875 | - |
|
2876 | - $this->dispatcher->dispatchTyped(new CalendarUnpublishedEvent($calendarId, $calendarData)); |
|
2877 | - return null; |
|
2878 | - } |
|
2879 | - |
|
2880 | - /** |
|
2881 | - * @param \OCA\DAV\CalDAV\Calendar $calendar |
|
2882 | - * @return mixed |
|
2883 | - */ |
|
2884 | - public function getPublishStatus($calendar) { |
|
2885 | - $query = $this->db->getQueryBuilder(); |
|
2886 | - $result = $query->select('publicuri') |
|
2887 | - ->from('dav_shares') |
|
2888 | - ->where($query->expr()->eq('resourceid', $query->createNamedParameter($calendar->getResourceId()))) |
|
2889 | - ->andWhere($query->expr()->eq('access', $query->createNamedParameter(self::ACCESS_PUBLIC))) |
|
2890 | - ->executeQuery(); |
|
2891 | - |
|
2892 | - $row = $result->fetch(); |
|
2893 | - $result->closeCursor(); |
|
2894 | - return $row ? reset($row) : false; |
|
2895 | - } |
|
2896 | - |
|
2897 | - /** |
|
2898 | - * @param int $resourceId |
|
2899 | - * @param list<array{privilege: string, principal: string, protected: bool}> $acl |
|
2900 | - * @return list<array{privilege: string, principal: string, protected: bool}> |
|
2901 | - */ |
|
2902 | - public function applyShareAcl(int $resourceId, array $acl): array { |
|
2903 | - return $this->calendarSharingBackend->applyShareAcl($resourceId, $acl); |
|
2904 | - } |
|
2905 | - |
|
2906 | - /** |
|
2907 | - * update properties table |
|
2908 | - * |
|
2909 | - * @param int $calendarId |
|
2910 | - * @param string $objectUri |
|
2911 | - * @param string $calendarData |
|
2912 | - * @param int $calendarType |
|
2913 | - */ |
|
2914 | - public function updateProperties($calendarId, $objectUri, $calendarData, $calendarType = self::CALENDAR_TYPE_CALENDAR) { |
|
2915 | - $objectId = $this->getCalendarObjectId($calendarId, $objectUri, $calendarType); |
|
2916 | - |
|
2917 | - try { |
|
2918 | - $vCalendar = $this->readCalendarData($calendarData); |
|
2919 | - } catch (\Exception $ex) { |
|
2920 | - return; |
|
2921 | - } |
|
2922 | - |
|
2923 | - $this->purgeProperties($calendarId, $objectId); |
|
2924 | - |
|
2925 | - $query = $this->db->getQueryBuilder(); |
|
2926 | - $query->insert($this->dbObjectPropertiesTable) |
|
2927 | - ->values( |
|
2928 | - [ |
|
2929 | - 'calendarid' => $query->createNamedParameter($calendarId), |
|
2930 | - 'calendartype' => $query->createNamedParameter($calendarType), |
|
2931 | - 'objectid' => $query->createNamedParameter($objectId), |
|
2932 | - 'name' => $query->createParameter('name'), |
|
2933 | - 'parameter' => $query->createParameter('parameter'), |
|
2934 | - 'value' => $query->createParameter('value'), |
|
2935 | - ] |
|
2936 | - ); |
|
2937 | - |
|
2938 | - $indexComponents = ['VEVENT', 'VJOURNAL', 'VTODO']; |
|
2939 | - foreach ($vCalendar->getComponents() as $component) { |
|
2940 | - if (!in_array($component->name, $indexComponents)) { |
|
2941 | - continue; |
|
2942 | - } |
|
2943 | - |
|
2944 | - foreach ($component->children() as $property) { |
|
2945 | - if (in_array($property->name, self::INDEXED_PROPERTIES, true)) { |
|
2946 | - $value = $property->getValue(); |
|
2947 | - // is this a shitty db? |
|
2948 | - if (!$this->db->supports4ByteText()) { |
|
2949 | - $value = preg_replace('/[\x{10000}-\x{10FFFF}]/u', "\xEF\xBF\xBD", $value); |
|
2950 | - } |
|
2951 | - $value = mb_strcut($value, 0, 254); |
|
2952 | - |
|
2953 | - $query->setParameter('name', $property->name); |
|
2954 | - $query->setParameter('parameter', null); |
|
2955 | - $query->setParameter('value', $value); |
|
2956 | - $query->executeStatement(); |
|
2957 | - } |
|
2958 | - |
|
2959 | - if (array_key_exists($property->name, self::$indexParameters)) { |
|
2960 | - $parameters = $property->parameters(); |
|
2961 | - $indexedParametersForProperty = self::$indexParameters[$property->name]; |
|
2962 | - |
|
2963 | - foreach ($parameters as $key => $value) { |
|
2964 | - if (in_array($key, $indexedParametersForProperty)) { |
|
2965 | - // is this a shitty db? |
|
2966 | - if ($this->db->supports4ByteText()) { |
|
2967 | - $value = preg_replace('/[\x{10000}-\x{10FFFF}]/u', "\xEF\xBF\xBD", $value); |
|
2968 | - } |
|
2969 | - |
|
2970 | - $query->setParameter('name', $property->name); |
|
2971 | - $query->setParameter('parameter', mb_strcut($key, 0, 254)); |
|
2972 | - $query->setParameter('value', mb_strcut($value, 0, 254)); |
|
2973 | - $query->executeStatement(); |
|
2974 | - } |
|
2975 | - } |
|
2976 | - } |
|
2977 | - } |
|
2978 | - } |
|
2979 | - } |
|
2980 | - |
|
2981 | - /** |
|
2982 | - * deletes all birthday calendars |
|
2983 | - */ |
|
2984 | - public function deleteAllBirthdayCalendars() { |
|
2985 | - $query = $this->db->getQueryBuilder(); |
|
2986 | - $result = $query->select(['id'])->from('calendars') |
|
2987 | - ->where($query->expr()->eq('uri', $query->createNamedParameter(BirthdayService::BIRTHDAY_CALENDAR_URI))) |
|
2988 | - ->executeQuery(); |
|
2989 | - |
|
2990 | - $ids = $result->fetchAll(); |
|
2991 | - $result->closeCursor(); |
|
2992 | - foreach ($ids as $id) { |
|
2993 | - $this->deleteCalendar( |
|
2994 | - $id['id'], |
|
2995 | - true // No data to keep in the trashbin, if the user re-enables then we regenerate |
|
2996 | - ); |
|
2997 | - } |
|
2998 | - } |
|
2999 | - |
|
3000 | - /** |
|
3001 | - * @param $subscriptionId |
|
3002 | - */ |
|
3003 | - public function purgeAllCachedEventsForSubscription($subscriptionId) { |
|
3004 | - $query = $this->db->getQueryBuilder(); |
|
3005 | - $query->select('uri') |
|
3006 | - ->from('calendarobjects') |
|
3007 | - ->where($query->expr()->eq('calendarid', $query->createNamedParameter($subscriptionId))) |
|
3008 | - ->andWhere($query->expr()->eq('calendartype', $query->createNamedParameter(self::CALENDAR_TYPE_SUBSCRIPTION))); |
|
3009 | - $stmt = $query->executeQuery(); |
|
3010 | - |
|
3011 | - $uris = []; |
|
3012 | - foreach ($stmt->fetchAll() as $row) { |
|
3013 | - $uris[] = $row['uri']; |
|
3014 | - } |
|
3015 | - $stmt->closeCursor(); |
|
3016 | - |
|
3017 | - $query = $this->db->getQueryBuilder(); |
|
3018 | - $query->delete('calendarobjects') |
|
3019 | - ->where($query->expr()->eq('calendarid', $query->createNamedParameter($subscriptionId))) |
|
3020 | - ->andWhere($query->expr()->eq('calendartype', $query->createNamedParameter(self::CALENDAR_TYPE_SUBSCRIPTION))) |
|
3021 | - ->executeStatement(); |
|
3022 | - |
|
3023 | - $query->delete('calendarchanges') |
|
3024 | - ->where($query->expr()->eq('calendarid', $query->createNamedParameter($subscriptionId))) |
|
3025 | - ->andWhere($query->expr()->eq('calendartype', $query->createNamedParameter(self::CALENDAR_TYPE_SUBSCRIPTION))) |
|
3026 | - ->executeStatement(); |
|
3027 | - |
|
3028 | - $query->delete($this->dbObjectPropertiesTable) |
|
3029 | - ->where($query->expr()->eq('calendarid', $query->createNamedParameter($subscriptionId))) |
|
3030 | - ->andWhere($query->expr()->eq('calendartype', $query->createNamedParameter(self::CALENDAR_TYPE_SUBSCRIPTION))) |
|
3031 | - ->executeStatement(); |
|
3032 | - |
|
3033 | - foreach ($uris as $uri) { |
|
3034 | - $this->addChange($subscriptionId, $uri, 3, self::CALENDAR_TYPE_SUBSCRIPTION); |
|
3035 | - } |
|
3036 | - } |
|
3037 | - |
|
3038 | - /** |
|
3039 | - * Move a calendar from one user to another |
|
3040 | - * |
|
3041 | - * @param string $uriName |
|
3042 | - * @param string $uriOrigin |
|
3043 | - * @param string $uriDestination |
|
3044 | - * @param string $newUriName (optional) the new uriName |
|
3045 | - */ |
|
3046 | - public function moveCalendar($uriName, $uriOrigin, $uriDestination, $newUriName = null) { |
|
3047 | - $query = $this->db->getQueryBuilder(); |
|
3048 | - $query->update('calendars') |
|
3049 | - ->set('principaluri', $query->createNamedParameter($uriDestination)) |
|
3050 | - ->set('uri', $query->createNamedParameter($newUriName ?: $uriName)) |
|
3051 | - ->where($query->expr()->eq('principaluri', $query->createNamedParameter($uriOrigin))) |
|
3052 | - ->andWhere($query->expr()->eq('uri', $query->createNamedParameter($uriName))) |
|
3053 | - ->executeStatement(); |
|
3054 | - } |
|
3055 | - |
|
3056 | - /** |
|
3057 | - * read VCalendar data into a VCalendar object |
|
3058 | - * |
|
3059 | - * @param string $objectData |
|
3060 | - * @return VCalendar |
|
3061 | - */ |
|
3062 | - protected function readCalendarData($objectData) { |
|
3063 | - return Reader::read($objectData); |
|
3064 | - } |
|
3065 | - |
|
3066 | - /** |
|
3067 | - * delete all properties from a given calendar object |
|
3068 | - * |
|
3069 | - * @param int $calendarId |
|
3070 | - * @param int $objectId |
|
3071 | - */ |
|
3072 | - protected function purgeProperties($calendarId, $objectId) { |
|
3073 | - $query = $this->db->getQueryBuilder(); |
|
3074 | - $query->delete($this->dbObjectPropertiesTable) |
|
3075 | - ->where($query->expr()->eq('objectid', $query->createNamedParameter($objectId))) |
|
3076 | - ->andWhere($query->expr()->eq('calendarid', $query->createNamedParameter($calendarId))); |
|
3077 | - $query->executeStatement(); |
|
3078 | - } |
|
3079 | - |
|
3080 | - /** |
|
3081 | - * get ID from a given calendar object |
|
3082 | - * |
|
3083 | - * @param int $calendarId |
|
3084 | - * @param string $uri |
|
3085 | - * @param int $calendarType |
|
3086 | - * @return int |
|
3087 | - */ |
|
3088 | - protected function getCalendarObjectId($calendarId, $uri, $calendarType):int { |
|
3089 | - $query = $this->db->getQueryBuilder(); |
|
3090 | - $query->select('id') |
|
3091 | - ->from('calendarobjects') |
|
3092 | - ->where($query->expr()->eq('uri', $query->createNamedParameter($uri))) |
|
3093 | - ->andWhere($query->expr()->eq('calendarid', $query->createNamedParameter($calendarId))) |
|
3094 | - ->andWhere($query->expr()->eq('calendartype', $query->createNamedParameter($calendarType))); |
|
3095 | - |
|
3096 | - $result = $query->executeQuery(); |
|
3097 | - $objectIds = $result->fetch(); |
|
3098 | - $result->closeCursor(); |
|
3099 | - |
|
3100 | - if (!isset($objectIds['id'])) { |
|
3101 | - throw new \InvalidArgumentException('Calendarobject does not exists: ' . $uri); |
|
3102 | - } |
|
3103 | - |
|
3104 | - return (int)$objectIds['id']; |
|
3105 | - } |
|
3106 | - |
|
3107 | - /** |
|
3108 | - * @throws \InvalidArgumentException |
|
3109 | - */ |
|
3110 | - public function pruneOutdatedSyncTokens(int $keep = 10_000): int { |
|
3111 | - if ($keep < 0) { |
|
3112 | - throw new \InvalidArgumentException(); |
|
3113 | - } |
|
3114 | - $query = $this->db->getQueryBuilder(); |
|
3115 | - $query->delete('calendarchanges') |
|
3116 | - ->orderBy('id', 'DESC') |
|
3117 | - ->setFirstResult($keep); |
|
3118 | - return $query->executeStatement(); |
|
3119 | - } |
|
3120 | - |
|
3121 | - /** |
|
3122 | - * return legacy endpoint principal name to new principal name |
|
3123 | - * |
|
3124 | - * @param $principalUri |
|
3125 | - * @param $toV2 |
|
3126 | - * @return string |
|
3127 | - */ |
|
3128 | - private function convertPrincipal($principalUri, $toV2) { |
|
3129 | - if ($this->principalBackend->getPrincipalPrefix() === 'principals') { |
|
3130 | - [, $name] = Uri\split($principalUri); |
|
3131 | - if ($toV2 === true) { |
|
3132 | - return "principals/users/$name"; |
|
3133 | - } |
|
3134 | - return "principals/$name"; |
|
3135 | - } |
|
3136 | - return $principalUri; |
|
3137 | - } |
|
3138 | - |
|
3139 | - /** |
|
3140 | - * adds information about an owner to the calendar data |
|
3141 | - * |
|
3142 | - */ |
|
3143 | - private function addOwnerPrincipalToCalendar(array $calendarInfo): array { |
|
3144 | - $ownerPrincipalKey = '{' . \OCA\DAV\DAV\Sharing\Plugin::NS_OWNCLOUD . '}owner-principal'; |
|
3145 | - $displaynameKey = '{' . \OCA\DAV\DAV\Sharing\Plugin::NS_NEXTCLOUD . '}owner-displayname'; |
|
3146 | - if (isset($calendarInfo[$ownerPrincipalKey])) { |
|
3147 | - $uri = $calendarInfo[$ownerPrincipalKey]; |
|
3148 | - } else { |
|
3149 | - $uri = $calendarInfo['principaluri']; |
|
3150 | - } |
|
3151 | - |
|
3152 | - $principalInformation = $this->principalBackend->getPrincipalByPath($uri); |
|
3153 | - if (isset($principalInformation['{DAV:}displayname'])) { |
|
3154 | - $calendarInfo[$displaynameKey] = $principalInformation['{DAV:}displayname']; |
|
3155 | - } |
|
3156 | - return $calendarInfo; |
|
3157 | - } |
|
3158 | - |
|
3159 | - private function addResourceTypeToCalendar(array $row, array $calendar): array { |
|
3160 | - if (isset($row['deleted_at'])) { |
|
3161 | - // Columns is set and not null -> this is a deleted calendar |
|
3162 | - // we send a custom resourcetype to hide the deleted calendar |
|
3163 | - // from ordinary DAV clients, but the Calendar app will know |
|
3164 | - // how to handle this special resource. |
|
3165 | - $calendar['{DAV:}resourcetype'] = new DAV\Xml\Property\ResourceType([ |
|
3166 | - '{DAV:}collection', |
|
3167 | - sprintf('{%s}deleted-calendar', \OCA\DAV\DAV\Sharing\Plugin::NS_NEXTCLOUD), |
|
3168 | - ]); |
|
3169 | - } |
|
3170 | - return $calendar; |
|
3171 | - } |
|
3172 | - |
|
3173 | - /** |
|
3174 | - * Amend the calendar info with database row data |
|
3175 | - * |
|
3176 | - * @param array $row |
|
3177 | - * @param array $calendar |
|
3178 | - * |
|
3179 | - * @return array |
|
3180 | - */ |
|
3181 | - private function rowToCalendar($row, array $calendar): array { |
|
3182 | - foreach ($this->propertyMap as $xmlName => [$dbName, $type]) { |
|
3183 | - $value = $row[$dbName]; |
|
3184 | - if ($value !== null) { |
|
3185 | - settype($value, $type); |
|
3186 | - } |
|
3187 | - $calendar[$xmlName] = $value; |
|
3188 | - } |
|
3189 | - return $calendar; |
|
3190 | - } |
|
3191 | - |
|
3192 | - /** |
|
3193 | - * Amend the subscription info with database row data |
|
3194 | - * |
|
3195 | - * @param array $row |
|
3196 | - * @param array $subscription |
|
3197 | - * |
|
3198 | - * @return array |
|
3199 | - */ |
|
3200 | - private function rowToSubscription($row, array $subscription): array { |
|
3201 | - foreach ($this->subscriptionPropertyMap as $xmlName => [$dbName, $type]) { |
|
3202 | - $value = $row[$dbName]; |
|
3203 | - if ($value !== null) { |
|
3204 | - settype($value, $type); |
|
3205 | - } |
|
3206 | - $subscription[$xmlName] = $value; |
|
3207 | - } |
|
3208 | - return $subscription; |
|
3209 | - } |
|
124 | + use TTransactional; |
|
125 | + |
|
126 | + public const CALENDAR_TYPE_CALENDAR = 0; |
|
127 | + public const CALENDAR_TYPE_SUBSCRIPTION = 1; |
|
128 | + |
|
129 | + public const PERSONAL_CALENDAR_URI = 'personal'; |
|
130 | + public const PERSONAL_CALENDAR_NAME = 'Personal'; |
|
131 | + |
|
132 | + public const RESOURCE_BOOKING_CALENDAR_URI = 'calendar'; |
|
133 | + public const RESOURCE_BOOKING_CALENDAR_NAME = 'Calendar'; |
|
134 | + |
|
135 | + /** |
|
136 | + * We need to specify a max date, because we need to stop *somewhere* |
|
137 | + * |
|
138 | + * On 32 bit system the maximum for a signed integer is 2147483647, so |
|
139 | + * MAX_DATE cannot be higher than date('Y-m-d', 2147483647) which results |
|
140 | + * in 2038-01-19 to avoid problems when the date is converted |
|
141 | + * to a unix timestamp. |
|
142 | + */ |
|
143 | + public const MAX_DATE = '2038-01-01'; |
|
144 | + |
|
145 | + public const ACCESS_PUBLIC = 4; |
|
146 | + public const CLASSIFICATION_PUBLIC = 0; |
|
147 | + public const CLASSIFICATION_PRIVATE = 1; |
|
148 | + public const CLASSIFICATION_CONFIDENTIAL = 2; |
|
149 | + |
|
150 | + /** |
|
151 | + * List of CalDAV properties, and how they map to database field names and their type |
|
152 | + * Add your own properties by simply adding on to this array. |
|
153 | + * |
|
154 | + * @var array |
|
155 | + * @psalm-var array<string, string[]> |
|
156 | + */ |
|
157 | + public array $propertyMap = [ |
|
158 | + '{DAV:}displayname' => ['displayname', 'string'], |
|
159 | + '{urn:ietf:params:xml:ns:caldav}calendar-description' => ['description', 'string'], |
|
160 | + '{urn:ietf:params:xml:ns:caldav}calendar-timezone' => ['timezone', 'string'], |
|
161 | + '{http://apple.com/ns/ical/}calendar-order' => ['calendarorder', 'int'], |
|
162 | + '{http://apple.com/ns/ical/}calendar-color' => ['calendarcolor', 'string'], |
|
163 | + '{' . \OCA\DAV\DAV\Sharing\Plugin::NS_NEXTCLOUD . '}deleted-at' => ['deleted_at', 'int'], |
|
164 | + ]; |
|
165 | + |
|
166 | + /** |
|
167 | + * List of subscription properties, and how they map to database field names. |
|
168 | + * |
|
169 | + * @var array |
|
170 | + */ |
|
171 | + public array $subscriptionPropertyMap = [ |
|
172 | + '{DAV:}displayname' => ['displayname', 'string'], |
|
173 | + '{http://apple.com/ns/ical/}refreshrate' => ['refreshrate', 'string'], |
|
174 | + '{http://apple.com/ns/ical/}calendar-order' => ['calendarorder', 'int'], |
|
175 | + '{http://apple.com/ns/ical/}calendar-color' => ['calendarcolor', 'string'], |
|
176 | + '{http://calendarserver.org/ns/}subscribed-strip-todos' => ['striptodos', 'bool'], |
|
177 | + '{http://calendarserver.org/ns/}subscribed-strip-alarms' => ['stripalarms', 'string'], |
|
178 | + '{http://calendarserver.org/ns/}subscribed-strip-attachments' => ['stripattachments', 'string'], |
|
179 | + ]; |
|
180 | + |
|
181 | + /** |
|
182 | + * properties to index |
|
183 | + * |
|
184 | + * This list has to be kept in sync with ICalendarQuery::SEARCH_PROPERTY_* |
|
185 | + * |
|
186 | + * @see \OCP\Calendar\ICalendarQuery |
|
187 | + */ |
|
188 | + private const INDEXED_PROPERTIES = [ |
|
189 | + 'CATEGORIES', |
|
190 | + 'COMMENT', |
|
191 | + 'DESCRIPTION', |
|
192 | + 'LOCATION', |
|
193 | + 'RESOURCES', |
|
194 | + 'STATUS', |
|
195 | + 'SUMMARY', |
|
196 | + 'ATTENDEE', |
|
197 | + 'CONTACT', |
|
198 | + 'ORGANIZER' |
|
199 | + ]; |
|
200 | + |
|
201 | + /** @var array parameters to index */ |
|
202 | + public static array $indexParameters = [ |
|
203 | + 'ATTENDEE' => ['CN'], |
|
204 | + 'ORGANIZER' => ['CN'], |
|
205 | + ]; |
|
206 | + |
|
207 | + /** |
|
208 | + * @var string[] Map of uid => display name |
|
209 | + */ |
|
210 | + protected array $userDisplayNames; |
|
211 | + |
|
212 | + private IDBConnection $db; |
|
213 | + private Backend $calendarSharingBackend; |
|
214 | + private Principal $principalBackend; |
|
215 | + private IUserManager $userManager; |
|
216 | + private ISecureRandom $random; |
|
217 | + private LoggerInterface $logger; |
|
218 | + private IEventDispatcher $dispatcher; |
|
219 | + private IConfig $config; |
|
220 | + private bool $legacyEndpoint; |
|
221 | + private string $dbObjectPropertiesTable = 'calendarobjects_props'; |
|
222 | + |
|
223 | + public function __construct(IDBConnection $db, |
|
224 | + Principal $principalBackend, |
|
225 | + IUserManager $userManager, |
|
226 | + IGroupManager $groupManager, |
|
227 | + ISecureRandom $random, |
|
228 | + LoggerInterface $logger, |
|
229 | + IEventDispatcher $dispatcher, |
|
230 | + IConfig $config, |
|
231 | + bool $legacyEndpoint = false) { |
|
232 | + $this->db = $db; |
|
233 | + $this->principalBackend = $principalBackend; |
|
234 | + $this->userManager = $userManager; |
|
235 | + $this->calendarSharingBackend = new Backend($this->db, $this->userManager, $groupManager, $principalBackend, 'calendar'); |
|
236 | + $this->random = $random; |
|
237 | + $this->logger = $logger; |
|
238 | + $this->dispatcher = $dispatcher; |
|
239 | + $this->config = $config; |
|
240 | + $this->legacyEndpoint = $legacyEndpoint; |
|
241 | + } |
|
242 | + |
|
243 | + /** |
|
244 | + * Return the number of calendars for a principal |
|
245 | + * |
|
246 | + * By default this excludes the automatically generated birthday calendar |
|
247 | + * |
|
248 | + * @param $principalUri |
|
249 | + * @param bool $excludeBirthday |
|
250 | + * @return int |
|
251 | + */ |
|
252 | + public function getCalendarsForUserCount($principalUri, $excludeBirthday = true) { |
|
253 | + $principalUri = $this->convertPrincipal($principalUri, true); |
|
254 | + $query = $this->db->getQueryBuilder(); |
|
255 | + $query->select($query->func()->count('*')) |
|
256 | + ->from('calendars'); |
|
257 | + |
|
258 | + if ($principalUri === '') { |
|
259 | + $query->where($query->expr()->emptyString('principaluri')); |
|
260 | + } else { |
|
261 | + $query->where($query->expr()->eq('principaluri', $query->createNamedParameter($principalUri))); |
|
262 | + } |
|
263 | + |
|
264 | + if ($excludeBirthday) { |
|
265 | + $query->andWhere($query->expr()->neq('uri', $query->createNamedParameter(BirthdayService::BIRTHDAY_CALENDAR_URI))); |
|
266 | + } |
|
267 | + |
|
268 | + $result = $query->executeQuery(); |
|
269 | + $column = (int)$result->fetchOne(); |
|
270 | + $result->closeCursor(); |
|
271 | + return $column; |
|
272 | + } |
|
273 | + |
|
274 | + /** |
|
275 | + * @return array{id: int, deleted_at: int}[] |
|
276 | + */ |
|
277 | + public function getDeletedCalendars(int $deletedBefore): array { |
|
278 | + $qb = $this->db->getQueryBuilder(); |
|
279 | + $qb->select(['id', 'deleted_at']) |
|
280 | + ->from('calendars') |
|
281 | + ->where($qb->expr()->isNotNull('deleted_at')) |
|
282 | + ->andWhere($qb->expr()->lt('deleted_at', $qb->createNamedParameter($deletedBefore))); |
|
283 | + $result = $qb->executeQuery(); |
|
284 | + $raw = $result->fetchAll(); |
|
285 | + $result->closeCursor(); |
|
286 | + return array_map(function ($row) { |
|
287 | + return [ |
|
288 | + 'id' => (int) $row['id'], |
|
289 | + 'deleted_at' => (int) $row['deleted_at'], |
|
290 | + ]; |
|
291 | + }, $raw); |
|
292 | + } |
|
293 | + |
|
294 | + /** |
|
295 | + * Returns a list of calendars for a principal. |
|
296 | + * |
|
297 | + * Every project is an array with the following keys: |
|
298 | + * * id, a unique id that will be used by other functions to modify the |
|
299 | + * calendar. This can be the same as the uri or a database key. |
|
300 | + * * uri, which the basename of the uri with which the calendar is |
|
301 | + * accessed. |
|
302 | + * * principaluri. The owner of the calendar. Almost always the same as |
|
303 | + * principalUri passed to this method. |
|
304 | + * |
|
305 | + * Furthermore it can contain webdav properties in clark notation. A very |
|
306 | + * common one is '{DAV:}displayname'. |
|
307 | + * |
|
308 | + * Many clients also require: |
|
309 | + * {urn:ietf:params:xml:ns:caldav}supported-calendar-component-set |
|
310 | + * For this property, you can just return an instance of |
|
311 | + * Sabre\CalDAV\Property\SupportedCalendarComponentSet. |
|
312 | + * |
|
313 | + * If you return {http://sabredav.org/ns}read-only and set the value to 1, |
|
314 | + * ACL will automatically be put in read-only mode. |
|
315 | + * |
|
316 | + * @param string $principalUri |
|
317 | + * @return array |
|
318 | + */ |
|
319 | + public function getCalendarsForUser($principalUri) { |
|
320 | + $principalUriOriginal = $principalUri; |
|
321 | + $principalUri = $this->convertPrincipal($principalUri, true); |
|
322 | + $fields = array_column($this->propertyMap, 0); |
|
323 | + $fields[] = 'id'; |
|
324 | + $fields[] = 'uri'; |
|
325 | + $fields[] = 'synctoken'; |
|
326 | + $fields[] = 'components'; |
|
327 | + $fields[] = 'principaluri'; |
|
328 | + $fields[] = 'transparent'; |
|
329 | + |
|
330 | + // Making fields a comma-delimited list |
|
331 | + $query = $this->db->getQueryBuilder(); |
|
332 | + $query->select($fields) |
|
333 | + ->from('calendars') |
|
334 | + ->orderBy('calendarorder', 'ASC'); |
|
335 | + |
|
336 | + if ($principalUri === '') { |
|
337 | + $query->where($query->expr()->emptyString('principaluri')); |
|
338 | + } else { |
|
339 | + $query->where($query->expr()->eq('principaluri', $query->createNamedParameter($principalUri))); |
|
340 | + } |
|
341 | + |
|
342 | + $result = $query->executeQuery(); |
|
343 | + |
|
344 | + $calendars = []; |
|
345 | + while ($row = $result->fetch()) { |
|
346 | + $row['principaluri'] = (string) $row['principaluri']; |
|
347 | + $components = []; |
|
348 | + if ($row['components']) { |
|
349 | + $components = explode(',',$row['components']); |
|
350 | + } |
|
351 | + |
|
352 | + $calendar = [ |
|
353 | + 'id' => $row['id'], |
|
354 | + 'uri' => $row['uri'], |
|
355 | + 'principaluri' => $this->convertPrincipal($row['principaluri'], !$this->legacyEndpoint), |
|
356 | + '{' . Plugin::NS_CALENDARSERVER . '}getctag' => 'http://sabre.io/ns/sync/' . ($row['synctoken']?$row['synctoken']:'0'), |
|
357 | + '{http://sabredav.org/ns}sync-token' => $row['synctoken']?$row['synctoken']:'0', |
|
358 | + '{' . Plugin::NS_CALDAV . '}supported-calendar-component-set' => new SupportedCalendarComponentSet($components), |
|
359 | + '{' . Plugin::NS_CALDAV . '}schedule-calendar-transp' => new ScheduleCalendarTransp($row['transparent']?'transparent':'opaque'), |
|
360 | + '{' . \OCA\DAV\DAV\Sharing\Plugin::NS_OWNCLOUD . '}owner-principal' => $this->convertPrincipal($principalUri, !$this->legacyEndpoint), |
|
361 | + ]; |
|
362 | + |
|
363 | + $calendar = $this->rowToCalendar($row, $calendar); |
|
364 | + $calendar = $this->addOwnerPrincipalToCalendar($calendar); |
|
365 | + $calendar = $this->addResourceTypeToCalendar($row, $calendar); |
|
366 | + |
|
367 | + if (!isset($calendars[$calendar['id']])) { |
|
368 | + $calendars[$calendar['id']] = $calendar; |
|
369 | + } |
|
370 | + } |
|
371 | + $result->closeCursor(); |
|
372 | + |
|
373 | + // query for shared calendars |
|
374 | + $principals = $this->principalBackend->getGroupMembership($principalUriOriginal, true); |
|
375 | + $principals = array_merge($principals, $this->principalBackend->getCircleMembership($principalUriOriginal)); |
|
376 | + |
|
377 | + $principals[] = $principalUri; |
|
378 | + |
|
379 | + $fields = array_column($this->propertyMap, 0); |
|
380 | + $fields[] = 'a.id'; |
|
381 | + $fields[] = 'a.uri'; |
|
382 | + $fields[] = 'a.synctoken'; |
|
383 | + $fields[] = 'a.components'; |
|
384 | + $fields[] = 'a.principaluri'; |
|
385 | + $fields[] = 'a.transparent'; |
|
386 | + $fields[] = 's.access'; |
|
387 | + $query = $this->db->getQueryBuilder(); |
|
388 | + $query->select($fields) |
|
389 | + ->from('dav_shares', 's') |
|
390 | + ->join('s', 'calendars', 'a', $query->expr()->eq('s.resourceid', 'a.id')) |
|
391 | + ->where($query->expr()->in('s.principaluri', $query->createParameter('principaluri'))) |
|
392 | + ->andWhere($query->expr()->eq('s.type', $query->createParameter('type'))) |
|
393 | + ->setParameter('type', 'calendar') |
|
394 | + ->setParameter('principaluri', $principals, \Doctrine\DBAL\Connection::PARAM_STR_ARRAY); |
|
395 | + |
|
396 | + $result = $query->executeQuery(); |
|
397 | + |
|
398 | + $readOnlyPropertyName = '{' . \OCA\DAV\DAV\Sharing\Plugin::NS_OWNCLOUD . '}read-only'; |
|
399 | + while ($row = $result->fetch()) { |
|
400 | + $row['principaluri'] = (string) $row['principaluri']; |
|
401 | + if ($row['principaluri'] === $principalUri) { |
|
402 | + continue; |
|
403 | + } |
|
404 | + |
|
405 | + $readOnly = (int) $row['access'] === Backend::ACCESS_READ; |
|
406 | + if (isset($calendars[$row['id']])) { |
|
407 | + if ($readOnly) { |
|
408 | + // New share can not have more permissions then the old one. |
|
409 | + continue; |
|
410 | + } |
|
411 | + if (isset($calendars[$row['id']][$readOnlyPropertyName]) && |
|
412 | + $calendars[$row['id']][$readOnlyPropertyName] === 0) { |
|
413 | + // Old share is already read-write, no more permissions can be gained |
|
414 | + continue; |
|
415 | + } |
|
416 | + } |
|
417 | + |
|
418 | + [, $name] = Uri\split($row['principaluri']); |
|
419 | + $uri = $row['uri'] . '_shared_by_' . $name; |
|
420 | + $row['displayname'] = $row['displayname'] . ' (' . $this->getUserDisplayName($name) . ')'; |
|
421 | + $components = []; |
|
422 | + if ($row['components']) { |
|
423 | + $components = explode(',',$row['components']); |
|
424 | + } |
|
425 | + $calendar = [ |
|
426 | + 'id' => $row['id'], |
|
427 | + 'uri' => $uri, |
|
428 | + 'principaluri' => $this->convertPrincipal($principalUri, !$this->legacyEndpoint), |
|
429 | + '{' . Plugin::NS_CALENDARSERVER . '}getctag' => 'http://sabre.io/ns/sync/' . ($row['synctoken']?$row['synctoken']:'0'), |
|
430 | + '{http://sabredav.org/ns}sync-token' => $row['synctoken']?$row['synctoken']:'0', |
|
431 | + '{' . Plugin::NS_CALDAV . '}supported-calendar-component-set' => new SupportedCalendarComponentSet($components), |
|
432 | + '{' . Plugin::NS_CALDAV . '}schedule-calendar-transp' => new ScheduleCalendarTransp('transparent'), |
|
433 | + '{' . \OCA\DAV\DAV\Sharing\Plugin::NS_OWNCLOUD . '}owner-principal' => $this->convertPrincipal($row['principaluri'], !$this->legacyEndpoint), |
|
434 | + $readOnlyPropertyName => $readOnly, |
|
435 | + ]; |
|
436 | + |
|
437 | + $calendar = $this->rowToCalendar($row, $calendar); |
|
438 | + $calendar = $this->addOwnerPrincipalToCalendar($calendar); |
|
439 | + $calendar = $this->addResourceTypeToCalendar($row, $calendar); |
|
440 | + |
|
441 | + $calendars[$calendar['id']] = $calendar; |
|
442 | + } |
|
443 | + $result->closeCursor(); |
|
444 | + |
|
445 | + return array_values($calendars); |
|
446 | + } |
|
447 | + |
|
448 | + /** |
|
449 | + * @param $principalUri |
|
450 | + * @return array |
|
451 | + */ |
|
452 | + public function getUsersOwnCalendars($principalUri) { |
|
453 | + $principalUri = $this->convertPrincipal($principalUri, true); |
|
454 | + $fields = array_column($this->propertyMap, 0); |
|
455 | + $fields[] = 'id'; |
|
456 | + $fields[] = 'uri'; |
|
457 | + $fields[] = 'synctoken'; |
|
458 | + $fields[] = 'components'; |
|
459 | + $fields[] = 'principaluri'; |
|
460 | + $fields[] = 'transparent'; |
|
461 | + // Making fields a comma-delimited list |
|
462 | + $query = $this->db->getQueryBuilder(); |
|
463 | + $query->select($fields)->from('calendars') |
|
464 | + ->where($query->expr()->eq('principaluri', $query->createNamedParameter($principalUri))) |
|
465 | + ->orderBy('calendarorder', 'ASC'); |
|
466 | + $stmt = $query->executeQuery(); |
|
467 | + $calendars = []; |
|
468 | + while ($row = $stmt->fetch()) { |
|
469 | + $row['principaluri'] = (string) $row['principaluri']; |
|
470 | + $components = []; |
|
471 | + if ($row['components']) { |
|
472 | + $components = explode(',',$row['components']); |
|
473 | + } |
|
474 | + $calendar = [ |
|
475 | + 'id' => $row['id'], |
|
476 | + 'uri' => $row['uri'], |
|
477 | + 'principaluri' => $this->convertPrincipal($row['principaluri'], !$this->legacyEndpoint), |
|
478 | + '{' . Plugin::NS_CALENDARSERVER . '}getctag' => 'http://sabre.io/ns/sync/' . ($row['synctoken']?$row['synctoken']:'0'), |
|
479 | + '{http://sabredav.org/ns}sync-token' => $row['synctoken']?$row['synctoken']:'0', |
|
480 | + '{' . Plugin::NS_CALDAV . '}supported-calendar-component-set' => new SupportedCalendarComponentSet($components), |
|
481 | + '{' . Plugin::NS_CALDAV . '}schedule-calendar-transp' => new ScheduleCalendarTransp($row['transparent']?'transparent':'opaque'), |
|
482 | + ]; |
|
483 | + |
|
484 | + $calendar = $this->rowToCalendar($row, $calendar); |
|
485 | + $calendar = $this->addOwnerPrincipalToCalendar($calendar); |
|
486 | + $calendar = $this->addResourceTypeToCalendar($row, $calendar); |
|
487 | + |
|
488 | + if (!isset($calendars[$calendar['id']])) { |
|
489 | + $calendars[$calendar['id']] = $calendar; |
|
490 | + } |
|
491 | + } |
|
492 | + $stmt->closeCursor(); |
|
493 | + return array_values($calendars); |
|
494 | + } |
|
495 | + |
|
496 | + |
|
497 | + /** |
|
498 | + * @param $uid |
|
499 | + * @return string |
|
500 | + */ |
|
501 | + private function getUserDisplayName($uid) { |
|
502 | + if (!isset($this->userDisplayNames[$uid])) { |
|
503 | + $user = $this->userManager->get($uid); |
|
504 | + |
|
505 | + if ($user instanceof IUser) { |
|
506 | + $this->userDisplayNames[$uid] = $user->getDisplayName(); |
|
507 | + } else { |
|
508 | + $this->userDisplayNames[$uid] = $uid; |
|
509 | + } |
|
510 | + } |
|
511 | + |
|
512 | + return $this->userDisplayNames[$uid]; |
|
513 | + } |
|
514 | + |
|
515 | + /** |
|
516 | + * @return array |
|
517 | + */ |
|
518 | + public function getPublicCalendars() { |
|
519 | + $fields = array_column($this->propertyMap, 0); |
|
520 | + $fields[] = 'a.id'; |
|
521 | + $fields[] = 'a.uri'; |
|
522 | + $fields[] = 'a.synctoken'; |
|
523 | + $fields[] = 'a.components'; |
|
524 | + $fields[] = 'a.principaluri'; |
|
525 | + $fields[] = 'a.transparent'; |
|
526 | + $fields[] = 's.access'; |
|
527 | + $fields[] = 's.publicuri'; |
|
528 | + $calendars = []; |
|
529 | + $query = $this->db->getQueryBuilder(); |
|
530 | + $result = $query->select($fields) |
|
531 | + ->from('dav_shares', 's') |
|
532 | + ->join('s', 'calendars', 'a', $query->expr()->eq('s.resourceid', 'a.id')) |
|
533 | + ->where($query->expr()->in('s.access', $query->createNamedParameter(self::ACCESS_PUBLIC))) |
|
534 | + ->andWhere($query->expr()->eq('s.type', $query->createNamedParameter('calendar'))) |
|
535 | + ->executeQuery(); |
|
536 | + |
|
537 | + while ($row = $result->fetch()) { |
|
538 | + $row['principaluri'] = (string) $row['principaluri']; |
|
539 | + [, $name] = Uri\split($row['principaluri']); |
|
540 | + $row['displayname'] = $row['displayname'] . "($name)"; |
|
541 | + $components = []; |
|
542 | + if ($row['components']) { |
|
543 | + $components = explode(',',$row['components']); |
|
544 | + } |
|
545 | + $calendar = [ |
|
546 | + 'id' => $row['id'], |
|
547 | + 'uri' => $row['publicuri'], |
|
548 | + 'principaluri' => $this->convertPrincipal($row['principaluri'], !$this->legacyEndpoint), |
|
549 | + '{' . Plugin::NS_CALENDARSERVER . '}getctag' => 'http://sabre.io/ns/sync/' . ($row['synctoken']?$row['synctoken']:'0'), |
|
550 | + '{http://sabredav.org/ns}sync-token' => $row['synctoken']?$row['synctoken']:'0', |
|
551 | + '{' . Plugin::NS_CALDAV . '}supported-calendar-component-set' => new SupportedCalendarComponentSet($components), |
|
552 | + '{' . Plugin::NS_CALDAV . '}schedule-calendar-transp' => new ScheduleCalendarTransp($row['transparent']?'transparent':'opaque'), |
|
553 | + '{' . \OCA\DAV\DAV\Sharing\Plugin::NS_OWNCLOUD . '}owner-principal' => $this->convertPrincipal($row['principaluri'], $this->legacyEndpoint), |
|
554 | + '{' . \OCA\DAV\DAV\Sharing\Plugin::NS_OWNCLOUD . '}read-only' => (int)$row['access'] === Backend::ACCESS_READ, |
|
555 | + '{' . \OCA\DAV\DAV\Sharing\Plugin::NS_OWNCLOUD . '}public' => (int)$row['access'] === self::ACCESS_PUBLIC, |
|
556 | + ]; |
|
557 | + |
|
558 | + $calendar = $this->rowToCalendar($row, $calendar); |
|
559 | + $calendar = $this->addOwnerPrincipalToCalendar($calendar); |
|
560 | + $calendar = $this->addResourceTypeToCalendar($row, $calendar); |
|
561 | + |
|
562 | + if (!isset($calendars[$calendar['id']])) { |
|
563 | + $calendars[$calendar['id']] = $calendar; |
|
564 | + } |
|
565 | + } |
|
566 | + $result->closeCursor(); |
|
567 | + |
|
568 | + return array_values($calendars); |
|
569 | + } |
|
570 | + |
|
571 | + /** |
|
572 | + * @param string $uri |
|
573 | + * @return array |
|
574 | + * @throws NotFound |
|
575 | + */ |
|
576 | + public function getPublicCalendar($uri) { |
|
577 | + $fields = array_column($this->propertyMap, 0); |
|
578 | + $fields[] = 'a.id'; |
|
579 | + $fields[] = 'a.uri'; |
|
580 | + $fields[] = 'a.synctoken'; |
|
581 | + $fields[] = 'a.components'; |
|
582 | + $fields[] = 'a.principaluri'; |
|
583 | + $fields[] = 'a.transparent'; |
|
584 | + $fields[] = 's.access'; |
|
585 | + $fields[] = 's.publicuri'; |
|
586 | + $query = $this->db->getQueryBuilder(); |
|
587 | + $result = $query->select($fields) |
|
588 | + ->from('dav_shares', 's') |
|
589 | + ->join('s', 'calendars', 'a', $query->expr()->eq('s.resourceid', 'a.id')) |
|
590 | + ->where($query->expr()->in('s.access', $query->createNamedParameter(self::ACCESS_PUBLIC))) |
|
591 | + ->andWhere($query->expr()->eq('s.type', $query->createNamedParameter('calendar'))) |
|
592 | + ->andWhere($query->expr()->eq('s.publicuri', $query->createNamedParameter($uri))) |
|
593 | + ->executeQuery(); |
|
594 | + |
|
595 | + $row = $result->fetch(); |
|
596 | + |
|
597 | + $result->closeCursor(); |
|
598 | + |
|
599 | + if ($row === false) { |
|
600 | + throw new NotFound('Node with name \'' . $uri . '\' could not be found'); |
|
601 | + } |
|
602 | + |
|
603 | + $row['principaluri'] = (string) $row['principaluri']; |
|
604 | + [, $name] = Uri\split($row['principaluri']); |
|
605 | + $row['displayname'] = $row['displayname'] . ' ' . "($name)"; |
|
606 | + $components = []; |
|
607 | + if ($row['components']) { |
|
608 | + $components = explode(',',$row['components']); |
|
609 | + } |
|
610 | + $calendar = [ |
|
611 | + 'id' => $row['id'], |
|
612 | + 'uri' => $row['publicuri'], |
|
613 | + 'principaluri' => $this->convertPrincipal($row['principaluri'], !$this->legacyEndpoint), |
|
614 | + '{' . Plugin::NS_CALENDARSERVER . '}getctag' => 'http://sabre.io/ns/sync/' . ($row['synctoken']?$row['synctoken']:'0'), |
|
615 | + '{http://sabredav.org/ns}sync-token' => $row['synctoken']?$row['synctoken']:'0', |
|
616 | + '{' . Plugin::NS_CALDAV . '}supported-calendar-component-set' => new SupportedCalendarComponentSet($components), |
|
617 | + '{' . Plugin::NS_CALDAV . '}schedule-calendar-transp' => new ScheduleCalendarTransp($row['transparent']?'transparent':'opaque'), |
|
618 | + '{' . \OCA\DAV\DAV\Sharing\Plugin::NS_OWNCLOUD . '}owner-principal' => $this->convertPrincipal($row['principaluri'], !$this->legacyEndpoint), |
|
619 | + '{' . \OCA\DAV\DAV\Sharing\Plugin::NS_OWNCLOUD . '}read-only' => (int)$row['access'] === Backend::ACCESS_READ, |
|
620 | + '{' . \OCA\DAV\DAV\Sharing\Plugin::NS_OWNCLOUD . '}public' => (int)$row['access'] === self::ACCESS_PUBLIC, |
|
621 | + ]; |
|
622 | + |
|
623 | + $calendar = $this->rowToCalendar($row, $calendar); |
|
624 | + $calendar = $this->addOwnerPrincipalToCalendar($calendar); |
|
625 | + $calendar = $this->addResourceTypeToCalendar($row, $calendar); |
|
626 | + |
|
627 | + return $calendar; |
|
628 | + } |
|
629 | + |
|
630 | + /** |
|
631 | + * @param string $principal |
|
632 | + * @param string $uri |
|
633 | + * @return array|null |
|
634 | + */ |
|
635 | + public function getCalendarByUri($principal, $uri) { |
|
636 | + $fields = array_column($this->propertyMap, 0); |
|
637 | + $fields[] = 'id'; |
|
638 | + $fields[] = 'uri'; |
|
639 | + $fields[] = 'synctoken'; |
|
640 | + $fields[] = 'components'; |
|
641 | + $fields[] = 'principaluri'; |
|
642 | + $fields[] = 'transparent'; |
|
643 | + |
|
644 | + // Making fields a comma-delimited list |
|
645 | + $query = $this->db->getQueryBuilder(); |
|
646 | + $query->select($fields)->from('calendars') |
|
647 | + ->where($query->expr()->eq('uri', $query->createNamedParameter($uri))) |
|
648 | + ->andWhere($query->expr()->eq('principaluri', $query->createNamedParameter($principal))) |
|
649 | + ->setMaxResults(1); |
|
650 | + $stmt = $query->executeQuery(); |
|
651 | + |
|
652 | + $row = $stmt->fetch(); |
|
653 | + $stmt->closeCursor(); |
|
654 | + if ($row === false) { |
|
655 | + return null; |
|
656 | + } |
|
657 | + |
|
658 | + $row['principaluri'] = (string) $row['principaluri']; |
|
659 | + $components = []; |
|
660 | + if ($row['components']) { |
|
661 | + $components = explode(',',$row['components']); |
|
662 | + } |
|
663 | + |
|
664 | + $calendar = [ |
|
665 | + 'id' => $row['id'], |
|
666 | + 'uri' => $row['uri'], |
|
667 | + 'principaluri' => $this->convertPrincipal($row['principaluri'], !$this->legacyEndpoint), |
|
668 | + '{' . Plugin::NS_CALENDARSERVER . '}getctag' => 'http://sabre.io/ns/sync/' . ($row['synctoken']?$row['synctoken']:'0'), |
|
669 | + '{http://sabredav.org/ns}sync-token' => $row['synctoken']?$row['synctoken']:'0', |
|
670 | + '{' . Plugin::NS_CALDAV . '}supported-calendar-component-set' => new SupportedCalendarComponentSet($components), |
|
671 | + '{' . Plugin::NS_CALDAV . '}schedule-calendar-transp' => new ScheduleCalendarTransp($row['transparent']?'transparent':'opaque'), |
|
672 | + ]; |
|
673 | + |
|
674 | + $calendar = $this->rowToCalendar($row, $calendar); |
|
675 | + $calendar = $this->addOwnerPrincipalToCalendar($calendar); |
|
676 | + $calendar = $this->addResourceTypeToCalendar($row, $calendar); |
|
677 | + |
|
678 | + return $calendar; |
|
679 | + } |
|
680 | + |
|
681 | + /** |
|
682 | + * @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 }|null |
|
683 | + */ |
|
684 | + public function getCalendarById(int $calendarId): ?array { |
|
685 | + $fields = array_column($this->propertyMap, 0); |
|
686 | + $fields[] = 'id'; |
|
687 | + $fields[] = 'uri'; |
|
688 | + $fields[] = 'synctoken'; |
|
689 | + $fields[] = 'components'; |
|
690 | + $fields[] = 'principaluri'; |
|
691 | + $fields[] = 'transparent'; |
|
692 | + |
|
693 | + // Making fields a comma-delimited list |
|
694 | + $query = $this->db->getQueryBuilder(); |
|
695 | + $query->select($fields)->from('calendars') |
|
696 | + ->where($query->expr()->eq('id', $query->createNamedParameter($calendarId))) |
|
697 | + ->setMaxResults(1); |
|
698 | + $stmt = $query->executeQuery(); |
|
699 | + |
|
700 | + $row = $stmt->fetch(); |
|
701 | + $stmt->closeCursor(); |
|
702 | + if ($row === false) { |
|
703 | + return null; |
|
704 | + } |
|
705 | + |
|
706 | + $row['principaluri'] = (string) $row['principaluri']; |
|
707 | + $components = []; |
|
708 | + if ($row['components']) { |
|
709 | + $components = explode(',',$row['components']); |
|
710 | + } |
|
711 | + |
|
712 | + $calendar = [ |
|
713 | + 'id' => $row['id'], |
|
714 | + 'uri' => $row['uri'], |
|
715 | + 'principaluri' => $this->convertPrincipal($row['principaluri'], !$this->legacyEndpoint), |
|
716 | + '{' . Plugin::NS_CALENDARSERVER . '}getctag' => 'http://sabre.io/ns/sync/' . ($row['synctoken']?$row['synctoken']:'0'), |
|
717 | + '{http://sabredav.org/ns}sync-token' => $row['synctoken'] ?? 0, |
|
718 | + '{' . Plugin::NS_CALDAV . '}supported-calendar-component-set' => new SupportedCalendarComponentSet($components), |
|
719 | + '{' . Plugin::NS_CALDAV . '}schedule-calendar-transp' => new ScheduleCalendarTransp($row['transparent']?'transparent':'opaque'), |
|
720 | + ]; |
|
721 | + |
|
722 | + $calendar = $this->rowToCalendar($row, $calendar); |
|
723 | + $calendar = $this->addOwnerPrincipalToCalendar($calendar); |
|
724 | + $calendar = $this->addResourceTypeToCalendar($row, $calendar); |
|
725 | + |
|
726 | + return $calendar; |
|
727 | + } |
|
728 | + |
|
729 | + /** |
|
730 | + * @param $subscriptionId |
|
731 | + */ |
|
732 | + public function getSubscriptionById($subscriptionId) { |
|
733 | + $fields = array_column($this->subscriptionPropertyMap, 0); |
|
734 | + $fields[] = 'id'; |
|
735 | + $fields[] = 'uri'; |
|
736 | + $fields[] = 'source'; |
|
737 | + $fields[] = 'synctoken'; |
|
738 | + $fields[] = 'principaluri'; |
|
739 | + $fields[] = 'lastmodified'; |
|
740 | + |
|
741 | + $query = $this->db->getQueryBuilder(); |
|
742 | + $query->select($fields) |
|
743 | + ->from('calendarsubscriptions') |
|
744 | + ->where($query->expr()->eq('id', $query->createNamedParameter($subscriptionId))) |
|
745 | + ->orderBy('calendarorder', 'asc'); |
|
746 | + $stmt = $query->executeQuery(); |
|
747 | + |
|
748 | + $row = $stmt->fetch(); |
|
749 | + $stmt->closeCursor(); |
|
750 | + if ($row === false) { |
|
751 | + return null; |
|
752 | + } |
|
753 | + |
|
754 | + $row['principaluri'] = (string) $row['principaluri']; |
|
755 | + $subscription = [ |
|
756 | + 'id' => $row['id'], |
|
757 | + 'uri' => $row['uri'], |
|
758 | + 'principaluri' => $row['principaluri'], |
|
759 | + 'source' => $row['source'], |
|
760 | + 'lastmodified' => $row['lastmodified'], |
|
761 | + '{' . Plugin::NS_CALDAV . '}supported-calendar-component-set' => new SupportedCalendarComponentSet(['VTODO', 'VEVENT']), |
|
762 | + '{http://sabredav.org/ns}sync-token' => $row['synctoken']?$row['synctoken']:'0', |
|
763 | + ]; |
|
764 | + |
|
765 | + return $this->rowToSubscription($row, $subscription); |
|
766 | + } |
|
767 | + |
|
768 | + /** |
|
769 | + * Creates a new calendar for a principal. |
|
770 | + * |
|
771 | + * If the creation was a success, an id must be returned that can be used to reference |
|
772 | + * this calendar in other methods, such as updateCalendar. |
|
773 | + * |
|
774 | + * @param string $principalUri |
|
775 | + * @param string $calendarUri |
|
776 | + * @param array $properties |
|
777 | + * @return int |
|
778 | + * |
|
779 | + * @throws CalendarException |
|
780 | + */ |
|
781 | + public function createCalendar($principalUri, $calendarUri, array $properties) { |
|
782 | + if (strlen($calendarUri) > 255) { |
|
783 | + throw new CalendarException('URI too long. Calendar not created'); |
|
784 | + } |
|
785 | + |
|
786 | + $values = [ |
|
787 | + 'principaluri' => $this->convertPrincipal($principalUri, true), |
|
788 | + 'uri' => $calendarUri, |
|
789 | + 'synctoken' => 1, |
|
790 | + 'transparent' => 0, |
|
791 | + 'components' => 'VEVENT,VTODO', |
|
792 | + 'displayname' => $calendarUri |
|
793 | + ]; |
|
794 | + |
|
795 | + // Default value |
|
796 | + $sccs = '{urn:ietf:params:xml:ns:caldav}supported-calendar-component-set'; |
|
797 | + if (isset($properties[$sccs])) { |
|
798 | + if (!($properties[$sccs] instanceof SupportedCalendarComponentSet)) { |
|
799 | + throw new DAV\Exception('The ' . $sccs . ' property must be of type: \Sabre\CalDAV\Property\SupportedCalendarComponentSet'); |
|
800 | + } |
|
801 | + $values['components'] = implode(',',$properties[$sccs]->getValue()); |
|
802 | + } elseif (isset($properties['components'])) { |
|
803 | + // Allow to provide components internally without having |
|
804 | + // to create a SupportedCalendarComponentSet object |
|
805 | + $values['components'] = $properties['components']; |
|
806 | + } |
|
807 | + |
|
808 | + $transp = '{' . Plugin::NS_CALDAV . '}schedule-calendar-transp'; |
|
809 | + if (isset($properties[$transp])) { |
|
810 | + $values['transparent'] = (int) ($properties[$transp]->getValue() === 'transparent'); |
|
811 | + } |
|
812 | + |
|
813 | + foreach ($this->propertyMap as $xmlName => [$dbName, $type]) { |
|
814 | + if (isset($properties[$xmlName])) { |
|
815 | + $values[$dbName] = $properties[$xmlName]; |
|
816 | + } |
|
817 | + } |
|
818 | + |
|
819 | + [$calendarId, $calendarData] = $this->atomic(function() use ($values) { |
|
820 | + $query = $this->db->getQueryBuilder(); |
|
821 | + $query->insert('calendars'); |
|
822 | + foreach ($values as $column => $value) { |
|
823 | + $query->setValue($column, $query->createNamedParameter($value)); |
|
824 | + } |
|
825 | + $query->executeStatement(); |
|
826 | + $calendarId = $query->getLastInsertId(); |
|
827 | + |
|
828 | + $calendarData = $this->getCalendarById($calendarId); |
|
829 | + return [$calendarId, $calendarData]; |
|
830 | + }, $this->db); |
|
831 | + |
|
832 | + $this->dispatcher->dispatchTyped(new CalendarCreatedEvent((int)$calendarId, $calendarData)); |
|
833 | + |
|
834 | + return $calendarId; |
|
835 | + } |
|
836 | + |
|
837 | + /** |
|
838 | + * Updates properties for a calendar. |
|
839 | + * |
|
840 | + * The list of mutations is stored in a Sabre\DAV\PropPatch object. |
|
841 | + * To do the actual updates, you must tell this object which properties |
|
842 | + * you're going to process with the handle() method. |
|
843 | + * |
|
844 | + * Calling the handle method is like telling the PropPatch object "I |
|
845 | + * promise I can handle updating this property". |
|
846 | + * |
|
847 | + * Read the PropPatch documentation for more info and examples. |
|
848 | + * |
|
849 | + * @param mixed $calendarId |
|
850 | + * @param PropPatch $propPatch |
|
851 | + * @return void |
|
852 | + */ |
|
853 | + public function updateCalendar($calendarId, PropPatch $propPatch) { |
|
854 | + $supportedProperties = array_keys($this->propertyMap); |
|
855 | + $supportedProperties[] = '{' . Plugin::NS_CALDAV . '}schedule-calendar-transp'; |
|
856 | + |
|
857 | + $propPatch->handle($supportedProperties, function ($mutations) use ($calendarId) { |
|
858 | + $newValues = []; |
|
859 | + foreach ($mutations as $propertyName => $propertyValue) { |
|
860 | + switch ($propertyName) { |
|
861 | + case '{' . Plugin::NS_CALDAV . '}schedule-calendar-transp': |
|
862 | + $fieldName = 'transparent'; |
|
863 | + $newValues[$fieldName] = (int) ($propertyValue->getValue() === 'transparent'); |
|
864 | + break; |
|
865 | + default: |
|
866 | + $fieldName = $this->propertyMap[$propertyName][0]; |
|
867 | + $newValues[$fieldName] = $propertyValue; |
|
868 | + break; |
|
869 | + } |
|
870 | + } |
|
871 | + $query = $this->db->getQueryBuilder(); |
|
872 | + $query->update('calendars'); |
|
873 | + foreach ($newValues as $fieldName => $value) { |
|
874 | + $query->set($fieldName, $query->createNamedParameter($value)); |
|
875 | + } |
|
876 | + $query->where($query->expr()->eq('id', $query->createNamedParameter($calendarId))); |
|
877 | + $query->executeStatement(); |
|
878 | + |
|
879 | + $this->addChange($calendarId, "", 2); |
|
880 | + |
|
881 | + $calendarData = $this->getCalendarById($calendarId); |
|
882 | + $shares = $this->getShares($calendarId); |
|
883 | + $this->dispatcher->dispatchTyped(new CalendarUpdatedEvent($calendarId, $calendarData, $shares, $mutations)); |
|
884 | + |
|
885 | + return true; |
|
886 | + }); |
|
887 | + } |
|
888 | + |
|
889 | + /** |
|
890 | + * Delete a calendar and all it's objects |
|
891 | + * |
|
892 | + * @param mixed $calendarId |
|
893 | + * @return void |
|
894 | + */ |
|
895 | + public function deleteCalendar($calendarId, bool $forceDeletePermanently = false) { |
|
896 | + // The calendar is deleted right away if this is either enforced by the caller |
|
897 | + // or the special contacts birthday calendar or when the preference of an empty |
|
898 | + // retention (0 seconds) is set, which signals a disabled trashbin. |
|
899 | + $calendarData = $this->getCalendarById($calendarId); |
|
900 | + $isBirthdayCalendar = isset($calendarData['uri']) && $calendarData['uri'] === BirthdayService::BIRTHDAY_CALENDAR_URI; |
|
901 | + $trashbinDisabled = $this->config->getAppValue(Application::APP_ID, RetentionService::RETENTION_CONFIG_KEY) === '0'; |
|
902 | + if ($forceDeletePermanently || $isBirthdayCalendar || $trashbinDisabled) { |
|
903 | + $calendarData = $this->getCalendarById($calendarId); |
|
904 | + $shares = $this->getShares($calendarId); |
|
905 | + |
|
906 | + $qbDeleteCalendarObjectProps = $this->db->getQueryBuilder(); |
|
907 | + $qbDeleteCalendarObjectProps->delete($this->dbObjectPropertiesTable) |
|
908 | + ->where($qbDeleteCalendarObjectProps->expr()->eq('calendarid', $qbDeleteCalendarObjectProps->createNamedParameter($calendarId))) |
|
909 | + ->andWhere($qbDeleteCalendarObjectProps->expr()->eq('calendartype', $qbDeleteCalendarObjectProps->createNamedParameter(self::CALENDAR_TYPE_CALENDAR))) |
|
910 | + ->executeStatement(); |
|
911 | + |
|
912 | + $qbDeleteCalendarObjects = $this->db->getQueryBuilder(); |
|
913 | + $qbDeleteCalendarObjects->delete('calendarobjects') |
|
914 | + ->where($qbDeleteCalendarObjects->expr()->eq('calendarid', $qbDeleteCalendarObjects->createNamedParameter($calendarId))) |
|
915 | + ->andWhere($qbDeleteCalendarObjects->expr()->eq('calendartype', $qbDeleteCalendarObjects->createNamedParameter(self::CALENDAR_TYPE_CALENDAR))) |
|
916 | + ->executeStatement(); |
|
917 | + |
|
918 | + $qbDeleteCalendarChanges = $this->db->getQueryBuilder(); |
|
919 | + $qbDeleteCalendarObjects->delete('calendarchanges') |
|
920 | + ->where($qbDeleteCalendarChanges->expr()->eq('calendarid', $qbDeleteCalendarChanges->createNamedParameter($calendarId))) |
|
921 | + ->andWhere($qbDeleteCalendarChanges->expr()->eq('calendartype', $qbDeleteCalendarChanges->createNamedParameter(self::CALENDAR_TYPE_CALENDAR))) |
|
922 | + ->executeStatement(); |
|
923 | + |
|
924 | + $this->calendarSharingBackend->deleteAllShares($calendarId); |
|
925 | + |
|
926 | + $qbDeleteCalendar = $this->db->getQueryBuilder(); |
|
927 | + $qbDeleteCalendarObjects->delete('calendars') |
|
928 | + ->where($qbDeleteCalendar->expr()->eq('id', $qbDeleteCalendar->createNamedParameter($calendarId))) |
|
929 | + ->executeStatement(); |
|
930 | + |
|
931 | + // Only dispatch if we actually deleted anything |
|
932 | + if ($calendarData) { |
|
933 | + $this->dispatcher->dispatchTyped(new CalendarDeletedEvent($calendarId, $calendarData, $shares)); |
|
934 | + } |
|
935 | + } else { |
|
936 | + $qbMarkCalendarDeleted = $this->db->getQueryBuilder(); |
|
937 | + $qbMarkCalendarDeleted->update('calendars') |
|
938 | + ->set('deleted_at', $qbMarkCalendarDeleted->createNamedParameter(time())) |
|
939 | + ->where($qbMarkCalendarDeleted->expr()->eq('id', $qbMarkCalendarDeleted->createNamedParameter($calendarId))) |
|
940 | + ->executeStatement(); |
|
941 | + |
|
942 | + $calendarData = $this->getCalendarById($calendarId); |
|
943 | + $shares = $this->getShares($calendarId); |
|
944 | + if ($calendarData) { |
|
945 | + $this->dispatcher->dispatchTyped(new CalendarMovedToTrashEvent( |
|
946 | + $calendarId, |
|
947 | + $calendarData, |
|
948 | + $shares |
|
949 | + )); |
|
950 | + } |
|
951 | + } |
|
952 | + } |
|
953 | + |
|
954 | + public function restoreCalendar(int $id): void { |
|
955 | + $qb = $this->db->getQueryBuilder(); |
|
956 | + $update = $qb->update('calendars') |
|
957 | + ->set('deleted_at', $qb->createNamedParameter(null)) |
|
958 | + ->where($qb->expr()->eq('id', $qb->createNamedParameter($id, IQueryBuilder::PARAM_INT), IQueryBuilder::PARAM_INT)); |
|
959 | + $update->executeStatement(); |
|
960 | + |
|
961 | + $calendarData = $this->getCalendarById($id); |
|
962 | + $shares = $this->getShares($id); |
|
963 | + if ($calendarData === null) { |
|
964 | + throw new RuntimeException('Calendar data that was just written can\'t be read back. Check your database configuration.'); |
|
965 | + } |
|
966 | + $this->dispatcher->dispatchTyped(new CalendarRestoredEvent( |
|
967 | + $id, |
|
968 | + $calendarData, |
|
969 | + $shares |
|
970 | + )); |
|
971 | + } |
|
972 | + |
|
973 | + /** |
|
974 | + * Delete all of an user's shares |
|
975 | + * |
|
976 | + * @param string $principaluri |
|
977 | + * @return void |
|
978 | + */ |
|
979 | + public function deleteAllSharesByUser($principaluri) { |
|
980 | + $this->calendarSharingBackend->deleteAllSharesByUser($principaluri); |
|
981 | + } |
|
982 | + |
|
983 | + /** |
|
984 | + * Returns all calendar objects within a calendar. |
|
985 | + * |
|
986 | + * Every item contains an array with the following keys: |
|
987 | + * * calendardata - The iCalendar-compatible calendar data |
|
988 | + * * uri - a unique key which will be used to construct the uri. This can |
|
989 | + * be any arbitrary string, but making sure it ends with '.ics' is a |
|
990 | + * good idea. This is only the basename, or filename, not the full |
|
991 | + * path. |
|
992 | + * * lastmodified - a timestamp of the last modification time |
|
993 | + * * etag - An arbitrary string, surrounded by double-quotes. (e.g.: |
|
994 | + * '"abcdef"') |
|
995 | + * * size - The size of the calendar objects, in bytes. |
|
996 | + * * component - optional, a string containing the type of object, such |
|
997 | + * as 'vevent' or 'vtodo'. If specified, this will be used to populate |
|
998 | + * the Content-Type header. |
|
999 | + * |
|
1000 | + * Note that the etag is optional, but it's highly encouraged to return for |
|
1001 | + * speed reasons. |
|
1002 | + * |
|
1003 | + * The calendardata is also optional. If it's not returned |
|
1004 | + * 'getCalendarObject' will be called later, which *is* expected to return |
|
1005 | + * calendardata. |
|
1006 | + * |
|
1007 | + * If neither etag or size are specified, the calendardata will be |
|
1008 | + * used/fetched to determine these numbers. If both are specified the |
|
1009 | + * amount of times this is needed is reduced by a great degree. |
|
1010 | + * |
|
1011 | + * @param mixed $calendarId |
|
1012 | + * @param int $calendarType |
|
1013 | + * @return array |
|
1014 | + */ |
|
1015 | + public function getCalendarObjects($calendarId, $calendarType = self::CALENDAR_TYPE_CALENDAR):array { |
|
1016 | + $query = $this->db->getQueryBuilder(); |
|
1017 | + $query->select(['id', 'uri', 'lastmodified', 'etag', 'calendarid', 'size', 'componenttype', 'classification']) |
|
1018 | + ->from('calendarobjects') |
|
1019 | + ->where($query->expr()->eq('calendarid', $query->createNamedParameter($calendarId))) |
|
1020 | + ->andWhere($query->expr()->eq('calendartype', $query->createNamedParameter($calendarType))) |
|
1021 | + ->andWhere($query->expr()->isNull('deleted_at')); |
|
1022 | + $stmt = $query->executeQuery(); |
|
1023 | + |
|
1024 | + $result = []; |
|
1025 | + foreach ($stmt->fetchAll() as $row) { |
|
1026 | + $result[] = [ |
|
1027 | + 'id' => $row['id'], |
|
1028 | + 'uri' => $row['uri'], |
|
1029 | + 'lastmodified' => $row['lastmodified'], |
|
1030 | + 'etag' => '"' . $row['etag'] . '"', |
|
1031 | + 'calendarid' => $row['calendarid'], |
|
1032 | + 'size' => (int)$row['size'], |
|
1033 | + 'component' => strtolower($row['componenttype']), |
|
1034 | + 'classification' => (int)$row['classification'] |
|
1035 | + ]; |
|
1036 | + } |
|
1037 | + $stmt->closeCursor(); |
|
1038 | + |
|
1039 | + return $result; |
|
1040 | + } |
|
1041 | + |
|
1042 | + public function getDeletedCalendarObjects(int $deletedBefore): array { |
|
1043 | + $query = $this->db->getQueryBuilder(); |
|
1044 | + $query->select(['co.id', 'co.uri', 'co.lastmodified', 'co.etag', 'co.calendarid', 'co.calendartype', 'co.size', 'co.componenttype', 'co.classification', 'co.deleted_at']) |
|
1045 | + ->from('calendarobjects', 'co') |
|
1046 | + ->join('co', 'calendars', 'c', $query->expr()->eq('c.id', 'co.calendarid', IQueryBuilder::PARAM_INT)) |
|
1047 | + ->where($query->expr()->isNotNull('co.deleted_at')) |
|
1048 | + ->andWhere($query->expr()->lt('co.deleted_at', $query->createNamedParameter($deletedBefore))); |
|
1049 | + $stmt = $query->executeQuery(); |
|
1050 | + |
|
1051 | + $result = []; |
|
1052 | + foreach ($stmt->fetchAll() as $row) { |
|
1053 | + $result[] = [ |
|
1054 | + 'id' => $row['id'], |
|
1055 | + 'uri' => $row['uri'], |
|
1056 | + 'lastmodified' => $row['lastmodified'], |
|
1057 | + 'etag' => '"' . $row['etag'] . '"', |
|
1058 | + 'calendarid' => (int) $row['calendarid'], |
|
1059 | + 'calendartype' => (int) $row['calendartype'], |
|
1060 | + 'size' => (int) $row['size'], |
|
1061 | + 'component' => strtolower($row['componenttype']), |
|
1062 | + 'classification' => (int) $row['classification'], |
|
1063 | + '{' . \OCA\DAV\DAV\Sharing\Plugin::NS_NEXTCLOUD . '}deleted-at' => $row['deleted_at'] === null ? $row['deleted_at'] : (int) $row['deleted_at'], |
|
1064 | + ]; |
|
1065 | + } |
|
1066 | + $stmt->closeCursor(); |
|
1067 | + |
|
1068 | + return $result; |
|
1069 | + } |
|
1070 | + |
|
1071 | + /** |
|
1072 | + * Return all deleted calendar objects by the given principal that are not |
|
1073 | + * in deleted calendars. |
|
1074 | + * |
|
1075 | + * @param string $principalUri |
|
1076 | + * @return array |
|
1077 | + * @throws Exception |
|
1078 | + */ |
|
1079 | + public function getDeletedCalendarObjectsByPrincipal(string $principalUri): array { |
|
1080 | + $query = $this->db->getQueryBuilder(); |
|
1081 | + $query->select(['co.id', 'co.uri', 'co.lastmodified', 'co.etag', 'co.calendarid', 'co.size', 'co.componenttype', 'co.classification', 'co.deleted_at']) |
|
1082 | + ->selectAlias('c.uri', 'calendaruri') |
|
1083 | + ->from('calendarobjects', 'co') |
|
1084 | + ->join('co', 'calendars', 'c', $query->expr()->eq('c.id', 'co.calendarid', IQueryBuilder::PARAM_INT)) |
|
1085 | + ->where($query->expr()->eq('principaluri', $query->createNamedParameter($principalUri))) |
|
1086 | + ->andWhere($query->expr()->isNotNull('co.deleted_at')) |
|
1087 | + ->andWhere($query->expr()->isNull('c.deleted_at')); |
|
1088 | + $stmt = $query->executeQuery(); |
|
1089 | + |
|
1090 | + $result = []; |
|
1091 | + while ($row = $stmt->fetch()) { |
|
1092 | + $result[] = [ |
|
1093 | + 'id' => $row['id'], |
|
1094 | + 'uri' => $row['uri'], |
|
1095 | + 'lastmodified' => $row['lastmodified'], |
|
1096 | + 'etag' => '"' . $row['etag'] . '"', |
|
1097 | + 'calendarid' => $row['calendarid'], |
|
1098 | + 'calendaruri' => $row['calendaruri'], |
|
1099 | + 'size' => (int)$row['size'], |
|
1100 | + 'component' => strtolower($row['componenttype']), |
|
1101 | + 'classification' => (int)$row['classification'], |
|
1102 | + '{' . \OCA\DAV\DAV\Sharing\Plugin::NS_NEXTCLOUD . '}deleted-at' => $row['deleted_at'] === null ? $row['deleted_at'] : (int) $row['deleted_at'], |
|
1103 | + ]; |
|
1104 | + } |
|
1105 | + $stmt->closeCursor(); |
|
1106 | + |
|
1107 | + return $result; |
|
1108 | + } |
|
1109 | + |
|
1110 | + /** |
|
1111 | + * Returns information from a single calendar object, based on it's object |
|
1112 | + * uri. |
|
1113 | + * |
|
1114 | + * The object uri is only the basename, or filename and not a full path. |
|
1115 | + * |
|
1116 | + * The returned array must have the same keys as getCalendarObjects. The |
|
1117 | + * 'calendardata' object is required here though, while it's not required |
|
1118 | + * for getCalendarObjects. |
|
1119 | + * |
|
1120 | + * This method must return null if the object did not exist. |
|
1121 | + * |
|
1122 | + * @param mixed $calendarId |
|
1123 | + * @param string $objectUri |
|
1124 | + * @param int $calendarType |
|
1125 | + * @return array|null |
|
1126 | + */ |
|
1127 | + public function getCalendarObject($calendarId, $objectUri, int $calendarType = self::CALENDAR_TYPE_CALENDAR) { |
|
1128 | + $query = $this->db->getQueryBuilder(); |
|
1129 | + $query->select(['id', 'uri', 'lastmodified', 'etag', 'calendarid', 'size', 'calendardata', 'componenttype', 'classification', 'deleted_at']) |
|
1130 | + ->from('calendarobjects') |
|
1131 | + ->where($query->expr()->eq('calendarid', $query->createNamedParameter($calendarId))) |
|
1132 | + ->andWhere($query->expr()->eq('uri', $query->createNamedParameter($objectUri))) |
|
1133 | + ->andWhere($query->expr()->eq('calendartype', $query->createNamedParameter($calendarType))); |
|
1134 | + $stmt = $query->executeQuery(); |
|
1135 | + $row = $stmt->fetch(); |
|
1136 | + $stmt->closeCursor(); |
|
1137 | + |
|
1138 | + if (!$row) { |
|
1139 | + return null; |
|
1140 | + } |
|
1141 | + |
|
1142 | + return [ |
|
1143 | + 'id' => $row['id'], |
|
1144 | + 'uri' => $row['uri'], |
|
1145 | + 'lastmodified' => $row['lastmodified'], |
|
1146 | + 'etag' => '"' . $row['etag'] . '"', |
|
1147 | + 'calendarid' => $row['calendarid'], |
|
1148 | + 'size' => (int)$row['size'], |
|
1149 | + 'calendardata' => $this->readBlob($row['calendardata']), |
|
1150 | + 'component' => strtolower($row['componenttype']), |
|
1151 | + 'classification' => (int)$row['classification'], |
|
1152 | + '{' . \OCA\DAV\DAV\Sharing\Plugin::NS_NEXTCLOUD . '}deleted-at' => $row['deleted_at'] === null ? $row['deleted_at'] : (int) $row['deleted_at'], |
|
1153 | + ]; |
|
1154 | + } |
|
1155 | + |
|
1156 | + /** |
|
1157 | + * Returns a list of calendar objects. |
|
1158 | + * |
|
1159 | + * This method should work identical to getCalendarObject, but instead |
|
1160 | + * return all the calendar objects in the list as an array. |
|
1161 | + * |
|
1162 | + * If the backend supports this, it may allow for some speed-ups. |
|
1163 | + * |
|
1164 | + * @param mixed $calendarId |
|
1165 | + * @param string[] $uris |
|
1166 | + * @param int $calendarType |
|
1167 | + * @return array |
|
1168 | + */ |
|
1169 | + public function getMultipleCalendarObjects($calendarId, array $uris, $calendarType = self::CALENDAR_TYPE_CALENDAR):array { |
|
1170 | + if (empty($uris)) { |
|
1171 | + return []; |
|
1172 | + } |
|
1173 | + |
|
1174 | + $chunks = array_chunk($uris, 100); |
|
1175 | + $objects = []; |
|
1176 | + |
|
1177 | + $query = $this->db->getQueryBuilder(); |
|
1178 | + $query->select(['id', 'uri', 'lastmodified', 'etag', 'calendarid', 'size', 'calendardata', 'componenttype', 'classification']) |
|
1179 | + ->from('calendarobjects') |
|
1180 | + ->where($query->expr()->eq('calendarid', $query->createNamedParameter($calendarId))) |
|
1181 | + ->andWhere($query->expr()->in('uri', $query->createParameter('uri'))) |
|
1182 | + ->andWhere($query->expr()->eq('calendartype', $query->createNamedParameter($calendarType))) |
|
1183 | + ->andWhere($query->expr()->isNull('deleted_at')); |
|
1184 | + |
|
1185 | + foreach ($chunks as $uris) { |
|
1186 | + $query->setParameter('uri', $uris, IQueryBuilder::PARAM_STR_ARRAY); |
|
1187 | + $result = $query->executeQuery(); |
|
1188 | + |
|
1189 | + while ($row = $result->fetch()) { |
|
1190 | + $objects[] = [ |
|
1191 | + 'id' => $row['id'], |
|
1192 | + 'uri' => $row['uri'], |
|
1193 | + 'lastmodified' => $row['lastmodified'], |
|
1194 | + 'etag' => '"' . $row['etag'] . '"', |
|
1195 | + 'calendarid' => $row['calendarid'], |
|
1196 | + 'size' => (int)$row['size'], |
|
1197 | + 'calendardata' => $this->readBlob($row['calendardata']), |
|
1198 | + 'component' => strtolower($row['componenttype']), |
|
1199 | + 'classification' => (int)$row['classification'] |
|
1200 | + ]; |
|
1201 | + } |
|
1202 | + $result->closeCursor(); |
|
1203 | + } |
|
1204 | + |
|
1205 | + return $objects; |
|
1206 | + } |
|
1207 | + |
|
1208 | + /** |
|
1209 | + * Creates a new calendar object. |
|
1210 | + * |
|
1211 | + * The object uri is only the basename, or filename and not a full path. |
|
1212 | + * |
|
1213 | + * It is possible return an etag from this function, which will be used in |
|
1214 | + * the response to this PUT request. Note that the ETag must be surrounded |
|
1215 | + * by double-quotes. |
|
1216 | + * |
|
1217 | + * However, you should only really return this ETag if you don't mangle the |
|
1218 | + * calendar-data. If the result of a subsequent GET to this object is not |
|
1219 | + * the exact same as this request body, you should omit the ETag. |
|
1220 | + * |
|
1221 | + * @param mixed $calendarId |
|
1222 | + * @param string $objectUri |
|
1223 | + * @param string $calendarData |
|
1224 | + * @param int $calendarType |
|
1225 | + * @return string |
|
1226 | + */ |
|
1227 | + public function createCalendarObject($calendarId, $objectUri, $calendarData, $calendarType = self::CALENDAR_TYPE_CALENDAR) { |
|
1228 | + $extraData = $this->getDenormalizedData($calendarData); |
|
1229 | + |
|
1230 | + // Try to detect duplicates |
|
1231 | + $qb = $this->db->getQueryBuilder(); |
|
1232 | + $qb->select($qb->func()->count('*')) |
|
1233 | + ->from('calendarobjects') |
|
1234 | + ->where($qb->expr()->eq('calendarid', $qb->createNamedParameter($calendarId))) |
|
1235 | + ->andWhere($qb->expr()->eq('uid', $qb->createNamedParameter($extraData['uid']))) |
|
1236 | + ->andWhere($qb->expr()->eq('calendartype', $qb->createNamedParameter($calendarType))) |
|
1237 | + ->andWhere($qb->expr()->isNull('deleted_at')); |
|
1238 | + $result = $qb->executeQuery(); |
|
1239 | + $count = (int) $result->fetchOne(); |
|
1240 | + $result->closeCursor(); |
|
1241 | + |
|
1242 | + if ($count !== 0) { |
|
1243 | + throw new BadRequest('Calendar object with uid already exists in this calendar collection.'); |
|
1244 | + } |
|
1245 | + // For a more specific error message we also try to explicitly look up the UID but as a deleted entry |
|
1246 | + $qbDel = $this->db->getQueryBuilder(); |
|
1247 | + $qbDel->select($qb->func()->count('*')) |
|
1248 | + ->from('calendarobjects') |
|
1249 | + ->where($qbDel->expr()->eq('calendarid', $qbDel->createNamedParameter($calendarId))) |
|
1250 | + ->andWhere($qbDel->expr()->eq('uid', $qbDel->createNamedParameter($extraData['uid']))) |
|
1251 | + ->andWhere($qbDel->expr()->eq('calendartype', $qbDel->createNamedParameter($calendarType))) |
|
1252 | + ->andWhere($qbDel->expr()->isNotNull('deleted_at')); |
|
1253 | + $result = $qbDel->executeQuery(); |
|
1254 | + $count = (int) $result->fetchOne(); |
|
1255 | + $result->closeCursor(); |
|
1256 | + if ($count !== 0) { |
|
1257 | + throw new BadRequest('Deleted calendar object with uid already exists in this calendar collection.'); |
|
1258 | + } |
|
1259 | + |
|
1260 | + $query = $this->db->getQueryBuilder(); |
|
1261 | + $query->insert('calendarobjects') |
|
1262 | + ->values([ |
|
1263 | + 'calendarid' => $query->createNamedParameter($calendarId), |
|
1264 | + 'uri' => $query->createNamedParameter($objectUri), |
|
1265 | + 'calendardata' => $query->createNamedParameter($calendarData, IQueryBuilder::PARAM_LOB), |
|
1266 | + 'lastmodified' => $query->createNamedParameter(time()), |
|
1267 | + 'etag' => $query->createNamedParameter($extraData['etag']), |
|
1268 | + 'size' => $query->createNamedParameter($extraData['size']), |
|
1269 | + 'componenttype' => $query->createNamedParameter($extraData['componentType']), |
|
1270 | + 'firstoccurence' => $query->createNamedParameter($extraData['firstOccurence']), |
|
1271 | + 'lastoccurence' => $query->createNamedParameter($extraData['lastOccurence']), |
|
1272 | + 'classification' => $query->createNamedParameter($extraData['classification']), |
|
1273 | + 'uid' => $query->createNamedParameter($extraData['uid']), |
|
1274 | + 'calendartype' => $query->createNamedParameter($calendarType), |
|
1275 | + ]) |
|
1276 | + ->executeStatement(); |
|
1277 | + |
|
1278 | + $this->updateProperties($calendarId, $objectUri, $calendarData, $calendarType); |
|
1279 | + $this->addChange($calendarId, $objectUri, 1, $calendarType); |
|
1280 | + |
|
1281 | + $objectRow = $this->getCalendarObject($calendarId, $objectUri, $calendarType); |
|
1282 | + assert($objectRow !== null); |
|
1283 | + |
|
1284 | + if ($calendarType === self::CALENDAR_TYPE_CALENDAR) { |
|
1285 | + $calendarRow = $this->getCalendarById($calendarId); |
|
1286 | + $shares = $this->getShares($calendarId); |
|
1287 | + |
|
1288 | + $this->dispatcher->dispatchTyped(new CalendarObjectCreatedEvent($calendarId, $calendarRow, $shares, $objectRow)); |
|
1289 | + } else { |
|
1290 | + $subscriptionRow = $this->getSubscriptionById($calendarId); |
|
1291 | + |
|
1292 | + $this->dispatcher->dispatchTyped(new CachedCalendarObjectCreatedEvent($calendarId, $subscriptionRow, [], $objectRow)); |
|
1293 | + } |
|
1294 | + |
|
1295 | + return '"' . $extraData['etag'] . '"'; |
|
1296 | + } |
|
1297 | + |
|
1298 | + /** |
|
1299 | + * Updates an existing calendarobject, based on it's uri. |
|
1300 | + * |
|
1301 | + * The object uri is only the basename, or filename and not a full path. |
|
1302 | + * |
|
1303 | + * It is possible return an etag from this function, which will be used in |
|
1304 | + * the response to this PUT request. Note that the ETag must be surrounded |
|
1305 | + * by double-quotes. |
|
1306 | + * |
|
1307 | + * However, you should only really return this ETag if you don't mangle the |
|
1308 | + * calendar-data. If the result of a subsequent GET to this object is not |
|
1309 | + * the exact same as this request body, you should omit the ETag. |
|
1310 | + * |
|
1311 | + * @param mixed $calendarId |
|
1312 | + * @param string $objectUri |
|
1313 | + * @param string $calendarData |
|
1314 | + * @param int $calendarType |
|
1315 | + * @return string |
|
1316 | + */ |
|
1317 | + public function updateCalendarObject($calendarId, $objectUri, $calendarData, $calendarType = self::CALENDAR_TYPE_CALENDAR) { |
|
1318 | + $extraData = $this->getDenormalizedData($calendarData); |
|
1319 | + $query = $this->db->getQueryBuilder(); |
|
1320 | + $query->update('calendarobjects') |
|
1321 | + ->set('calendardata', $query->createNamedParameter($calendarData, IQueryBuilder::PARAM_LOB)) |
|
1322 | + ->set('lastmodified', $query->createNamedParameter(time())) |
|
1323 | + ->set('etag', $query->createNamedParameter($extraData['etag'])) |
|
1324 | + ->set('size', $query->createNamedParameter($extraData['size'])) |
|
1325 | + ->set('componenttype', $query->createNamedParameter($extraData['componentType'])) |
|
1326 | + ->set('firstoccurence', $query->createNamedParameter($extraData['firstOccurence'])) |
|
1327 | + ->set('lastoccurence', $query->createNamedParameter($extraData['lastOccurence'])) |
|
1328 | + ->set('classification', $query->createNamedParameter($extraData['classification'])) |
|
1329 | + ->set('uid', $query->createNamedParameter($extraData['uid'])) |
|
1330 | + ->where($query->expr()->eq('calendarid', $query->createNamedParameter($calendarId))) |
|
1331 | + ->andWhere($query->expr()->eq('uri', $query->createNamedParameter($objectUri))) |
|
1332 | + ->andWhere($query->expr()->eq('calendartype', $query->createNamedParameter($calendarType))) |
|
1333 | + ->executeStatement(); |
|
1334 | + |
|
1335 | + $this->updateProperties($calendarId, $objectUri, $calendarData, $calendarType); |
|
1336 | + $this->addChange($calendarId, $objectUri, 2, $calendarType); |
|
1337 | + |
|
1338 | + $objectRow = $this->getCalendarObject($calendarId, $objectUri, $calendarType); |
|
1339 | + if (is_array($objectRow)) { |
|
1340 | + if ($calendarType === self::CALENDAR_TYPE_CALENDAR) { |
|
1341 | + $calendarRow = $this->getCalendarById($calendarId); |
|
1342 | + $shares = $this->getShares($calendarId); |
|
1343 | + |
|
1344 | + $this->dispatcher->dispatchTyped(new CalendarObjectUpdatedEvent($calendarId, $calendarRow, $shares, $objectRow)); |
|
1345 | + } else { |
|
1346 | + $subscriptionRow = $this->getSubscriptionById($calendarId); |
|
1347 | + |
|
1348 | + $this->dispatcher->dispatchTyped(new CachedCalendarObjectUpdatedEvent($calendarId, $subscriptionRow, [], $objectRow)); |
|
1349 | + } |
|
1350 | + } |
|
1351 | + |
|
1352 | + return '"' . $extraData['etag'] . '"'; |
|
1353 | + } |
|
1354 | + |
|
1355 | + /** |
|
1356 | + * Moves a calendar object from calendar to calendar. |
|
1357 | + * |
|
1358 | + * @param int $sourceCalendarId |
|
1359 | + * @param int $targetCalendarId |
|
1360 | + * @param int $objectId |
|
1361 | + * @param string $oldPrincipalUri |
|
1362 | + * @param string $newPrincipalUri |
|
1363 | + * @param int $calendarType |
|
1364 | + * @return bool |
|
1365 | + * @throws Exception |
|
1366 | + */ |
|
1367 | + public function moveCalendarObject(int $sourceCalendarId, int $targetCalendarId, int $objectId, string $oldPrincipalUri, string $newPrincipalUri, int $calendarType = self::CALENDAR_TYPE_CALENDAR): bool { |
|
1368 | + $object = $this->getCalendarObjectById($oldPrincipalUri, $objectId); |
|
1369 | + if (empty($object)) { |
|
1370 | + return false; |
|
1371 | + } |
|
1372 | + |
|
1373 | + $query = $this->db->getQueryBuilder(); |
|
1374 | + $query->update('calendarobjects') |
|
1375 | + ->set('calendarid', $query->createNamedParameter($targetCalendarId, IQueryBuilder::PARAM_INT)) |
|
1376 | + ->where($query->expr()->eq('id', $query->createNamedParameter($objectId, IQueryBuilder::PARAM_INT), IQueryBuilder::PARAM_INT)) |
|
1377 | + ->andWhere($query->expr()->eq('calendartype', $query->createNamedParameter($calendarType, IQueryBuilder::PARAM_INT), IQueryBuilder::PARAM_INT)) |
|
1378 | + ->executeStatement(); |
|
1379 | + |
|
1380 | + $this->purgeProperties($sourceCalendarId, $objectId); |
|
1381 | + $this->updateProperties($targetCalendarId, $object['uri'], $object['calendardata'], $calendarType); |
|
1382 | + |
|
1383 | + $this->addChange($sourceCalendarId, $object['uri'], 1, $calendarType); |
|
1384 | + $this->addChange($targetCalendarId, $object['uri'], 3, $calendarType); |
|
1385 | + |
|
1386 | + $object = $this->getCalendarObjectById($newPrincipalUri, $objectId); |
|
1387 | + // Calendar Object wasn't found - possibly because it was deleted in the meantime by a different client |
|
1388 | + if (empty($object)) { |
|
1389 | + return false; |
|
1390 | + } |
|
1391 | + |
|
1392 | + $targetCalendarRow = $this->getCalendarById($targetCalendarId); |
|
1393 | + // the calendar this event is being moved to does not exist any longer |
|
1394 | + if (empty($targetCalendarRow)) { |
|
1395 | + return false; |
|
1396 | + } |
|
1397 | + |
|
1398 | + if ($calendarType === self::CALENDAR_TYPE_CALENDAR) { |
|
1399 | + $sourceShares = $this->getShares($sourceCalendarId); |
|
1400 | + $targetShares = $this->getShares($targetCalendarId); |
|
1401 | + $sourceCalendarRow = $this->getCalendarById($sourceCalendarId); |
|
1402 | + $this->dispatcher->dispatchTyped(new CalendarObjectMovedEvent($sourceCalendarId, $sourceCalendarRow, $targetCalendarId, $targetCalendarRow, $sourceShares, $targetShares, $object)); |
|
1403 | + } |
|
1404 | + return true; |
|
1405 | + } |
|
1406 | + |
|
1407 | + |
|
1408 | + /** |
|
1409 | + * @param int $calendarObjectId |
|
1410 | + * @param int $classification |
|
1411 | + */ |
|
1412 | + public function setClassification($calendarObjectId, $classification) { |
|
1413 | + if (!in_array($classification, [ |
|
1414 | + self::CLASSIFICATION_PUBLIC, self::CLASSIFICATION_PRIVATE, self::CLASSIFICATION_CONFIDENTIAL |
|
1415 | + ])) { |
|
1416 | + throw new \InvalidArgumentException(); |
|
1417 | + } |
|
1418 | + $query = $this->db->getQueryBuilder(); |
|
1419 | + $query->update('calendarobjects') |
|
1420 | + ->set('classification', $query->createNamedParameter($classification)) |
|
1421 | + ->where($query->expr()->eq('id', $query->createNamedParameter($calendarObjectId))) |
|
1422 | + ->executeStatement(); |
|
1423 | + } |
|
1424 | + |
|
1425 | + /** |
|
1426 | + * Deletes an existing calendar object. |
|
1427 | + * |
|
1428 | + * The object uri is only the basename, or filename and not a full path. |
|
1429 | + * |
|
1430 | + * @param mixed $calendarId |
|
1431 | + * @param string $objectUri |
|
1432 | + * @param int $calendarType |
|
1433 | + * @param bool $forceDeletePermanently |
|
1434 | + * @return void |
|
1435 | + */ |
|
1436 | + public function deleteCalendarObject($calendarId, $objectUri, $calendarType = self::CALENDAR_TYPE_CALENDAR, bool $forceDeletePermanently = false) { |
|
1437 | + $data = $this->getCalendarObject($calendarId, $objectUri, $calendarType); |
|
1438 | + |
|
1439 | + if ($data === null) { |
|
1440 | + // Nothing to delete |
|
1441 | + return; |
|
1442 | + } |
|
1443 | + |
|
1444 | + if ($forceDeletePermanently || $this->config->getAppValue(Application::APP_ID, RetentionService::RETENTION_CONFIG_KEY) === '0') { |
|
1445 | + $stmt = $this->db->prepare('DELETE FROM `*PREFIX*calendarobjects` WHERE `calendarid` = ? AND `uri` = ? AND `calendartype` = ?'); |
|
1446 | + $stmt->execute([$calendarId, $objectUri, $calendarType]); |
|
1447 | + |
|
1448 | + $this->purgeProperties($calendarId, $data['id']); |
|
1449 | + |
|
1450 | + if ($calendarType === self::CALENDAR_TYPE_CALENDAR) { |
|
1451 | + $calendarRow = $this->getCalendarById($calendarId); |
|
1452 | + $shares = $this->getShares($calendarId); |
|
1453 | + |
|
1454 | + $this->dispatcher->dispatchTyped(new CalendarObjectDeletedEvent($calendarId, $calendarRow, $shares, $data)); |
|
1455 | + } else { |
|
1456 | + $subscriptionRow = $this->getSubscriptionById($calendarId); |
|
1457 | + |
|
1458 | + $this->dispatcher->dispatchTyped(new CachedCalendarObjectDeletedEvent($calendarId, $subscriptionRow, [], $data)); |
|
1459 | + } |
|
1460 | + } else { |
|
1461 | + $pathInfo = pathinfo($data['uri']); |
|
1462 | + if (!empty($pathInfo['extension'])) { |
|
1463 | + // Append a suffix to "free" the old URI for recreation |
|
1464 | + $newUri = sprintf( |
|
1465 | + "%s-deleted.%s", |
|
1466 | + $pathInfo['filename'], |
|
1467 | + $pathInfo['extension'] |
|
1468 | + ); |
|
1469 | + } else { |
|
1470 | + $newUri = sprintf( |
|
1471 | + "%s-deleted", |
|
1472 | + $pathInfo['filename'] |
|
1473 | + ); |
|
1474 | + } |
|
1475 | + |
|
1476 | + // Try to detect conflicts before the DB does |
|
1477 | + // As unlikely as it seems, this can happen when the user imports, then deletes, imports and deletes again |
|
1478 | + $newObject = $this->getCalendarObject($calendarId, $newUri, $calendarType); |
|
1479 | + if ($newObject !== null) { |
|
1480 | + throw new Forbidden("A calendar object with URI $newUri already exists in calendar $calendarId, therefore this object can't be moved into the trashbin"); |
|
1481 | + } |
|
1482 | + |
|
1483 | + $qb = $this->db->getQueryBuilder(); |
|
1484 | + $markObjectDeletedQuery = $qb->update('calendarobjects') |
|
1485 | + ->set('deleted_at', $qb->createNamedParameter(time(), IQueryBuilder::PARAM_INT)) |
|
1486 | + ->set('uri', $qb->createNamedParameter($newUri)) |
|
1487 | + ->where( |
|
1488 | + $qb->expr()->eq('calendarid', $qb->createNamedParameter($calendarId)), |
|
1489 | + $qb->expr()->eq('calendartype', $qb->createNamedParameter($calendarType, IQueryBuilder::PARAM_INT), IQueryBuilder::PARAM_INT), |
|
1490 | + $qb->expr()->eq('uri', $qb->createNamedParameter($objectUri)) |
|
1491 | + ); |
|
1492 | + $markObjectDeletedQuery->executeStatement(); |
|
1493 | + |
|
1494 | + $calendarData = $this->getCalendarById($calendarId); |
|
1495 | + if ($calendarData !== null) { |
|
1496 | + $this->dispatcher->dispatchTyped( |
|
1497 | + new CalendarObjectMovedToTrashEvent( |
|
1498 | + $calendarId, |
|
1499 | + $calendarData, |
|
1500 | + $this->getShares($calendarId), |
|
1501 | + $data |
|
1502 | + ) |
|
1503 | + ); |
|
1504 | + } |
|
1505 | + } |
|
1506 | + |
|
1507 | + $this->addChange($calendarId, $objectUri, 3, $calendarType); |
|
1508 | + } |
|
1509 | + |
|
1510 | + /** |
|
1511 | + * @param mixed $objectData |
|
1512 | + * |
|
1513 | + * @throws Forbidden |
|
1514 | + */ |
|
1515 | + public function restoreCalendarObject(array $objectData): void { |
|
1516 | + $id = (int) $objectData['id']; |
|
1517 | + $restoreUri = str_replace("-deleted.ics", ".ics", $objectData['uri']); |
|
1518 | + $targetObject = $this->getCalendarObject( |
|
1519 | + $objectData['calendarid'], |
|
1520 | + $restoreUri |
|
1521 | + ); |
|
1522 | + if ($targetObject !== null) { |
|
1523 | + throw new Forbidden("Can not restore calendar $id because a calendar object with the URI $restoreUri already exists"); |
|
1524 | + } |
|
1525 | + |
|
1526 | + $qb = $this->db->getQueryBuilder(); |
|
1527 | + $update = $qb->update('calendarobjects') |
|
1528 | + ->set('uri', $qb->createNamedParameter($restoreUri)) |
|
1529 | + ->set('deleted_at', $qb->createNamedParameter(null)) |
|
1530 | + ->where($qb->expr()->eq('id', $qb->createNamedParameter($id, IQueryBuilder::PARAM_INT), IQueryBuilder::PARAM_INT)); |
|
1531 | + $update->executeStatement(); |
|
1532 | + |
|
1533 | + // Make sure this change is tracked in the changes table |
|
1534 | + $qb2 = $this->db->getQueryBuilder(); |
|
1535 | + $selectObject = $qb2->select('calendardata', 'uri', 'calendarid', 'calendartype') |
|
1536 | + ->selectAlias('componenttype', 'component') |
|
1537 | + ->from('calendarobjects') |
|
1538 | + ->where($qb2->expr()->eq('id', $qb2->createNamedParameter($id, IQueryBuilder::PARAM_INT), IQueryBuilder::PARAM_INT)); |
|
1539 | + $result = $selectObject->executeQuery(); |
|
1540 | + $row = $result->fetch(); |
|
1541 | + $result->closeCursor(); |
|
1542 | + if ($row === false) { |
|
1543 | + // Welp, this should possibly not have happened, but let's ignore |
|
1544 | + return; |
|
1545 | + } |
|
1546 | + $this->addChange($row['calendarid'], $row['uri'], 1, (int) $row['calendartype']); |
|
1547 | + |
|
1548 | + $calendarRow = $this->getCalendarById((int) $row['calendarid']); |
|
1549 | + if ($calendarRow === null) { |
|
1550 | + throw new RuntimeException('Calendar object data that was just written can\'t be read back. Check your database configuration.'); |
|
1551 | + } |
|
1552 | + $this->dispatcher->dispatchTyped( |
|
1553 | + new CalendarObjectRestoredEvent( |
|
1554 | + (int) $objectData['calendarid'], |
|
1555 | + $calendarRow, |
|
1556 | + $this->getShares((int) $row['calendarid']), |
|
1557 | + $row |
|
1558 | + ) |
|
1559 | + ); |
|
1560 | + } |
|
1561 | + |
|
1562 | + /** |
|
1563 | + * Performs a calendar-query on the contents of this calendar. |
|
1564 | + * |
|
1565 | + * The calendar-query is defined in RFC4791 : CalDAV. Using the |
|
1566 | + * calendar-query it is possible for a client to request a specific set of |
|
1567 | + * object, based on contents of iCalendar properties, date-ranges and |
|
1568 | + * iCalendar component types (VTODO, VEVENT). |
|
1569 | + * |
|
1570 | + * This method should just return a list of (relative) urls that match this |
|
1571 | + * query. |
|
1572 | + * |
|
1573 | + * The list of filters are specified as an array. The exact array is |
|
1574 | + * documented by Sabre\CalDAV\CalendarQueryParser. |
|
1575 | + * |
|
1576 | + * Note that it is extremely likely that getCalendarObject for every path |
|
1577 | + * returned from this method will be called almost immediately after. You |
|
1578 | + * may want to anticipate this to speed up these requests. |
|
1579 | + * |
|
1580 | + * This method provides a default implementation, which parses *all* the |
|
1581 | + * iCalendar objects in the specified calendar. |
|
1582 | + * |
|
1583 | + * This default may well be good enough for personal use, and calendars |
|
1584 | + * that aren't very large. But if you anticipate high usage, big calendars |
|
1585 | + * or high loads, you are strongly advised to optimize certain paths. |
|
1586 | + * |
|
1587 | + * The best way to do so is override this method and to optimize |
|
1588 | + * specifically for 'common filters'. |
|
1589 | + * |
|
1590 | + * Requests that are extremely common are: |
|
1591 | + * * requests for just VEVENTS |
|
1592 | + * * requests for just VTODO |
|
1593 | + * * requests with a time-range-filter on either VEVENT or VTODO. |
|
1594 | + * |
|
1595 | + * ..and combinations of these requests. It may not be worth it to try to |
|
1596 | + * handle every possible situation and just rely on the (relatively |
|
1597 | + * easy to use) CalendarQueryValidator to handle the rest. |
|
1598 | + * |
|
1599 | + * Note that especially time-range-filters may be difficult to parse. A |
|
1600 | + * time-range filter specified on a VEVENT must for instance also handle |
|
1601 | + * recurrence rules correctly. |
|
1602 | + * A good example of how to interpret all these filters can also simply |
|
1603 | + * be found in Sabre\CalDAV\CalendarQueryFilter. This class is as correct |
|
1604 | + * as possible, so it gives you a good idea on what type of stuff you need |
|
1605 | + * to think of. |
|
1606 | + * |
|
1607 | + * @param mixed $calendarId |
|
1608 | + * @param array $filters |
|
1609 | + * @param int $calendarType |
|
1610 | + * @return array |
|
1611 | + */ |
|
1612 | + public function calendarQuery($calendarId, array $filters, $calendarType = self::CALENDAR_TYPE_CALENDAR):array { |
|
1613 | + $componentType = null; |
|
1614 | + $requirePostFilter = true; |
|
1615 | + $timeRange = null; |
|
1616 | + |
|
1617 | + // if no filters were specified, we don't need to filter after a query |
|
1618 | + if (!$filters['prop-filters'] && !$filters['comp-filters']) { |
|
1619 | + $requirePostFilter = false; |
|
1620 | + } |
|
1621 | + |
|
1622 | + // Figuring out if there's a component filter |
|
1623 | + if (count($filters['comp-filters']) > 0 && !$filters['comp-filters'][0]['is-not-defined']) { |
|
1624 | + $componentType = $filters['comp-filters'][0]['name']; |
|
1625 | + |
|
1626 | + // Checking if we need post-filters |
|
1627 | + if (!$filters['prop-filters'] && !$filters['comp-filters'][0]['comp-filters'] && !$filters['comp-filters'][0]['time-range'] && !$filters['comp-filters'][0]['prop-filters']) { |
|
1628 | + $requirePostFilter = false; |
|
1629 | + } |
|
1630 | + // There was a time-range filter |
|
1631 | + if ($componentType === 'VEVENT' && isset($filters['comp-filters'][0]['time-range']) && is_array($filters['comp-filters'][0]['time-range'])) { |
|
1632 | + $timeRange = $filters['comp-filters'][0]['time-range']; |
|
1633 | + |
|
1634 | + // If start time OR the end time is not specified, we can do a |
|
1635 | + // 100% accurate mysql query. |
|
1636 | + if (!$filters['prop-filters'] && !$filters['comp-filters'][0]['comp-filters'] && !$filters['comp-filters'][0]['prop-filters'] && (!$timeRange['start'] || !$timeRange['end'])) { |
|
1637 | + $requirePostFilter = false; |
|
1638 | + } |
|
1639 | + } |
|
1640 | + } |
|
1641 | + $columns = ['uri']; |
|
1642 | + if ($requirePostFilter) { |
|
1643 | + $columns = ['uri', 'calendardata']; |
|
1644 | + } |
|
1645 | + $query = $this->db->getQueryBuilder(); |
|
1646 | + $query->select($columns) |
|
1647 | + ->from('calendarobjects') |
|
1648 | + ->where($query->expr()->eq('calendarid', $query->createNamedParameter($calendarId))) |
|
1649 | + ->andWhere($query->expr()->eq('calendartype', $query->createNamedParameter($calendarType))) |
|
1650 | + ->andWhere($query->expr()->isNull('deleted_at')); |
|
1651 | + |
|
1652 | + if ($componentType) { |
|
1653 | + $query->andWhere($query->expr()->eq('componenttype', $query->createNamedParameter($componentType))); |
|
1654 | + } |
|
1655 | + |
|
1656 | + if ($timeRange && $timeRange['start']) { |
|
1657 | + $query->andWhere($query->expr()->gt('lastoccurence', $query->createNamedParameter($timeRange['start']->getTimeStamp()))); |
|
1658 | + } |
|
1659 | + if ($timeRange && $timeRange['end']) { |
|
1660 | + $query->andWhere($query->expr()->lt('firstoccurence', $query->createNamedParameter($timeRange['end']->getTimeStamp()))); |
|
1661 | + } |
|
1662 | + |
|
1663 | + $stmt = $query->executeQuery(); |
|
1664 | + |
|
1665 | + $result = []; |
|
1666 | + while ($row = $stmt->fetch()) { |
|
1667 | + if ($requirePostFilter) { |
|
1668 | + // validateFilterForObject will parse the calendar data |
|
1669 | + // catch parsing errors |
|
1670 | + try { |
|
1671 | + $matches = $this->validateFilterForObject($row, $filters); |
|
1672 | + } catch (ParseException $ex) { |
|
1673 | + $this->logger->error('Caught parsing exception for calendar data. This usually indicates invalid calendar data. calendar-id:'.$calendarId.' uri:'.$row['uri'], [ |
|
1674 | + 'app' => 'dav', |
|
1675 | + 'exception' => $ex, |
|
1676 | + ]); |
|
1677 | + continue; |
|
1678 | + } catch (InvalidDataException $ex) { |
|
1679 | + $this->logger->error('Caught invalid data exception for calendar data. This usually indicates invalid calendar data. calendar-id:'.$calendarId.' uri:'.$row['uri'], [ |
|
1680 | + 'app' => 'dav', |
|
1681 | + 'exception' => $ex, |
|
1682 | + ]); |
|
1683 | + continue; |
|
1684 | + } |
|
1685 | + |
|
1686 | + if (!$matches) { |
|
1687 | + continue; |
|
1688 | + } |
|
1689 | + } |
|
1690 | + $result[] = $row['uri']; |
|
1691 | + } |
|
1692 | + |
|
1693 | + return $result; |
|
1694 | + } |
|
1695 | + |
|
1696 | + /** |
|
1697 | + * custom Nextcloud search extension for CalDAV |
|
1698 | + * |
|
1699 | + * TODO - this should optionally cover cached calendar objects as well |
|
1700 | + * |
|
1701 | + * @param string $principalUri |
|
1702 | + * @param array $filters |
|
1703 | + * @param integer|null $limit |
|
1704 | + * @param integer|null $offset |
|
1705 | + * @return array |
|
1706 | + */ |
|
1707 | + public function calendarSearch($principalUri, array $filters, $limit = null, $offset = null) { |
|
1708 | + $calendars = $this->getCalendarsForUser($principalUri); |
|
1709 | + $ownCalendars = []; |
|
1710 | + $sharedCalendars = []; |
|
1711 | + |
|
1712 | + $uriMapper = []; |
|
1713 | + |
|
1714 | + foreach ($calendars as $calendar) { |
|
1715 | + if ($calendar['{http://owncloud.org/ns}owner-principal'] === $principalUri) { |
|
1716 | + $ownCalendars[] = $calendar['id']; |
|
1717 | + } else { |
|
1718 | + $sharedCalendars[] = $calendar['id']; |
|
1719 | + } |
|
1720 | + $uriMapper[$calendar['id']] = $calendar['uri']; |
|
1721 | + } |
|
1722 | + if (count($ownCalendars) === 0 && count($sharedCalendars) === 0) { |
|
1723 | + return []; |
|
1724 | + } |
|
1725 | + |
|
1726 | + $query = $this->db->getQueryBuilder(); |
|
1727 | + // Calendar id expressions |
|
1728 | + $calendarExpressions = []; |
|
1729 | + foreach ($ownCalendars as $id) { |
|
1730 | + $calendarExpressions[] = $query->expr()->andX( |
|
1731 | + $query->expr()->eq('c.calendarid', |
|
1732 | + $query->createNamedParameter($id)), |
|
1733 | + $query->expr()->eq('c.calendartype', |
|
1734 | + $query->createNamedParameter(self::CALENDAR_TYPE_CALENDAR))); |
|
1735 | + } |
|
1736 | + foreach ($sharedCalendars as $id) { |
|
1737 | + $calendarExpressions[] = $query->expr()->andX( |
|
1738 | + $query->expr()->eq('c.calendarid', |
|
1739 | + $query->createNamedParameter($id)), |
|
1740 | + $query->expr()->eq('c.classification', |
|
1741 | + $query->createNamedParameter(self::CLASSIFICATION_PUBLIC)), |
|
1742 | + $query->expr()->eq('c.calendartype', |
|
1743 | + $query->createNamedParameter(self::CALENDAR_TYPE_CALENDAR))); |
|
1744 | + } |
|
1745 | + |
|
1746 | + if (count($calendarExpressions) === 1) { |
|
1747 | + $calExpr = $calendarExpressions[0]; |
|
1748 | + } else { |
|
1749 | + $calExpr = call_user_func_array([$query->expr(), 'orX'], $calendarExpressions); |
|
1750 | + } |
|
1751 | + |
|
1752 | + // Component expressions |
|
1753 | + $compExpressions = []; |
|
1754 | + foreach ($filters['comps'] as $comp) { |
|
1755 | + $compExpressions[] = $query->expr() |
|
1756 | + ->eq('c.componenttype', $query->createNamedParameter($comp)); |
|
1757 | + } |
|
1758 | + |
|
1759 | + if (count($compExpressions) === 1) { |
|
1760 | + $compExpr = $compExpressions[0]; |
|
1761 | + } else { |
|
1762 | + $compExpr = call_user_func_array([$query->expr(), 'orX'], $compExpressions); |
|
1763 | + } |
|
1764 | + |
|
1765 | + if (!isset($filters['props'])) { |
|
1766 | + $filters['props'] = []; |
|
1767 | + } |
|
1768 | + if (!isset($filters['params'])) { |
|
1769 | + $filters['params'] = []; |
|
1770 | + } |
|
1771 | + |
|
1772 | + $propParamExpressions = []; |
|
1773 | + foreach ($filters['props'] as $prop) { |
|
1774 | + $propParamExpressions[] = $query->expr()->andX( |
|
1775 | + $query->expr()->eq('i.name', $query->createNamedParameter($prop)), |
|
1776 | + $query->expr()->isNull('i.parameter') |
|
1777 | + ); |
|
1778 | + } |
|
1779 | + foreach ($filters['params'] as $param) { |
|
1780 | + $propParamExpressions[] = $query->expr()->andX( |
|
1781 | + $query->expr()->eq('i.name', $query->createNamedParameter($param['property'])), |
|
1782 | + $query->expr()->eq('i.parameter', $query->createNamedParameter($param['parameter'])) |
|
1783 | + ); |
|
1784 | + } |
|
1785 | + |
|
1786 | + if (count($propParamExpressions) === 1) { |
|
1787 | + $propParamExpr = $propParamExpressions[0]; |
|
1788 | + } else { |
|
1789 | + $propParamExpr = call_user_func_array([$query->expr(), 'orX'], $propParamExpressions); |
|
1790 | + } |
|
1791 | + |
|
1792 | + $query->select(['c.calendarid', 'c.uri']) |
|
1793 | + ->from($this->dbObjectPropertiesTable, 'i') |
|
1794 | + ->join('i', 'calendarobjects', 'c', $query->expr()->eq('i.objectid', 'c.id')) |
|
1795 | + ->where($calExpr) |
|
1796 | + ->andWhere($compExpr) |
|
1797 | + ->andWhere($propParamExpr) |
|
1798 | + ->andWhere($query->expr()->iLike('i.value', |
|
1799 | + $query->createNamedParameter('%'.$this->db->escapeLikeParameter($filters['search-term']).'%'))) |
|
1800 | + ->andWhere($query->expr()->isNull('deleted_at')); |
|
1801 | + |
|
1802 | + if ($offset) { |
|
1803 | + $query->setFirstResult($offset); |
|
1804 | + } |
|
1805 | + if ($limit) { |
|
1806 | + $query->setMaxResults($limit); |
|
1807 | + } |
|
1808 | + |
|
1809 | + $stmt = $query->executeQuery(); |
|
1810 | + |
|
1811 | + $result = []; |
|
1812 | + while ($row = $stmt->fetch()) { |
|
1813 | + $path = $uriMapper[$row['calendarid']] . '/' . $row['uri']; |
|
1814 | + if (!in_array($path, $result)) { |
|
1815 | + $result[] = $path; |
|
1816 | + } |
|
1817 | + } |
|
1818 | + |
|
1819 | + return $result; |
|
1820 | + } |
|
1821 | + |
|
1822 | + /** |
|
1823 | + * used for Nextcloud's calendar API |
|
1824 | + * |
|
1825 | + * @param array $calendarInfo |
|
1826 | + * @param string $pattern |
|
1827 | + * @param array $searchProperties |
|
1828 | + * @param array $options |
|
1829 | + * @param integer|null $limit |
|
1830 | + * @param integer|null $offset |
|
1831 | + * |
|
1832 | + * @return array |
|
1833 | + */ |
|
1834 | + public function search(array $calendarInfo, $pattern, array $searchProperties, |
|
1835 | + array $options, $limit, $offset) { |
|
1836 | + $outerQuery = $this->db->getQueryBuilder(); |
|
1837 | + $innerQuery = $this->db->getQueryBuilder(); |
|
1838 | + |
|
1839 | + $innerQuery->selectDistinct('op.objectid') |
|
1840 | + ->from($this->dbObjectPropertiesTable, 'op') |
|
1841 | + ->andWhere($innerQuery->expr()->eq('op.calendarid', |
|
1842 | + $outerQuery->createNamedParameter($calendarInfo['id']))) |
|
1843 | + ->andWhere($innerQuery->expr()->eq('op.calendartype', |
|
1844 | + $outerQuery->createNamedParameter(self::CALENDAR_TYPE_CALENDAR))); |
|
1845 | + |
|
1846 | + // only return public items for shared calendars for now |
|
1847 | + if (isset($calendarInfo['{http://owncloud.org/ns}owner-principal']) === false || $calendarInfo['principaluri'] !== $calendarInfo['{http://owncloud.org/ns}owner-principal']) { |
|
1848 | + $innerQuery->andWhere($innerQuery->expr()->eq('c.classification', |
|
1849 | + $outerQuery->createNamedParameter(self::CLASSIFICATION_PUBLIC))); |
|
1850 | + } |
|
1851 | + |
|
1852 | + if (!empty($searchProperties)) { |
|
1853 | + $or = $innerQuery->expr()->orX(); |
|
1854 | + foreach ($searchProperties as $searchProperty) { |
|
1855 | + $or->add($innerQuery->expr()->eq('op.name', |
|
1856 | + $outerQuery->createNamedParameter($searchProperty))); |
|
1857 | + } |
|
1858 | + $innerQuery->andWhere($or); |
|
1859 | + } |
|
1860 | + |
|
1861 | + if ($pattern !== '') { |
|
1862 | + $innerQuery->andWhere($innerQuery->expr()->iLike('op.value', |
|
1863 | + $outerQuery->createNamedParameter('%' . |
|
1864 | + $this->db->escapeLikeParameter($pattern) . '%'))); |
|
1865 | + } |
|
1866 | + |
|
1867 | + $outerQuery->select('c.id', 'c.calendardata', 'c.componenttype', 'c.uid', 'c.uri') |
|
1868 | + ->from('calendarobjects', 'c') |
|
1869 | + ->where($outerQuery->expr()->isNull('deleted_at')); |
|
1870 | + |
|
1871 | + if (isset($options['timerange'])) { |
|
1872 | + if (isset($options['timerange']['start']) && $options['timerange']['start'] instanceof DateTimeInterface) { |
|
1873 | + $outerQuery->andWhere($outerQuery->expr()->gt('lastoccurence', |
|
1874 | + $outerQuery->createNamedParameter($options['timerange']['start']->getTimeStamp()))); |
|
1875 | + } |
|
1876 | + if (isset($options['timerange']['end']) && $options['timerange']['end'] instanceof DateTimeInterface) { |
|
1877 | + $outerQuery->andWhere($outerQuery->expr()->lt('firstoccurence', |
|
1878 | + $outerQuery->createNamedParameter($options['timerange']['end']->getTimeStamp()))); |
|
1879 | + } |
|
1880 | + } |
|
1881 | + |
|
1882 | + if(isset($options['uid'])) { |
|
1883 | + $outerQuery->andWhere($outerQuery->expr()->eq('uid', $outerQuery->createNamedParameter($options['uid']))); |
|
1884 | + } |
|
1885 | + |
|
1886 | + if (!empty($options['types'])) { |
|
1887 | + $or = $outerQuery->expr()->orX(); |
|
1888 | + foreach ($options['types'] as $type) { |
|
1889 | + $or->add($outerQuery->expr()->eq('componenttype', |
|
1890 | + $outerQuery->createNamedParameter($type))); |
|
1891 | + } |
|
1892 | + $outerQuery->andWhere($or); |
|
1893 | + } |
|
1894 | + |
|
1895 | + $outerQuery->andWhere($outerQuery->expr()->in('c.id', $outerQuery->createFunction($innerQuery->getSQL()))); |
|
1896 | + |
|
1897 | + if ($offset) { |
|
1898 | + $outerQuery->setFirstResult($offset); |
|
1899 | + } |
|
1900 | + if ($limit) { |
|
1901 | + $outerQuery->setMaxResults($limit); |
|
1902 | + } |
|
1903 | + |
|
1904 | + $result = $outerQuery->executeQuery(); |
|
1905 | + $calendarObjects = array_filter($result->fetchAll(), function (array $row) use ($options) { |
|
1906 | + $start = $options['timerange']['start'] ?? null; |
|
1907 | + $end = $options['timerange']['end'] ?? null; |
|
1908 | + |
|
1909 | + if ($start === null || !($start instanceof DateTimeInterface) || $end === null || !($end instanceof DateTimeInterface)) { |
|
1910 | + // No filter required |
|
1911 | + return true; |
|
1912 | + } |
|
1913 | + |
|
1914 | + $isValid = $this->validateFilterForObject($row, [ |
|
1915 | + 'name' => 'VCALENDAR', |
|
1916 | + 'comp-filters' => [ |
|
1917 | + [ |
|
1918 | + 'name' => 'VEVENT', |
|
1919 | + 'comp-filters' => [], |
|
1920 | + 'prop-filters' => [], |
|
1921 | + 'is-not-defined' => false, |
|
1922 | + 'time-range' => [ |
|
1923 | + 'start' => $start, |
|
1924 | + 'end' => $end, |
|
1925 | + ], |
|
1926 | + ], |
|
1927 | + ], |
|
1928 | + 'prop-filters' => [], |
|
1929 | + 'is-not-defined' => false, |
|
1930 | + 'time-range' => null, |
|
1931 | + ]); |
|
1932 | + if (is_resource($row['calendardata'])) { |
|
1933 | + // Put the stream back to the beginning so it can be read another time |
|
1934 | + rewind($row['calendardata']); |
|
1935 | + } |
|
1936 | + return $isValid; |
|
1937 | + }); |
|
1938 | + $result->closeCursor(); |
|
1939 | + |
|
1940 | + return array_map(function ($o) { |
|
1941 | + $calendarData = Reader::read($o['calendardata']); |
|
1942 | + $comps = $calendarData->getComponents(); |
|
1943 | + $objects = []; |
|
1944 | + $timezones = []; |
|
1945 | + foreach ($comps as $comp) { |
|
1946 | + if ($comp instanceof VTimeZone) { |
|
1947 | + $timezones[] = $comp; |
|
1948 | + } else { |
|
1949 | + $objects[] = $comp; |
|
1950 | + } |
|
1951 | + } |
|
1952 | + |
|
1953 | + return [ |
|
1954 | + 'id' => $o['id'], |
|
1955 | + 'type' => $o['componenttype'], |
|
1956 | + 'uid' => $o['uid'], |
|
1957 | + 'uri' => $o['uri'], |
|
1958 | + 'objects' => array_map(function ($c) { |
|
1959 | + return $this->transformSearchData($c); |
|
1960 | + }, $objects), |
|
1961 | + 'timezones' => array_map(function ($c) { |
|
1962 | + return $this->transformSearchData($c); |
|
1963 | + }, $timezones), |
|
1964 | + ]; |
|
1965 | + }, $calendarObjects); |
|
1966 | + } |
|
1967 | + |
|
1968 | + /** |
|
1969 | + * @param Component $comp |
|
1970 | + * @return array |
|
1971 | + */ |
|
1972 | + private function transformSearchData(Component $comp) { |
|
1973 | + $data = []; |
|
1974 | + /** @var Component[] $subComponents */ |
|
1975 | + $subComponents = $comp->getComponents(); |
|
1976 | + /** @var Property[] $properties */ |
|
1977 | + $properties = array_filter($comp->children(), function ($c) { |
|
1978 | + return $c instanceof Property; |
|
1979 | + }); |
|
1980 | + $validationRules = $comp->getValidationRules(); |
|
1981 | + |
|
1982 | + foreach ($subComponents as $subComponent) { |
|
1983 | + $name = $subComponent->name; |
|
1984 | + if (!isset($data[$name])) { |
|
1985 | + $data[$name] = []; |
|
1986 | + } |
|
1987 | + $data[$name][] = $this->transformSearchData($subComponent); |
|
1988 | + } |
|
1989 | + |
|
1990 | + foreach ($properties as $property) { |
|
1991 | + $name = $property->name; |
|
1992 | + if (!isset($validationRules[$name])) { |
|
1993 | + $validationRules[$name] = '*'; |
|
1994 | + } |
|
1995 | + |
|
1996 | + $rule = $validationRules[$property->name]; |
|
1997 | + if ($rule === '+' || $rule === '*') { // multiple |
|
1998 | + if (!isset($data[$name])) { |
|
1999 | + $data[$name] = []; |
|
2000 | + } |
|
2001 | + |
|
2002 | + $data[$name][] = $this->transformSearchProperty($property); |
|
2003 | + } else { // once |
|
2004 | + $data[$name] = $this->transformSearchProperty($property); |
|
2005 | + } |
|
2006 | + } |
|
2007 | + |
|
2008 | + return $data; |
|
2009 | + } |
|
2010 | + |
|
2011 | + /** |
|
2012 | + * @param Property $prop |
|
2013 | + * @return array |
|
2014 | + */ |
|
2015 | + private function transformSearchProperty(Property $prop) { |
|
2016 | + // No need to check Date, as it extends DateTime |
|
2017 | + if ($prop instanceof Property\ICalendar\DateTime) { |
|
2018 | + $value = $prop->getDateTime(); |
|
2019 | + } else { |
|
2020 | + $value = $prop->getValue(); |
|
2021 | + } |
|
2022 | + |
|
2023 | + return [ |
|
2024 | + $value, |
|
2025 | + $prop->parameters() |
|
2026 | + ]; |
|
2027 | + } |
|
2028 | + |
|
2029 | + /** |
|
2030 | + * @param string $principalUri |
|
2031 | + * @param string $pattern |
|
2032 | + * @param array $componentTypes |
|
2033 | + * @param array $searchProperties |
|
2034 | + * @param array $searchParameters |
|
2035 | + * @param array $options |
|
2036 | + * @return array |
|
2037 | + */ |
|
2038 | + public function searchPrincipalUri(string $principalUri, |
|
2039 | + string $pattern, |
|
2040 | + array $componentTypes, |
|
2041 | + array $searchProperties, |
|
2042 | + array $searchParameters, |
|
2043 | + array $options = []): array { |
|
2044 | + $escapePattern = !\array_key_exists('escape_like_param', $options) || $options['escape_like_param'] !== false; |
|
2045 | + |
|
2046 | + $calendarObjectIdQuery = $this->db->getQueryBuilder(); |
|
2047 | + $calendarOr = $calendarObjectIdQuery->expr()->orX(); |
|
2048 | + $searchOr = $calendarObjectIdQuery->expr()->orX(); |
|
2049 | + |
|
2050 | + // Fetch calendars and subscription |
|
2051 | + $calendars = $this->getCalendarsForUser($principalUri); |
|
2052 | + $subscriptions = $this->getSubscriptionsForUser($principalUri); |
|
2053 | + foreach ($calendars as $calendar) { |
|
2054 | + $calendarAnd = $calendarObjectIdQuery->expr()->andX(); |
|
2055 | + $calendarAnd->add($calendarObjectIdQuery->expr()->eq('cob.calendarid', $calendarObjectIdQuery->createNamedParameter((int)$calendar['id']))); |
|
2056 | + $calendarAnd->add($calendarObjectIdQuery->expr()->eq('cob.calendartype', $calendarObjectIdQuery->createNamedParameter(self::CALENDAR_TYPE_CALENDAR))); |
|
2057 | + |
|
2058 | + // If it's shared, limit search to public events |
|
2059 | + if (isset($calendar['{http://owncloud.org/ns}owner-principal']) |
|
2060 | + && $calendar['principaluri'] !== $calendar['{http://owncloud.org/ns}owner-principal']) { |
|
2061 | + $calendarAnd->add($calendarObjectIdQuery->expr()->eq('co.classification', $calendarObjectIdQuery->createNamedParameter(self::CLASSIFICATION_PUBLIC))); |
|
2062 | + } |
|
2063 | + |
|
2064 | + $calendarOr->add($calendarAnd); |
|
2065 | + } |
|
2066 | + foreach ($subscriptions as $subscription) { |
|
2067 | + $subscriptionAnd = $calendarObjectIdQuery->expr()->andX(); |
|
2068 | + $subscriptionAnd->add($calendarObjectIdQuery->expr()->eq('cob.calendarid', $calendarObjectIdQuery->createNamedParameter((int)$subscription['id']))); |
|
2069 | + $subscriptionAnd->add($calendarObjectIdQuery->expr()->eq('cob.calendartype', $calendarObjectIdQuery->createNamedParameter(self::CALENDAR_TYPE_SUBSCRIPTION))); |
|
2070 | + |
|
2071 | + // If it's shared, limit search to public events |
|
2072 | + if (isset($subscription['{http://owncloud.org/ns}owner-principal']) |
|
2073 | + && $subscription['principaluri'] !== $subscription['{http://owncloud.org/ns}owner-principal']) { |
|
2074 | + $subscriptionAnd->add($calendarObjectIdQuery->expr()->eq('co.classification', $calendarObjectIdQuery->createNamedParameter(self::CLASSIFICATION_PUBLIC))); |
|
2075 | + } |
|
2076 | + |
|
2077 | + $calendarOr->add($subscriptionAnd); |
|
2078 | + } |
|
2079 | + |
|
2080 | + foreach ($searchProperties as $property) { |
|
2081 | + $propertyAnd = $calendarObjectIdQuery->expr()->andX(); |
|
2082 | + $propertyAnd->add($calendarObjectIdQuery->expr()->eq('cob.name', $calendarObjectIdQuery->createNamedParameter($property, IQueryBuilder::PARAM_STR))); |
|
2083 | + $propertyAnd->add($calendarObjectIdQuery->expr()->isNull('cob.parameter')); |
|
2084 | + |
|
2085 | + $searchOr->add($propertyAnd); |
|
2086 | + } |
|
2087 | + foreach ($searchParameters as $property => $parameter) { |
|
2088 | + $parameterAnd = $calendarObjectIdQuery->expr()->andX(); |
|
2089 | + $parameterAnd->add($calendarObjectIdQuery->expr()->eq('cob.name', $calendarObjectIdQuery->createNamedParameter($property, IQueryBuilder::PARAM_STR))); |
|
2090 | + $parameterAnd->add($calendarObjectIdQuery->expr()->eq('cob.parameter', $calendarObjectIdQuery->createNamedParameter($parameter, IQueryBuilder::PARAM_STR_ARRAY))); |
|
2091 | + |
|
2092 | + $searchOr->add($parameterAnd); |
|
2093 | + } |
|
2094 | + |
|
2095 | + if ($calendarOr->count() === 0) { |
|
2096 | + return []; |
|
2097 | + } |
|
2098 | + if ($searchOr->count() === 0) { |
|
2099 | + return []; |
|
2100 | + } |
|
2101 | + |
|
2102 | + $calendarObjectIdQuery->selectDistinct('cob.objectid') |
|
2103 | + ->from($this->dbObjectPropertiesTable, 'cob') |
|
2104 | + ->leftJoin('cob', 'calendarobjects', 'co', $calendarObjectIdQuery->expr()->eq('co.id', 'cob.objectid')) |
|
2105 | + ->andWhere($calendarObjectIdQuery->expr()->in('co.componenttype', $calendarObjectIdQuery->createNamedParameter($componentTypes, IQueryBuilder::PARAM_STR_ARRAY))) |
|
2106 | + ->andWhere($calendarOr) |
|
2107 | + ->andWhere($searchOr) |
|
2108 | + ->andWhere($calendarObjectIdQuery->expr()->isNull('deleted_at')); |
|
2109 | + |
|
2110 | + if ('' !== $pattern) { |
|
2111 | + if (!$escapePattern) { |
|
2112 | + $calendarObjectIdQuery->andWhere($calendarObjectIdQuery->expr()->ilike('cob.value', $calendarObjectIdQuery->createNamedParameter($pattern))); |
|
2113 | + } else { |
|
2114 | + $calendarObjectIdQuery->andWhere($calendarObjectIdQuery->expr()->ilike('cob.value', $calendarObjectIdQuery->createNamedParameter('%' . $this->db->escapeLikeParameter($pattern) . '%'))); |
|
2115 | + } |
|
2116 | + } |
|
2117 | + |
|
2118 | + if (isset($options['limit'])) { |
|
2119 | + $calendarObjectIdQuery->setMaxResults($options['limit']); |
|
2120 | + } |
|
2121 | + if (isset($options['offset'])) { |
|
2122 | + $calendarObjectIdQuery->setFirstResult($options['offset']); |
|
2123 | + } |
|
2124 | + |
|
2125 | + $result = $calendarObjectIdQuery->executeQuery(); |
|
2126 | + $matches = $result->fetchAll(); |
|
2127 | + $result->closeCursor(); |
|
2128 | + $matches = array_map(static function (array $match):int { |
|
2129 | + return (int) $match['objectid']; |
|
2130 | + }, $matches); |
|
2131 | + |
|
2132 | + $query = $this->db->getQueryBuilder(); |
|
2133 | + $query->select('calendardata', 'uri', 'calendarid', 'calendartype') |
|
2134 | + ->from('calendarobjects') |
|
2135 | + ->where($query->expr()->in('id', $query->createNamedParameter($matches, IQueryBuilder::PARAM_INT_ARRAY))); |
|
2136 | + |
|
2137 | + $result = $query->executeQuery(); |
|
2138 | + $calendarObjects = $result->fetchAll(); |
|
2139 | + $result->closeCursor(); |
|
2140 | + |
|
2141 | + return array_map(function (array $array): array { |
|
2142 | + $array['calendarid'] = (int)$array['calendarid']; |
|
2143 | + $array['calendartype'] = (int)$array['calendartype']; |
|
2144 | + $array['calendardata'] = $this->readBlob($array['calendardata']); |
|
2145 | + |
|
2146 | + return $array; |
|
2147 | + }, $calendarObjects); |
|
2148 | + } |
|
2149 | + |
|
2150 | + /** |
|
2151 | + * Searches through all of a users calendars and calendar objects to find |
|
2152 | + * an object with a specific UID. |
|
2153 | + * |
|
2154 | + * This method should return the path to this object, relative to the |
|
2155 | + * calendar home, so this path usually only contains two parts: |
|
2156 | + * |
|
2157 | + * calendarpath/objectpath.ics |
|
2158 | + * |
|
2159 | + * If the uid is not found, return null. |
|
2160 | + * |
|
2161 | + * This method should only consider * objects that the principal owns, so |
|
2162 | + * any calendars owned by other principals that also appear in this |
|
2163 | + * collection should be ignored. |
|
2164 | + * |
|
2165 | + * @param string $principalUri |
|
2166 | + * @param string $uid |
|
2167 | + * @return string|null |
|
2168 | + */ |
|
2169 | + public function getCalendarObjectByUID($principalUri, $uid) { |
|
2170 | + $query = $this->db->getQueryBuilder(); |
|
2171 | + $query->selectAlias('c.uri', 'calendaruri')->selectAlias('co.uri', 'objecturi') |
|
2172 | + ->from('calendarobjects', 'co') |
|
2173 | + ->leftJoin('co', 'calendars', 'c', $query->expr()->eq('co.calendarid', 'c.id')) |
|
2174 | + ->where($query->expr()->eq('c.principaluri', $query->createNamedParameter($principalUri))) |
|
2175 | + ->andWhere($query->expr()->eq('co.uid', $query->createNamedParameter($uid))) |
|
2176 | + ->andWhere($query->expr()->isNull('co.deleted_at')); |
|
2177 | + $stmt = $query->executeQuery(); |
|
2178 | + $row = $stmt->fetch(); |
|
2179 | + $stmt->closeCursor(); |
|
2180 | + if ($row) { |
|
2181 | + return $row['calendaruri'] . '/' . $row['objecturi']; |
|
2182 | + } |
|
2183 | + |
|
2184 | + return null; |
|
2185 | + } |
|
2186 | + |
|
2187 | + public function getCalendarObjectById(string $principalUri, int $id): ?array { |
|
2188 | + $query = $this->db->getQueryBuilder(); |
|
2189 | + $query->select(['co.id', 'co.uri', 'co.lastmodified', 'co.etag', 'co.calendarid', 'co.size', 'co.calendardata', 'co.componenttype', 'co.classification', 'co.deleted_at']) |
|
2190 | + ->selectAlias('c.uri', 'calendaruri') |
|
2191 | + ->from('calendarobjects', 'co') |
|
2192 | + ->join('co', 'calendars', 'c', $query->expr()->eq('c.id', 'co.calendarid', IQueryBuilder::PARAM_INT)) |
|
2193 | + ->where($query->expr()->eq('c.principaluri', $query->createNamedParameter($principalUri))) |
|
2194 | + ->andWhere($query->expr()->eq('co.id', $query->createNamedParameter($id, IQueryBuilder::PARAM_INT), IQueryBuilder::PARAM_INT)); |
|
2195 | + $stmt = $query->executeQuery(); |
|
2196 | + $row = $stmt->fetch(); |
|
2197 | + $stmt->closeCursor(); |
|
2198 | + |
|
2199 | + if (!$row) { |
|
2200 | + return null; |
|
2201 | + } |
|
2202 | + |
|
2203 | + return [ |
|
2204 | + 'id' => $row['id'], |
|
2205 | + 'uri' => $row['uri'], |
|
2206 | + 'lastmodified' => $row['lastmodified'], |
|
2207 | + 'etag' => '"' . $row['etag'] . '"', |
|
2208 | + 'calendarid' => $row['calendarid'], |
|
2209 | + 'calendaruri' => $row['calendaruri'], |
|
2210 | + 'size' => (int)$row['size'], |
|
2211 | + 'calendardata' => $this->readBlob($row['calendardata']), |
|
2212 | + 'component' => strtolower($row['componenttype']), |
|
2213 | + 'classification' => (int)$row['classification'], |
|
2214 | + 'deleted_at' => isset($row['deleted_at']) ? ((int) $row['deleted_at']) : null, |
|
2215 | + ]; |
|
2216 | + } |
|
2217 | + |
|
2218 | + /** |
|
2219 | + * The getChanges method returns all the changes that have happened, since |
|
2220 | + * the specified syncToken in the specified calendar. |
|
2221 | + * |
|
2222 | + * This function should return an array, such as the following: |
|
2223 | + * |
|
2224 | + * [ |
|
2225 | + * 'syncToken' => 'The current synctoken', |
|
2226 | + * 'added' => [ |
|
2227 | + * 'new.txt', |
|
2228 | + * ], |
|
2229 | + * 'modified' => [ |
|
2230 | + * 'modified.txt', |
|
2231 | + * ], |
|
2232 | + * 'deleted' => [ |
|
2233 | + * 'foo.php.bak', |
|
2234 | + * 'old.txt' |
|
2235 | + * ] |
|
2236 | + * ); |
|
2237 | + * |
|
2238 | + * The returned syncToken property should reflect the *current* syncToken |
|
2239 | + * of the calendar, as reported in the {http://sabredav.org/ns}sync-token |
|
2240 | + * property This is * needed here too, to ensure the operation is atomic. |
|
2241 | + * |
|
2242 | + * If the $syncToken argument is specified as null, this is an initial |
|
2243 | + * sync, and all members should be reported. |
|
2244 | + * |
|
2245 | + * The modified property is an array of nodenames that have changed since |
|
2246 | + * the last token. |
|
2247 | + * |
|
2248 | + * The deleted property is an array with nodenames, that have been deleted |
|
2249 | + * from collection. |
|
2250 | + * |
|
2251 | + * The $syncLevel argument is basically the 'depth' of the report. If it's |
|
2252 | + * 1, you only have to report changes that happened only directly in |
|
2253 | + * immediate descendants. If it's 2, it should also include changes from |
|
2254 | + * the nodes below the child collections. (grandchildren) |
|
2255 | + * |
|
2256 | + * The $limit argument allows a client to specify how many results should |
|
2257 | + * be returned at most. If the limit is not specified, it should be treated |
|
2258 | + * as infinite. |
|
2259 | + * |
|
2260 | + * If the limit (infinite or not) is higher than you're willing to return, |
|
2261 | + * you should throw a Sabre\DAV\Exception\TooMuchMatches() exception. |
|
2262 | + * |
|
2263 | + * If the syncToken is expired (due to data cleanup) or unknown, you must |
|
2264 | + * return null. |
|
2265 | + * |
|
2266 | + * The limit is 'suggestive'. You are free to ignore it. |
|
2267 | + * |
|
2268 | + * @param string $calendarId |
|
2269 | + * @param string $syncToken |
|
2270 | + * @param int $syncLevel |
|
2271 | + * @param int|null $limit |
|
2272 | + * @param int $calendarType |
|
2273 | + * @return array |
|
2274 | + */ |
|
2275 | + public function getChangesForCalendar($calendarId, $syncToken, $syncLevel, $limit = null, $calendarType = self::CALENDAR_TYPE_CALENDAR) { |
|
2276 | + // Current synctoken |
|
2277 | + $qb = $this->db->getQueryBuilder(); |
|
2278 | + $qb->select('synctoken') |
|
2279 | + ->from('calendars') |
|
2280 | + ->where( |
|
2281 | + $qb->expr()->eq('id', $qb->createNamedParameter($calendarId)) |
|
2282 | + ); |
|
2283 | + $stmt = $qb->executeQuery(); |
|
2284 | + $currentToken = $stmt->fetchOne(); |
|
2285 | + |
|
2286 | + if ($currentToken === false) { |
|
2287 | + return null; |
|
2288 | + } |
|
2289 | + |
|
2290 | + $result = [ |
|
2291 | + 'syncToken' => $currentToken, |
|
2292 | + 'added' => [], |
|
2293 | + 'modified' => [], |
|
2294 | + 'deleted' => [], |
|
2295 | + ]; |
|
2296 | + |
|
2297 | + if ($syncToken) { |
|
2298 | + $qb = $this->db->getQueryBuilder(); |
|
2299 | + |
|
2300 | + $qb->select('uri', 'operation') |
|
2301 | + ->from('calendarchanges') |
|
2302 | + ->where( |
|
2303 | + $qb->expr()->andX( |
|
2304 | + $qb->expr()->gte('synctoken', $qb->createNamedParameter($syncToken)), |
|
2305 | + $qb->expr()->lt('synctoken', $qb->createNamedParameter($currentToken)), |
|
2306 | + $qb->expr()->eq('calendarid', $qb->createNamedParameter($calendarId)), |
|
2307 | + $qb->expr()->eq('calendartype', $qb->createNamedParameter($calendarType)) |
|
2308 | + ) |
|
2309 | + )->orderBy('synctoken'); |
|
2310 | + if (is_int($limit) && $limit > 0) { |
|
2311 | + $qb->setMaxResults($limit); |
|
2312 | + } |
|
2313 | + |
|
2314 | + // Fetching all changes |
|
2315 | + $stmt = $qb->executeQuery(); |
|
2316 | + $changes = []; |
|
2317 | + |
|
2318 | + // This loop ensures that any duplicates are overwritten, only the |
|
2319 | + // last change on a node is relevant. |
|
2320 | + while ($row = $stmt->fetch()) { |
|
2321 | + $changes[$row['uri']] = $row['operation']; |
|
2322 | + } |
|
2323 | + $stmt->closeCursor(); |
|
2324 | + |
|
2325 | + foreach ($changes as $uri => $operation) { |
|
2326 | + switch ($operation) { |
|
2327 | + case 1: |
|
2328 | + $result['added'][] = $uri; |
|
2329 | + break; |
|
2330 | + case 2: |
|
2331 | + $result['modified'][] = $uri; |
|
2332 | + break; |
|
2333 | + case 3: |
|
2334 | + $result['deleted'][] = $uri; |
|
2335 | + break; |
|
2336 | + } |
|
2337 | + } |
|
2338 | + } else { |
|
2339 | + // No synctoken supplied, this is the initial sync. |
|
2340 | + $qb = $this->db->getQueryBuilder(); |
|
2341 | + $qb->select('uri') |
|
2342 | + ->from('calendarobjects') |
|
2343 | + ->where( |
|
2344 | + $qb->expr()->andX( |
|
2345 | + $qb->expr()->eq('calendarid', $qb->createNamedParameter($calendarId)), |
|
2346 | + $qb->expr()->eq('calendartype', $qb->createNamedParameter($calendarType)) |
|
2347 | + ) |
|
2348 | + ); |
|
2349 | + $stmt = $qb->executeQuery(); |
|
2350 | + $result['added'] = $stmt->fetchAll(\PDO::FETCH_COLUMN); |
|
2351 | + $stmt->closeCursor(); |
|
2352 | + } |
|
2353 | + return $result; |
|
2354 | + } |
|
2355 | + |
|
2356 | + /** |
|
2357 | + * Returns a list of subscriptions for a principal. |
|
2358 | + * |
|
2359 | + * Every subscription is an array with the following keys: |
|
2360 | + * * id, a unique id that will be used by other functions to modify the |
|
2361 | + * subscription. This can be the same as the uri or a database key. |
|
2362 | + * * uri. This is just the 'base uri' or 'filename' of the subscription. |
|
2363 | + * * principaluri. The owner of the subscription. Almost always the same as |
|
2364 | + * principalUri passed to this method. |
|
2365 | + * |
|
2366 | + * Furthermore, all the subscription info must be returned too: |
|
2367 | + * |
|
2368 | + * 1. {DAV:}displayname |
|
2369 | + * 2. {http://apple.com/ns/ical/}refreshrate |
|
2370 | + * 3. {http://calendarserver.org/ns/}subscribed-strip-todos (omit if todos |
|
2371 | + * should not be stripped). |
|
2372 | + * 4. {http://calendarserver.org/ns/}subscribed-strip-alarms (omit if alarms |
|
2373 | + * should not be stripped). |
|
2374 | + * 5. {http://calendarserver.org/ns/}subscribed-strip-attachments (omit if |
|
2375 | + * attachments should not be stripped). |
|
2376 | + * 6. {http://calendarserver.org/ns/}source (Must be a |
|
2377 | + * Sabre\DAV\Property\Href). |
|
2378 | + * 7. {http://apple.com/ns/ical/}calendar-color |
|
2379 | + * 8. {http://apple.com/ns/ical/}calendar-order |
|
2380 | + * 9. {urn:ietf:params:xml:ns:caldav}supported-calendar-component-set |
|
2381 | + * (should just be an instance of |
|
2382 | + * Sabre\CalDAV\Property\SupportedCalendarComponentSet, with a bunch of |
|
2383 | + * default components). |
|
2384 | + * |
|
2385 | + * @param string $principalUri |
|
2386 | + * @return array |
|
2387 | + */ |
|
2388 | + public function getSubscriptionsForUser($principalUri) { |
|
2389 | + $fields = array_column($this->subscriptionPropertyMap, 0); |
|
2390 | + $fields[] = 'id'; |
|
2391 | + $fields[] = 'uri'; |
|
2392 | + $fields[] = 'source'; |
|
2393 | + $fields[] = 'principaluri'; |
|
2394 | + $fields[] = 'lastmodified'; |
|
2395 | + $fields[] = 'synctoken'; |
|
2396 | + |
|
2397 | + $query = $this->db->getQueryBuilder(); |
|
2398 | + $query->select($fields) |
|
2399 | + ->from('calendarsubscriptions') |
|
2400 | + ->where($query->expr()->eq('principaluri', $query->createNamedParameter($principalUri))) |
|
2401 | + ->orderBy('calendarorder', 'asc'); |
|
2402 | + $stmt = $query->executeQuery(); |
|
2403 | + |
|
2404 | + $subscriptions = []; |
|
2405 | + while ($row = $stmt->fetch()) { |
|
2406 | + $subscription = [ |
|
2407 | + 'id' => $row['id'], |
|
2408 | + 'uri' => $row['uri'], |
|
2409 | + 'principaluri' => $row['principaluri'], |
|
2410 | + 'source' => $row['source'], |
|
2411 | + 'lastmodified' => $row['lastmodified'], |
|
2412 | + |
|
2413 | + '{' . Plugin::NS_CALDAV . '}supported-calendar-component-set' => new SupportedCalendarComponentSet(['VTODO', 'VEVENT']), |
|
2414 | + '{http://sabredav.org/ns}sync-token' => $row['synctoken']?$row['synctoken']:'0', |
|
2415 | + ]; |
|
2416 | + |
|
2417 | + $subscriptions[] = $this->rowToSubscription($row, $subscription); |
|
2418 | + } |
|
2419 | + |
|
2420 | + return $subscriptions; |
|
2421 | + } |
|
2422 | + |
|
2423 | + /** |
|
2424 | + * Creates a new subscription for a principal. |
|
2425 | + * |
|
2426 | + * If the creation was a success, an id must be returned that can be used to reference |
|
2427 | + * this subscription in other methods, such as updateSubscription. |
|
2428 | + * |
|
2429 | + * @param string $principalUri |
|
2430 | + * @param string $uri |
|
2431 | + * @param array $properties |
|
2432 | + * @return mixed |
|
2433 | + */ |
|
2434 | + public function createSubscription($principalUri, $uri, array $properties) { |
|
2435 | + if (!isset($properties['{http://calendarserver.org/ns/}source'])) { |
|
2436 | + throw new Forbidden('The {http://calendarserver.org/ns/}source property is required when creating subscriptions'); |
|
2437 | + } |
|
2438 | + |
|
2439 | + $values = [ |
|
2440 | + 'principaluri' => $principalUri, |
|
2441 | + 'uri' => $uri, |
|
2442 | + 'source' => $properties['{http://calendarserver.org/ns/}source']->getHref(), |
|
2443 | + 'lastmodified' => time(), |
|
2444 | + ]; |
|
2445 | + |
|
2446 | + $propertiesBoolean = ['striptodos', 'stripalarms', 'stripattachments']; |
|
2447 | + |
|
2448 | + foreach ($this->subscriptionPropertyMap as $xmlName => [$dbName, $type]) { |
|
2449 | + if (array_key_exists($xmlName, $properties)) { |
|
2450 | + $values[$dbName] = $properties[$xmlName]; |
|
2451 | + if (in_array($dbName, $propertiesBoolean)) { |
|
2452 | + $values[$dbName] = true; |
|
2453 | + } |
|
2454 | + } |
|
2455 | + } |
|
2456 | + |
|
2457 | + [$subscriptionId, $subscriptionRow] = $this->atomic(function() use ($values) { |
|
2458 | + $valuesToInsert = []; |
|
2459 | + $query = $this->db->getQueryBuilder(); |
|
2460 | + foreach (array_keys($values) as $name) { |
|
2461 | + $valuesToInsert[$name] = $query->createNamedParameter($values[$name]); |
|
2462 | + } |
|
2463 | + $query->insert('calendarsubscriptions') |
|
2464 | + ->values($valuesToInsert) |
|
2465 | + ->executeStatement(); |
|
2466 | + |
|
2467 | + $subscriptionId = $query->getLastInsertId(); |
|
2468 | + |
|
2469 | + $subscriptionRow = $this->getSubscriptionById($subscriptionId); |
|
2470 | + return [$subscriptionId, $subscriptionRow]; |
|
2471 | + }, $this->db); |
|
2472 | + |
|
2473 | + $this->dispatcher->dispatchTyped(new SubscriptionCreatedEvent($subscriptionId, $subscriptionRow)); |
|
2474 | + |
|
2475 | + return $subscriptionId; |
|
2476 | + } |
|
2477 | + |
|
2478 | + /** |
|
2479 | + * Updates a subscription |
|
2480 | + * |
|
2481 | + * The list of mutations is stored in a Sabre\DAV\PropPatch object. |
|
2482 | + * To do the actual updates, you must tell this object which properties |
|
2483 | + * you're going to process with the handle() method. |
|
2484 | + * |
|
2485 | + * Calling the handle method is like telling the PropPatch object "I |
|
2486 | + * promise I can handle updating this property". |
|
2487 | + * |
|
2488 | + * Read the PropPatch documentation for more info and examples. |
|
2489 | + * |
|
2490 | + * @param mixed $subscriptionId |
|
2491 | + * @param PropPatch $propPatch |
|
2492 | + * @return void |
|
2493 | + */ |
|
2494 | + public function updateSubscription($subscriptionId, PropPatch $propPatch) { |
|
2495 | + $supportedProperties = array_keys($this->subscriptionPropertyMap); |
|
2496 | + $supportedProperties[] = '{http://calendarserver.org/ns/}source'; |
|
2497 | + |
|
2498 | + $propPatch->handle($supportedProperties, function ($mutations) use ($subscriptionId) { |
|
2499 | + $newValues = []; |
|
2500 | + |
|
2501 | + foreach ($mutations as $propertyName => $propertyValue) { |
|
2502 | + if ($propertyName === '{http://calendarserver.org/ns/}source') { |
|
2503 | + $newValues['source'] = $propertyValue->getHref(); |
|
2504 | + } else { |
|
2505 | + $fieldName = $this->subscriptionPropertyMap[$propertyName][0]; |
|
2506 | + $newValues[$fieldName] = $propertyValue; |
|
2507 | + } |
|
2508 | + } |
|
2509 | + |
|
2510 | + $query = $this->db->getQueryBuilder(); |
|
2511 | + $query->update('calendarsubscriptions') |
|
2512 | + ->set('lastmodified', $query->createNamedParameter(time())); |
|
2513 | + foreach ($newValues as $fieldName => $value) { |
|
2514 | + $query->set($fieldName, $query->createNamedParameter($value)); |
|
2515 | + } |
|
2516 | + $query->where($query->expr()->eq('id', $query->createNamedParameter($subscriptionId))) |
|
2517 | + ->executeStatement(); |
|
2518 | + |
|
2519 | + $subscriptionRow = $this->getSubscriptionById($subscriptionId); |
|
2520 | + $this->dispatcher->dispatchTyped(new SubscriptionUpdatedEvent((int)$subscriptionId, $subscriptionRow, [], $mutations)); |
|
2521 | + |
|
2522 | + return true; |
|
2523 | + }); |
|
2524 | + } |
|
2525 | + |
|
2526 | + /** |
|
2527 | + * Deletes a subscription. |
|
2528 | + * |
|
2529 | + * @param mixed $subscriptionId |
|
2530 | + * @return void |
|
2531 | + */ |
|
2532 | + public function deleteSubscription($subscriptionId) { |
|
2533 | + $subscriptionRow = $this->getSubscriptionById($subscriptionId); |
|
2534 | + |
|
2535 | + $query = $this->db->getQueryBuilder(); |
|
2536 | + $query->delete('calendarsubscriptions') |
|
2537 | + ->where($query->expr()->eq('id', $query->createNamedParameter($subscriptionId))) |
|
2538 | + ->executeStatement(); |
|
2539 | + |
|
2540 | + $query = $this->db->getQueryBuilder(); |
|
2541 | + $query->delete('calendarobjects') |
|
2542 | + ->where($query->expr()->eq('calendarid', $query->createNamedParameter($subscriptionId))) |
|
2543 | + ->andWhere($query->expr()->eq('calendartype', $query->createNamedParameter(self::CALENDAR_TYPE_SUBSCRIPTION))) |
|
2544 | + ->executeStatement(); |
|
2545 | + |
|
2546 | + $query->delete('calendarchanges') |
|
2547 | + ->where($query->expr()->eq('calendarid', $query->createNamedParameter($subscriptionId))) |
|
2548 | + ->andWhere($query->expr()->eq('calendartype', $query->createNamedParameter(self::CALENDAR_TYPE_SUBSCRIPTION))) |
|
2549 | + ->executeStatement(); |
|
2550 | + |
|
2551 | + $query->delete($this->dbObjectPropertiesTable) |
|
2552 | + ->where($query->expr()->eq('calendarid', $query->createNamedParameter($subscriptionId))) |
|
2553 | + ->andWhere($query->expr()->eq('calendartype', $query->createNamedParameter(self::CALENDAR_TYPE_SUBSCRIPTION))) |
|
2554 | + ->executeStatement(); |
|
2555 | + |
|
2556 | + if ($subscriptionRow) { |
|
2557 | + $this->dispatcher->dispatchTyped(new SubscriptionDeletedEvent((int)$subscriptionId, $subscriptionRow, [])); |
|
2558 | + } |
|
2559 | + } |
|
2560 | + |
|
2561 | + /** |
|
2562 | + * Returns a single scheduling object for the inbox collection. |
|
2563 | + * |
|
2564 | + * The returned array should contain the following elements: |
|
2565 | + * * uri - A unique basename for the object. This will be used to |
|
2566 | + * construct a full uri. |
|
2567 | + * * calendardata - The iCalendar object |
|
2568 | + * * lastmodified - The last modification date. Can be an int for a unix |
|
2569 | + * timestamp, or a PHP DateTime object. |
|
2570 | + * * etag - A unique token that must change if the object changed. |
|
2571 | + * * size - The size of the object, in bytes. |
|
2572 | + * |
|
2573 | + * @param string $principalUri |
|
2574 | + * @param string $objectUri |
|
2575 | + * @return array |
|
2576 | + */ |
|
2577 | + public function getSchedulingObject($principalUri, $objectUri) { |
|
2578 | + $query = $this->db->getQueryBuilder(); |
|
2579 | + $stmt = $query->select(['uri', 'calendardata', 'lastmodified', 'etag', 'size']) |
|
2580 | + ->from('schedulingobjects') |
|
2581 | + ->where($query->expr()->eq('principaluri', $query->createNamedParameter($principalUri))) |
|
2582 | + ->andWhere($query->expr()->eq('uri', $query->createNamedParameter($objectUri))) |
|
2583 | + ->executeQuery(); |
|
2584 | + |
|
2585 | + $row = $stmt->fetch(); |
|
2586 | + |
|
2587 | + if (!$row) { |
|
2588 | + return null; |
|
2589 | + } |
|
2590 | + |
|
2591 | + return [ |
|
2592 | + 'uri' => $row['uri'], |
|
2593 | + 'calendardata' => $row['calendardata'], |
|
2594 | + 'lastmodified' => $row['lastmodified'], |
|
2595 | + 'etag' => '"' . $row['etag'] . '"', |
|
2596 | + 'size' => (int)$row['size'], |
|
2597 | + ]; |
|
2598 | + } |
|
2599 | + |
|
2600 | + /** |
|
2601 | + * Returns all scheduling objects for the inbox collection. |
|
2602 | + * |
|
2603 | + * These objects should be returned as an array. Every item in the array |
|
2604 | + * should follow the same structure as returned from getSchedulingObject. |
|
2605 | + * |
|
2606 | + * The main difference is that 'calendardata' is optional. |
|
2607 | + * |
|
2608 | + * @param string $principalUri |
|
2609 | + * @return array |
|
2610 | + */ |
|
2611 | + public function getSchedulingObjects($principalUri) { |
|
2612 | + $query = $this->db->getQueryBuilder(); |
|
2613 | + $stmt = $query->select(['uri', 'calendardata', 'lastmodified', 'etag', 'size']) |
|
2614 | + ->from('schedulingobjects') |
|
2615 | + ->where($query->expr()->eq('principaluri', $query->createNamedParameter($principalUri))) |
|
2616 | + ->executeQuery(); |
|
2617 | + |
|
2618 | + $result = []; |
|
2619 | + foreach ($stmt->fetchAll() as $row) { |
|
2620 | + $result[] = [ |
|
2621 | + 'calendardata' => $row['calendardata'], |
|
2622 | + 'uri' => $row['uri'], |
|
2623 | + 'lastmodified' => $row['lastmodified'], |
|
2624 | + 'etag' => '"' . $row['etag'] . '"', |
|
2625 | + 'size' => (int)$row['size'], |
|
2626 | + ]; |
|
2627 | + } |
|
2628 | + $stmt->closeCursor(); |
|
2629 | + |
|
2630 | + return $result; |
|
2631 | + } |
|
2632 | + |
|
2633 | + /** |
|
2634 | + * Deletes a scheduling object from the inbox collection. |
|
2635 | + * |
|
2636 | + * @param string $principalUri |
|
2637 | + * @param string $objectUri |
|
2638 | + * @return void |
|
2639 | + */ |
|
2640 | + public function deleteSchedulingObject($principalUri, $objectUri) { |
|
2641 | + $query = $this->db->getQueryBuilder(); |
|
2642 | + $query->delete('schedulingobjects') |
|
2643 | + ->where($query->expr()->eq('principaluri', $query->createNamedParameter($principalUri))) |
|
2644 | + ->andWhere($query->expr()->eq('uri', $query->createNamedParameter($objectUri))) |
|
2645 | + ->executeStatement(); |
|
2646 | + } |
|
2647 | + |
|
2648 | + /** |
|
2649 | + * Creates a new scheduling object. This should land in a users' inbox. |
|
2650 | + * |
|
2651 | + * @param string $principalUri |
|
2652 | + * @param string $objectUri |
|
2653 | + * @param string $objectData |
|
2654 | + * @return void |
|
2655 | + */ |
|
2656 | + public function createSchedulingObject($principalUri, $objectUri, $objectData) { |
|
2657 | + $query = $this->db->getQueryBuilder(); |
|
2658 | + $query->insert('schedulingobjects') |
|
2659 | + ->values([ |
|
2660 | + 'principaluri' => $query->createNamedParameter($principalUri), |
|
2661 | + 'calendardata' => $query->createNamedParameter($objectData, IQueryBuilder::PARAM_LOB), |
|
2662 | + 'uri' => $query->createNamedParameter($objectUri), |
|
2663 | + 'lastmodified' => $query->createNamedParameter(time()), |
|
2664 | + 'etag' => $query->createNamedParameter(md5($objectData)), |
|
2665 | + 'size' => $query->createNamedParameter(strlen($objectData)) |
|
2666 | + ]) |
|
2667 | + ->executeStatement(); |
|
2668 | + } |
|
2669 | + |
|
2670 | + /** |
|
2671 | + * Adds a change record to the calendarchanges table. |
|
2672 | + * |
|
2673 | + * @param mixed $calendarId |
|
2674 | + * @param string $objectUri |
|
2675 | + * @param int $operation 1 = add, 2 = modify, 3 = delete. |
|
2676 | + * @param int $calendarType |
|
2677 | + * @return void |
|
2678 | + */ |
|
2679 | + protected function addChange($calendarId, $objectUri, $operation, $calendarType = self::CALENDAR_TYPE_CALENDAR) { |
|
2680 | + $table = $calendarType === self::CALENDAR_TYPE_CALENDAR ? 'calendars': 'calendarsubscriptions'; |
|
2681 | + |
|
2682 | + $query = $this->db->getQueryBuilder(); |
|
2683 | + $query->select('synctoken') |
|
2684 | + ->from($table) |
|
2685 | + ->where($query->expr()->eq('id', $query->createNamedParameter($calendarId))); |
|
2686 | + $result = $query->executeQuery(); |
|
2687 | + $syncToken = (int)$result->fetchOne(); |
|
2688 | + $result->closeCursor(); |
|
2689 | + |
|
2690 | + $query = $this->db->getQueryBuilder(); |
|
2691 | + $query->insert('calendarchanges') |
|
2692 | + ->values([ |
|
2693 | + 'uri' => $query->createNamedParameter($objectUri), |
|
2694 | + 'synctoken' => $query->createNamedParameter($syncToken), |
|
2695 | + 'calendarid' => $query->createNamedParameter($calendarId), |
|
2696 | + 'operation' => $query->createNamedParameter($operation), |
|
2697 | + 'calendartype' => $query->createNamedParameter($calendarType), |
|
2698 | + ]) |
|
2699 | + ->executeStatement(); |
|
2700 | + |
|
2701 | + $stmt = $this->db->prepare("UPDATE `*PREFIX*$table` SET `synctoken` = `synctoken` + 1 WHERE `id` = ?"); |
|
2702 | + $stmt->execute([ |
|
2703 | + $calendarId |
|
2704 | + ]); |
|
2705 | + } |
|
2706 | + |
|
2707 | + /** |
|
2708 | + * Parses some information from calendar objects, used for optimized |
|
2709 | + * calendar-queries. |
|
2710 | + * |
|
2711 | + * Returns an array with the following keys: |
|
2712 | + * * etag - An md5 checksum of the object without the quotes. |
|
2713 | + * * size - Size of the object in bytes |
|
2714 | + * * componentType - VEVENT, VTODO or VJOURNAL |
|
2715 | + * * firstOccurence |
|
2716 | + * * lastOccurence |
|
2717 | + * * uid - value of the UID property |
|
2718 | + * |
|
2719 | + * @param string $calendarData |
|
2720 | + * @return array |
|
2721 | + */ |
|
2722 | + public function getDenormalizedData($calendarData) { |
|
2723 | + $vObject = Reader::read($calendarData); |
|
2724 | + $vEvents = []; |
|
2725 | + $componentType = null; |
|
2726 | + $component = null; |
|
2727 | + $firstOccurrence = null; |
|
2728 | + $lastOccurrence = null; |
|
2729 | + $uid = null; |
|
2730 | + $classification = self::CLASSIFICATION_PUBLIC; |
|
2731 | + $hasDTSTART = false; |
|
2732 | + foreach ($vObject->getComponents() as $component) { |
|
2733 | + if ($component->name !== 'VTIMEZONE') { |
|
2734 | + // Finding all VEVENTs, and track them |
|
2735 | + if ($component->name === 'VEVENT') { |
|
2736 | + array_push($vEvents, $component); |
|
2737 | + if ($component->DTSTART) { |
|
2738 | + $hasDTSTART = true; |
|
2739 | + } |
|
2740 | + } |
|
2741 | + // Track first component type and uid |
|
2742 | + if ($uid === null) { |
|
2743 | + $componentType = $component->name; |
|
2744 | + $uid = (string)$component->UID; |
|
2745 | + } |
|
2746 | + } |
|
2747 | + } |
|
2748 | + if (!$componentType) { |
|
2749 | + throw new BadRequest('Calendar objects must have a VJOURNAL, VEVENT or VTODO component'); |
|
2750 | + } |
|
2751 | + |
|
2752 | + if ($hasDTSTART) { |
|
2753 | + $component = $vEvents[0]; |
|
2754 | + |
|
2755 | + // Finding the last occurrence is a bit harder |
|
2756 | + if (!isset($component->RRULE) && count($vEvents) === 1) { |
|
2757 | + $firstOccurrence = $component->DTSTART->getDateTime()->getTimeStamp(); |
|
2758 | + if (isset($component->DTEND)) { |
|
2759 | + $lastOccurrence = $component->DTEND->getDateTime()->getTimeStamp(); |
|
2760 | + } elseif (isset($component->DURATION)) { |
|
2761 | + $endDate = clone $component->DTSTART->getDateTime(); |
|
2762 | + $endDate->add(DateTimeParser::parse($component->DURATION->getValue())); |
|
2763 | + $lastOccurrence = $endDate->getTimeStamp(); |
|
2764 | + } elseif (!$component->DTSTART->hasTime()) { |
|
2765 | + $endDate = clone $component->DTSTART->getDateTime(); |
|
2766 | + $endDate->modify('+1 day'); |
|
2767 | + $lastOccurrence = $endDate->getTimeStamp(); |
|
2768 | + } else { |
|
2769 | + $lastOccurrence = $firstOccurrence; |
|
2770 | + } |
|
2771 | + } else { |
|
2772 | + $it = new EventIterator($vEvents); |
|
2773 | + $maxDate = new DateTime(self::MAX_DATE); |
|
2774 | + $firstOccurrence = $it->getDtStart()->getTimestamp(); |
|
2775 | + if ($it->isInfinite()) { |
|
2776 | + $lastOccurrence = $maxDate->getTimestamp(); |
|
2777 | + } else { |
|
2778 | + $end = $it->getDtEnd(); |
|
2779 | + while ($it->valid() && $end < $maxDate) { |
|
2780 | + $end = $it->getDtEnd(); |
|
2781 | + $it->next(); |
|
2782 | + } |
|
2783 | + $lastOccurrence = $end->getTimestamp(); |
|
2784 | + } |
|
2785 | + } |
|
2786 | + } |
|
2787 | + |
|
2788 | + if ($component->CLASS) { |
|
2789 | + $classification = CalDavBackend::CLASSIFICATION_PRIVATE; |
|
2790 | + switch ($component->CLASS->getValue()) { |
|
2791 | + case 'PUBLIC': |
|
2792 | + $classification = CalDavBackend::CLASSIFICATION_PUBLIC; |
|
2793 | + break; |
|
2794 | + case 'CONFIDENTIAL': |
|
2795 | + $classification = CalDavBackend::CLASSIFICATION_CONFIDENTIAL; |
|
2796 | + break; |
|
2797 | + } |
|
2798 | + } |
|
2799 | + return [ |
|
2800 | + 'etag' => md5($calendarData), |
|
2801 | + 'size' => strlen($calendarData), |
|
2802 | + 'componentType' => $componentType, |
|
2803 | + 'firstOccurence' => is_null($firstOccurrence) ? null : max(0, $firstOccurrence), |
|
2804 | + 'lastOccurence' => $lastOccurrence, |
|
2805 | + 'uid' => $uid, |
|
2806 | + 'classification' => $classification |
|
2807 | + ]; |
|
2808 | + } |
|
2809 | + |
|
2810 | + /** |
|
2811 | + * @param $cardData |
|
2812 | + * @return bool|string |
|
2813 | + */ |
|
2814 | + private function readBlob($cardData) { |
|
2815 | + if (is_resource($cardData)) { |
|
2816 | + return stream_get_contents($cardData); |
|
2817 | + } |
|
2818 | + |
|
2819 | + return $cardData; |
|
2820 | + } |
|
2821 | + |
|
2822 | + /** |
|
2823 | + * @param list<array{href: string, commonName: string, readOnly: bool}> $add |
|
2824 | + * @param list<string> $remove |
|
2825 | + */ |
|
2826 | + public function updateShares(IShareable $shareable, array $add, array $remove): void { |
|
2827 | + $calendarId = $shareable->getResourceId(); |
|
2828 | + $calendarRow = $this->getCalendarById($calendarId); |
|
2829 | + if ($calendarRow === null) { |
|
2830 | + throw new \RuntimeException('Trying to update shares for innexistant calendar: ' . $calendarId); |
|
2831 | + } |
|
2832 | + $oldShares = $this->getShares($calendarId); |
|
2833 | + |
|
2834 | + $this->calendarSharingBackend->updateShares($shareable, $add, $remove); |
|
2835 | + |
|
2836 | + $this->dispatcher->dispatchTyped(new CalendarShareUpdatedEvent($calendarId, $calendarRow, $oldShares, $add, $remove)); |
|
2837 | + } |
|
2838 | + |
|
2839 | + /** |
|
2840 | + * @return list<array{href: string, commonName: string, status: int, readOnly: bool, '{http://owncloud.org/ns}principal': string, '{http://owncloud.org/ns}group-share': bool}> |
|
2841 | + */ |
|
2842 | + public function getShares(int $resourceId): array { |
|
2843 | + return $this->calendarSharingBackend->getShares($resourceId); |
|
2844 | + } |
|
2845 | + |
|
2846 | + /** |
|
2847 | + * @param boolean $value |
|
2848 | + * @param \OCA\DAV\CalDAV\Calendar $calendar |
|
2849 | + * @return string|null |
|
2850 | + */ |
|
2851 | + public function setPublishStatus($value, $calendar) { |
|
2852 | + $calendarId = $calendar->getResourceId(); |
|
2853 | + $calendarData = $this->getCalendarById($calendarId); |
|
2854 | + |
|
2855 | + $query = $this->db->getQueryBuilder(); |
|
2856 | + if ($value) { |
|
2857 | + $publicUri = $this->random->generate(16, ISecureRandom::CHAR_HUMAN_READABLE); |
|
2858 | + $query->insert('dav_shares') |
|
2859 | + ->values([ |
|
2860 | + 'principaluri' => $query->createNamedParameter($calendar->getPrincipalURI()), |
|
2861 | + 'type' => $query->createNamedParameter('calendar'), |
|
2862 | + 'access' => $query->createNamedParameter(self::ACCESS_PUBLIC), |
|
2863 | + 'resourceid' => $query->createNamedParameter($calendar->getResourceId()), |
|
2864 | + 'publicuri' => $query->createNamedParameter($publicUri) |
|
2865 | + ]); |
|
2866 | + $query->executeStatement(); |
|
2867 | + |
|
2868 | + $this->dispatcher->dispatchTyped(new CalendarPublishedEvent($calendarId, $calendarData, $publicUri)); |
|
2869 | + return $publicUri; |
|
2870 | + } |
|
2871 | + $query->delete('dav_shares') |
|
2872 | + ->where($query->expr()->eq('resourceid', $query->createNamedParameter($calendar->getResourceId()))) |
|
2873 | + ->andWhere($query->expr()->eq('access', $query->createNamedParameter(self::ACCESS_PUBLIC))); |
|
2874 | + $query->executeStatement(); |
|
2875 | + |
|
2876 | + $this->dispatcher->dispatchTyped(new CalendarUnpublishedEvent($calendarId, $calendarData)); |
|
2877 | + return null; |
|
2878 | + } |
|
2879 | + |
|
2880 | + /** |
|
2881 | + * @param \OCA\DAV\CalDAV\Calendar $calendar |
|
2882 | + * @return mixed |
|
2883 | + */ |
|
2884 | + public function getPublishStatus($calendar) { |
|
2885 | + $query = $this->db->getQueryBuilder(); |
|
2886 | + $result = $query->select('publicuri') |
|
2887 | + ->from('dav_shares') |
|
2888 | + ->where($query->expr()->eq('resourceid', $query->createNamedParameter($calendar->getResourceId()))) |
|
2889 | + ->andWhere($query->expr()->eq('access', $query->createNamedParameter(self::ACCESS_PUBLIC))) |
|
2890 | + ->executeQuery(); |
|
2891 | + |
|
2892 | + $row = $result->fetch(); |
|
2893 | + $result->closeCursor(); |
|
2894 | + return $row ? reset($row) : false; |
|
2895 | + } |
|
2896 | + |
|
2897 | + /** |
|
2898 | + * @param int $resourceId |
|
2899 | + * @param list<array{privilege: string, principal: string, protected: bool}> $acl |
|
2900 | + * @return list<array{privilege: string, principal: string, protected: bool}> |
|
2901 | + */ |
|
2902 | + public function applyShareAcl(int $resourceId, array $acl): array { |
|
2903 | + return $this->calendarSharingBackend->applyShareAcl($resourceId, $acl); |
|
2904 | + } |
|
2905 | + |
|
2906 | + /** |
|
2907 | + * update properties table |
|
2908 | + * |
|
2909 | + * @param int $calendarId |
|
2910 | + * @param string $objectUri |
|
2911 | + * @param string $calendarData |
|
2912 | + * @param int $calendarType |
|
2913 | + */ |
|
2914 | + public function updateProperties($calendarId, $objectUri, $calendarData, $calendarType = self::CALENDAR_TYPE_CALENDAR) { |
|
2915 | + $objectId = $this->getCalendarObjectId($calendarId, $objectUri, $calendarType); |
|
2916 | + |
|
2917 | + try { |
|
2918 | + $vCalendar = $this->readCalendarData($calendarData); |
|
2919 | + } catch (\Exception $ex) { |
|
2920 | + return; |
|
2921 | + } |
|
2922 | + |
|
2923 | + $this->purgeProperties($calendarId, $objectId); |
|
2924 | + |
|
2925 | + $query = $this->db->getQueryBuilder(); |
|
2926 | + $query->insert($this->dbObjectPropertiesTable) |
|
2927 | + ->values( |
|
2928 | + [ |
|
2929 | + 'calendarid' => $query->createNamedParameter($calendarId), |
|
2930 | + 'calendartype' => $query->createNamedParameter($calendarType), |
|
2931 | + 'objectid' => $query->createNamedParameter($objectId), |
|
2932 | + 'name' => $query->createParameter('name'), |
|
2933 | + 'parameter' => $query->createParameter('parameter'), |
|
2934 | + 'value' => $query->createParameter('value'), |
|
2935 | + ] |
|
2936 | + ); |
|
2937 | + |
|
2938 | + $indexComponents = ['VEVENT', 'VJOURNAL', 'VTODO']; |
|
2939 | + foreach ($vCalendar->getComponents() as $component) { |
|
2940 | + if (!in_array($component->name, $indexComponents)) { |
|
2941 | + continue; |
|
2942 | + } |
|
2943 | + |
|
2944 | + foreach ($component->children() as $property) { |
|
2945 | + if (in_array($property->name, self::INDEXED_PROPERTIES, true)) { |
|
2946 | + $value = $property->getValue(); |
|
2947 | + // is this a shitty db? |
|
2948 | + if (!$this->db->supports4ByteText()) { |
|
2949 | + $value = preg_replace('/[\x{10000}-\x{10FFFF}]/u', "\xEF\xBF\xBD", $value); |
|
2950 | + } |
|
2951 | + $value = mb_strcut($value, 0, 254); |
|
2952 | + |
|
2953 | + $query->setParameter('name', $property->name); |
|
2954 | + $query->setParameter('parameter', null); |
|
2955 | + $query->setParameter('value', $value); |
|
2956 | + $query->executeStatement(); |
|
2957 | + } |
|
2958 | + |
|
2959 | + if (array_key_exists($property->name, self::$indexParameters)) { |
|
2960 | + $parameters = $property->parameters(); |
|
2961 | + $indexedParametersForProperty = self::$indexParameters[$property->name]; |
|
2962 | + |
|
2963 | + foreach ($parameters as $key => $value) { |
|
2964 | + if (in_array($key, $indexedParametersForProperty)) { |
|
2965 | + // is this a shitty db? |
|
2966 | + if ($this->db->supports4ByteText()) { |
|
2967 | + $value = preg_replace('/[\x{10000}-\x{10FFFF}]/u', "\xEF\xBF\xBD", $value); |
|
2968 | + } |
|
2969 | + |
|
2970 | + $query->setParameter('name', $property->name); |
|
2971 | + $query->setParameter('parameter', mb_strcut($key, 0, 254)); |
|
2972 | + $query->setParameter('value', mb_strcut($value, 0, 254)); |
|
2973 | + $query->executeStatement(); |
|
2974 | + } |
|
2975 | + } |
|
2976 | + } |
|
2977 | + } |
|
2978 | + } |
|
2979 | + } |
|
2980 | + |
|
2981 | + /** |
|
2982 | + * deletes all birthday calendars |
|
2983 | + */ |
|
2984 | + public function deleteAllBirthdayCalendars() { |
|
2985 | + $query = $this->db->getQueryBuilder(); |
|
2986 | + $result = $query->select(['id'])->from('calendars') |
|
2987 | + ->where($query->expr()->eq('uri', $query->createNamedParameter(BirthdayService::BIRTHDAY_CALENDAR_URI))) |
|
2988 | + ->executeQuery(); |
|
2989 | + |
|
2990 | + $ids = $result->fetchAll(); |
|
2991 | + $result->closeCursor(); |
|
2992 | + foreach ($ids as $id) { |
|
2993 | + $this->deleteCalendar( |
|
2994 | + $id['id'], |
|
2995 | + true // No data to keep in the trashbin, if the user re-enables then we regenerate |
|
2996 | + ); |
|
2997 | + } |
|
2998 | + } |
|
2999 | + |
|
3000 | + /** |
|
3001 | + * @param $subscriptionId |
|
3002 | + */ |
|
3003 | + public function purgeAllCachedEventsForSubscription($subscriptionId) { |
|
3004 | + $query = $this->db->getQueryBuilder(); |
|
3005 | + $query->select('uri') |
|
3006 | + ->from('calendarobjects') |
|
3007 | + ->where($query->expr()->eq('calendarid', $query->createNamedParameter($subscriptionId))) |
|
3008 | + ->andWhere($query->expr()->eq('calendartype', $query->createNamedParameter(self::CALENDAR_TYPE_SUBSCRIPTION))); |
|
3009 | + $stmt = $query->executeQuery(); |
|
3010 | + |
|
3011 | + $uris = []; |
|
3012 | + foreach ($stmt->fetchAll() as $row) { |
|
3013 | + $uris[] = $row['uri']; |
|
3014 | + } |
|
3015 | + $stmt->closeCursor(); |
|
3016 | + |
|
3017 | + $query = $this->db->getQueryBuilder(); |
|
3018 | + $query->delete('calendarobjects') |
|
3019 | + ->where($query->expr()->eq('calendarid', $query->createNamedParameter($subscriptionId))) |
|
3020 | + ->andWhere($query->expr()->eq('calendartype', $query->createNamedParameter(self::CALENDAR_TYPE_SUBSCRIPTION))) |
|
3021 | + ->executeStatement(); |
|
3022 | + |
|
3023 | + $query->delete('calendarchanges') |
|
3024 | + ->where($query->expr()->eq('calendarid', $query->createNamedParameter($subscriptionId))) |
|
3025 | + ->andWhere($query->expr()->eq('calendartype', $query->createNamedParameter(self::CALENDAR_TYPE_SUBSCRIPTION))) |
|
3026 | + ->executeStatement(); |
|
3027 | + |
|
3028 | + $query->delete($this->dbObjectPropertiesTable) |
|
3029 | + ->where($query->expr()->eq('calendarid', $query->createNamedParameter($subscriptionId))) |
|
3030 | + ->andWhere($query->expr()->eq('calendartype', $query->createNamedParameter(self::CALENDAR_TYPE_SUBSCRIPTION))) |
|
3031 | + ->executeStatement(); |
|
3032 | + |
|
3033 | + foreach ($uris as $uri) { |
|
3034 | + $this->addChange($subscriptionId, $uri, 3, self::CALENDAR_TYPE_SUBSCRIPTION); |
|
3035 | + } |
|
3036 | + } |
|
3037 | + |
|
3038 | + /** |
|
3039 | + * Move a calendar from one user to another |
|
3040 | + * |
|
3041 | + * @param string $uriName |
|
3042 | + * @param string $uriOrigin |
|
3043 | + * @param string $uriDestination |
|
3044 | + * @param string $newUriName (optional) the new uriName |
|
3045 | + */ |
|
3046 | + public function moveCalendar($uriName, $uriOrigin, $uriDestination, $newUriName = null) { |
|
3047 | + $query = $this->db->getQueryBuilder(); |
|
3048 | + $query->update('calendars') |
|
3049 | + ->set('principaluri', $query->createNamedParameter($uriDestination)) |
|
3050 | + ->set('uri', $query->createNamedParameter($newUriName ?: $uriName)) |
|
3051 | + ->where($query->expr()->eq('principaluri', $query->createNamedParameter($uriOrigin))) |
|
3052 | + ->andWhere($query->expr()->eq('uri', $query->createNamedParameter($uriName))) |
|
3053 | + ->executeStatement(); |
|
3054 | + } |
|
3055 | + |
|
3056 | + /** |
|
3057 | + * read VCalendar data into a VCalendar object |
|
3058 | + * |
|
3059 | + * @param string $objectData |
|
3060 | + * @return VCalendar |
|
3061 | + */ |
|
3062 | + protected function readCalendarData($objectData) { |
|
3063 | + return Reader::read($objectData); |
|
3064 | + } |
|
3065 | + |
|
3066 | + /** |
|
3067 | + * delete all properties from a given calendar object |
|
3068 | + * |
|
3069 | + * @param int $calendarId |
|
3070 | + * @param int $objectId |
|
3071 | + */ |
|
3072 | + protected function purgeProperties($calendarId, $objectId) { |
|
3073 | + $query = $this->db->getQueryBuilder(); |
|
3074 | + $query->delete($this->dbObjectPropertiesTable) |
|
3075 | + ->where($query->expr()->eq('objectid', $query->createNamedParameter($objectId))) |
|
3076 | + ->andWhere($query->expr()->eq('calendarid', $query->createNamedParameter($calendarId))); |
|
3077 | + $query->executeStatement(); |
|
3078 | + } |
|
3079 | + |
|
3080 | + /** |
|
3081 | + * get ID from a given calendar object |
|
3082 | + * |
|
3083 | + * @param int $calendarId |
|
3084 | + * @param string $uri |
|
3085 | + * @param int $calendarType |
|
3086 | + * @return int |
|
3087 | + */ |
|
3088 | + protected function getCalendarObjectId($calendarId, $uri, $calendarType):int { |
|
3089 | + $query = $this->db->getQueryBuilder(); |
|
3090 | + $query->select('id') |
|
3091 | + ->from('calendarobjects') |
|
3092 | + ->where($query->expr()->eq('uri', $query->createNamedParameter($uri))) |
|
3093 | + ->andWhere($query->expr()->eq('calendarid', $query->createNamedParameter($calendarId))) |
|
3094 | + ->andWhere($query->expr()->eq('calendartype', $query->createNamedParameter($calendarType))); |
|
3095 | + |
|
3096 | + $result = $query->executeQuery(); |
|
3097 | + $objectIds = $result->fetch(); |
|
3098 | + $result->closeCursor(); |
|
3099 | + |
|
3100 | + if (!isset($objectIds['id'])) { |
|
3101 | + throw new \InvalidArgumentException('Calendarobject does not exists: ' . $uri); |
|
3102 | + } |
|
3103 | + |
|
3104 | + return (int)$objectIds['id']; |
|
3105 | + } |
|
3106 | + |
|
3107 | + /** |
|
3108 | + * @throws \InvalidArgumentException |
|
3109 | + */ |
|
3110 | + public function pruneOutdatedSyncTokens(int $keep = 10_000): int { |
|
3111 | + if ($keep < 0) { |
|
3112 | + throw new \InvalidArgumentException(); |
|
3113 | + } |
|
3114 | + $query = $this->db->getQueryBuilder(); |
|
3115 | + $query->delete('calendarchanges') |
|
3116 | + ->orderBy('id', 'DESC') |
|
3117 | + ->setFirstResult($keep); |
|
3118 | + return $query->executeStatement(); |
|
3119 | + } |
|
3120 | + |
|
3121 | + /** |
|
3122 | + * return legacy endpoint principal name to new principal name |
|
3123 | + * |
|
3124 | + * @param $principalUri |
|
3125 | + * @param $toV2 |
|
3126 | + * @return string |
|
3127 | + */ |
|
3128 | + private function convertPrincipal($principalUri, $toV2) { |
|
3129 | + if ($this->principalBackend->getPrincipalPrefix() === 'principals') { |
|
3130 | + [, $name] = Uri\split($principalUri); |
|
3131 | + if ($toV2 === true) { |
|
3132 | + return "principals/users/$name"; |
|
3133 | + } |
|
3134 | + return "principals/$name"; |
|
3135 | + } |
|
3136 | + return $principalUri; |
|
3137 | + } |
|
3138 | + |
|
3139 | + /** |
|
3140 | + * adds information about an owner to the calendar data |
|
3141 | + * |
|
3142 | + */ |
|
3143 | + private function addOwnerPrincipalToCalendar(array $calendarInfo): array { |
|
3144 | + $ownerPrincipalKey = '{' . \OCA\DAV\DAV\Sharing\Plugin::NS_OWNCLOUD . '}owner-principal'; |
|
3145 | + $displaynameKey = '{' . \OCA\DAV\DAV\Sharing\Plugin::NS_NEXTCLOUD . '}owner-displayname'; |
|
3146 | + if (isset($calendarInfo[$ownerPrincipalKey])) { |
|
3147 | + $uri = $calendarInfo[$ownerPrincipalKey]; |
|
3148 | + } else { |
|
3149 | + $uri = $calendarInfo['principaluri']; |
|
3150 | + } |
|
3151 | + |
|
3152 | + $principalInformation = $this->principalBackend->getPrincipalByPath($uri); |
|
3153 | + if (isset($principalInformation['{DAV:}displayname'])) { |
|
3154 | + $calendarInfo[$displaynameKey] = $principalInformation['{DAV:}displayname']; |
|
3155 | + } |
|
3156 | + return $calendarInfo; |
|
3157 | + } |
|
3158 | + |
|
3159 | + private function addResourceTypeToCalendar(array $row, array $calendar): array { |
|
3160 | + if (isset($row['deleted_at'])) { |
|
3161 | + // Columns is set and not null -> this is a deleted calendar |
|
3162 | + // we send a custom resourcetype to hide the deleted calendar |
|
3163 | + // from ordinary DAV clients, but the Calendar app will know |
|
3164 | + // how to handle this special resource. |
|
3165 | + $calendar['{DAV:}resourcetype'] = new DAV\Xml\Property\ResourceType([ |
|
3166 | + '{DAV:}collection', |
|
3167 | + sprintf('{%s}deleted-calendar', \OCA\DAV\DAV\Sharing\Plugin::NS_NEXTCLOUD), |
|
3168 | + ]); |
|
3169 | + } |
|
3170 | + return $calendar; |
|
3171 | + } |
|
3172 | + |
|
3173 | + /** |
|
3174 | + * Amend the calendar info with database row data |
|
3175 | + * |
|
3176 | + * @param array $row |
|
3177 | + * @param array $calendar |
|
3178 | + * |
|
3179 | + * @return array |
|
3180 | + */ |
|
3181 | + private function rowToCalendar($row, array $calendar): array { |
|
3182 | + foreach ($this->propertyMap as $xmlName => [$dbName, $type]) { |
|
3183 | + $value = $row[$dbName]; |
|
3184 | + if ($value !== null) { |
|
3185 | + settype($value, $type); |
|
3186 | + } |
|
3187 | + $calendar[$xmlName] = $value; |
|
3188 | + } |
|
3189 | + return $calendar; |
|
3190 | + } |
|
3191 | + |
|
3192 | + /** |
|
3193 | + * Amend the subscription info with database row data |
|
3194 | + * |
|
3195 | + * @param array $row |
|
3196 | + * @param array $subscription |
|
3197 | + * |
|
3198 | + * @return array |
|
3199 | + */ |
|
3200 | + private function rowToSubscription($row, array $subscription): array { |
|
3201 | + foreach ($this->subscriptionPropertyMap as $xmlName => [$dbName, $type]) { |
|
3202 | + $value = $row[$dbName]; |
|
3203 | + if ($value !== null) { |
|
3204 | + settype($value, $type); |
|
3205 | + } |
|
3206 | + $subscription[$xmlName] = $value; |
|
3207 | + } |
|
3208 | + return $subscription; |
|
3209 | + } |
|
3210 | 3210 | } |
@@ -6,340 +6,340 @@ |
||
6 | 6 | |
7 | 7 | class ComposerStaticInitDAV |
8 | 8 | { |
9 | - public static $prefixLengthsPsr4 = array ( |
|
9 | + public static $prefixLengthsPsr4 = array( |
|
10 | 10 | 'O' => |
11 | - array ( |
|
11 | + array( |
|
12 | 12 | 'OCA\\DAV\\' => 8, |
13 | 13 | ), |
14 | 14 | ); |
15 | 15 | |
16 | - public static $prefixDirsPsr4 = array ( |
|
16 | + public static $prefixDirsPsr4 = array( |
|
17 | 17 | 'OCA\\DAV\\' => |
18 | - array ( |
|
19 | - 0 => __DIR__ . '/..' . '/../lib', |
|
18 | + array( |
|
19 | + 0 => __DIR__.'/..'.'/../lib', |
|
20 | 20 | ), |
21 | 21 | ); |
22 | 22 | |
23 | - public static $classMap = array ( |
|
24 | - 'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php', |
|
25 | - 'OCA\\DAV\\AppInfo\\Application' => __DIR__ . '/..' . '/../lib/AppInfo/Application.php', |
|
26 | - 'OCA\\DAV\\AppInfo\\PluginManager' => __DIR__ . '/..' . '/../lib/AppInfo/PluginManager.php', |
|
27 | - 'OCA\\DAV\\Avatars\\AvatarHome' => __DIR__ . '/..' . '/../lib/Avatars/AvatarHome.php', |
|
28 | - 'OCA\\DAV\\Avatars\\AvatarNode' => __DIR__ . '/..' . '/../lib/Avatars/AvatarNode.php', |
|
29 | - 'OCA\\DAV\\Avatars\\RootCollection' => __DIR__ . '/..' . '/../lib/Avatars/RootCollection.php', |
|
30 | - 'OCA\\DAV\\BackgroundJob\\BuildReminderIndexBackgroundJob' => __DIR__ . '/..' . '/../lib/BackgroundJob/BuildReminderIndexBackgroundJob.php', |
|
31 | - 'OCA\\DAV\\BackgroundJob\\CalendarRetentionJob' => __DIR__ . '/..' . '/../lib/BackgroundJob/CalendarRetentionJob.php', |
|
32 | - 'OCA\\DAV\\BackgroundJob\\CleanupDirectLinksJob' => __DIR__ . '/..' . '/../lib/BackgroundJob/CleanupDirectLinksJob.php', |
|
33 | - 'OCA\\DAV\\BackgroundJob\\CleanupInvitationTokenJob' => __DIR__ . '/..' . '/../lib/BackgroundJob/CleanupInvitationTokenJob.php', |
|
34 | - 'OCA\\DAV\\BackgroundJob\\EventReminderJob' => __DIR__ . '/..' . '/../lib/BackgroundJob/EventReminderJob.php', |
|
35 | - 'OCA\\DAV\\BackgroundJob\\GenerateBirthdayCalendarBackgroundJob' => __DIR__ . '/..' . '/../lib/BackgroundJob/GenerateBirthdayCalendarBackgroundJob.php', |
|
36 | - 'OCA\\DAV\\BackgroundJob\\PruneOutdatedSyncTokensJob' => __DIR__ . '/..' . '/../lib/BackgroundJob/PruneOutdatedSyncTokensJob.php', |
|
37 | - 'OCA\\DAV\\BackgroundJob\\RefreshWebcalJob' => __DIR__ . '/..' . '/../lib/BackgroundJob/RefreshWebcalJob.php', |
|
38 | - 'OCA\\DAV\\BackgroundJob\\RegisterRegenerateBirthdayCalendars' => __DIR__ . '/..' . '/../lib/BackgroundJob/RegisterRegenerateBirthdayCalendars.php', |
|
39 | - 'OCA\\DAV\\BackgroundJob\\UpdateCalendarResourcesRoomsBackgroundJob' => __DIR__ . '/..' . '/../lib/BackgroundJob/UpdateCalendarResourcesRoomsBackgroundJob.php', |
|
40 | - 'OCA\\DAV\\BackgroundJob\\UploadCleanup' => __DIR__ . '/..' . '/../lib/BackgroundJob/UploadCleanup.php', |
|
41 | - 'OCA\\DAV\\BackgroundJob\\UserStatusAutomation' => __DIR__ . '/..' . '/../lib/BackgroundJob/UserStatusAutomation.php', |
|
42 | - 'OCA\\DAV\\BulkUpload\\BulkUploadPlugin' => __DIR__ . '/..' . '/../lib/BulkUpload/BulkUploadPlugin.php', |
|
43 | - 'OCA\\DAV\\BulkUpload\\MultipartRequestParser' => __DIR__ . '/..' . '/../lib/BulkUpload/MultipartRequestParser.php', |
|
44 | - 'OCA\\DAV\\CalDAV\\Activity\\Backend' => __DIR__ . '/..' . '/../lib/CalDAV/Activity/Backend.php', |
|
45 | - 'OCA\\DAV\\CalDAV\\Activity\\Filter\\Calendar' => __DIR__ . '/..' . '/../lib/CalDAV/Activity/Filter/Calendar.php', |
|
46 | - 'OCA\\DAV\\CalDAV\\Activity\\Filter\\Todo' => __DIR__ . '/..' . '/../lib/CalDAV/Activity/Filter/Todo.php', |
|
47 | - 'OCA\\DAV\\CalDAV\\Activity\\Provider\\Base' => __DIR__ . '/..' . '/../lib/CalDAV/Activity/Provider/Base.php', |
|
48 | - 'OCA\\DAV\\CalDAV\\Activity\\Provider\\Calendar' => __DIR__ . '/..' . '/../lib/CalDAV/Activity/Provider/Calendar.php', |
|
49 | - 'OCA\\DAV\\CalDAV\\Activity\\Provider\\Event' => __DIR__ . '/..' . '/../lib/CalDAV/Activity/Provider/Event.php', |
|
50 | - 'OCA\\DAV\\CalDAV\\Activity\\Provider\\Todo' => __DIR__ . '/..' . '/../lib/CalDAV/Activity/Provider/Todo.php', |
|
51 | - 'OCA\\DAV\\CalDAV\\Activity\\Setting\\CalDAVSetting' => __DIR__ . '/..' . '/../lib/CalDAV/Activity/Setting/CalDAVSetting.php', |
|
52 | - 'OCA\\DAV\\CalDAV\\Activity\\Setting\\Calendar' => __DIR__ . '/..' . '/../lib/CalDAV/Activity/Setting/Calendar.php', |
|
53 | - 'OCA\\DAV\\CalDAV\\Activity\\Setting\\Event' => __DIR__ . '/..' . '/../lib/CalDAV/Activity/Setting/Event.php', |
|
54 | - 'OCA\\DAV\\CalDAV\\Activity\\Setting\\Todo' => __DIR__ . '/..' . '/../lib/CalDAV/Activity/Setting/Todo.php', |
|
55 | - 'OCA\\DAV\\CalDAV\\Auth\\CustomPrincipalPlugin' => __DIR__ . '/..' . '/../lib/CalDAV/Auth/CustomPrincipalPlugin.php', |
|
56 | - 'OCA\\DAV\\CalDAV\\Auth\\PublicPrincipalPlugin' => __DIR__ . '/..' . '/../lib/CalDAV/Auth/PublicPrincipalPlugin.php', |
|
57 | - 'OCA\\DAV\\CalDAV\\BirthdayCalendar\\EnablePlugin' => __DIR__ . '/..' . '/../lib/CalDAV/BirthdayCalendar/EnablePlugin.php', |
|
58 | - 'OCA\\DAV\\CalDAV\\BirthdayService' => __DIR__ . '/..' . '/../lib/CalDAV/BirthdayService.php', |
|
59 | - 'OCA\\DAV\\CalDAV\\CachedSubscription' => __DIR__ . '/..' . '/../lib/CalDAV/CachedSubscription.php', |
|
60 | - 'OCA\\DAV\\CalDAV\\CachedSubscriptionObject' => __DIR__ . '/..' . '/../lib/CalDAV/CachedSubscriptionObject.php', |
|
61 | - 'OCA\\DAV\\CalDAV\\CalDavBackend' => __DIR__ . '/..' . '/../lib/CalDAV/CalDavBackend.php', |
|
62 | - 'OCA\\DAV\\CalDAV\\Calendar' => __DIR__ . '/..' . '/../lib/CalDAV/Calendar.php', |
|
63 | - 'OCA\\DAV\\CalDAV\\CalendarHome' => __DIR__ . '/..' . '/../lib/CalDAV/CalendarHome.php', |
|
64 | - 'OCA\\DAV\\CalDAV\\CalendarImpl' => __DIR__ . '/..' . '/../lib/CalDAV/CalendarImpl.php', |
|
65 | - 'OCA\\DAV\\CalDAV\\CalendarManager' => __DIR__ . '/..' . '/../lib/CalDAV/CalendarManager.php', |
|
66 | - 'OCA\\DAV\\CalDAV\\CalendarObject' => __DIR__ . '/..' . '/../lib/CalDAV/CalendarObject.php', |
|
67 | - 'OCA\\DAV\\CalDAV\\CalendarProvider' => __DIR__ . '/..' . '/../lib/CalDAV/CalendarProvider.php', |
|
68 | - 'OCA\\DAV\\CalDAV\\CalendarRoot' => __DIR__ . '/..' . '/../lib/CalDAV/CalendarRoot.php', |
|
69 | - 'OCA\\DAV\\CalDAV\\ICSExportPlugin\\ICSExportPlugin' => __DIR__ . '/..' . '/../lib/CalDAV/ICSExportPlugin/ICSExportPlugin.php', |
|
70 | - 'OCA\\DAV\\CalDAV\\IRestorable' => __DIR__ . '/..' . '/../lib/CalDAV/IRestorable.php', |
|
71 | - 'OCA\\DAV\\CalDAV\\Integration\\ExternalCalendar' => __DIR__ . '/..' . '/../lib/CalDAV/Integration/ExternalCalendar.php', |
|
72 | - 'OCA\\DAV\\CalDAV\\Integration\\ICalendarProvider' => __DIR__ . '/..' . '/../lib/CalDAV/Integration/ICalendarProvider.php', |
|
73 | - 'OCA\\DAV\\CalDAV\\InvitationResponse\\InvitationResponseServer' => __DIR__ . '/..' . '/../lib/CalDAV/InvitationResponse/InvitationResponseServer.php', |
|
74 | - 'OCA\\DAV\\CalDAV\\Outbox' => __DIR__ . '/..' . '/../lib/CalDAV/Outbox.php', |
|
75 | - 'OCA\\DAV\\CalDAV\\Plugin' => __DIR__ . '/..' . '/../lib/CalDAV/Plugin.php', |
|
76 | - 'OCA\\DAV\\CalDAV\\Principal\\Collection' => __DIR__ . '/..' . '/../lib/CalDAV/Principal/Collection.php', |
|
77 | - 'OCA\\DAV\\CalDAV\\Principal\\User' => __DIR__ . '/..' . '/../lib/CalDAV/Principal/User.php', |
|
78 | - 'OCA\\DAV\\CalDAV\\Proxy\\Proxy' => __DIR__ . '/..' . '/../lib/CalDAV/Proxy/Proxy.php', |
|
79 | - 'OCA\\DAV\\CalDAV\\Proxy\\ProxyMapper' => __DIR__ . '/..' . '/../lib/CalDAV/Proxy/ProxyMapper.php', |
|
80 | - 'OCA\\DAV\\CalDAV\\PublicCalendar' => __DIR__ . '/..' . '/../lib/CalDAV/PublicCalendar.php', |
|
81 | - 'OCA\\DAV\\CalDAV\\PublicCalendarObject' => __DIR__ . '/..' . '/../lib/CalDAV/PublicCalendarObject.php', |
|
82 | - 'OCA\\DAV\\CalDAV\\PublicCalendarRoot' => __DIR__ . '/..' . '/../lib/CalDAV/PublicCalendarRoot.php', |
|
83 | - 'OCA\\DAV\\CalDAV\\Publishing\\PublishPlugin' => __DIR__ . '/..' . '/../lib/CalDAV/Publishing/PublishPlugin.php', |
|
84 | - 'OCA\\DAV\\CalDAV\\Publishing\\Xml\\Publisher' => __DIR__ . '/..' . '/../lib/CalDAV/Publishing/Xml/Publisher.php', |
|
85 | - 'OCA\\DAV\\CalDAV\\Reminder\\Backend' => __DIR__ . '/..' . '/../lib/CalDAV/Reminder/Backend.php', |
|
86 | - 'OCA\\DAV\\CalDAV\\Reminder\\INotificationProvider' => __DIR__ . '/..' . '/../lib/CalDAV/Reminder/INotificationProvider.php', |
|
87 | - 'OCA\\DAV\\CalDAV\\Reminder\\NotificationProviderManager' => __DIR__ . '/..' . '/../lib/CalDAV/Reminder/NotificationProviderManager.php', |
|
88 | - 'OCA\\DAV\\CalDAV\\Reminder\\NotificationProvider\\AbstractProvider' => __DIR__ . '/..' . '/../lib/CalDAV/Reminder/NotificationProvider/AbstractProvider.php', |
|
89 | - 'OCA\\DAV\\CalDAV\\Reminder\\NotificationProvider\\AudioProvider' => __DIR__ . '/..' . '/../lib/CalDAV/Reminder/NotificationProvider/AudioProvider.php', |
|
90 | - 'OCA\\DAV\\CalDAV\\Reminder\\NotificationProvider\\EmailProvider' => __DIR__ . '/..' . '/../lib/CalDAV/Reminder/NotificationProvider/EmailProvider.php', |
|
91 | - 'OCA\\DAV\\CalDAV\\Reminder\\NotificationProvider\\ProviderNotAvailableException' => __DIR__ . '/..' . '/../lib/CalDAV/Reminder/NotificationProvider/ProviderNotAvailableException.php', |
|
92 | - 'OCA\\DAV\\CalDAV\\Reminder\\NotificationProvider\\PushProvider' => __DIR__ . '/..' . '/../lib/CalDAV/Reminder/NotificationProvider/PushProvider.php', |
|
93 | - 'OCA\\DAV\\CalDAV\\Reminder\\NotificationTypeDoesNotExistException' => __DIR__ . '/..' . '/../lib/CalDAV/Reminder/NotificationTypeDoesNotExistException.php', |
|
94 | - 'OCA\\DAV\\CalDAV\\Reminder\\Notifier' => __DIR__ . '/..' . '/../lib/CalDAV/Reminder/Notifier.php', |
|
95 | - 'OCA\\DAV\\CalDAV\\Reminder\\ReminderService' => __DIR__ . '/..' . '/../lib/CalDAV/Reminder/ReminderService.php', |
|
96 | - 'OCA\\DAV\\CalDAV\\ResourceBooking\\AbstractPrincipalBackend' => __DIR__ . '/..' . '/../lib/CalDAV/ResourceBooking/AbstractPrincipalBackend.php', |
|
97 | - 'OCA\\DAV\\CalDAV\\ResourceBooking\\ResourcePrincipalBackend' => __DIR__ . '/..' . '/../lib/CalDAV/ResourceBooking/ResourcePrincipalBackend.php', |
|
98 | - 'OCA\\DAV\\CalDAV\\ResourceBooking\\RoomPrincipalBackend' => __DIR__ . '/..' . '/../lib/CalDAV/ResourceBooking/RoomPrincipalBackend.php', |
|
99 | - 'OCA\\DAV\\CalDAV\\RetentionService' => __DIR__ . '/..' . '/../lib/CalDAV/RetentionService.php', |
|
100 | - 'OCA\\DAV\\CalDAV\\Schedule\\IMipPlugin' => __DIR__ . '/..' . '/../lib/CalDAV/Schedule/IMipPlugin.php', |
|
101 | - 'OCA\\DAV\\CalDAV\\Schedule\\Plugin' => __DIR__ . '/..' . '/../lib/CalDAV/Schedule/Plugin.php', |
|
102 | - 'OCA\\DAV\\CalDAV\\Search\\SearchPlugin' => __DIR__ . '/..' . '/../lib/CalDAV/Search/SearchPlugin.php', |
|
103 | - 'OCA\\DAV\\CalDAV\\Search\\Xml\\Filter\\CompFilter' => __DIR__ . '/..' . '/../lib/CalDAV/Search/Xml/Filter/CompFilter.php', |
|
104 | - 'OCA\\DAV\\CalDAV\\Search\\Xml\\Filter\\LimitFilter' => __DIR__ . '/..' . '/../lib/CalDAV/Search/Xml/Filter/LimitFilter.php', |
|
105 | - 'OCA\\DAV\\CalDAV\\Search\\Xml\\Filter\\OffsetFilter' => __DIR__ . '/..' . '/../lib/CalDAV/Search/Xml/Filter/OffsetFilter.php', |
|
106 | - 'OCA\\DAV\\CalDAV\\Search\\Xml\\Filter\\ParamFilter' => __DIR__ . '/..' . '/../lib/CalDAV/Search/Xml/Filter/ParamFilter.php', |
|
107 | - 'OCA\\DAV\\CalDAV\\Search\\Xml\\Filter\\PropFilter' => __DIR__ . '/..' . '/../lib/CalDAV/Search/Xml/Filter/PropFilter.php', |
|
108 | - 'OCA\\DAV\\CalDAV\\Search\\Xml\\Filter\\SearchTermFilter' => __DIR__ . '/..' . '/../lib/CalDAV/Search/Xml/Filter/SearchTermFilter.php', |
|
109 | - 'OCA\\DAV\\CalDAV\\Search\\Xml\\Request\\CalendarSearchReport' => __DIR__ . '/..' . '/../lib/CalDAV/Search/Xml/Request/CalendarSearchReport.php', |
|
110 | - 'OCA\\DAV\\CalDAV\\Trashbin\\DeletedCalendarObject' => __DIR__ . '/..' . '/../lib/CalDAV/Trashbin/DeletedCalendarObject.php', |
|
111 | - 'OCA\\DAV\\CalDAV\\Trashbin\\DeletedCalendarObjectsCollection' => __DIR__ . '/..' . '/../lib/CalDAV/Trashbin/DeletedCalendarObjectsCollection.php', |
|
112 | - 'OCA\\DAV\\CalDAV\\Trashbin\\Plugin' => __DIR__ . '/..' . '/../lib/CalDAV/Trashbin/Plugin.php', |
|
113 | - 'OCA\\DAV\\CalDAV\\Trashbin\\RestoreTarget' => __DIR__ . '/..' . '/../lib/CalDAV/Trashbin/RestoreTarget.php', |
|
114 | - 'OCA\\DAV\\CalDAV\\Trashbin\\TrashbinHome' => __DIR__ . '/..' . '/../lib/CalDAV/Trashbin/TrashbinHome.php', |
|
115 | - 'OCA\\DAV\\CalDAV\\WebcalCaching\\Plugin' => __DIR__ . '/..' . '/../lib/CalDAV/WebcalCaching/Plugin.php', |
|
116 | - 'OCA\\DAV\\CalDAV\\WebcalCaching\\RefreshWebcalService' => __DIR__ . '/..' . '/../lib/CalDAV/WebcalCaching/RefreshWebcalService.php', |
|
117 | - 'OCA\\DAV\\Capabilities' => __DIR__ . '/..' . '/../lib/Capabilities.php', |
|
118 | - 'OCA\\DAV\\CardDAV\\Activity\\Backend' => __DIR__ . '/..' . '/../lib/CardDAV/Activity/Backend.php', |
|
119 | - 'OCA\\DAV\\CardDAV\\Activity\\Filter' => __DIR__ . '/..' . '/../lib/CardDAV/Activity/Filter.php', |
|
120 | - 'OCA\\DAV\\CardDAV\\Activity\\Provider\\Addressbook' => __DIR__ . '/..' . '/../lib/CardDAV/Activity/Provider/Addressbook.php', |
|
121 | - 'OCA\\DAV\\CardDAV\\Activity\\Provider\\Base' => __DIR__ . '/..' . '/../lib/CardDAV/Activity/Provider/Base.php', |
|
122 | - 'OCA\\DAV\\CardDAV\\Activity\\Provider\\Card' => __DIR__ . '/..' . '/../lib/CardDAV/Activity/Provider/Card.php', |
|
123 | - 'OCA\\DAV\\CardDAV\\Activity\\Setting' => __DIR__ . '/..' . '/../lib/CardDAV/Activity/Setting.php', |
|
124 | - 'OCA\\DAV\\CardDAV\\AddressBook' => __DIR__ . '/..' . '/../lib/CardDAV/AddressBook.php', |
|
125 | - 'OCA\\DAV\\CardDAV\\AddressBookImpl' => __DIR__ . '/..' . '/../lib/CardDAV/AddressBookImpl.php', |
|
126 | - 'OCA\\DAV\\CardDAV\\AddressBookRoot' => __DIR__ . '/..' . '/../lib/CardDAV/AddressBookRoot.php', |
|
127 | - 'OCA\\DAV\\CardDAV\\CardDavBackend' => __DIR__ . '/..' . '/../lib/CardDAV/CardDavBackend.php', |
|
128 | - 'OCA\\DAV\\CardDAV\\ContactsManager' => __DIR__ . '/..' . '/../lib/CardDAV/ContactsManager.php', |
|
129 | - 'OCA\\DAV\\CardDAV\\Converter' => __DIR__ . '/..' . '/../lib/CardDAV/Converter.php', |
|
130 | - 'OCA\\DAV\\CardDAV\\HasPhotoPlugin' => __DIR__ . '/..' . '/../lib/CardDAV/HasPhotoPlugin.php', |
|
131 | - 'OCA\\DAV\\CardDAV\\ImageExportPlugin' => __DIR__ . '/..' . '/../lib/CardDAV/ImageExportPlugin.php', |
|
132 | - 'OCA\\DAV\\CardDAV\\Integration\\ExternalAddressBook' => __DIR__ . '/..' . '/../lib/CardDAV/Integration/ExternalAddressBook.php', |
|
133 | - 'OCA\\DAV\\CardDAV\\Integration\\IAddressBookProvider' => __DIR__ . '/..' . '/../lib/CardDAV/Integration/IAddressBookProvider.php', |
|
134 | - 'OCA\\DAV\\CardDAV\\MultiGetExportPlugin' => __DIR__ . '/..' . '/../lib/CardDAV/MultiGetExportPlugin.php', |
|
135 | - 'OCA\\DAV\\CardDAV\\PhotoCache' => __DIR__ . '/..' . '/../lib/CardDAV/PhotoCache.php', |
|
136 | - 'OCA\\DAV\\CardDAV\\Plugin' => __DIR__ . '/..' . '/../lib/CardDAV/Plugin.php', |
|
137 | - 'OCA\\DAV\\CardDAV\\SyncService' => __DIR__ . '/..' . '/../lib/CardDAV/SyncService.php', |
|
138 | - 'OCA\\DAV\\CardDAV\\SystemAddressbook' => __DIR__ . '/..' . '/../lib/CardDAV/SystemAddressbook.php', |
|
139 | - 'OCA\\DAV\\CardDAV\\UserAddressBooks' => __DIR__ . '/..' . '/../lib/CardDAV/UserAddressBooks.php', |
|
140 | - 'OCA\\DAV\\CardDAV\\Xml\\Groups' => __DIR__ . '/..' . '/../lib/CardDAV/Xml/Groups.php', |
|
141 | - 'OCA\\DAV\\Command\\CreateAddressBook' => __DIR__ . '/..' . '/../lib/Command/CreateAddressBook.php', |
|
142 | - 'OCA\\DAV\\Command\\CreateCalendar' => __DIR__ . '/..' . '/../lib/Command/CreateCalendar.php', |
|
143 | - 'OCA\\DAV\\Command\\DeleteCalendar' => __DIR__ . '/..' . '/../lib/Command/DeleteCalendar.php', |
|
144 | - 'OCA\\DAV\\Command\\ListCalendars' => __DIR__ . '/..' . '/../lib/Command/ListCalendars.php', |
|
145 | - 'OCA\\DAV\\Command\\MoveCalendar' => __DIR__ . '/..' . '/../lib/Command/MoveCalendar.php', |
|
146 | - 'OCA\\DAV\\Command\\RemoveInvalidShares' => __DIR__ . '/..' . '/../lib/Command/RemoveInvalidShares.php', |
|
147 | - 'OCA\\DAV\\Command\\RetentionCleanupCommand' => __DIR__ . '/..' . '/../lib/Command/RetentionCleanupCommand.php', |
|
148 | - 'OCA\\DAV\\Command\\SendEventReminders' => __DIR__ . '/..' . '/../lib/Command/SendEventReminders.php', |
|
149 | - 'OCA\\DAV\\Command\\SyncBirthdayCalendar' => __DIR__ . '/..' . '/../lib/Command/SyncBirthdayCalendar.php', |
|
150 | - 'OCA\\DAV\\Command\\SyncSystemAddressBook' => __DIR__ . '/..' . '/../lib/Command/SyncSystemAddressBook.php', |
|
151 | - 'OCA\\DAV\\Comments\\CommentNode' => __DIR__ . '/..' . '/../lib/Comments/CommentNode.php', |
|
152 | - 'OCA\\DAV\\Comments\\CommentsPlugin' => __DIR__ . '/..' . '/../lib/Comments/CommentsPlugin.php', |
|
153 | - 'OCA\\DAV\\Comments\\EntityCollection' => __DIR__ . '/..' . '/../lib/Comments/EntityCollection.php', |
|
154 | - 'OCA\\DAV\\Comments\\EntityTypeCollection' => __DIR__ . '/..' . '/../lib/Comments/EntityTypeCollection.php', |
|
155 | - 'OCA\\DAV\\Comments\\RootCollection' => __DIR__ . '/..' . '/../lib/Comments/RootCollection.php', |
|
156 | - 'OCA\\DAV\\Connector\\LegacyDAVACL' => __DIR__ . '/..' . '/../lib/Connector/LegacyDAVACL.php', |
|
157 | - 'OCA\\DAV\\Connector\\PublicAuth' => __DIR__ . '/..' . '/../lib/Connector/PublicAuth.php', |
|
158 | - 'OCA\\DAV\\Connector\\Sabre\\AnonymousOptionsPlugin' => __DIR__ . '/..' . '/../lib/Connector/Sabre/AnonymousOptionsPlugin.php', |
|
159 | - 'OCA\\DAV\\Connector\\Sabre\\Auth' => __DIR__ . '/..' . '/../lib/Connector/Sabre/Auth.php', |
|
160 | - 'OCA\\DAV\\Connector\\Sabre\\BearerAuth' => __DIR__ . '/..' . '/../lib/Connector/Sabre/BearerAuth.php', |
|
161 | - 'OCA\\DAV\\Connector\\Sabre\\BlockLegacyClientPlugin' => __DIR__ . '/..' . '/../lib/Connector/Sabre/BlockLegacyClientPlugin.php', |
|
162 | - 'OCA\\DAV\\Connector\\Sabre\\CachingTree' => __DIR__ . '/..' . '/../lib/Connector/Sabre/CachingTree.php', |
|
163 | - 'OCA\\DAV\\Connector\\Sabre\\ChecksumList' => __DIR__ . '/..' . '/../lib/Connector/Sabre/ChecksumList.php', |
|
164 | - 'OCA\\DAV\\Connector\\Sabre\\ChecksumUpdatePlugin' => __DIR__ . '/..' . '/../lib/Connector/Sabre/ChecksumUpdatePlugin.php', |
|
165 | - 'OCA\\DAV\\Connector\\Sabre\\CommentPropertiesPlugin' => __DIR__ . '/..' . '/../lib/Connector/Sabre/CommentPropertiesPlugin.php', |
|
166 | - 'OCA\\DAV\\Connector\\Sabre\\CopyEtagHeaderPlugin' => __DIR__ . '/..' . '/../lib/Connector/Sabre/CopyEtagHeaderPlugin.php', |
|
167 | - 'OCA\\DAV\\Connector\\Sabre\\DavAclPlugin' => __DIR__ . '/..' . '/../lib/Connector/Sabre/DavAclPlugin.php', |
|
168 | - 'OCA\\DAV\\Connector\\Sabre\\Directory' => __DIR__ . '/..' . '/../lib/Connector/Sabre/Directory.php', |
|
169 | - 'OCA\\DAV\\Connector\\Sabre\\DummyGetResponsePlugin' => __DIR__ . '/..' . '/../lib/Connector/Sabre/DummyGetResponsePlugin.php', |
|
170 | - 'OCA\\DAV\\Connector\\Sabre\\ExceptionLoggerPlugin' => __DIR__ . '/..' . '/../lib/Connector/Sabre/ExceptionLoggerPlugin.php', |
|
171 | - 'OCA\\DAV\\Connector\\Sabre\\Exception\\BadGateway' => __DIR__ . '/..' . '/../lib/Connector/Sabre/Exception/BadGateway.php', |
|
172 | - 'OCA\\DAV\\Connector\\Sabre\\Exception\\EntityTooLarge' => __DIR__ . '/..' . '/../lib/Connector/Sabre/Exception/EntityTooLarge.php', |
|
173 | - 'OCA\\DAV\\Connector\\Sabre\\Exception\\FileLocked' => __DIR__ . '/..' . '/../lib/Connector/Sabre/Exception/FileLocked.php', |
|
174 | - 'OCA\\DAV\\Connector\\Sabre\\Exception\\Forbidden' => __DIR__ . '/..' . '/../lib/Connector/Sabre/Exception/Forbidden.php', |
|
175 | - 'OCA\\DAV\\Connector\\Sabre\\Exception\\InvalidPath' => __DIR__ . '/..' . '/../lib/Connector/Sabre/Exception/InvalidPath.php', |
|
176 | - 'OCA\\DAV\\Connector\\Sabre\\Exception\\PasswordLoginForbidden' => __DIR__ . '/..' . '/../lib/Connector/Sabre/Exception/PasswordLoginForbidden.php', |
|
177 | - 'OCA\\DAV\\Connector\\Sabre\\Exception\\UnsupportedMediaType' => __DIR__ . '/..' . '/../lib/Connector/Sabre/Exception/UnsupportedMediaType.php', |
|
178 | - 'OCA\\DAV\\Connector\\Sabre\\FakeLockerPlugin' => __DIR__ . '/..' . '/../lib/Connector/Sabre/FakeLockerPlugin.php', |
|
179 | - 'OCA\\DAV\\Connector\\Sabre\\File' => __DIR__ . '/..' . '/../lib/Connector/Sabre/File.php', |
|
180 | - 'OCA\\DAV\\Connector\\Sabre\\FilesPlugin' => __DIR__ . '/..' . '/../lib/Connector/Sabre/FilesPlugin.php', |
|
181 | - 'OCA\\DAV\\Connector\\Sabre\\FilesReportPlugin' => __DIR__ . '/..' . '/../lib/Connector/Sabre/FilesReportPlugin.php', |
|
182 | - 'OCA\\DAV\\Connector\\Sabre\\LockPlugin' => __DIR__ . '/..' . '/../lib/Connector/Sabre/LockPlugin.php', |
|
183 | - 'OCA\\DAV\\Connector\\Sabre\\MaintenancePlugin' => __DIR__ . '/..' . '/../lib/Connector/Sabre/MaintenancePlugin.php', |
|
184 | - 'OCA\\DAV\\Connector\\Sabre\\MtimeSanitizer' => __DIR__ . '/..' . '/../lib/Connector/Sabre/MtimeSanitizer.php', |
|
185 | - 'OCA\\DAV\\Connector\\Sabre\\Node' => __DIR__ . '/..' . '/../lib/Connector/Sabre/Node.php', |
|
186 | - 'OCA\\DAV\\Connector\\Sabre\\ObjectTree' => __DIR__ . '/..' . '/../lib/Connector/Sabre/ObjectTree.php', |
|
187 | - 'OCA\\DAV\\Connector\\Sabre\\Principal' => __DIR__ . '/..' . '/../lib/Connector/Sabre/Principal.php', |
|
188 | - 'OCA\\DAV\\Connector\\Sabre\\PropfindCompressionPlugin' => __DIR__ . '/..' . '/../lib/Connector/Sabre/PropfindCompressionPlugin.php', |
|
189 | - 'OCA\\DAV\\Connector\\Sabre\\QuotaPlugin' => __DIR__ . '/..' . '/../lib/Connector/Sabre/QuotaPlugin.php', |
|
190 | - 'OCA\\DAV\\Connector\\Sabre\\RequestIdHeaderPlugin' => __DIR__ . '/..' . '/../lib/Connector/Sabre/RequestIdHeaderPlugin.php', |
|
191 | - 'OCA\\DAV\\Connector\\Sabre\\Server' => __DIR__ . '/..' . '/../lib/Connector/Sabre/Server.php', |
|
192 | - 'OCA\\DAV\\Connector\\Sabre\\ServerFactory' => __DIR__ . '/..' . '/../lib/Connector/Sabre/ServerFactory.php', |
|
193 | - 'OCA\\DAV\\Connector\\Sabre\\ShareTypeList' => __DIR__ . '/..' . '/../lib/Connector/Sabre/ShareTypeList.php', |
|
194 | - 'OCA\\DAV\\Connector\\Sabre\\ShareeList' => __DIR__ . '/..' . '/../lib/Connector/Sabre/ShareeList.php', |
|
195 | - 'OCA\\DAV\\Connector\\Sabre\\SharesPlugin' => __DIR__ . '/..' . '/../lib/Connector/Sabre/SharesPlugin.php', |
|
196 | - 'OCA\\DAV\\Connector\\Sabre\\TagList' => __DIR__ . '/..' . '/../lib/Connector/Sabre/TagList.php', |
|
197 | - 'OCA\\DAV\\Connector\\Sabre\\TagsPlugin' => __DIR__ . '/..' . '/../lib/Connector/Sabre/TagsPlugin.php', |
|
198 | - 'OCA\\DAV\\Controller\\BirthdayCalendarController' => __DIR__ . '/..' . '/../lib/Controller/BirthdayCalendarController.php', |
|
199 | - 'OCA\\DAV\\Controller\\DirectController' => __DIR__ . '/..' . '/../lib/Controller/DirectController.php', |
|
200 | - 'OCA\\DAV\\Controller\\InvitationResponseController' => __DIR__ . '/..' . '/../lib/Controller/InvitationResponseController.php', |
|
201 | - 'OCA\\DAV\\DAV\\CustomPropertiesBackend' => __DIR__ . '/..' . '/../lib/DAV/CustomPropertiesBackend.php', |
|
202 | - 'OCA\\DAV\\DAV\\GroupPrincipalBackend' => __DIR__ . '/..' . '/../lib/DAV/GroupPrincipalBackend.php', |
|
203 | - 'OCA\\DAV\\DAV\\PublicAuth' => __DIR__ . '/..' . '/../lib/DAV/PublicAuth.php', |
|
204 | - 'OCA\\DAV\\DAV\\Sharing\\Backend' => __DIR__ . '/..' . '/../lib/DAV/Sharing/Backend.php', |
|
205 | - 'OCA\\DAV\\DAV\\Sharing\\IShareable' => __DIR__ . '/..' . '/../lib/DAV/Sharing/IShareable.php', |
|
206 | - 'OCA\\DAV\\DAV\\Sharing\\Plugin' => __DIR__ . '/..' . '/../lib/DAV/Sharing/Plugin.php', |
|
207 | - 'OCA\\DAV\\DAV\\Sharing\\Xml\\Invite' => __DIR__ . '/..' . '/../lib/DAV/Sharing/Xml/Invite.php', |
|
208 | - 'OCA\\DAV\\DAV\\Sharing\\Xml\\ShareRequest' => __DIR__ . '/..' . '/../lib/DAV/Sharing/Xml/ShareRequest.php', |
|
209 | - 'OCA\\DAV\\DAV\\SystemPrincipalBackend' => __DIR__ . '/..' . '/../lib/DAV/SystemPrincipalBackend.php', |
|
210 | - 'OCA\\DAV\\DAV\\ViewOnlyPlugin' => __DIR__ . '/..' . '/../lib/DAV/ViewOnlyPlugin.php', |
|
211 | - 'OCA\\DAV\\Db\\Direct' => __DIR__ . '/..' . '/../lib/Db/Direct.php', |
|
212 | - 'OCA\\DAV\\Db\\DirectMapper' => __DIR__ . '/..' . '/../lib/Db/DirectMapper.php', |
|
213 | - 'OCA\\DAV\\Direct\\DirectFile' => __DIR__ . '/..' . '/../lib/Direct/DirectFile.php', |
|
214 | - 'OCA\\DAV\\Direct\\DirectHome' => __DIR__ . '/..' . '/../lib/Direct/DirectHome.php', |
|
215 | - 'OCA\\DAV\\Direct\\Server' => __DIR__ . '/..' . '/../lib/Direct/Server.php', |
|
216 | - 'OCA\\DAV\\Direct\\ServerFactory' => __DIR__ . '/..' . '/../lib/Direct/ServerFactory.php', |
|
217 | - 'OCA\\DAV\\Events\\AddressBookCreatedEvent' => __DIR__ . '/..' . '/../lib/Events/AddressBookCreatedEvent.php', |
|
218 | - 'OCA\\DAV\\Events\\AddressBookDeletedEvent' => __DIR__ . '/..' . '/../lib/Events/AddressBookDeletedEvent.php', |
|
219 | - 'OCA\\DAV\\Events\\AddressBookShareUpdatedEvent' => __DIR__ . '/..' . '/../lib/Events/AddressBookShareUpdatedEvent.php', |
|
220 | - 'OCA\\DAV\\Events\\AddressBookUpdatedEvent' => __DIR__ . '/..' . '/../lib/Events/AddressBookUpdatedEvent.php', |
|
221 | - 'OCA\\DAV\\Events\\BeforeFileDirectDownloadedEvent' => __DIR__ . '/..' . '/../lib/Events/BeforeFileDirectDownloadedEvent.php', |
|
222 | - 'OCA\\DAV\\Events\\CachedCalendarObjectCreatedEvent' => __DIR__ . '/..' . '/../lib/Events/CachedCalendarObjectCreatedEvent.php', |
|
223 | - 'OCA\\DAV\\Events\\CachedCalendarObjectDeletedEvent' => __DIR__ . '/..' . '/../lib/Events/CachedCalendarObjectDeletedEvent.php', |
|
224 | - 'OCA\\DAV\\Events\\CachedCalendarObjectUpdatedEvent' => __DIR__ . '/..' . '/../lib/Events/CachedCalendarObjectUpdatedEvent.php', |
|
225 | - 'OCA\\DAV\\Events\\CalendarCreatedEvent' => __DIR__ . '/..' . '/../lib/Events/CalendarCreatedEvent.php', |
|
226 | - 'OCA\\DAV\\Events\\CalendarDeletedEvent' => __DIR__ . '/..' . '/../lib/Events/CalendarDeletedEvent.php', |
|
227 | - 'OCA\\DAV\\Events\\CalendarMovedToTrashEvent' => __DIR__ . '/..' . '/../lib/Events/CalendarMovedToTrashEvent.php', |
|
228 | - 'OCA\\DAV\\Events\\CalendarObjectCreatedEvent' => __DIR__ . '/..' . '/../lib/Events/CalendarObjectCreatedEvent.php', |
|
229 | - 'OCA\\DAV\\Events\\CalendarObjectDeletedEvent' => __DIR__ . '/..' . '/../lib/Events/CalendarObjectDeletedEvent.php', |
|
230 | - 'OCA\\DAV\\Events\\CalendarObjectMovedEvent' => __DIR__ . '/..' . '/../lib/Events/CalendarObjectMovedEvent.php', |
|
231 | - 'OCA\\DAV\\Events\\CalendarObjectMovedToTrashEvent' => __DIR__ . '/..' . '/../lib/Events/CalendarObjectMovedToTrashEvent.php', |
|
232 | - 'OCA\\DAV\\Events\\CalendarObjectRestoredEvent' => __DIR__ . '/..' . '/../lib/Events/CalendarObjectRestoredEvent.php', |
|
233 | - 'OCA\\DAV\\Events\\CalendarObjectUpdatedEvent' => __DIR__ . '/..' . '/../lib/Events/CalendarObjectUpdatedEvent.php', |
|
234 | - 'OCA\\DAV\\Events\\CalendarPublishedEvent' => __DIR__ . '/..' . '/../lib/Events/CalendarPublishedEvent.php', |
|
235 | - 'OCA\\DAV\\Events\\CalendarRestoredEvent' => __DIR__ . '/..' . '/../lib/Events/CalendarRestoredEvent.php', |
|
236 | - 'OCA\\DAV\\Events\\CalendarShareUpdatedEvent' => __DIR__ . '/..' . '/../lib/Events/CalendarShareUpdatedEvent.php', |
|
237 | - 'OCA\\DAV\\Events\\CalendarUnpublishedEvent' => __DIR__ . '/..' . '/../lib/Events/CalendarUnpublishedEvent.php', |
|
238 | - 'OCA\\DAV\\Events\\CalendarUpdatedEvent' => __DIR__ . '/..' . '/../lib/Events/CalendarUpdatedEvent.php', |
|
239 | - 'OCA\\DAV\\Events\\CardCreatedEvent' => __DIR__ . '/..' . '/../lib/Events/CardCreatedEvent.php', |
|
240 | - 'OCA\\DAV\\Events\\CardDeletedEvent' => __DIR__ . '/..' . '/../lib/Events/CardDeletedEvent.php', |
|
241 | - 'OCA\\DAV\\Events\\CardUpdatedEvent' => __DIR__ . '/..' . '/../lib/Events/CardUpdatedEvent.php', |
|
242 | - 'OCA\\DAV\\Events\\SabrePluginAuthInitEvent' => __DIR__ . '/..' . '/../lib/Events/SabrePluginAuthInitEvent.php', |
|
243 | - 'OCA\\DAV\\Events\\SubscriptionCreatedEvent' => __DIR__ . '/..' . '/../lib/Events/SubscriptionCreatedEvent.php', |
|
244 | - 'OCA\\DAV\\Events\\SubscriptionDeletedEvent' => __DIR__ . '/..' . '/../lib/Events/SubscriptionDeletedEvent.php', |
|
245 | - 'OCA\\DAV\\Events\\SubscriptionUpdatedEvent' => __DIR__ . '/..' . '/../lib/Events/SubscriptionUpdatedEvent.php', |
|
246 | - 'OCA\\DAV\\Exception\\ServerMaintenanceMode' => __DIR__ . '/..' . '/../lib/Exception/ServerMaintenanceMode.php', |
|
247 | - 'OCA\\DAV\\Exception\\UnsupportedLimitOnInitialSyncException' => __DIR__ . '/..' . '/../lib/Exception/UnsupportedLimitOnInitialSyncException.php', |
|
248 | - 'OCA\\DAV\\Files\\BrowserErrorPagePlugin' => __DIR__ . '/..' . '/../lib/Files/BrowserErrorPagePlugin.php', |
|
249 | - 'OCA\\DAV\\Files\\FileSearchBackend' => __DIR__ . '/..' . '/../lib/Files/FileSearchBackend.php', |
|
250 | - 'OCA\\DAV\\Files\\FilesHome' => __DIR__ . '/..' . '/../lib/Files/FilesHome.php', |
|
251 | - 'OCA\\DAV\\Files\\LazySearchBackend' => __DIR__ . '/..' . '/../lib/Files/LazySearchBackend.php', |
|
252 | - 'OCA\\DAV\\Files\\RootCollection' => __DIR__ . '/..' . '/../lib/Files/RootCollection.php', |
|
253 | - 'OCA\\DAV\\Files\\Sharing\\FilesDropPlugin' => __DIR__ . '/..' . '/../lib/Files/Sharing/FilesDropPlugin.php', |
|
254 | - 'OCA\\DAV\\Files\\Sharing\\PublicLinkCheckPlugin' => __DIR__ . '/..' . '/../lib/Files/Sharing/PublicLinkCheckPlugin.php', |
|
255 | - 'OCA\\DAV\\HookManager' => __DIR__ . '/..' . '/../lib/HookManager.php', |
|
256 | - 'OCA\\DAV\\Listener\\ActivityUpdaterListener' => __DIR__ . '/..' . '/../lib/Listener/ActivityUpdaterListener.php', |
|
257 | - 'OCA\\DAV\\Listener\\AddressbookListener' => __DIR__ . '/..' . '/../lib/Listener/AddressbookListener.php', |
|
258 | - 'OCA\\DAV\\Listener\\BirthdayListener' => __DIR__ . '/..' . '/../lib/Listener/BirthdayListener.php', |
|
259 | - 'OCA\\DAV\\Listener\\CalendarContactInteractionListener' => __DIR__ . '/..' . '/../lib/Listener/CalendarContactInteractionListener.php', |
|
260 | - 'OCA\\DAV\\Listener\\CalendarDeletionDefaultUpdaterListener' => __DIR__ . '/..' . '/../lib/Listener/CalendarDeletionDefaultUpdaterListener.php', |
|
261 | - 'OCA\\DAV\\Listener\\CalendarObjectReminderUpdaterListener' => __DIR__ . '/..' . '/../lib/Listener/CalendarObjectReminderUpdaterListener.php', |
|
262 | - 'OCA\\DAV\\Listener\\CalendarPublicationListener' => __DIR__ . '/..' . '/../lib/Listener/CalendarPublicationListener.php', |
|
263 | - 'OCA\\DAV\\Listener\\CalendarShareUpdateListener' => __DIR__ . '/..' . '/../lib/Listener/CalendarShareUpdateListener.php', |
|
264 | - 'OCA\\DAV\\Listener\\CardListener' => __DIR__ . '/..' . '/../lib/Listener/CardListener.php', |
|
265 | - 'OCA\\DAV\\Listener\\ClearPhotoCacheListener' => __DIR__ . '/..' . '/../lib/Listener/ClearPhotoCacheListener.php', |
|
266 | - 'OCA\\DAV\\Listener\\SubscriptionListener' => __DIR__ . '/..' . '/../lib/Listener/SubscriptionListener.php', |
|
267 | - 'OCA\\DAV\\Listener\\TrustedServerRemovedListener' => __DIR__ . '/..' . '/../lib/Listener/TrustedServerRemovedListener.php', |
|
268 | - 'OCA\\DAV\\Listener\\UserPreferenceListener' => __DIR__ . '/..' . '/../lib/Listener/UserPreferenceListener.php', |
|
269 | - 'OCA\\DAV\\Migration\\BuildCalendarSearchIndex' => __DIR__ . '/..' . '/../lib/Migration/BuildCalendarSearchIndex.php', |
|
270 | - 'OCA\\DAV\\Migration\\BuildCalendarSearchIndexBackgroundJob' => __DIR__ . '/..' . '/../lib/Migration/BuildCalendarSearchIndexBackgroundJob.php', |
|
271 | - 'OCA\\DAV\\Migration\\BuildSocialSearchIndex' => __DIR__ . '/..' . '/../lib/Migration/BuildSocialSearchIndex.php', |
|
272 | - 'OCA\\DAV\\Migration\\BuildSocialSearchIndexBackgroundJob' => __DIR__ . '/..' . '/../lib/Migration/BuildSocialSearchIndexBackgroundJob.php', |
|
273 | - 'OCA\\DAV\\Migration\\CalDAVRemoveEmptyValue' => __DIR__ . '/..' . '/../lib/Migration/CalDAVRemoveEmptyValue.php', |
|
274 | - 'OCA\\DAV\\Migration\\ChunkCleanup' => __DIR__ . '/..' . '/../lib/Migration/ChunkCleanup.php', |
|
275 | - 'OCA\\DAV\\Migration\\FixBirthdayCalendarComponent' => __DIR__ . '/..' . '/../lib/Migration/FixBirthdayCalendarComponent.php', |
|
276 | - 'OCA\\DAV\\Migration\\RefreshWebcalJobRegistrar' => __DIR__ . '/..' . '/../lib/Migration/RefreshWebcalJobRegistrar.php', |
|
277 | - 'OCA\\DAV\\Migration\\RegenerateBirthdayCalendars' => __DIR__ . '/..' . '/../lib/Migration/RegenerateBirthdayCalendars.php', |
|
278 | - 'OCA\\DAV\\Migration\\RegisterBuildReminderIndexBackgroundJob' => __DIR__ . '/..' . '/../lib/Migration/RegisterBuildReminderIndexBackgroundJob.php', |
|
279 | - 'OCA\\DAV\\Migration\\RemoveClassifiedEventActivity' => __DIR__ . '/..' . '/../lib/Migration/RemoveClassifiedEventActivity.php', |
|
280 | - 'OCA\\DAV\\Migration\\RemoveDeletedUsersCalendarSubscriptions' => __DIR__ . '/..' . '/../lib/Migration/RemoveDeletedUsersCalendarSubscriptions.php', |
|
281 | - 'OCA\\DAV\\Migration\\RemoveObjectProperties' => __DIR__ . '/..' . '/../lib/Migration/RemoveObjectProperties.php', |
|
282 | - 'OCA\\DAV\\Migration\\RemoveOrphanEventsAndContacts' => __DIR__ . '/..' . '/../lib/Migration/RemoveOrphanEventsAndContacts.php', |
|
283 | - 'OCA\\DAV\\Migration\\Version1004Date20170825134824' => __DIR__ . '/..' . '/../lib/Migration/Version1004Date20170825134824.php', |
|
284 | - 'OCA\\DAV\\Migration\\Version1004Date20170919104507' => __DIR__ . '/..' . '/../lib/Migration/Version1004Date20170919104507.php', |
|
285 | - 'OCA\\DAV\\Migration\\Version1004Date20170924124212' => __DIR__ . '/..' . '/../lib/Migration/Version1004Date20170924124212.php', |
|
286 | - 'OCA\\DAV\\Migration\\Version1004Date20170926103422' => __DIR__ . '/..' . '/../lib/Migration/Version1004Date20170926103422.php', |
|
287 | - 'OCA\\DAV\\Migration\\Version1005Date20180413093149' => __DIR__ . '/..' . '/../lib/Migration/Version1005Date20180413093149.php', |
|
288 | - 'OCA\\DAV\\Migration\\Version1005Date20180530124431' => __DIR__ . '/..' . '/../lib/Migration/Version1005Date20180530124431.php', |
|
289 | - 'OCA\\DAV\\Migration\\Version1006Date20180619154313' => __DIR__ . '/..' . '/../lib/Migration/Version1006Date20180619154313.php', |
|
290 | - 'OCA\\DAV\\Migration\\Version1006Date20180628111625' => __DIR__ . '/..' . '/../lib/Migration/Version1006Date20180628111625.php', |
|
291 | - 'OCA\\DAV\\Migration\\Version1008Date20181030113700' => __DIR__ . '/..' . '/../lib/Migration/Version1008Date20181030113700.php', |
|
292 | - 'OCA\\DAV\\Migration\\Version1008Date20181105104826' => __DIR__ . '/..' . '/../lib/Migration/Version1008Date20181105104826.php', |
|
293 | - 'OCA\\DAV\\Migration\\Version1008Date20181105104833' => __DIR__ . '/..' . '/../lib/Migration/Version1008Date20181105104833.php', |
|
294 | - 'OCA\\DAV\\Migration\\Version1008Date20181105110300' => __DIR__ . '/..' . '/../lib/Migration/Version1008Date20181105110300.php', |
|
295 | - 'OCA\\DAV\\Migration\\Version1008Date20181105112049' => __DIR__ . '/..' . '/../lib/Migration/Version1008Date20181105112049.php', |
|
296 | - 'OCA\\DAV\\Migration\\Version1008Date20181114084440' => __DIR__ . '/..' . '/../lib/Migration/Version1008Date20181114084440.php', |
|
297 | - 'OCA\\DAV\\Migration\\Version1011Date20190725113607' => __DIR__ . '/..' . '/../lib/Migration/Version1011Date20190725113607.php', |
|
298 | - 'OCA\\DAV\\Migration\\Version1011Date20190806104428' => __DIR__ . '/..' . '/../lib/Migration/Version1011Date20190806104428.php', |
|
299 | - 'OCA\\DAV\\Migration\\Version1012Date20190808122342' => __DIR__ . '/..' . '/../lib/Migration/Version1012Date20190808122342.php', |
|
300 | - 'OCA\\DAV\\Migration\\Version1016Date20201109085907' => __DIR__ . '/..' . '/../lib/Migration/Version1016Date20201109085907.php', |
|
301 | - 'OCA\\DAV\\Migration\\Version1017Date20210216083742' => __DIR__ . '/..' . '/../lib/Migration/Version1017Date20210216083742.php', |
|
302 | - 'OCA\\DAV\\Migration\\Version1018Date20210312100735' => __DIR__ . '/..' . '/../lib/Migration/Version1018Date20210312100735.php', |
|
303 | - 'OCA\\DAV\\Migration\\Version1024Date20211221144219' => __DIR__ . '/..' . '/../lib/Migration/Version1024Date20211221144219.php', |
|
304 | - 'OCA\\DAV\\Profiler\\ProfilerPlugin' => __DIR__ . '/..' . '/../lib/Profiler/ProfilerPlugin.php', |
|
305 | - 'OCA\\DAV\\Provisioning\\Apple\\AppleProvisioningNode' => __DIR__ . '/..' . '/../lib/Provisioning/Apple/AppleProvisioningNode.php', |
|
306 | - 'OCA\\DAV\\Provisioning\\Apple\\AppleProvisioningPlugin' => __DIR__ . '/..' . '/../lib/Provisioning/Apple/AppleProvisioningPlugin.php', |
|
307 | - 'OCA\\DAV\\RootCollection' => __DIR__ . '/..' . '/../lib/RootCollection.php', |
|
308 | - 'OCA\\DAV\\Search\\ACalendarSearchProvider' => __DIR__ . '/..' . '/../lib/Search/ACalendarSearchProvider.php', |
|
309 | - 'OCA\\DAV\\Search\\ContactsSearchProvider' => __DIR__ . '/..' . '/../lib/Search/ContactsSearchProvider.php', |
|
310 | - 'OCA\\DAV\\Search\\EventsSearchProvider' => __DIR__ . '/..' . '/../lib/Search/EventsSearchProvider.php', |
|
311 | - 'OCA\\DAV\\Search\\TasksSearchProvider' => __DIR__ . '/..' . '/../lib/Search/TasksSearchProvider.php', |
|
312 | - 'OCA\\DAV\\Server' => __DIR__ . '/..' . '/../lib/Server.php', |
|
313 | - 'OCA\\DAV\\Settings\\AvailabilitySettings' => __DIR__ . '/..' . '/../lib/Settings/AvailabilitySettings.php', |
|
314 | - 'OCA\\DAV\\Settings\\CalDAVSettings' => __DIR__ . '/..' . '/../lib/Settings/CalDAVSettings.php', |
|
315 | - 'OCA\\DAV\\Storage\\PublicOwnerWrapper' => __DIR__ . '/..' . '/../lib/Storage/PublicOwnerWrapper.php', |
|
316 | - 'OCA\\DAV\\SystemTag\\SystemTagMappingNode' => __DIR__ . '/..' . '/../lib/SystemTag/SystemTagMappingNode.php', |
|
317 | - 'OCA\\DAV\\SystemTag\\SystemTagNode' => __DIR__ . '/..' . '/../lib/SystemTag/SystemTagNode.php', |
|
318 | - 'OCA\\DAV\\SystemTag\\SystemTagPlugin' => __DIR__ . '/..' . '/../lib/SystemTag/SystemTagPlugin.php', |
|
319 | - 'OCA\\DAV\\SystemTag\\SystemTagsByIdCollection' => __DIR__ . '/..' . '/../lib/SystemTag/SystemTagsByIdCollection.php', |
|
320 | - 'OCA\\DAV\\SystemTag\\SystemTagsObjectMappingCollection' => __DIR__ . '/..' . '/../lib/SystemTag/SystemTagsObjectMappingCollection.php', |
|
321 | - 'OCA\\DAV\\SystemTag\\SystemTagsObjectTypeCollection' => __DIR__ . '/..' . '/../lib/SystemTag/SystemTagsObjectTypeCollection.php', |
|
322 | - 'OCA\\DAV\\SystemTag\\SystemTagsRelationsCollection' => __DIR__ . '/..' . '/../lib/SystemTag/SystemTagsRelationsCollection.php', |
|
323 | - 'OCA\\DAV\\Traits\\PrincipalProxyTrait' => __DIR__ . '/..' . '/../lib/Traits/PrincipalProxyTrait.php', |
|
324 | - 'OCA\\DAV\\Upload\\AssemblyStream' => __DIR__ . '/..' . '/../lib/Upload/AssemblyStream.php', |
|
325 | - 'OCA\\DAV\\Upload\\ChunkingPlugin' => __DIR__ . '/..' . '/../lib/Upload/ChunkingPlugin.php', |
|
326 | - 'OCA\\DAV\\Upload\\CleanupService' => __DIR__ . '/..' . '/../lib/Upload/CleanupService.php', |
|
327 | - 'OCA\\DAV\\Upload\\FutureFile' => __DIR__ . '/..' . '/../lib/Upload/FutureFile.php', |
|
328 | - 'OCA\\DAV\\Upload\\RootCollection' => __DIR__ . '/..' . '/../lib/Upload/RootCollection.php', |
|
329 | - 'OCA\\DAV\\Upload\\UploadFile' => __DIR__ . '/..' . '/../lib/Upload/UploadFile.php', |
|
330 | - 'OCA\\DAV\\Upload\\UploadFolder' => __DIR__ . '/..' . '/../lib/Upload/UploadFolder.php', |
|
331 | - 'OCA\\DAV\\Upload\\UploadHome' => __DIR__ . '/..' . '/../lib/Upload/UploadHome.php', |
|
332 | - 'OCA\\DAV\\UserMigration\\CalendarMigrator' => __DIR__ . '/..' . '/../lib/UserMigration/CalendarMigrator.php', |
|
333 | - 'OCA\\DAV\\UserMigration\\CalendarMigratorException' => __DIR__ . '/..' . '/../lib/UserMigration/CalendarMigratorException.php', |
|
334 | - 'OCA\\DAV\\UserMigration\\ContactsMigrator' => __DIR__ . '/..' . '/../lib/UserMigration/ContactsMigrator.php', |
|
335 | - 'OCA\\DAV\\UserMigration\\ContactsMigratorException' => __DIR__ . '/..' . '/../lib/UserMigration/ContactsMigratorException.php', |
|
336 | - 'OCA\\DAV\\UserMigration\\InvalidAddressBookException' => __DIR__ . '/..' . '/../lib/UserMigration/InvalidAddressBookException.php', |
|
337 | - 'OCA\\DAV\\UserMigration\\InvalidCalendarException' => __DIR__ . '/..' . '/../lib/UserMigration/InvalidCalendarException.php', |
|
23 | + public static $classMap = array( |
|
24 | + 'Composer\\InstalledVersions' => __DIR__.'/..'.'/composer/InstalledVersions.php', |
|
25 | + 'OCA\\DAV\\AppInfo\\Application' => __DIR__.'/..'.'/../lib/AppInfo/Application.php', |
|
26 | + 'OCA\\DAV\\AppInfo\\PluginManager' => __DIR__.'/..'.'/../lib/AppInfo/PluginManager.php', |
|
27 | + 'OCA\\DAV\\Avatars\\AvatarHome' => __DIR__.'/..'.'/../lib/Avatars/AvatarHome.php', |
|
28 | + 'OCA\\DAV\\Avatars\\AvatarNode' => __DIR__.'/..'.'/../lib/Avatars/AvatarNode.php', |
|
29 | + 'OCA\\DAV\\Avatars\\RootCollection' => __DIR__.'/..'.'/../lib/Avatars/RootCollection.php', |
|
30 | + 'OCA\\DAV\\BackgroundJob\\BuildReminderIndexBackgroundJob' => __DIR__.'/..'.'/../lib/BackgroundJob/BuildReminderIndexBackgroundJob.php', |
|
31 | + 'OCA\\DAV\\BackgroundJob\\CalendarRetentionJob' => __DIR__.'/..'.'/../lib/BackgroundJob/CalendarRetentionJob.php', |
|
32 | + 'OCA\\DAV\\BackgroundJob\\CleanupDirectLinksJob' => __DIR__.'/..'.'/../lib/BackgroundJob/CleanupDirectLinksJob.php', |
|
33 | + 'OCA\\DAV\\BackgroundJob\\CleanupInvitationTokenJob' => __DIR__.'/..'.'/../lib/BackgroundJob/CleanupInvitationTokenJob.php', |
|
34 | + 'OCA\\DAV\\BackgroundJob\\EventReminderJob' => __DIR__.'/..'.'/../lib/BackgroundJob/EventReminderJob.php', |
|
35 | + 'OCA\\DAV\\BackgroundJob\\GenerateBirthdayCalendarBackgroundJob' => __DIR__.'/..'.'/../lib/BackgroundJob/GenerateBirthdayCalendarBackgroundJob.php', |
|
36 | + 'OCA\\DAV\\BackgroundJob\\PruneOutdatedSyncTokensJob' => __DIR__.'/..'.'/../lib/BackgroundJob/PruneOutdatedSyncTokensJob.php', |
|
37 | + 'OCA\\DAV\\BackgroundJob\\RefreshWebcalJob' => __DIR__.'/..'.'/../lib/BackgroundJob/RefreshWebcalJob.php', |
|
38 | + 'OCA\\DAV\\BackgroundJob\\RegisterRegenerateBirthdayCalendars' => __DIR__.'/..'.'/../lib/BackgroundJob/RegisterRegenerateBirthdayCalendars.php', |
|
39 | + 'OCA\\DAV\\BackgroundJob\\UpdateCalendarResourcesRoomsBackgroundJob' => __DIR__.'/..'.'/../lib/BackgroundJob/UpdateCalendarResourcesRoomsBackgroundJob.php', |
|
40 | + 'OCA\\DAV\\BackgroundJob\\UploadCleanup' => __DIR__.'/..'.'/../lib/BackgroundJob/UploadCleanup.php', |
|
41 | + 'OCA\\DAV\\BackgroundJob\\UserStatusAutomation' => __DIR__.'/..'.'/../lib/BackgroundJob/UserStatusAutomation.php', |
|
42 | + 'OCA\\DAV\\BulkUpload\\BulkUploadPlugin' => __DIR__.'/..'.'/../lib/BulkUpload/BulkUploadPlugin.php', |
|
43 | + 'OCA\\DAV\\BulkUpload\\MultipartRequestParser' => __DIR__.'/..'.'/../lib/BulkUpload/MultipartRequestParser.php', |
|
44 | + 'OCA\\DAV\\CalDAV\\Activity\\Backend' => __DIR__.'/..'.'/../lib/CalDAV/Activity/Backend.php', |
|
45 | + 'OCA\\DAV\\CalDAV\\Activity\\Filter\\Calendar' => __DIR__.'/..'.'/../lib/CalDAV/Activity/Filter/Calendar.php', |
|
46 | + 'OCA\\DAV\\CalDAV\\Activity\\Filter\\Todo' => __DIR__.'/..'.'/../lib/CalDAV/Activity/Filter/Todo.php', |
|
47 | + 'OCA\\DAV\\CalDAV\\Activity\\Provider\\Base' => __DIR__.'/..'.'/../lib/CalDAV/Activity/Provider/Base.php', |
|
48 | + 'OCA\\DAV\\CalDAV\\Activity\\Provider\\Calendar' => __DIR__.'/..'.'/../lib/CalDAV/Activity/Provider/Calendar.php', |
|
49 | + 'OCA\\DAV\\CalDAV\\Activity\\Provider\\Event' => __DIR__.'/..'.'/../lib/CalDAV/Activity/Provider/Event.php', |
|
50 | + 'OCA\\DAV\\CalDAV\\Activity\\Provider\\Todo' => __DIR__.'/..'.'/../lib/CalDAV/Activity/Provider/Todo.php', |
|
51 | + 'OCA\\DAV\\CalDAV\\Activity\\Setting\\CalDAVSetting' => __DIR__.'/..'.'/../lib/CalDAV/Activity/Setting/CalDAVSetting.php', |
|
52 | + 'OCA\\DAV\\CalDAV\\Activity\\Setting\\Calendar' => __DIR__.'/..'.'/../lib/CalDAV/Activity/Setting/Calendar.php', |
|
53 | + 'OCA\\DAV\\CalDAV\\Activity\\Setting\\Event' => __DIR__.'/..'.'/../lib/CalDAV/Activity/Setting/Event.php', |
|
54 | + 'OCA\\DAV\\CalDAV\\Activity\\Setting\\Todo' => __DIR__.'/..'.'/../lib/CalDAV/Activity/Setting/Todo.php', |
|
55 | + 'OCA\\DAV\\CalDAV\\Auth\\CustomPrincipalPlugin' => __DIR__.'/..'.'/../lib/CalDAV/Auth/CustomPrincipalPlugin.php', |
|
56 | + 'OCA\\DAV\\CalDAV\\Auth\\PublicPrincipalPlugin' => __DIR__.'/..'.'/../lib/CalDAV/Auth/PublicPrincipalPlugin.php', |
|
57 | + 'OCA\\DAV\\CalDAV\\BirthdayCalendar\\EnablePlugin' => __DIR__.'/..'.'/../lib/CalDAV/BirthdayCalendar/EnablePlugin.php', |
|
58 | + 'OCA\\DAV\\CalDAV\\BirthdayService' => __DIR__.'/..'.'/../lib/CalDAV/BirthdayService.php', |
|
59 | + 'OCA\\DAV\\CalDAV\\CachedSubscription' => __DIR__.'/..'.'/../lib/CalDAV/CachedSubscription.php', |
|
60 | + 'OCA\\DAV\\CalDAV\\CachedSubscriptionObject' => __DIR__.'/..'.'/../lib/CalDAV/CachedSubscriptionObject.php', |
|
61 | + 'OCA\\DAV\\CalDAV\\CalDavBackend' => __DIR__.'/..'.'/../lib/CalDAV/CalDavBackend.php', |
|
62 | + 'OCA\\DAV\\CalDAV\\Calendar' => __DIR__.'/..'.'/../lib/CalDAV/Calendar.php', |
|
63 | + 'OCA\\DAV\\CalDAV\\CalendarHome' => __DIR__.'/..'.'/../lib/CalDAV/CalendarHome.php', |
|
64 | + 'OCA\\DAV\\CalDAV\\CalendarImpl' => __DIR__.'/..'.'/../lib/CalDAV/CalendarImpl.php', |
|
65 | + 'OCA\\DAV\\CalDAV\\CalendarManager' => __DIR__.'/..'.'/../lib/CalDAV/CalendarManager.php', |
|
66 | + 'OCA\\DAV\\CalDAV\\CalendarObject' => __DIR__.'/..'.'/../lib/CalDAV/CalendarObject.php', |
|
67 | + 'OCA\\DAV\\CalDAV\\CalendarProvider' => __DIR__.'/..'.'/../lib/CalDAV/CalendarProvider.php', |
|
68 | + 'OCA\\DAV\\CalDAV\\CalendarRoot' => __DIR__.'/..'.'/../lib/CalDAV/CalendarRoot.php', |
|
69 | + 'OCA\\DAV\\CalDAV\\ICSExportPlugin\\ICSExportPlugin' => __DIR__.'/..'.'/../lib/CalDAV/ICSExportPlugin/ICSExportPlugin.php', |
|
70 | + 'OCA\\DAV\\CalDAV\\IRestorable' => __DIR__.'/..'.'/../lib/CalDAV/IRestorable.php', |
|
71 | + 'OCA\\DAV\\CalDAV\\Integration\\ExternalCalendar' => __DIR__.'/..'.'/../lib/CalDAV/Integration/ExternalCalendar.php', |
|
72 | + 'OCA\\DAV\\CalDAV\\Integration\\ICalendarProvider' => __DIR__.'/..'.'/../lib/CalDAV/Integration/ICalendarProvider.php', |
|
73 | + 'OCA\\DAV\\CalDAV\\InvitationResponse\\InvitationResponseServer' => __DIR__.'/..'.'/../lib/CalDAV/InvitationResponse/InvitationResponseServer.php', |
|
74 | + 'OCA\\DAV\\CalDAV\\Outbox' => __DIR__.'/..'.'/../lib/CalDAV/Outbox.php', |
|
75 | + 'OCA\\DAV\\CalDAV\\Plugin' => __DIR__.'/..'.'/../lib/CalDAV/Plugin.php', |
|
76 | + 'OCA\\DAV\\CalDAV\\Principal\\Collection' => __DIR__.'/..'.'/../lib/CalDAV/Principal/Collection.php', |
|
77 | + 'OCA\\DAV\\CalDAV\\Principal\\User' => __DIR__.'/..'.'/../lib/CalDAV/Principal/User.php', |
|
78 | + 'OCA\\DAV\\CalDAV\\Proxy\\Proxy' => __DIR__.'/..'.'/../lib/CalDAV/Proxy/Proxy.php', |
|
79 | + 'OCA\\DAV\\CalDAV\\Proxy\\ProxyMapper' => __DIR__.'/..'.'/../lib/CalDAV/Proxy/ProxyMapper.php', |
|
80 | + 'OCA\\DAV\\CalDAV\\PublicCalendar' => __DIR__.'/..'.'/../lib/CalDAV/PublicCalendar.php', |
|
81 | + 'OCA\\DAV\\CalDAV\\PublicCalendarObject' => __DIR__.'/..'.'/../lib/CalDAV/PublicCalendarObject.php', |
|
82 | + 'OCA\\DAV\\CalDAV\\PublicCalendarRoot' => __DIR__.'/..'.'/../lib/CalDAV/PublicCalendarRoot.php', |
|
83 | + 'OCA\\DAV\\CalDAV\\Publishing\\PublishPlugin' => __DIR__.'/..'.'/../lib/CalDAV/Publishing/PublishPlugin.php', |
|
84 | + 'OCA\\DAV\\CalDAV\\Publishing\\Xml\\Publisher' => __DIR__.'/..'.'/../lib/CalDAV/Publishing/Xml/Publisher.php', |
|
85 | + 'OCA\\DAV\\CalDAV\\Reminder\\Backend' => __DIR__.'/..'.'/../lib/CalDAV/Reminder/Backend.php', |
|
86 | + 'OCA\\DAV\\CalDAV\\Reminder\\INotificationProvider' => __DIR__.'/..'.'/../lib/CalDAV/Reminder/INotificationProvider.php', |
|
87 | + 'OCA\\DAV\\CalDAV\\Reminder\\NotificationProviderManager' => __DIR__.'/..'.'/../lib/CalDAV/Reminder/NotificationProviderManager.php', |
|
88 | + 'OCA\\DAV\\CalDAV\\Reminder\\NotificationProvider\\AbstractProvider' => __DIR__.'/..'.'/../lib/CalDAV/Reminder/NotificationProvider/AbstractProvider.php', |
|
89 | + 'OCA\\DAV\\CalDAV\\Reminder\\NotificationProvider\\AudioProvider' => __DIR__.'/..'.'/../lib/CalDAV/Reminder/NotificationProvider/AudioProvider.php', |
|
90 | + 'OCA\\DAV\\CalDAV\\Reminder\\NotificationProvider\\EmailProvider' => __DIR__.'/..'.'/../lib/CalDAV/Reminder/NotificationProvider/EmailProvider.php', |
|
91 | + 'OCA\\DAV\\CalDAV\\Reminder\\NotificationProvider\\ProviderNotAvailableException' => __DIR__.'/..'.'/../lib/CalDAV/Reminder/NotificationProvider/ProviderNotAvailableException.php', |
|
92 | + 'OCA\\DAV\\CalDAV\\Reminder\\NotificationProvider\\PushProvider' => __DIR__.'/..'.'/../lib/CalDAV/Reminder/NotificationProvider/PushProvider.php', |
|
93 | + 'OCA\\DAV\\CalDAV\\Reminder\\NotificationTypeDoesNotExistException' => __DIR__.'/..'.'/../lib/CalDAV/Reminder/NotificationTypeDoesNotExistException.php', |
|
94 | + 'OCA\\DAV\\CalDAV\\Reminder\\Notifier' => __DIR__.'/..'.'/../lib/CalDAV/Reminder/Notifier.php', |
|
95 | + 'OCA\\DAV\\CalDAV\\Reminder\\ReminderService' => __DIR__.'/..'.'/../lib/CalDAV/Reminder/ReminderService.php', |
|
96 | + 'OCA\\DAV\\CalDAV\\ResourceBooking\\AbstractPrincipalBackend' => __DIR__.'/..'.'/../lib/CalDAV/ResourceBooking/AbstractPrincipalBackend.php', |
|
97 | + 'OCA\\DAV\\CalDAV\\ResourceBooking\\ResourcePrincipalBackend' => __DIR__.'/..'.'/../lib/CalDAV/ResourceBooking/ResourcePrincipalBackend.php', |
|
98 | + 'OCA\\DAV\\CalDAV\\ResourceBooking\\RoomPrincipalBackend' => __DIR__.'/..'.'/../lib/CalDAV/ResourceBooking/RoomPrincipalBackend.php', |
|
99 | + 'OCA\\DAV\\CalDAV\\RetentionService' => __DIR__.'/..'.'/../lib/CalDAV/RetentionService.php', |
|
100 | + 'OCA\\DAV\\CalDAV\\Schedule\\IMipPlugin' => __DIR__.'/..'.'/../lib/CalDAV/Schedule/IMipPlugin.php', |
|
101 | + 'OCA\\DAV\\CalDAV\\Schedule\\Plugin' => __DIR__.'/..'.'/../lib/CalDAV/Schedule/Plugin.php', |
|
102 | + 'OCA\\DAV\\CalDAV\\Search\\SearchPlugin' => __DIR__.'/..'.'/../lib/CalDAV/Search/SearchPlugin.php', |
|
103 | + 'OCA\\DAV\\CalDAV\\Search\\Xml\\Filter\\CompFilter' => __DIR__.'/..'.'/../lib/CalDAV/Search/Xml/Filter/CompFilter.php', |
|
104 | + 'OCA\\DAV\\CalDAV\\Search\\Xml\\Filter\\LimitFilter' => __DIR__.'/..'.'/../lib/CalDAV/Search/Xml/Filter/LimitFilter.php', |
|
105 | + 'OCA\\DAV\\CalDAV\\Search\\Xml\\Filter\\OffsetFilter' => __DIR__.'/..'.'/../lib/CalDAV/Search/Xml/Filter/OffsetFilter.php', |
|
106 | + 'OCA\\DAV\\CalDAV\\Search\\Xml\\Filter\\ParamFilter' => __DIR__.'/..'.'/../lib/CalDAV/Search/Xml/Filter/ParamFilter.php', |
|
107 | + 'OCA\\DAV\\CalDAV\\Search\\Xml\\Filter\\PropFilter' => __DIR__.'/..'.'/../lib/CalDAV/Search/Xml/Filter/PropFilter.php', |
|
108 | + 'OCA\\DAV\\CalDAV\\Search\\Xml\\Filter\\SearchTermFilter' => __DIR__.'/..'.'/../lib/CalDAV/Search/Xml/Filter/SearchTermFilter.php', |
|
109 | + 'OCA\\DAV\\CalDAV\\Search\\Xml\\Request\\CalendarSearchReport' => __DIR__.'/..'.'/../lib/CalDAV/Search/Xml/Request/CalendarSearchReport.php', |
|
110 | + 'OCA\\DAV\\CalDAV\\Trashbin\\DeletedCalendarObject' => __DIR__.'/..'.'/../lib/CalDAV/Trashbin/DeletedCalendarObject.php', |
|
111 | + 'OCA\\DAV\\CalDAV\\Trashbin\\DeletedCalendarObjectsCollection' => __DIR__.'/..'.'/../lib/CalDAV/Trashbin/DeletedCalendarObjectsCollection.php', |
|
112 | + 'OCA\\DAV\\CalDAV\\Trashbin\\Plugin' => __DIR__.'/..'.'/../lib/CalDAV/Trashbin/Plugin.php', |
|
113 | + 'OCA\\DAV\\CalDAV\\Trashbin\\RestoreTarget' => __DIR__.'/..'.'/../lib/CalDAV/Trashbin/RestoreTarget.php', |
|
114 | + 'OCA\\DAV\\CalDAV\\Trashbin\\TrashbinHome' => __DIR__.'/..'.'/../lib/CalDAV/Trashbin/TrashbinHome.php', |
|
115 | + 'OCA\\DAV\\CalDAV\\WebcalCaching\\Plugin' => __DIR__.'/..'.'/../lib/CalDAV/WebcalCaching/Plugin.php', |
|
116 | + 'OCA\\DAV\\CalDAV\\WebcalCaching\\RefreshWebcalService' => __DIR__.'/..'.'/../lib/CalDAV/WebcalCaching/RefreshWebcalService.php', |
|
117 | + 'OCA\\DAV\\Capabilities' => __DIR__.'/..'.'/../lib/Capabilities.php', |
|
118 | + 'OCA\\DAV\\CardDAV\\Activity\\Backend' => __DIR__.'/..'.'/../lib/CardDAV/Activity/Backend.php', |
|
119 | + 'OCA\\DAV\\CardDAV\\Activity\\Filter' => __DIR__.'/..'.'/../lib/CardDAV/Activity/Filter.php', |
|
120 | + 'OCA\\DAV\\CardDAV\\Activity\\Provider\\Addressbook' => __DIR__.'/..'.'/../lib/CardDAV/Activity/Provider/Addressbook.php', |
|
121 | + 'OCA\\DAV\\CardDAV\\Activity\\Provider\\Base' => __DIR__.'/..'.'/../lib/CardDAV/Activity/Provider/Base.php', |
|
122 | + 'OCA\\DAV\\CardDAV\\Activity\\Provider\\Card' => __DIR__.'/..'.'/../lib/CardDAV/Activity/Provider/Card.php', |
|
123 | + 'OCA\\DAV\\CardDAV\\Activity\\Setting' => __DIR__.'/..'.'/../lib/CardDAV/Activity/Setting.php', |
|
124 | + 'OCA\\DAV\\CardDAV\\AddressBook' => __DIR__.'/..'.'/../lib/CardDAV/AddressBook.php', |
|
125 | + 'OCA\\DAV\\CardDAV\\AddressBookImpl' => __DIR__.'/..'.'/../lib/CardDAV/AddressBookImpl.php', |
|
126 | + 'OCA\\DAV\\CardDAV\\AddressBookRoot' => __DIR__.'/..'.'/../lib/CardDAV/AddressBookRoot.php', |
|
127 | + 'OCA\\DAV\\CardDAV\\CardDavBackend' => __DIR__.'/..'.'/../lib/CardDAV/CardDavBackend.php', |
|
128 | + 'OCA\\DAV\\CardDAV\\ContactsManager' => __DIR__.'/..'.'/../lib/CardDAV/ContactsManager.php', |
|
129 | + 'OCA\\DAV\\CardDAV\\Converter' => __DIR__.'/..'.'/../lib/CardDAV/Converter.php', |
|
130 | + 'OCA\\DAV\\CardDAV\\HasPhotoPlugin' => __DIR__.'/..'.'/../lib/CardDAV/HasPhotoPlugin.php', |
|
131 | + 'OCA\\DAV\\CardDAV\\ImageExportPlugin' => __DIR__.'/..'.'/../lib/CardDAV/ImageExportPlugin.php', |
|
132 | + 'OCA\\DAV\\CardDAV\\Integration\\ExternalAddressBook' => __DIR__.'/..'.'/../lib/CardDAV/Integration/ExternalAddressBook.php', |
|
133 | + 'OCA\\DAV\\CardDAV\\Integration\\IAddressBookProvider' => __DIR__.'/..'.'/../lib/CardDAV/Integration/IAddressBookProvider.php', |
|
134 | + 'OCA\\DAV\\CardDAV\\MultiGetExportPlugin' => __DIR__.'/..'.'/../lib/CardDAV/MultiGetExportPlugin.php', |
|
135 | + 'OCA\\DAV\\CardDAV\\PhotoCache' => __DIR__.'/..'.'/../lib/CardDAV/PhotoCache.php', |
|
136 | + 'OCA\\DAV\\CardDAV\\Plugin' => __DIR__.'/..'.'/../lib/CardDAV/Plugin.php', |
|
137 | + 'OCA\\DAV\\CardDAV\\SyncService' => __DIR__.'/..'.'/../lib/CardDAV/SyncService.php', |
|
138 | + 'OCA\\DAV\\CardDAV\\SystemAddressbook' => __DIR__.'/..'.'/../lib/CardDAV/SystemAddressbook.php', |
|
139 | + 'OCA\\DAV\\CardDAV\\UserAddressBooks' => __DIR__.'/..'.'/../lib/CardDAV/UserAddressBooks.php', |
|
140 | + 'OCA\\DAV\\CardDAV\\Xml\\Groups' => __DIR__.'/..'.'/../lib/CardDAV/Xml/Groups.php', |
|
141 | + 'OCA\\DAV\\Command\\CreateAddressBook' => __DIR__.'/..'.'/../lib/Command/CreateAddressBook.php', |
|
142 | + 'OCA\\DAV\\Command\\CreateCalendar' => __DIR__.'/..'.'/../lib/Command/CreateCalendar.php', |
|
143 | + 'OCA\\DAV\\Command\\DeleteCalendar' => __DIR__.'/..'.'/../lib/Command/DeleteCalendar.php', |
|
144 | + 'OCA\\DAV\\Command\\ListCalendars' => __DIR__.'/..'.'/../lib/Command/ListCalendars.php', |
|
145 | + 'OCA\\DAV\\Command\\MoveCalendar' => __DIR__.'/..'.'/../lib/Command/MoveCalendar.php', |
|
146 | + 'OCA\\DAV\\Command\\RemoveInvalidShares' => __DIR__.'/..'.'/../lib/Command/RemoveInvalidShares.php', |
|
147 | + 'OCA\\DAV\\Command\\RetentionCleanupCommand' => __DIR__.'/..'.'/../lib/Command/RetentionCleanupCommand.php', |
|
148 | + 'OCA\\DAV\\Command\\SendEventReminders' => __DIR__.'/..'.'/../lib/Command/SendEventReminders.php', |
|
149 | + 'OCA\\DAV\\Command\\SyncBirthdayCalendar' => __DIR__.'/..'.'/../lib/Command/SyncBirthdayCalendar.php', |
|
150 | + 'OCA\\DAV\\Command\\SyncSystemAddressBook' => __DIR__.'/..'.'/../lib/Command/SyncSystemAddressBook.php', |
|
151 | + 'OCA\\DAV\\Comments\\CommentNode' => __DIR__.'/..'.'/../lib/Comments/CommentNode.php', |
|
152 | + 'OCA\\DAV\\Comments\\CommentsPlugin' => __DIR__.'/..'.'/../lib/Comments/CommentsPlugin.php', |
|
153 | + 'OCA\\DAV\\Comments\\EntityCollection' => __DIR__.'/..'.'/../lib/Comments/EntityCollection.php', |
|
154 | + 'OCA\\DAV\\Comments\\EntityTypeCollection' => __DIR__.'/..'.'/../lib/Comments/EntityTypeCollection.php', |
|
155 | + 'OCA\\DAV\\Comments\\RootCollection' => __DIR__.'/..'.'/../lib/Comments/RootCollection.php', |
|
156 | + 'OCA\\DAV\\Connector\\LegacyDAVACL' => __DIR__.'/..'.'/../lib/Connector/LegacyDAVACL.php', |
|
157 | + 'OCA\\DAV\\Connector\\PublicAuth' => __DIR__.'/..'.'/../lib/Connector/PublicAuth.php', |
|
158 | + 'OCA\\DAV\\Connector\\Sabre\\AnonymousOptionsPlugin' => __DIR__.'/..'.'/../lib/Connector/Sabre/AnonymousOptionsPlugin.php', |
|
159 | + 'OCA\\DAV\\Connector\\Sabre\\Auth' => __DIR__.'/..'.'/../lib/Connector/Sabre/Auth.php', |
|
160 | + 'OCA\\DAV\\Connector\\Sabre\\BearerAuth' => __DIR__.'/..'.'/../lib/Connector/Sabre/BearerAuth.php', |
|
161 | + 'OCA\\DAV\\Connector\\Sabre\\BlockLegacyClientPlugin' => __DIR__.'/..'.'/../lib/Connector/Sabre/BlockLegacyClientPlugin.php', |
|
162 | + 'OCA\\DAV\\Connector\\Sabre\\CachingTree' => __DIR__.'/..'.'/../lib/Connector/Sabre/CachingTree.php', |
|
163 | + 'OCA\\DAV\\Connector\\Sabre\\ChecksumList' => __DIR__.'/..'.'/../lib/Connector/Sabre/ChecksumList.php', |
|
164 | + 'OCA\\DAV\\Connector\\Sabre\\ChecksumUpdatePlugin' => __DIR__.'/..'.'/../lib/Connector/Sabre/ChecksumUpdatePlugin.php', |
|
165 | + 'OCA\\DAV\\Connector\\Sabre\\CommentPropertiesPlugin' => __DIR__.'/..'.'/../lib/Connector/Sabre/CommentPropertiesPlugin.php', |
|
166 | + 'OCA\\DAV\\Connector\\Sabre\\CopyEtagHeaderPlugin' => __DIR__.'/..'.'/../lib/Connector/Sabre/CopyEtagHeaderPlugin.php', |
|
167 | + 'OCA\\DAV\\Connector\\Sabre\\DavAclPlugin' => __DIR__.'/..'.'/../lib/Connector/Sabre/DavAclPlugin.php', |
|
168 | + 'OCA\\DAV\\Connector\\Sabre\\Directory' => __DIR__.'/..'.'/../lib/Connector/Sabre/Directory.php', |
|
169 | + 'OCA\\DAV\\Connector\\Sabre\\DummyGetResponsePlugin' => __DIR__.'/..'.'/../lib/Connector/Sabre/DummyGetResponsePlugin.php', |
|
170 | + 'OCA\\DAV\\Connector\\Sabre\\ExceptionLoggerPlugin' => __DIR__.'/..'.'/../lib/Connector/Sabre/ExceptionLoggerPlugin.php', |
|
171 | + 'OCA\\DAV\\Connector\\Sabre\\Exception\\BadGateway' => __DIR__.'/..'.'/../lib/Connector/Sabre/Exception/BadGateway.php', |
|
172 | + 'OCA\\DAV\\Connector\\Sabre\\Exception\\EntityTooLarge' => __DIR__.'/..'.'/../lib/Connector/Sabre/Exception/EntityTooLarge.php', |
|
173 | + 'OCA\\DAV\\Connector\\Sabre\\Exception\\FileLocked' => __DIR__.'/..'.'/../lib/Connector/Sabre/Exception/FileLocked.php', |
|
174 | + 'OCA\\DAV\\Connector\\Sabre\\Exception\\Forbidden' => __DIR__.'/..'.'/../lib/Connector/Sabre/Exception/Forbidden.php', |
|
175 | + 'OCA\\DAV\\Connector\\Sabre\\Exception\\InvalidPath' => __DIR__.'/..'.'/../lib/Connector/Sabre/Exception/InvalidPath.php', |
|
176 | + 'OCA\\DAV\\Connector\\Sabre\\Exception\\PasswordLoginForbidden' => __DIR__.'/..'.'/../lib/Connector/Sabre/Exception/PasswordLoginForbidden.php', |
|
177 | + 'OCA\\DAV\\Connector\\Sabre\\Exception\\UnsupportedMediaType' => __DIR__.'/..'.'/../lib/Connector/Sabre/Exception/UnsupportedMediaType.php', |
|
178 | + 'OCA\\DAV\\Connector\\Sabre\\FakeLockerPlugin' => __DIR__.'/..'.'/../lib/Connector/Sabre/FakeLockerPlugin.php', |
|
179 | + 'OCA\\DAV\\Connector\\Sabre\\File' => __DIR__.'/..'.'/../lib/Connector/Sabre/File.php', |
|
180 | + 'OCA\\DAV\\Connector\\Sabre\\FilesPlugin' => __DIR__.'/..'.'/../lib/Connector/Sabre/FilesPlugin.php', |
|
181 | + 'OCA\\DAV\\Connector\\Sabre\\FilesReportPlugin' => __DIR__.'/..'.'/../lib/Connector/Sabre/FilesReportPlugin.php', |
|
182 | + 'OCA\\DAV\\Connector\\Sabre\\LockPlugin' => __DIR__.'/..'.'/../lib/Connector/Sabre/LockPlugin.php', |
|
183 | + 'OCA\\DAV\\Connector\\Sabre\\MaintenancePlugin' => __DIR__.'/..'.'/../lib/Connector/Sabre/MaintenancePlugin.php', |
|
184 | + 'OCA\\DAV\\Connector\\Sabre\\MtimeSanitizer' => __DIR__.'/..'.'/../lib/Connector/Sabre/MtimeSanitizer.php', |
|
185 | + 'OCA\\DAV\\Connector\\Sabre\\Node' => __DIR__.'/..'.'/../lib/Connector/Sabre/Node.php', |
|
186 | + 'OCA\\DAV\\Connector\\Sabre\\ObjectTree' => __DIR__.'/..'.'/../lib/Connector/Sabre/ObjectTree.php', |
|
187 | + 'OCA\\DAV\\Connector\\Sabre\\Principal' => __DIR__.'/..'.'/../lib/Connector/Sabre/Principal.php', |
|
188 | + 'OCA\\DAV\\Connector\\Sabre\\PropfindCompressionPlugin' => __DIR__.'/..'.'/../lib/Connector/Sabre/PropfindCompressionPlugin.php', |
|
189 | + 'OCA\\DAV\\Connector\\Sabre\\QuotaPlugin' => __DIR__.'/..'.'/../lib/Connector/Sabre/QuotaPlugin.php', |
|
190 | + 'OCA\\DAV\\Connector\\Sabre\\RequestIdHeaderPlugin' => __DIR__.'/..'.'/../lib/Connector/Sabre/RequestIdHeaderPlugin.php', |
|
191 | + 'OCA\\DAV\\Connector\\Sabre\\Server' => __DIR__.'/..'.'/../lib/Connector/Sabre/Server.php', |
|
192 | + 'OCA\\DAV\\Connector\\Sabre\\ServerFactory' => __DIR__.'/..'.'/../lib/Connector/Sabre/ServerFactory.php', |
|
193 | + 'OCA\\DAV\\Connector\\Sabre\\ShareTypeList' => __DIR__.'/..'.'/../lib/Connector/Sabre/ShareTypeList.php', |
|
194 | + 'OCA\\DAV\\Connector\\Sabre\\ShareeList' => __DIR__.'/..'.'/../lib/Connector/Sabre/ShareeList.php', |
|
195 | + 'OCA\\DAV\\Connector\\Sabre\\SharesPlugin' => __DIR__.'/..'.'/../lib/Connector/Sabre/SharesPlugin.php', |
|
196 | + 'OCA\\DAV\\Connector\\Sabre\\TagList' => __DIR__.'/..'.'/../lib/Connector/Sabre/TagList.php', |
|
197 | + 'OCA\\DAV\\Connector\\Sabre\\TagsPlugin' => __DIR__.'/..'.'/../lib/Connector/Sabre/TagsPlugin.php', |
|
198 | + 'OCA\\DAV\\Controller\\BirthdayCalendarController' => __DIR__.'/..'.'/../lib/Controller/BirthdayCalendarController.php', |
|
199 | + 'OCA\\DAV\\Controller\\DirectController' => __DIR__.'/..'.'/../lib/Controller/DirectController.php', |
|
200 | + 'OCA\\DAV\\Controller\\InvitationResponseController' => __DIR__.'/..'.'/../lib/Controller/InvitationResponseController.php', |
|
201 | + 'OCA\\DAV\\DAV\\CustomPropertiesBackend' => __DIR__.'/..'.'/../lib/DAV/CustomPropertiesBackend.php', |
|
202 | + 'OCA\\DAV\\DAV\\GroupPrincipalBackend' => __DIR__.'/..'.'/../lib/DAV/GroupPrincipalBackend.php', |
|
203 | + 'OCA\\DAV\\DAV\\PublicAuth' => __DIR__.'/..'.'/../lib/DAV/PublicAuth.php', |
|
204 | + 'OCA\\DAV\\DAV\\Sharing\\Backend' => __DIR__.'/..'.'/../lib/DAV/Sharing/Backend.php', |
|
205 | + 'OCA\\DAV\\DAV\\Sharing\\IShareable' => __DIR__.'/..'.'/../lib/DAV/Sharing/IShareable.php', |
|
206 | + 'OCA\\DAV\\DAV\\Sharing\\Plugin' => __DIR__.'/..'.'/../lib/DAV/Sharing/Plugin.php', |
|
207 | + 'OCA\\DAV\\DAV\\Sharing\\Xml\\Invite' => __DIR__.'/..'.'/../lib/DAV/Sharing/Xml/Invite.php', |
|
208 | + 'OCA\\DAV\\DAV\\Sharing\\Xml\\ShareRequest' => __DIR__.'/..'.'/../lib/DAV/Sharing/Xml/ShareRequest.php', |
|
209 | + 'OCA\\DAV\\DAV\\SystemPrincipalBackend' => __DIR__.'/..'.'/../lib/DAV/SystemPrincipalBackend.php', |
|
210 | + 'OCA\\DAV\\DAV\\ViewOnlyPlugin' => __DIR__.'/..'.'/../lib/DAV/ViewOnlyPlugin.php', |
|
211 | + 'OCA\\DAV\\Db\\Direct' => __DIR__.'/..'.'/../lib/Db/Direct.php', |
|
212 | + 'OCA\\DAV\\Db\\DirectMapper' => __DIR__.'/..'.'/../lib/Db/DirectMapper.php', |
|
213 | + 'OCA\\DAV\\Direct\\DirectFile' => __DIR__.'/..'.'/../lib/Direct/DirectFile.php', |
|
214 | + 'OCA\\DAV\\Direct\\DirectHome' => __DIR__.'/..'.'/../lib/Direct/DirectHome.php', |
|
215 | + 'OCA\\DAV\\Direct\\Server' => __DIR__.'/..'.'/../lib/Direct/Server.php', |
|
216 | + 'OCA\\DAV\\Direct\\ServerFactory' => __DIR__.'/..'.'/../lib/Direct/ServerFactory.php', |
|
217 | + 'OCA\\DAV\\Events\\AddressBookCreatedEvent' => __DIR__.'/..'.'/../lib/Events/AddressBookCreatedEvent.php', |
|
218 | + 'OCA\\DAV\\Events\\AddressBookDeletedEvent' => __DIR__.'/..'.'/../lib/Events/AddressBookDeletedEvent.php', |
|
219 | + 'OCA\\DAV\\Events\\AddressBookShareUpdatedEvent' => __DIR__.'/..'.'/../lib/Events/AddressBookShareUpdatedEvent.php', |
|
220 | + 'OCA\\DAV\\Events\\AddressBookUpdatedEvent' => __DIR__.'/..'.'/../lib/Events/AddressBookUpdatedEvent.php', |
|
221 | + 'OCA\\DAV\\Events\\BeforeFileDirectDownloadedEvent' => __DIR__.'/..'.'/../lib/Events/BeforeFileDirectDownloadedEvent.php', |
|
222 | + 'OCA\\DAV\\Events\\CachedCalendarObjectCreatedEvent' => __DIR__.'/..'.'/../lib/Events/CachedCalendarObjectCreatedEvent.php', |
|
223 | + 'OCA\\DAV\\Events\\CachedCalendarObjectDeletedEvent' => __DIR__.'/..'.'/../lib/Events/CachedCalendarObjectDeletedEvent.php', |
|
224 | + 'OCA\\DAV\\Events\\CachedCalendarObjectUpdatedEvent' => __DIR__.'/..'.'/../lib/Events/CachedCalendarObjectUpdatedEvent.php', |
|
225 | + 'OCA\\DAV\\Events\\CalendarCreatedEvent' => __DIR__.'/..'.'/../lib/Events/CalendarCreatedEvent.php', |
|
226 | + 'OCA\\DAV\\Events\\CalendarDeletedEvent' => __DIR__.'/..'.'/../lib/Events/CalendarDeletedEvent.php', |
|
227 | + 'OCA\\DAV\\Events\\CalendarMovedToTrashEvent' => __DIR__.'/..'.'/../lib/Events/CalendarMovedToTrashEvent.php', |
|
228 | + 'OCA\\DAV\\Events\\CalendarObjectCreatedEvent' => __DIR__.'/..'.'/../lib/Events/CalendarObjectCreatedEvent.php', |
|
229 | + 'OCA\\DAV\\Events\\CalendarObjectDeletedEvent' => __DIR__.'/..'.'/../lib/Events/CalendarObjectDeletedEvent.php', |
|
230 | + 'OCA\\DAV\\Events\\CalendarObjectMovedEvent' => __DIR__.'/..'.'/../lib/Events/CalendarObjectMovedEvent.php', |
|
231 | + 'OCA\\DAV\\Events\\CalendarObjectMovedToTrashEvent' => __DIR__.'/..'.'/../lib/Events/CalendarObjectMovedToTrashEvent.php', |
|
232 | + 'OCA\\DAV\\Events\\CalendarObjectRestoredEvent' => __DIR__.'/..'.'/../lib/Events/CalendarObjectRestoredEvent.php', |
|
233 | + 'OCA\\DAV\\Events\\CalendarObjectUpdatedEvent' => __DIR__.'/..'.'/../lib/Events/CalendarObjectUpdatedEvent.php', |
|
234 | + 'OCA\\DAV\\Events\\CalendarPublishedEvent' => __DIR__.'/..'.'/../lib/Events/CalendarPublishedEvent.php', |
|
235 | + 'OCA\\DAV\\Events\\CalendarRestoredEvent' => __DIR__.'/..'.'/../lib/Events/CalendarRestoredEvent.php', |
|
236 | + 'OCA\\DAV\\Events\\CalendarShareUpdatedEvent' => __DIR__.'/..'.'/../lib/Events/CalendarShareUpdatedEvent.php', |
|
237 | + 'OCA\\DAV\\Events\\CalendarUnpublishedEvent' => __DIR__.'/..'.'/../lib/Events/CalendarUnpublishedEvent.php', |
|
238 | + 'OCA\\DAV\\Events\\CalendarUpdatedEvent' => __DIR__.'/..'.'/../lib/Events/CalendarUpdatedEvent.php', |
|
239 | + 'OCA\\DAV\\Events\\CardCreatedEvent' => __DIR__.'/..'.'/../lib/Events/CardCreatedEvent.php', |
|
240 | + 'OCA\\DAV\\Events\\CardDeletedEvent' => __DIR__.'/..'.'/../lib/Events/CardDeletedEvent.php', |
|
241 | + 'OCA\\DAV\\Events\\CardUpdatedEvent' => __DIR__.'/..'.'/../lib/Events/CardUpdatedEvent.php', |
|
242 | + 'OCA\\DAV\\Events\\SabrePluginAuthInitEvent' => __DIR__.'/..'.'/../lib/Events/SabrePluginAuthInitEvent.php', |
|
243 | + 'OCA\\DAV\\Events\\SubscriptionCreatedEvent' => __DIR__.'/..'.'/../lib/Events/SubscriptionCreatedEvent.php', |
|
244 | + 'OCA\\DAV\\Events\\SubscriptionDeletedEvent' => __DIR__.'/..'.'/../lib/Events/SubscriptionDeletedEvent.php', |
|
245 | + 'OCA\\DAV\\Events\\SubscriptionUpdatedEvent' => __DIR__.'/..'.'/../lib/Events/SubscriptionUpdatedEvent.php', |
|
246 | + 'OCA\\DAV\\Exception\\ServerMaintenanceMode' => __DIR__.'/..'.'/../lib/Exception/ServerMaintenanceMode.php', |
|
247 | + 'OCA\\DAV\\Exception\\UnsupportedLimitOnInitialSyncException' => __DIR__.'/..'.'/../lib/Exception/UnsupportedLimitOnInitialSyncException.php', |
|
248 | + 'OCA\\DAV\\Files\\BrowserErrorPagePlugin' => __DIR__.'/..'.'/../lib/Files/BrowserErrorPagePlugin.php', |
|
249 | + 'OCA\\DAV\\Files\\FileSearchBackend' => __DIR__.'/..'.'/../lib/Files/FileSearchBackend.php', |
|
250 | + 'OCA\\DAV\\Files\\FilesHome' => __DIR__.'/..'.'/../lib/Files/FilesHome.php', |
|
251 | + 'OCA\\DAV\\Files\\LazySearchBackend' => __DIR__.'/..'.'/../lib/Files/LazySearchBackend.php', |
|
252 | + 'OCA\\DAV\\Files\\RootCollection' => __DIR__.'/..'.'/../lib/Files/RootCollection.php', |
|
253 | + 'OCA\\DAV\\Files\\Sharing\\FilesDropPlugin' => __DIR__.'/..'.'/../lib/Files/Sharing/FilesDropPlugin.php', |
|
254 | + 'OCA\\DAV\\Files\\Sharing\\PublicLinkCheckPlugin' => __DIR__.'/..'.'/../lib/Files/Sharing/PublicLinkCheckPlugin.php', |
|
255 | + 'OCA\\DAV\\HookManager' => __DIR__.'/..'.'/../lib/HookManager.php', |
|
256 | + 'OCA\\DAV\\Listener\\ActivityUpdaterListener' => __DIR__.'/..'.'/../lib/Listener/ActivityUpdaterListener.php', |
|
257 | + 'OCA\\DAV\\Listener\\AddressbookListener' => __DIR__.'/..'.'/../lib/Listener/AddressbookListener.php', |
|
258 | + 'OCA\\DAV\\Listener\\BirthdayListener' => __DIR__.'/..'.'/../lib/Listener/BirthdayListener.php', |
|
259 | + 'OCA\\DAV\\Listener\\CalendarContactInteractionListener' => __DIR__.'/..'.'/../lib/Listener/CalendarContactInteractionListener.php', |
|
260 | + 'OCA\\DAV\\Listener\\CalendarDeletionDefaultUpdaterListener' => __DIR__.'/..'.'/../lib/Listener/CalendarDeletionDefaultUpdaterListener.php', |
|
261 | + 'OCA\\DAV\\Listener\\CalendarObjectReminderUpdaterListener' => __DIR__.'/..'.'/../lib/Listener/CalendarObjectReminderUpdaterListener.php', |
|
262 | + 'OCA\\DAV\\Listener\\CalendarPublicationListener' => __DIR__.'/..'.'/../lib/Listener/CalendarPublicationListener.php', |
|
263 | + 'OCA\\DAV\\Listener\\CalendarShareUpdateListener' => __DIR__.'/..'.'/../lib/Listener/CalendarShareUpdateListener.php', |
|
264 | + 'OCA\\DAV\\Listener\\CardListener' => __DIR__.'/..'.'/../lib/Listener/CardListener.php', |
|
265 | + 'OCA\\DAV\\Listener\\ClearPhotoCacheListener' => __DIR__.'/..'.'/../lib/Listener/ClearPhotoCacheListener.php', |
|
266 | + 'OCA\\DAV\\Listener\\SubscriptionListener' => __DIR__.'/..'.'/../lib/Listener/SubscriptionListener.php', |
|
267 | + 'OCA\\DAV\\Listener\\TrustedServerRemovedListener' => __DIR__.'/..'.'/../lib/Listener/TrustedServerRemovedListener.php', |
|
268 | + 'OCA\\DAV\\Listener\\UserPreferenceListener' => __DIR__.'/..'.'/../lib/Listener/UserPreferenceListener.php', |
|
269 | + 'OCA\\DAV\\Migration\\BuildCalendarSearchIndex' => __DIR__.'/..'.'/../lib/Migration/BuildCalendarSearchIndex.php', |
|
270 | + 'OCA\\DAV\\Migration\\BuildCalendarSearchIndexBackgroundJob' => __DIR__.'/..'.'/../lib/Migration/BuildCalendarSearchIndexBackgroundJob.php', |
|
271 | + 'OCA\\DAV\\Migration\\BuildSocialSearchIndex' => __DIR__.'/..'.'/../lib/Migration/BuildSocialSearchIndex.php', |
|
272 | + 'OCA\\DAV\\Migration\\BuildSocialSearchIndexBackgroundJob' => __DIR__.'/..'.'/../lib/Migration/BuildSocialSearchIndexBackgroundJob.php', |
|
273 | + 'OCA\\DAV\\Migration\\CalDAVRemoveEmptyValue' => __DIR__.'/..'.'/../lib/Migration/CalDAVRemoveEmptyValue.php', |
|
274 | + 'OCA\\DAV\\Migration\\ChunkCleanup' => __DIR__.'/..'.'/../lib/Migration/ChunkCleanup.php', |
|
275 | + 'OCA\\DAV\\Migration\\FixBirthdayCalendarComponent' => __DIR__.'/..'.'/../lib/Migration/FixBirthdayCalendarComponent.php', |
|
276 | + 'OCA\\DAV\\Migration\\RefreshWebcalJobRegistrar' => __DIR__.'/..'.'/../lib/Migration/RefreshWebcalJobRegistrar.php', |
|
277 | + 'OCA\\DAV\\Migration\\RegenerateBirthdayCalendars' => __DIR__.'/..'.'/../lib/Migration/RegenerateBirthdayCalendars.php', |
|
278 | + 'OCA\\DAV\\Migration\\RegisterBuildReminderIndexBackgroundJob' => __DIR__.'/..'.'/../lib/Migration/RegisterBuildReminderIndexBackgroundJob.php', |
|
279 | + 'OCA\\DAV\\Migration\\RemoveClassifiedEventActivity' => __DIR__.'/..'.'/../lib/Migration/RemoveClassifiedEventActivity.php', |
|
280 | + 'OCA\\DAV\\Migration\\RemoveDeletedUsersCalendarSubscriptions' => __DIR__.'/..'.'/../lib/Migration/RemoveDeletedUsersCalendarSubscriptions.php', |
|
281 | + 'OCA\\DAV\\Migration\\RemoveObjectProperties' => __DIR__.'/..'.'/../lib/Migration/RemoveObjectProperties.php', |
|
282 | + 'OCA\\DAV\\Migration\\RemoveOrphanEventsAndContacts' => __DIR__.'/..'.'/../lib/Migration/RemoveOrphanEventsAndContacts.php', |
|
283 | + 'OCA\\DAV\\Migration\\Version1004Date20170825134824' => __DIR__.'/..'.'/../lib/Migration/Version1004Date20170825134824.php', |
|
284 | + 'OCA\\DAV\\Migration\\Version1004Date20170919104507' => __DIR__.'/..'.'/../lib/Migration/Version1004Date20170919104507.php', |
|
285 | + 'OCA\\DAV\\Migration\\Version1004Date20170924124212' => __DIR__.'/..'.'/../lib/Migration/Version1004Date20170924124212.php', |
|
286 | + 'OCA\\DAV\\Migration\\Version1004Date20170926103422' => __DIR__.'/..'.'/../lib/Migration/Version1004Date20170926103422.php', |
|
287 | + 'OCA\\DAV\\Migration\\Version1005Date20180413093149' => __DIR__.'/..'.'/../lib/Migration/Version1005Date20180413093149.php', |
|
288 | + 'OCA\\DAV\\Migration\\Version1005Date20180530124431' => __DIR__.'/..'.'/../lib/Migration/Version1005Date20180530124431.php', |
|
289 | + 'OCA\\DAV\\Migration\\Version1006Date20180619154313' => __DIR__.'/..'.'/../lib/Migration/Version1006Date20180619154313.php', |
|
290 | + 'OCA\\DAV\\Migration\\Version1006Date20180628111625' => __DIR__.'/..'.'/../lib/Migration/Version1006Date20180628111625.php', |
|
291 | + 'OCA\\DAV\\Migration\\Version1008Date20181030113700' => __DIR__.'/..'.'/../lib/Migration/Version1008Date20181030113700.php', |
|
292 | + 'OCA\\DAV\\Migration\\Version1008Date20181105104826' => __DIR__.'/..'.'/../lib/Migration/Version1008Date20181105104826.php', |
|
293 | + 'OCA\\DAV\\Migration\\Version1008Date20181105104833' => __DIR__.'/..'.'/../lib/Migration/Version1008Date20181105104833.php', |
|
294 | + 'OCA\\DAV\\Migration\\Version1008Date20181105110300' => __DIR__.'/..'.'/../lib/Migration/Version1008Date20181105110300.php', |
|
295 | + 'OCA\\DAV\\Migration\\Version1008Date20181105112049' => __DIR__.'/..'.'/../lib/Migration/Version1008Date20181105112049.php', |
|
296 | + 'OCA\\DAV\\Migration\\Version1008Date20181114084440' => __DIR__.'/..'.'/../lib/Migration/Version1008Date20181114084440.php', |
|
297 | + 'OCA\\DAV\\Migration\\Version1011Date20190725113607' => __DIR__.'/..'.'/../lib/Migration/Version1011Date20190725113607.php', |
|
298 | + 'OCA\\DAV\\Migration\\Version1011Date20190806104428' => __DIR__.'/..'.'/../lib/Migration/Version1011Date20190806104428.php', |
|
299 | + 'OCA\\DAV\\Migration\\Version1012Date20190808122342' => __DIR__.'/..'.'/../lib/Migration/Version1012Date20190808122342.php', |
|
300 | + 'OCA\\DAV\\Migration\\Version1016Date20201109085907' => __DIR__.'/..'.'/../lib/Migration/Version1016Date20201109085907.php', |
|
301 | + 'OCA\\DAV\\Migration\\Version1017Date20210216083742' => __DIR__.'/..'.'/../lib/Migration/Version1017Date20210216083742.php', |
|
302 | + 'OCA\\DAV\\Migration\\Version1018Date20210312100735' => __DIR__.'/..'.'/../lib/Migration/Version1018Date20210312100735.php', |
|
303 | + 'OCA\\DAV\\Migration\\Version1024Date20211221144219' => __DIR__.'/..'.'/../lib/Migration/Version1024Date20211221144219.php', |
|
304 | + 'OCA\\DAV\\Profiler\\ProfilerPlugin' => __DIR__.'/..'.'/../lib/Profiler/ProfilerPlugin.php', |
|
305 | + 'OCA\\DAV\\Provisioning\\Apple\\AppleProvisioningNode' => __DIR__.'/..'.'/../lib/Provisioning/Apple/AppleProvisioningNode.php', |
|
306 | + 'OCA\\DAV\\Provisioning\\Apple\\AppleProvisioningPlugin' => __DIR__.'/..'.'/../lib/Provisioning/Apple/AppleProvisioningPlugin.php', |
|
307 | + 'OCA\\DAV\\RootCollection' => __DIR__.'/..'.'/../lib/RootCollection.php', |
|
308 | + 'OCA\\DAV\\Search\\ACalendarSearchProvider' => __DIR__.'/..'.'/../lib/Search/ACalendarSearchProvider.php', |
|
309 | + 'OCA\\DAV\\Search\\ContactsSearchProvider' => __DIR__.'/..'.'/../lib/Search/ContactsSearchProvider.php', |
|
310 | + 'OCA\\DAV\\Search\\EventsSearchProvider' => __DIR__.'/..'.'/../lib/Search/EventsSearchProvider.php', |
|
311 | + 'OCA\\DAV\\Search\\TasksSearchProvider' => __DIR__.'/..'.'/../lib/Search/TasksSearchProvider.php', |
|
312 | + 'OCA\\DAV\\Server' => __DIR__.'/..'.'/../lib/Server.php', |
|
313 | + 'OCA\\DAV\\Settings\\AvailabilitySettings' => __DIR__.'/..'.'/../lib/Settings/AvailabilitySettings.php', |
|
314 | + 'OCA\\DAV\\Settings\\CalDAVSettings' => __DIR__.'/..'.'/../lib/Settings/CalDAVSettings.php', |
|
315 | + 'OCA\\DAV\\Storage\\PublicOwnerWrapper' => __DIR__.'/..'.'/../lib/Storage/PublicOwnerWrapper.php', |
|
316 | + 'OCA\\DAV\\SystemTag\\SystemTagMappingNode' => __DIR__.'/..'.'/../lib/SystemTag/SystemTagMappingNode.php', |
|
317 | + 'OCA\\DAV\\SystemTag\\SystemTagNode' => __DIR__.'/..'.'/../lib/SystemTag/SystemTagNode.php', |
|
318 | + 'OCA\\DAV\\SystemTag\\SystemTagPlugin' => __DIR__.'/..'.'/../lib/SystemTag/SystemTagPlugin.php', |
|
319 | + 'OCA\\DAV\\SystemTag\\SystemTagsByIdCollection' => __DIR__.'/..'.'/../lib/SystemTag/SystemTagsByIdCollection.php', |
|
320 | + 'OCA\\DAV\\SystemTag\\SystemTagsObjectMappingCollection' => __DIR__.'/..'.'/../lib/SystemTag/SystemTagsObjectMappingCollection.php', |
|
321 | + 'OCA\\DAV\\SystemTag\\SystemTagsObjectTypeCollection' => __DIR__.'/..'.'/../lib/SystemTag/SystemTagsObjectTypeCollection.php', |
|
322 | + 'OCA\\DAV\\SystemTag\\SystemTagsRelationsCollection' => __DIR__.'/..'.'/../lib/SystemTag/SystemTagsRelationsCollection.php', |
|
323 | + 'OCA\\DAV\\Traits\\PrincipalProxyTrait' => __DIR__.'/..'.'/../lib/Traits/PrincipalProxyTrait.php', |
|
324 | + 'OCA\\DAV\\Upload\\AssemblyStream' => __DIR__.'/..'.'/../lib/Upload/AssemblyStream.php', |
|
325 | + 'OCA\\DAV\\Upload\\ChunkingPlugin' => __DIR__.'/..'.'/../lib/Upload/ChunkingPlugin.php', |
|
326 | + 'OCA\\DAV\\Upload\\CleanupService' => __DIR__.'/..'.'/../lib/Upload/CleanupService.php', |
|
327 | + 'OCA\\DAV\\Upload\\FutureFile' => __DIR__.'/..'.'/../lib/Upload/FutureFile.php', |
|
328 | + 'OCA\\DAV\\Upload\\RootCollection' => __DIR__.'/..'.'/../lib/Upload/RootCollection.php', |
|
329 | + 'OCA\\DAV\\Upload\\UploadFile' => __DIR__.'/..'.'/../lib/Upload/UploadFile.php', |
|
330 | + 'OCA\\DAV\\Upload\\UploadFolder' => __DIR__.'/..'.'/../lib/Upload/UploadFolder.php', |
|
331 | + 'OCA\\DAV\\Upload\\UploadHome' => __DIR__.'/..'.'/../lib/Upload/UploadHome.php', |
|
332 | + 'OCA\\DAV\\UserMigration\\CalendarMigrator' => __DIR__.'/..'.'/../lib/UserMigration/CalendarMigrator.php', |
|
333 | + 'OCA\\DAV\\UserMigration\\CalendarMigratorException' => __DIR__.'/..'.'/../lib/UserMigration/CalendarMigratorException.php', |
|
334 | + 'OCA\\DAV\\UserMigration\\ContactsMigrator' => __DIR__.'/..'.'/../lib/UserMigration/ContactsMigrator.php', |
|
335 | + 'OCA\\DAV\\UserMigration\\ContactsMigratorException' => __DIR__.'/..'.'/../lib/UserMigration/ContactsMigratorException.php', |
|
336 | + 'OCA\\DAV\\UserMigration\\InvalidAddressBookException' => __DIR__.'/..'.'/../lib/UserMigration/InvalidAddressBookException.php', |
|
337 | + 'OCA\\DAV\\UserMigration\\InvalidCalendarException' => __DIR__.'/..'.'/../lib/UserMigration/InvalidCalendarException.php', |
|
338 | 338 | ); |
339 | 339 | |
340 | 340 | public static function getInitializer(ClassLoader $loader) |
341 | 341 | { |
342 | - return \Closure::bind(function () use ($loader) { |
|
342 | + return \Closure::bind(function() use ($loader) { |
|
343 | 343 | $loader->prefixLengthsPsr4 = ComposerStaticInitDAV::$prefixLengthsPsr4; |
344 | 344 | $loader->prefixDirsPsr4 = ComposerStaticInitDAV::$prefixDirsPsr4; |
345 | 345 | $loader->classMap = ComposerStaticInitDAV::$classMap; |
@@ -6,318 +6,318 @@ |
||
6 | 6 | $baseDir = $vendorDir; |
7 | 7 | |
8 | 8 | return array( |
9 | - 'Composer\\InstalledVersions' => $vendorDir . '/composer/InstalledVersions.php', |
|
10 | - 'OCA\\DAV\\AppInfo\\Application' => $baseDir . '/../lib/AppInfo/Application.php', |
|
11 | - 'OCA\\DAV\\AppInfo\\PluginManager' => $baseDir . '/../lib/AppInfo/PluginManager.php', |
|
12 | - 'OCA\\DAV\\Avatars\\AvatarHome' => $baseDir . '/../lib/Avatars/AvatarHome.php', |
|
13 | - 'OCA\\DAV\\Avatars\\AvatarNode' => $baseDir . '/../lib/Avatars/AvatarNode.php', |
|
14 | - 'OCA\\DAV\\Avatars\\RootCollection' => $baseDir . '/../lib/Avatars/RootCollection.php', |
|
15 | - 'OCA\\DAV\\BackgroundJob\\BuildReminderIndexBackgroundJob' => $baseDir . '/../lib/BackgroundJob/BuildReminderIndexBackgroundJob.php', |
|
16 | - 'OCA\\DAV\\BackgroundJob\\CalendarRetentionJob' => $baseDir . '/../lib/BackgroundJob/CalendarRetentionJob.php', |
|
17 | - 'OCA\\DAV\\BackgroundJob\\CleanupDirectLinksJob' => $baseDir . '/../lib/BackgroundJob/CleanupDirectLinksJob.php', |
|
18 | - 'OCA\\DAV\\BackgroundJob\\CleanupInvitationTokenJob' => $baseDir . '/../lib/BackgroundJob/CleanupInvitationTokenJob.php', |
|
19 | - 'OCA\\DAV\\BackgroundJob\\EventReminderJob' => $baseDir . '/../lib/BackgroundJob/EventReminderJob.php', |
|
20 | - 'OCA\\DAV\\BackgroundJob\\GenerateBirthdayCalendarBackgroundJob' => $baseDir . '/../lib/BackgroundJob/GenerateBirthdayCalendarBackgroundJob.php', |
|
21 | - 'OCA\\DAV\\BackgroundJob\\PruneOutdatedSyncTokensJob' => $baseDir . '/../lib/BackgroundJob/PruneOutdatedSyncTokensJob.php', |
|
22 | - 'OCA\\DAV\\BackgroundJob\\RefreshWebcalJob' => $baseDir . '/../lib/BackgroundJob/RefreshWebcalJob.php', |
|
23 | - 'OCA\\DAV\\BackgroundJob\\RegisterRegenerateBirthdayCalendars' => $baseDir . '/../lib/BackgroundJob/RegisterRegenerateBirthdayCalendars.php', |
|
24 | - 'OCA\\DAV\\BackgroundJob\\UpdateCalendarResourcesRoomsBackgroundJob' => $baseDir . '/../lib/BackgroundJob/UpdateCalendarResourcesRoomsBackgroundJob.php', |
|
25 | - 'OCA\\DAV\\BackgroundJob\\UploadCleanup' => $baseDir . '/../lib/BackgroundJob/UploadCleanup.php', |
|
26 | - 'OCA\\DAV\\BackgroundJob\\UserStatusAutomation' => $baseDir . '/../lib/BackgroundJob/UserStatusAutomation.php', |
|
27 | - 'OCA\\DAV\\BulkUpload\\BulkUploadPlugin' => $baseDir . '/../lib/BulkUpload/BulkUploadPlugin.php', |
|
28 | - 'OCA\\DAV\\BulkUpload\\MultipartRequestParser' => $baseDir . '/../lib/BulkUpload/MultipartRequestParser.php', |
|
29 | - 'OCA\\DAV\\CalDAV\\Activity\\Backend' => $baseDir . '/../lib/CalDAV/Activity/Backend.php', |
|
30 | - 'OCA\\DAV\\CalDAV\\Activity\\Filter\\Calendar' => $baseDir . '/../lib/CalDAV/Activity/Filter/Calendar.php', |
|
31 | - 'OCA\\DAV\\CalDAV\\Activity\\Filter\\Todo' => $baseDir . '/../lib/CalDAV/Activity/Filter/Todo.php', |
|
32 | - 'OCA\\DAV\\CalDAV\\Activity\\Provider\\Base' => $baseDir . '/../lib/CalDAV/Activity/Provider/Base.php', |
|
33 | - 'OCA\\DAV\\CalDAV\\Activity\\Provider\\Calendar' => $baseDir . '/../lib/CalDAV/Activity/Provider/Calendar.php', |
|
34 | - 'OCA\\DAV\\CalDAV\\Activity\\Provider\\Event' => $baseDir . '/../lib/CalDAV/Activity/Provider/Event.php', |
|
35 | - 'OCA\\DAV\\CalDAV\\Activity\\Provider\\Todo' => $baseDir . '/../lib/CalDAV/Activity/Provider/Todo.php', |
|
36 | - 'OCA\\DAV\\CalDAV\\Activity\\Setting\\CalDAVSetting' => $baseDir . '/../lib/CalDAV/Activity/Setting/CalDAVSetting.php', |
|
37 | - 'OCA\\DAV\\CalDAV\\Activity\\Setting\\Calendar' => $baseDir . '/../lib/CalDAV/Activity/Setting/Calendar.php', |
|
38 | - 'OCA\\DAV\\CalDAV\\Activity\\Setting\\Event' => $baseDir . '/../lib/CalDAV/Activity/Setting/Event.php', |
|
39 | - 'OCA\\DAV\\CalDAV\\Activity\\Setting\\Todo' => $baseDir . '/../lib/CalDAV/Activity/Setting/Todo.php', |
|
40 | - 'OCA\\DAV\\CalDAV\\Auth\\CustomPrincipalPlugin' => $baseDir . '/../lib/CalDAV/Auth/CustomPrincipalPlugin.php', |
|
41 | - 'OCA\\DAV\\CalDAV\\Auth\\PublicPrincipalPlugin' => $baseDir . '/../lib/CalDAV/Auth/PublicPrincipalPlugin.php', |
|
42 | - 'OCA\\DAV\\CalDAV\\BirthdayCalendar\\EnablePlugin' => $baseDir . '/../lib/CalDAV/BirthdayCalendar/EnablePlugin.php', |
|
43 | - 'OCA\\DAV\\CalDAV\\BirthdayService' => $baseDir . '/../lib/CalDAV/BirthdayService.php', |
|
44 | - 'OCA\\DAV\\CalDAV\\CachedSubscription' => $baseDir . '/../lib/CalDAV/CachedSubscription.php', |
|
45 | - 'OCA\\DAV\\CalDAV\\CachedSubscriptionObject' => $baseDir . '/../lib/CalDAV/CachedSubscriptionObject.php', |
|
46 | - 'OCA\\DAV\\CalDAV\\CalDavBackend' => $baseDir . '/../lib/CalDAV/CalDavBackend.php', |
|
47 | - 'OCA\\DAV\\CalDAV\\Calendar' => $baseDir . '/../lib/CalDAV/Calendar.php', |
|
48 | - 'OCA\\DAV\\CalDAV\\CalendarHome' => $baseDir . '/../lib/CalDAV/CalendarHome.php', |
|
49 | - 'OCA\\DAV\\CalDAV\\CalendarImpl' => $baseDir . '/../lib/CalDAV/CalendarImpl.php', |
|
50 | - 'OCA\\DAV\\CalDAV\\CalendarManager' => $baseDir . '/../lib/CalDAV/CalendarManager.php', |
|
51 | - 'OCA\\DAV\\CalDAV\\CalendarObject' => $baseDir . '/../lib/CalDAV/CalendarObject.php', |
|
52 | - 'OCA\\DAV\\CalDAV\\CalendarProvider' => $baseDir . '/../lib/CalDAV/CalendarProvider.php', |
|
53 | - 'OCA\\DAV\\CalDAV\\CalendarRoot' => $baseDir . '/../lib/CalDAV/CalendarRoot.php', |
|
54 | - 'OCA\\DAV\\CalDAV\\ICSExportPlugin\\ICSExportPlugin' => $baseDir . '/../lib/CalDAV/ICSExportPlugin/ICSExportPlugin.php', |
|
55 | - 'OCA\\DAV\\CalDAV\\IRestorable' => $baseDir . '/../lib/CalDAV/IRestorable.php', |
|
56 | - 'OCA\\DAV\\CalDAV\\Integration\\ExternalCalendar' => $baseDir . '/../lib/CalDAV/Integration/ExternalCalendar.php', |
|
57 | - 'OCA\\DAV\\CalDAV\\Integration\\ICalendarProvider' => $baseDir . '/../lib/CalDAV/Integration/ICalendarProvider.php', |
|
58 | - 'OCA\\DAV\\CalDAV\\InvitationResponse\\InvitationResponseServer' => $baseDir . '/../lib/CalDAV/InvitationResponse/InvitationResponseServer.php', |
|
59 | - 'OCA\\DAV\\CalDAV\\Outbox' => $baseDir . '/../lib/CalDAV/Outbox.php', |
|
60 | - 'OCA\\DAV\\CalDAV\\Plugin' => $baseDir . '/../lib/CalDAV/Plugin.php', |
|
61 | - 'OCA\\DAV\\CalDAV\\Principal\\Collection' => $baseDir . '/../lib/CalDAV/Principal/Collection.php', |
|
62 | - 'OCA\\DAV\\CalDAV\\Principal\\User' => $baseDir . '/../lib/CalDAV/Principal/User.php', |
|
63 | - 'OCA\\DAV\\CalDAV\\Proxy\\Proxy' => $baseDir . '/../lib/CalDAV/Proxy/Proxy.php', |
|
64 | - 'OCA\\DAV\\CalDAV\\Proxy\\ProxyMapper' => $baseDir . '/../lib/CalDAV/Proxy/ProxyMapper.php', |
|
65 | - 'OCA\\DAV\\CalDAV\\PublicCalendar' => $baseDir . '/../lib/CalDAV/PublicCalendar.php', |
|
66 | - 'OCA\\DAV\\CalDAV\\PublicCalendarObject' => $baseDir . '/../lib/CalDAV/PublicCalendarObject.php', |
|
67 | - 'OCA\\DAV\\CalDAV\\PublicCalendarRoot' => $baseDir . '/../lib/CalDAV/PublicCalendarRoot.php', |
|
68 | - 'OCA\\DAV\\CalDAV\\Publishing\\PublishPlugin' => $baseDir . '/../lib/CalDAV/Publishing/PublishPlugin.php', |
|
69 | - 'OCA\\DAV\\CalDAV\\Publishing\\Xml\\Publisher' => $baseDir . '/../lib/CalDAV/Publishing/Xml/Publisher.php', |
|
70 | - 'OCA\\DAV\\CalDAV\\Reminder\\Backend' => $baseDir . '/../lib/CalDAV/Reminder/Backend.php', |
|
71 | - 'OCA\\DAV\\CalDAV\\Reminder\\INotificationProvider' => $baseDir . '/../lib/CalDAV/Reminder/INotificationProvider.php', |
|
72 | - 'OCA\\DAV\\CalDAV\\Reminder\\NotificationProviderManager' => $baseDir . '/../lib/CalDAV/Reminder/NotificationProviderManager.php', |
|
73 | - 'OCA\\DAV\\CalDAV\\Reminder\\NotificationProvider\\AbstractProvider' => $baseDir . '/../lib/CalDAV/Reminder/NotificationProvider/AbstractProvider.php', |
|
74 | - 'OCA\\DAV\\CalDAV\\Reminder\\NotificationProvider\\AudioProvider' => $baseDir . '/../lib/CalDAV/Reminder/NotificationProvider/AudioProvider.php', |
|
75 | - 'OCA\\DAV\\CalDAV\\Reminder\\NotificationProvider\\EmailProvider' => $baseDir . '/../lib/CalDAV/Reminder/NotificationProvider/EmailProvider.php', |
|
76 | - 'OCA\\DAV\\CalDAV\\Reminder\\NotificationProvider\\ProviderNotAvailableException' => $baseDir . '/../lib/CalDAV/Reminder/NotificationProvider/ProviderNotAvailableException.php', |
|
77 | - 'OCA\\DAV\\CalDAV\\Reminder\\NotificationProvider\\PushProvider' => $baseDir . '/../lib/CalDAV/Reminder/NotificationProvider/PushProvider.php', |
|
78 | - 'OCA\\DAV\\CalDAV\\Reminder\\NotificationTypeDoesNotExistException' => $baseDir . '/../lib/CalDAV/Reminder/NotificationTypeDoesNotExistException.php', |
|
79 | - 'OCA\\DAV\\CalDAV\\Reminder\\Notifier' => $baseDir . '/../lib/CalDAV/Reminder/Notifier.php', |
|
80 | - 'OCA\\DAV\\CalDAV\\Reminder\\ReminderService' => $baseDir . '/../lib/CalDAV/Reminder/ReminderService.php', |
|
81 | - 'OCA\\DAV\\CalDAV\\ResourceBooking\\AbstractPrincipalBackend' => $baseDir . '/../lib/CalDAV/ResourceBooking/AbstractPrincipalBackend.php', |
|
82 | - 'OCA\\DAV\\CalDAV\\ResourceBooking\\ResourcePrincipalBackend' => $baseDir . '/../lib/CalDAV/ResourceBooking/ResourcePrincipalBackend.php', |
|
83 | - 'OCA\\DAV\\CalDAV\\ResourceBooking\\RoomPrincipalBackend' => $baseDir . '/../lib/CalDAV/ResourceBooking/RoomPrincipalBackend.php', |
|
84 | - 'OCA\\DAV\\CalDAV\\RetentionService' => $baseDir . '/../lib/CalDAV/RetentionService.php', |
|
85 | - 'OCA\\DAV\\CalDAV\\Schedule\\IMipPlugin' => $baseDir . '/../lib/CalDAV/Schedule/IMipPlugin.php', |
|
86 | - 'OCA\\DAV\\CalDAV\\Schedule\\Plugin' => $baseDir . '/../lib/CalDAV/Schedule/Plugin.php', |
|
87 | - 'OCA\\DAV\\CalDAV\\Search\\SearchPlugin' => $baseDir . '/../lib/CalDAV/Search/SearchPlugin.php', |
|
88 | - 'OCA\\DAV\\CalDAV\\Search\\Xml\\Filter\\CompFilter' => $baseDir . '/../lib/CalDAV/Search/Xml/Filter/CompFilter.php', |
|
89 | - 'OCA\\DAV\\CalDAV\\Search\\Xml\\Filter\\LimitFilter' => $baseDir . '/../lib/CalDAV/Search/Xml/Filter/LimitFilter.php', |
|
90 | - 'OCA\\DAV\\CalDAV\\Search\\Xml\\Filter\\OffsetFilter' => $baseDir . '/../lib/CalDAV/Search/Xml/Filter/OffsetFilter.php', |
|
91 | - 'OCA\\DAV\\CalDAV\\Search\\Xml\\Filter\\ParamFilter' => $baseDir . '/../lib/CalDAV/Search/Xml/Filter/ParamFilter.php', |
|
92 | - 'OCA\\DAV\\CalDAV\\Search\\Xml\\Filter\\PropFilter' => $baseDir . '/../lib/CalDAV/Search/Xml/Filter/PropFilter.php', |
|
93 | - 'OCA\\DAV\\CalDAV\\Search\\Xml\\Filter\\SearchTermFilter' => $baseDir . '/../lib/CalDAV/Search/Xml/Filter/SearchTermFilter.php', |
|
94 | - 'OCA\\DAV\\CalDAV\\Search\\Xml\\Request\\CalendarSearchReport' => $baseDir . '/../lib/CalDAV/Search/Xml/Request/CalendarSearchReport.php', |
|
95 | - 'OCA\\DAV\\CalDAV\\Trashbin\\DeletedCalendarObject' => $baseDir . '/../lib/CalDAV/Trashbin/DeletedCalendarObject.php', |
|
96 | - 'OCA\\DAV\\CalDAV\\Trashbin\\DeletedCalendarObjectsCollection' => $baseDir . '/../lib/CalDAV/Trashbin/DeletedCalendarObjectsCollection.php', |
|
97 | - 'OCA\\DAV\\CalDAV\\Trashbin\\Plugin' => $baseDir . '/../lib/CalDAV/Trashbin/Plugin.php', |
|
98 | - 'OCA\\DAV\\CalDAV\\Trashbin\\RestoreTarget' => $baseDir . '/../lib/CalDAV/Trashbin/RestoreTarget.php', |
|
99 | - 'OCA\\DAV\\CalDAV\\Trashbin\\TrashbinHome' => $baseDir . '/../lib/CalDAV/Trashbin/TrashbinHome.php', |
|
100 | - 'OCA\\DAV\\CalDAV\\WebcalCaching\\Plugin' => $baseDir . '/../lib/CalDAV/WebcalCaching/Plugin.php', |
|
101 | - 'OCA\\DAV\\CalDAV\\WebcalCaching\\RefreshWebcalService' => $baseDir . '/../lib/CalDAV/WebcalCaching/RefreshWebcalService.php', |
|
102 | - 'OCA\\DAV\\Capabilities' => $baseDir . '/../lib/Capabilities.php', |
|
103 | - 'OCA\\DAV\\CardDAV\\Activity\\Backend' => $baseDir . '/../lib/CardDAV/Activity/Backend.php', |
|
104 | - 'OCA\\DAV\\CardDAV\\Activity\\Filter' => $baseDir . '/../lib/CardDAV/Activity/Filter.php', |
|
105 | - 'OCA\\DAV\\CardDAV\\Activity\\Provider\\Addressbook' => $baseDir . '/../lib/CardDAV/Activity/Provider/Addressbook.php', |
|
106 | - 'OCA\\DAV\\CardDAV\\Activity\\Provider\\Base' => $baseDir . '/../lib/CardDAV/Activity/Provider/Base.php', |
|
107 | - 'OCA\\DAV\\CardDAV\\Activity\\Provider\\Card' => $baseDir . '/../lib/CardDAV/Activity/Provider/Card.php', |
|
108 | - 'OCA\\DAV\\CardDAV\\Activity\\Setting' => $baseDir . '/../lib/CardDAV/Activity/Setting.php', |
|
109 | - 'OCA\\DAV\\CardDAV\\AddressBook' => $baseDir . '/../lib/CardDAV/AddressBook.php', |
|
110 | - 'OCA\\DAV\\CardDAV\\AddressBookImpl' => $baseDir . '/../lib/CardDAV/AddressBookImpl.php', |
|
111 | - 'OCA\\DAV\\CardDAV\\AddressBookRoot' => $baseDir . '/../lib/CardDAV/AddressBookRoot.php', |
|
112 | - 'OCA\\DAV\\CardDAV\\CardDavBackend' => $baseDir . '/../lib/CardDAV/CardDavBackend.php', |
|
113 | - 'OCA\\DAV\\CardDAV\\ContactsManager' => $baseDir . '/../lib/CardDAV/ContactsManager.php', |
|
114 | - 'OCA\\DAV\\CardDAV\\Converter' => $baseDir . '/../lib/CardDAV/Converter.php', |
|
115 | - 'OCA\\DAV\\CardDAV\\HasPhotoPlugin' => $baseDir . '/../lib/CardDAV/HasPhotoPlugin.php', |
|
116 | - 'OCA\\DAV\\CardDAV\\ImageExportPlugin' => $baseDir . '/../lib/CardDAV/ImageExportPlugin.php', |
|
117 | - 'OCA\\DAV\\CardDAV\\Integration\\ExternalAddressBook' => $baseDir . '/../lib/CardDAV/Integration/ExternalAddressBook.php', |
|
118 | - 'OCA\\DAV\\CardDAV\\Integration\\IAddressBookProvider' => $baseDir . '/../lib/CardDAV/Integration/IAddressBookProvider.php', |
|
119 | - 'OCA\\DAV\\CardDAV\\MultiGetExportPlugin' => $baseDir . '/../lib/CardDAV/MultiGetExportPlugin.php', |
|
120 | - 'OCA\\DAV\\CardDAV\\PhotoCache' => $baseDir . '/../lib/CardDAV/PhotoCache.php', |
|
121 | - 'OCA\\DAV\\CardDAV\\Plugin' => $baseDir . '/../lib/CardDAV/Plugin.php', |
|
122 | - 'OCA\\DAV\\CardDAV\\SyncService' => $baseDir . '/../lib/CardDAV/SyncService.php', |
|
123 | - 'OCA\\DAV\\CardDAV\\SystemAddressbook' => $baseDir . '/../lib/CardDAV/SystemAddressbook.php', |
|
124 | - 'OCA\\DAV\\CardDAV\\UserAddressBooks' => $baseDir . '/../lib/CardDAV/UserAddressBooks.php', |
|
125 | - 'OCA\\DAV\\CardDAV\\Xml\\Groups' => $baseDir . '/../lib/CardDAV/Xml/Groups.php', |
|
126 | - 'OCA\\DAV\\Command\\CreateAddressBook' => $baseDir . '/../lib/Command/CreateAddressBook.php', |
|
127 | - 'OCA\\DAV\\Command\\CreateCalendar' => $baseDir . '/../lib/Command/CreateCalendar.php', |
|
128 | - 'OCA\\DAV\\Command\\DeleteCalendar' => $baseDir . '/../lib/Command/DeleteCalendar.php', |
|
129 | - 'OCA\\DAV\\Command\\ListCalendars' => $baseDir . '/../lib/Command/ListCalendars.php', |
|
130 | - 'OCA\\DAV\\Command\\MoveCalendar' => $baseDir . '/../lib/Command/MoveCalendar.php', |
|
131 | - 'OCA\\DAV\\Command\\RemoveInvalidShares' => $baseDir . '/../lib/Command/RemoveInvalidShares.php', |
|
132 | - 'OCA\\DAV\\Command\\RetentionCleanupCommand' => $baseDir . '/../lib/Command/RetentionCleanupCommand.php', |
|
133 | - 'OCA\\DAV\\Command\\SendEventReminders' => $baseDir . '/../lib/Command/SendEventReminders.php', |
|
134 | - 'OCA\\DAV\\Command\\SyncBirthdayCalendar' => $baseDir . '/../lib/Command/SyncBirthdayCalendar.php', |
|
135 | - 'OCA\\DAV\\Command\\SyncSystemAddressBook' => $baseDir . '/../lib/Command/SyncSystemAddressBook.php', |
|
136 | - 'OCA\\DAV\\Comments\\CommentNode' => $baseDir . '/../lib/Comments/CommentNode.php', |
|
137 | - 'OCA\\DAV\\Comments\\CommentsPlugin' => $baseDir . '/../lib/Comments/CommentsPlugin.php', |
|
138 | - 'OCA\\DAV\\Comments\\EntityCollection' => $baseDir . '/../lib/Comments/EntityCollection.php', |
|
139 | - 'OCA\\DAV\\Comments\\EntityTypeCollection' => $baseDir . '/../lib/Comments/EntityTypeCollection.php', |
|
140 | - 'OCA\\DAV\\Comments\\RootCollection' => $baseDir . '/../lib/Comments/RootCollection.php', |
|
141 | - 'OCA\\DAV\\Connector\\LegacyDAVACL' => $baseDir . '/../lib/Connector/LegacyDAVACL.php', |
|
142 | - 'OCA\\DAV\\Connector\\PublicAuth' => $baseDir . '/../lib/Connector/PublicAuth.php', |
|
143 | - 'OCA\\DAV\\Connector\\Sabre\\AnonymousOptionsPlugin' => $baseDir . '/../lib/Connector/Sabre/AnonymousOptionsPlugin.php', |
|
144 | - 'OCA\\DAV\\Connector\\Sabre\\Auth' => $baseDir . '/../lib/Connector/Sabre/Auth.php', |
|
145 | - 'OCA\\DAV\\Connector\\Sabre\\BearerAuth' => $baseDir . '/../lib/Connector/Sabre/BearerAuth.php', |
|
146 | - 'OCA\\DAV\\Connector\\Sabre\\BlockLegacyClientPlugin' => $baseDir . '/../lib/Connector/Sabre/BlockLegacyClientPlugin.php', |
|
147 | - 'OCA\\DAV\\Connector\\Sabre\\CachingTree' => $baseDir . '/../lib/Connector/Sabre/CachingTree.php', |
|
148 | - 'OCA\\DAV\\Connector\\Sabre\\ChecksumList' => $baseDir . '/../lib/Connector/Sabre/ChecksumList.php', |
|
149 | - 'OCA\\DAV\\Connector\\Sabre\\ChecksumUpdatePlugin' => $baseDir . '/../lib/Connector/Sabre/ChecksumUpdatePlugin.php', |
|
150 | - 'OCA\\DAV\\Connector\\Sabre\\CommentPropertiesPlugin' => $baseDir . '/../lib/Connector/Sabre/CommentPropertiesPlugin.php', |
|
151 | - 'OCA\\DAV\\Connector\\Sabre\\CopyEtagHeaderPlugin' => $baseDir . '/../lib/Connector/Sabre/CopyEtagHeaderPlugin.php', |
|
152 | - 'OCA\\DAV\\Connector\\Sabre\\DavAclPlugin' => $baseDir . '/../lib/Connector/Sabre/DavAclPlugin.php', |
|
153 | - 'OCA\\DAV\\Connector\\Sabre\\Directory' => $baseDir . '/../lib/Connector/Sabre/Directory.php', |
|
154 | - 'OCA\\DAV\\Connector\\Sabre\\DummyGetResponsePlugin' => $baseDir . '/../lib/Connector/Sabre/DummyGetResponsePlugin.php', |
|
155 | - 'OCA\\DAV\\Connector\\Sabre\\ExceptionLoggerPlugin' => $baseDir . '/../lib/Connector/Sabre/ExceptionLoggerPlugin.php', |
|
156 | - 'OCA\\DAV\\Connector\\Sabre\\Exception\\BadGateway' => $baseDir . '/../lib/Connector/Sabre/Exception/BadGateway.php', |
|
157 | - 'OCA\\DAV\\Connector\\Sabre\\Exception\\EntityTooLarge' => $baseDir . '/../lib/Connector/Sabre/Exception/EntityTooLarge.php', |
|
158 | - 'OCA\\DAV\\Connector\\Sabre\\Exception\\FileLocked' => $baseDir . '/../lib/Connector/Sabre/Exception/FileLocked.php', |
|
159 | - 'OCA\\DAV\\Connector\\Sabre\\Exception\\Forbidden' => $baseDir . '/../lib/Connector/Sabre/Exception/Forbidden.php', |
|
160 | - 'OCA\\DAV\\Connector\\Sabre\\Exception\\InvalidPath' => $baseDir . '/../lib/Connector/Sabre/Exception/InvalidPath.php', |
|
161 | - 'OCA\\DAV\\Connector\\Sabre\\Exception\\PasswordLoginForbidden' => $baseDir . '/../lib/Connector/Sabre/Exception/PasswordLoginForbidden.php', |
|
162 | - 'OCA\\DAV\\Connector\\Sabre\\Exception\\UnsupportedMediaType' => $baseDir . '/../lib/Connector/Sabre/Exception/UnsupportedMediaType.php', |
|
163 | - 'OCA\\DAV\\Connector\\Sabre\\FakeLockerPlugin' => $baseDir . '/../lib/Connector/Sabre/FakeLockerPlugin.php', |
|
164 | - 'OCA\\DAV\\Connector\\Sabre\\File' => $baseDir . '/../lib/Connector/Sabre/File.php', |
|
165 | - 'OCA\\DAV\\Connector\\Sabre\\FilesPlugin' => $baseDir . '/../lib/Connector/Sabre/FilesPlugin.php', |
|
166 | - 'OCA\\DAV\\Connector\\Sabre\\FilesReportPlugin' => $baseDir . '/../lib/Connector/Sabre/FilesReportPlugin.php', |
|
167 | - 'OCA\\DAV\\Connector\\Sabre\\LockPlugin' => $baseDir . '/../lib/Connector/Sabre/LockPlugin.php', |
|
168 | - 'OCA\\DAV\\Connector\\Sabre\\MaintenancePlugin' => $baseDir . '/../lib/Connector/Sabre/MaintenancePlugin.php', |
|
169 | - 'OCA\\DAV\\Connector\\Sabre\\MtimeSanitizer' => $baseDir . '/../lib/Connector/Sabre/MtimeSanitizer.php', |
|
170 | - 'OCA\\DAV\\Connector\\Sabre\\Node' => $baseDir . '/../lib/Connector/Sabre/Node.php', |
|
171 | - 'OCA\\DAV\\Connector\\Sabre\\ObjectTree' => $baseDir . '/../lib/Connector/Sabre/ObjectTree.php', |
|
172 | - 'OCA\\DAV\\Connector\\Sabre\\Principal' => $baseDir . '/../lib/Connector/Sabre/Principal.php', |
|
173 | - 'OCA\\DAV\\Connector\\Sabre\\PropfindCompressionPlugin' => $baseDir . '/../lib/Connector/Sabre/PropfindCompressionPlugin.php', |
|
174 | - 'OCA\\DAV\\Connector\\Sabre\\QuotaPlugin' => $baseDir . '/../lib/Connector/Sabre/QuotaPlugin.php', |
|
175 | - 'OCA\\DAV\\Connector\\Sabre\\RequestIdHeaderPlugin' => $baseDir . '/../lib/Connector/Sabre/RequestIdHeaderPlugin.php', |
|
176 | - 'OCA\\DAV\\Connector\\Sabre\\Server' => $baseDir . '/../lib/Connector/Sabre/Server.php', |
|
177 | - 'OCA\\DAV\\Connector\\Sabre\\ServerFactory' => $baseDir . '/../lib/Connector/Sabre/ServerFactory.php', |
|
178 | - 'OCA\\DAV\\Connector\\Sabre\\ShareTypeList' => $baseDir . '/../lib/Connector/Sabre/ShareTypeList.php', |
|
179 | - 'OCA\\DAV\\Connector\\Sabre\\ShareeList' => $baseDir . '/../lib/Connector/Sabre/ShareeList.php', |
|
180 | - 'OCA\\DAV\\Connector\\Sabre\\SharesPlugin' => $baseDir . '/../lib/Connector/Sabre/SharesPlugin.php', |
|
181 | - 'OCA\\DAV\\Connector\\Sabre\\TagList' => $baseDir . '/../lib/Connector/Sabre/TagList.php', |
|
182 | - 'OCA\\DAV\\Connector\\Sabre\\TagsPlugin' => $baseDir . '/../lib/Connector/Sabre/TagsPlugin.php', |
|
183 | - 'OCA\\DAV\\Controller\\BirthdayCalendarController' => $baseDir . '/../lib/Controller/BirthdayCalendarController.php', |
|
184 | - 'OCA\\DAV\\Controller\\DirectController' => $baseDir . '/../lib/Controller/DirectController.php', |
|
185 | - 'OCA\\DAV\\Controller\\InvitationResponseController' => $baseDir . '/../lib/Controller/InvitationResponseController.php', |
|
186 | - 'OCA\\DAV\\DAV\\CustomPropertiesBackend' => $baseDir . '/../lib/DAV/CustomPropertiesBackend.php', |
|
187 | - 'OCA\\DAV\\DAV\\GroupPrincipalBackend' => $baseDir . '/../lib/DAV/GroupPrincipalBackend.php', |
|
188 | - 'OCA\\DAV\\DAV\\PublicAuth' => $baseDir . '/../lib/DAV/PublicAuth.php', |
|
189 | - 'OCA\\DAV\\DAV\\Sharing\\Backend' => $baseDir . '/../lib/DAV/Sharing/Backend.php', |
|
190 | - 'OCA\\DAV\\DAV\\Sharing\\IShareable' => $baseDir . '/../lib/DAV/Sharing/IShareable.php', |
|
191 | - 'OCA\\DAV\\DAV\\Sharing\\Plugin' => $baseDir . '/../lib/DAV/Sharing/Plugin.php', |
|
192 | - 'OCA\\DAV\\DAV\\Sharing\\Xml\\Invite' => $baseDir . '/../lib/DAV/Sharing/Xml/Invite.php', |
|
193 | - 'OCA\\DAV\\DAV\\Sharing\\Xml\\ShareRequest' => $baseDir . '/../lib/DAV/Sharing/Xml/ShareRequest.php', |
|
194 | - 'OCA\\DAV\\DAV\\SystemPrincipalBackend' => $baseDir . '/../lib/DAV/SystemPrincipalBackend.php', |
|
195 | - 'OCA\\DAV\\DAV\\ViewOnlyPlugin' => $baseDir . '/../lib/DAV/ViewOnlyPlugin.php', |
|
196 | - 'OCA\\DAV\\Db\\Direct' => $baseDir . '/../lib/Db/Direct.php', |
|
197 | - 'OCA\\DAV\\Db\\DirectMapper' => $baseDir . '/../lib/Db/DirectMapper.php', |
|
198 | - 'OCA\\DAV\\Direct\\DirectFile' => $baseDir . '/../lib/Direct/DirectFile.php', |
|
199 | - 'OCA\\DAV\\Direct\\DirectHome' => $baseDir . '/../lib/Direct/DirectHome.php', |
|
200 | - 'OCA\\DAV\\Direct\\Server' => $baseDir . '/../lib/Direct/Server.php', |
|
201 | - 'OCA\\DAV\\Direct\\ServerFactory' => $baseDir . '/../lib/Direct/ServerFactory.php', |
|
202 | - 'OCA\\DAV\\Events\\AddressBookCreatedEvent' => $baseDir . '/../lib/Events/AddressBookCreatedEvent.php', |
|
203 | - 'OCA\\DAV\\Events\\AddressBookDeletedEvent' => $baseDir . '/../lib/Events/AddressBookDeletedEvent.php', |
|
204 | - 'OCA\\DAV\\Events\\AddressBookShareUpdatedEvent' => $baseDir . '/../lib/Events/AddressBookShareUpdatedEvent.php', |
|
205 | - 'OCA\\DAV\\Events\\AddressBookUpdatedEvent' => $baseDir . '/../lib/Events/AddressBookUpdatedEvent.php', |
|
206 | - 'OCA\\DAV\\Events\\BeforeFileDirectDownloadedEvent' => $baseDir . '/../lib/Events/BeforeFileDirectDownloadedEvent.php', |
|
207 | - 'OCA\\DAV\\Events\\CachedCalendarObjectCreatedEvent' => $baseDir . '/../lib/Events/CachedCalendarObjectCreatedEvent.php', |
|
208 | - 'OCA\\DAV\\Events\\CachedCalendarObjectDeletedEvent' => $baseDir . '/../lib/Events/CachedCalendarObjectDeletedEvent.php', |
|
209 | - 'OCA\\DAV\\Events\\CachedCalendarObjectUpdatedEvent' => $baseDir . '/../lib/Events/CachedCalendarObjectUpdatedEvent.php', |
|
210 | - 'OCA\\DAV\\Events\\CalendarCreatedEvent' => $baseDir . '/../lib/Events/CalendarCreatedEvent.php', |
|
211 | - 'OCA\\DAV\\Events\\CalendarDeletedEvent' => $baseDir . '/../lib/Events/CalendarDeletedEvent.php', |
|
212 | - 'OCA\\DAV\\Events\\CalendarMovedToTrashEvent' => $baseDir . '/../lib/Events/CalendarMovedToTrashEvent.php', |
|
213 | - 'OCA\\DAV\\Events\\CalendarObjectCreatedEvent' => $baseDir . '/../lib/Events/CalendarObjectCreatedEvent.php', |
|
214 | - 'OCA\\DAV\\Events\\CalendarObjectDeletedEvent' => $baseDir . '/../lib/Events/CalendarObjectDeletedEvent.php', |
|
215 | - 'OCA\\DAV\\Events\\CalendarObjectMovedEvent' => $baseDir . '/../lib/Events/CalendarObjectMovedEvent.php', |
|
216 | - 'OCA\\DAV\\Events\\CalendarObjectMovedToTrashEvent' => $baseDir . '/../lib/Events/CalendarObjectMovedToTrashEvent.php', |
|
217 | - 'OCA\\DAV\\Events\\CalendarObjectRestoredEvent' => $baseDir . '/../lib/Events/CalendarObjectRestoredEvent.php', |
|
218 | - 'OCA\\DAV\\Events\\CalendarObjectUpdatedEvent' => $baseDir . '/../lib/Events/CalendarObjectUpdatedEvent.php', |
|
219 | - 'OCA\\DAV\\Events\\CalendarPublishedEvent' => $baseDir . '/../lib/Events/CalendarPublishedEvent.php', |
|
220 | - 'OCA\\DAV\\Events\\CalendarRestoredEvent' => $baseDir . '/../lib/Events/CalendarRestoredEvent.php', |
|
221 | - 'OCA\\DAV\\Events\\CalendarShareUpdatedEvent' => $baseDir . '/../lib/Events/CalendarShareUpdatedEvent.php', |
|
222 | - 'OCA\\DAV\\Events\\CalendarUnpublishedEvent' => $baseDir . '/../lib/Events/CalendarUnpublishedEvent.php', |
|
223 | - 'OCA\\DAV\\Events\\CalendarUpdatedEvent' => $baseDir . '/../lib/Events/CalendarUpdatedEvent.php', |
|
224 | - 'OCA\\DAV\\Events\\CardCreatedEvent' => $baseDir . '/../lib/Events/CardCreatedEvent.php', |
|
225 | - 'OCA\\DAV\\Events\\CardDeletedEvent' => $baseDir . '/../lib/Events/CardDeletedEvent.php', |
|
226 | - 'OCA\\DAV\\Events\\CardUpdatedEvent' => $baseDir . '/../lib/Events/CardUpdatedEvent.php', |
|
227 | - 'OCA\\DAV\\Events\\SabrePluginAuthInitEvent' => $baseDir . '/../lib/Events/SabrePluginAuthInitEvent.php', |
|
228 | - 'OCA\\DAV\\Events\\SubscriptionCreatedEvent' => $baseDir . '/../lib/Events/SubscriptionCreatedEvent.php', |
|
229 | - 'OCA\\DAV\\Events\\SubscriptionDeletedEvent' => $baseDir . '/../lib/Events/SubscriptionDeletedEvent.php', |
|
230 | - 'OCA\\DAV\\Events\\SubscriptionUpdatedEvent' => $baseDir . '/../lib/Events/SubscriptionUpdatedEvent.php', |
|
231 | - 'OCA\\DAV\\Exception\\ServerMaintenanceMode' => $baseDir . '/../lib/Exception/ServerMaintenanceMode.php', |
|
232 | - 'OCA\\DAV\\Exception\\UnsupportedLimitOnInitialSyncException' => $baseDir . '/../lib/Exception/UnsupportedLimitOnInitialSyncException.php', |
|
233 | - 'OCA\\DAV\\Files\\BrowserErrorPagePlugin' => $baseDir . '/../lib/Files/BrowserErrorPagePlugin.php', |
|
234 | - 'OCA\\DAV\\Files\\FileSearchBackend' => $baseDir . '/../lib/Files/FileSearchBackend.php', |
|
235 | - 'OCA\\DAV\\Files\\FilesHome' => $baseDir . '/../lib/Files/FilesHome.php', |
|
236 | - 'OCA\\DAV\\Files\\LazySearchBackend' => $baseDir . '/../lib/Files/LazySearchBackend.php', |
|
237 | - 'OCA\\DAV\\Files\\RootCollection' => $baseDir . '/../lib/Files/RootCollection.php', |
|
238 | - 'OCA\\DAV\\Files\\Sharing\\FilesDropPlugin' => $baseDir . '/../lib/Files/Sharing/FilesDropPlugin.php', |
|
239 | - 'OCA\\DAV\\Files\\Sharing\\PublicLinkCheckPlugin' => $baseDir . '/../lib/Files/Sharing/PublicLinkCheckPlugin.php', |
|
240 | - 'OCA\\DAV\\HookManager' => $baseDir . '/../lib/HookManager.php', |
|
241 | - 'OCA\\DAV\\Listener\\ActivityUpdaterListener' => $baseDir . '/../lib/Listener/ActivityUpdaterListener.php', |
|
242 | - 'OCA\\DAV\\Listener\\AddressbookListener' => $baseDir . '/../lib/Listener/AddressbookListener.php', |
|
243 | - 'OCA\\DAV\\Listener\\BirthdayListener' => $baseDir . '/../lib/Listener/BirthdayListener.php', |
|
244 | - 'OCA\\DAV\\Listener\\CalendarContactInteractionListener' => $baseDir . '/../lib/Listener/CalendarContactInteractionListener.php', |
|
245 | - 'OCA\\DAV\\Listener\\CalendarDeletionDefaultUpdaterListener' => $baseDir . '/../lib/Listener/CalendarDeletionDefaultUpdaterListener.php', |
|
246 | - 'OCA\\DAV\\Listener\\CalendarObjectReminderUpdaterListener' => $baseDir . '/../lib/Listener/CalendarObjectReminderUpdaterListener.php', |
|
247 | - 'OCA\\DAV\\Listener\\CalendarPublicationListener' => $baseDir . '/../lib/Listener/CalendarPublicationListener.php', |
|
248 | - 'OCA\\DAV\\Listener\\CalendarShareUpdateListener' => $baseDir . '/../lib/Listener/CalendarShareUpdateListener.php', |
|
249 | - 'OCA\\DAV\\Listener\\CardListener' => $baseDir . '/../lib/Listener/CardListener.php', |
|
250 | - 'OCA\\DAV\\Listener\\ClearPhotoCacheListener' => $baseDir . '/../lib/Listener/ClearPhotoCacheListener.php', |
|
251 | - 'OCA\\DAV\\Listener\\SubscriptionListener' => $baseDir . '/../lib/Listener/SubscriptionListener.php', |
|
252 | - 'OCA\\DAV\\Listener\\TrustedServerRemovedListener' => $baseDir . '/../lib/Listener/TrustedServerRemovedListener.php', |
|
253 | - 'OCA\\DAV\\Listener\\UserPreferenceListener' => $baseDir . '/../lib/Listener/UserPreferenceListener.php', |
|
254 | - 'OCA\\DAV\\Migration\\BuildCalendarSearchIndex' => $baseDir . '/../lib/Migration/BuildCalendarSearchIndex.php', |
|
255 | - 'OCA\\DAV\\Migration\\BuildCalendarSearchIndexBackgroundJob' => $baseDir . '/../lib/Migration/BuildCalendarSearchIndexBackgroundJob.php', |
|
256 | - 'OCA\\DAV\\Migration\\BuildSocialSearchIndex' => $baseDir . '/../lib/Migration/BuildSocialSearchIndex.php', |
|
257 | - 'OCA\\DAV\\Migration\\BuildSocialSearchIndexBackgroundJob' => $baseDir . '/../lib/Migration/BuildSocialSearchIndexBackgroundJob.php', |
|
258 | - 'OCA\\DAV\\Migration\\CalDAVRemoveEmptyValue' => $baseDir . '/../lib/Migration/CalDAVRemoveEmptyValue.php', |
|
259 | - 'OCA\\DAV\\Migration\\ChunkCleanup' => $baseDir . '/../lib/Migration/ChunkCleanup.php', |
|
260 | - 'OCA\\DAV\\Migration\\FixBirthdayCalendarComponent' => $baseDir . '/../lib/Migration/FixBirthdayCalendarComponent.php', |
|
261 | - 'OCA\\DAV\\Migration\\RefreshWebcalJobRegistrar' => $baseDir . '/../lib/Migration/RefreshWebcalJobRegistrar.php', |
|
262 | - 'OCA\\DAV\\Migration\\RegenerateBirthdayCalendars' => $baseDir . '/../lib/Migration/RegenerateBirthdayCalendars.php', |
|
263 | - 'OCA\\DAV\\Migration\\RegisterBuildReminderIndexBackgroundJob' => $baseDir . '/../lib/Migration/RegisterBuildReminderIndexBackgroundJob.php', |
|
264 | - 'OCA\\DAV\\Migration\\RemoveClassifiedEventActivity' => $baseDir . '/../lib/Migration/RemoveClassifiedEventActivity.php', |
|
265 | - 'OCA\\DAV\\Migration\\RemoveDeletedUsersCalendarSubscriptions' => $baseDir . '/../lib/Migration/RemoveDeletedUsersCalendarSubscriptions.php', |
|
266 | - 'OCA\\DAV\\Migration\\RemoveObjectProperties' => $baseDir . '/../lib/Migration/RemoveObjectProperties.php', |
|
267 | - 'OCA\\DAV\\Migration\\RemoveOrphanEventsAndContacts' => $baseDir . '/../lib/Migration/RemoveOrphanEventsAndContacts.php', |
|
268 | - 'OCA\\DAV\\Migration\\Version1004Date20170825134824' => $baseDir . '/../lib/Migration/Version1004Date20170825134824.php', |
|
269 | - 'OCA\\DAV\\Migration\\Version1004Date20170919104507' => $baseDir . '/../lib/Migration/Version1004Date20170919104507.php', |
|
270 | - 'OCA\\DAV\\Migration\\Version1004Date20170924124212' => $baseDir . '/../lib/Migration/Version1004Date20170924124212.php', |
|
271 | - 'OCA\\DAV\\Migration\\Version1004Date20170926103422' => $baseDir . '/../lib/Migration/Version1004Date20170926103422.php', |
|
272 | - 'OCA\\DAV\\Migration\\Version1005Date20180413093149' => $baseDir . '/../lib/Migration/Version1005Date20180413093149.php', |
|
273 | - 'OCA\\DAV\\Migration\\Version1005Date20180530124431' => $baseDir . '/../lib/Migration/Version1005Date20180530124431.php', |
|
274 | - 'OCA\\DAV\\Migration\\Version1006Date20180619154313' => $baseDir . '/../lib/Migration/Version1006Date20180619154313.php', |
|
275 | - 'OCA\\DAV\\Migration\\Version1006Date20180628111625' => $baseDir . '/../lib/Migration/Version1006Date20180628111625.php', |
|
276 | - 'OCA\\DAV\\Migration\\Version1008Date20181030113700' => $baseDir . '/../lib/Migration/Version1008Date20181030113700.php', |
|
277 | - 'OCA\\DAV\\Migration\\Version1008Date20181105104826' => $baseDir . '/../lib/Migration/Version1008Date20181105104826.php', |
|
278 | - 'OCA\\DAV\\Migration\\Version1008Date20181105104833' => $baseDir . '/../lib/Migration/Version1008Date20181105104833.php', |
|
279 | - 'OCA\\DAV\\Migration\\Version1008Date20181105110300' => $baseDir . '/../lib/Migration/Version1008Date20181105110300.php', |
|
280 | - 'OCA\\DAV\\Migration\\Version1008Date20181105112049' => $baseDir . '/../lib/Migration/Version1008Date20181105112049.php', |
|
281 | - 'OCA\\DAV\\Migration\\Version1008Date20181114084440' => $baseDir . '/../lib/Migration/Version1008Date20181114084440.php', |
|
282 | - 'OCA\\DAV\\Migration\\Version1011Date20190725113607' => $baseDir . '/../lib/Migration/Version1011Date20190725113607.php', |
|
283 | - 'OCA\\DAV\\Migration\\Version1011Date20190806104428' => $baseDir . '/../lib/Migration/Version1011Date20190806104428.php', |
|
284 | - 'OCA\\DAV\\Migration\\Version1012Date20190808122342' => $baseDir . '/../lib/Migration/Version1012Date20190808122342.php', |
|
285 | - 'OCA\\DAV\\Migration\\Version1016Date20201109085907' => $baseDir . '/../lib/Migration/Version1016Date20201109085907.php', |
|
286 | - 'OCA\\DAV\\Migration\\Version1017Date20210216083742' => $baseDir . '/../lib/Migration/Version1017Date20210216083742.php', |
|
287 | - 'OCA\\DAV\\Migration\\Version1018Date20210312100735' => $baseDir . '/../lib/Migration/Version1018Date20210312100735.php', |
|
288 | - 'OCA\\DAV\\Migration\\Version1024Date20211221144219' => $baseDir . '/../lib/Migration/Version1024Date20211221144219.php', |
|
289 | - 'OCA\\DAV\\Profiler\\ProfilerPlugin' => $baseDir . '/../lib/Profiler/ProfilerPlugin.php', |
|
290 | - 'OCA\\DAV\\Provisioning\\Apple\\AppleProvisioningNode' => $baseDir . '/../lib/Provisioning/Apple/AppleProvisioningNode.php', |
|
291 | - 'OCA\\DAV\\Provisioning\\Apple\\AppleProvisioningPlugin' => $baseDir . '/../lib/Provisioning/Apple/AppleProvisioningPlugin.php', |
|
292 | - 'OCA\\DAV\\RootCollection' => $baseDir . '/../lib/RootCollection.php', |
|
293 | - 'OCA\\DAV\\Search\\ACalendarSearchProvider' => $baseDir . '/../lib/Search/ACalendarSearchProvider.php', |
|
294 | - 'OCA\\DAV\\Search\\ContactsSearchProvider' => $baseDir . '/../lib/Search/ContactsSearchProvider.php', |
|
295 | - 'OCA\\DAV\\Search\\EventsSearchProvider' => $baseDir . '/../lib/Search/EventsSearchProvider.php', |
|
296 | - 'OCA\\DAV\\Search\\TasksSearchProvider' => $baseDir . '/../lib/Search/TasksSearchProvider.php', |
|
297 | - 'OCA\\DAV\\Server' => $baseDir . '/../lib/Server.php', |
|
298 | - 'OCA\\DAV\\Settings\\AvailabilitySettings' => $baseDir . '/../lib/Settings/AvailabilitySettings.php', |
|
299 | - 'OCA\\DAV\\Settings\\CalDAVSettings' => $baseDir . '/../lib/Settings/CalDAVSettings.php', |
|
300 | - 'OCA\\DAV\\Storage\\PublicOwnerWrapper' => $baseDir . '/../lib/Storage/PublicOwnerWrapper.php', |
|
301 | - 'OCA\\DAV\\SystemTag\\SystemTagMappingNode' => $baseDir . '/../lib/SystemTag/SystemTagMappingNode.php', |
|
302 | - 'OCA\\DAV\\SystemTag\\SystemTagNode' => $baseDir . '/../lib/SystemTag/SystemTagNode.php', |
|
303 | - 'OCA\\DAV\\SystemTag\\SystemTagPlugin' => $baseDir . '/../lib/SystemTag/SystemTagPlugin.php', |
|
304 | - 'OCA\\DAV\\SystemTag\\SystemTagsByIdCollection' => $baseDir . '/../lib/SystemTag/SystemTagsByIdCollection.php', |
|
305 | - 'OCA\\DAV\\SystemTag\\SystemTagsObjectMappingCollection' => $baseDir . '/../lib/SystemTag/SystemTagsObjectMappingCollection.php', |
|
306 | - 'OCA\\DAV\\SystemTag\\SystemTagsObjectTypeCollection' => $baseDir . '/../lib/SystemTag/SystemTagsObjectTypeCollection.php', |
|
307 | - 'OCA\\DAV\\SystemTag\\SystemTagsRelationsCollection' => $baseDir . '/../lib/SystemTag/SystemTagsRelationsCollection.php', |
|
308 | - 'OCA\\DAV\\Traits\\PrincipalProxyTrait' => $baseDir . '/../lib/Traits/PrincipalProxyTrait.php', |
|
309 | - 'OCA\\DAV\\Upload\\AssemblyStream' => $baseDir . '/../lib/Upload/AssemblyStream.php', |
|
310 | - 'OCA\\DAV\\Upload\\ChunkingPlugin' => $baseDir . '/../lib/Upload/ChunkingPlugin.php', |
|
311 | - 'OCA\\DAV\\Upload\\CleanupService' => $baseDir . '/../lib/Upload/CleanupService.php', |
|
312 | - 'OCA\\DAV\\Upload\\FutureFile' => $baseDir . '/../lib/Upload/FutureFile.php', |
|
313 | - 'OCA\\DAV\\Upload\\RootCollection' => $baseDir . '/../lib/Upload/RootCollection.php', |
|
314 | - 'OCA\\DAV\\Upload\\UploadFile' => $baseDir . '/../lib/Upload/UploadFile.php', |
|
315 | - 'OCA\\DAV\\Upload\\UploadFolder' => $baseDir . '/../lib/Upload/UploadFolder.php', |
|
316 | - 'OCA\\DAV\\Upload\\UploadHome' => $baseDir . '/../lib/Upload/UploadHome.php', |
|
317 | - 'OCA\\DAV\\UserMigration\\CalendarMigrator' => $baseDir . '/../lib/UserMigration/CalendarMigrator.php', |
|
318 | - 'OCA\\DAV\\UserMigration\\CalendarMigratorException' => $baseDir . '/../lib/UserMigration/CalendarMigratorException.php', |
|
319 | - 'OCA\\DAV\\UserMigration\\ContactsMigrator' => $baseDir . '/../lib/UserMigration/ContactsMigrator.php', |
|
320 | - 'OCA\\DAV\\UserMigration\\ContactsMigratorException' => $baseDir . '/../lib/UserMigration/ContactsMigratorException.php', |
|
321 | - 'OCA\\DAV\\UserMigration\\InvalidAddressBookException' => $baseDir . '/../lib/UserMigration/InvalidAddressBookException.php', |
|
322 | - 'OCA\\DAV\\UserMigration\\InvalidCalendarException' => $baseDir . '/../lib/UserMigration/InvalidCalendarException.php', |
|
9 | + 'Composer\\InstalledVersions' => $vendorDir.'/composer/InstalledVersions.php', |
|
10 | + 'OCA\\DAV\\AppInfo\\Application' => $baseDir.'/../lib/AppInfo/Application.php', |
|
11 | + 'OCA\\DAV\\AppInfo\\PluginManager' => $baseDir.'/../lib/AppInfo/PluginManager.php', |
|
12 | + 'OCA\\DAV\\Avatars\\AvatarHome' => $baseDir.'/../lib/Avatars/AvatarHome.php', |
|
13 | + 'OCA\\DAV\\Avatars\\AvatarNode' => $baseDir.'/../lib/Avatars/AvatarNode.php', |
|
14 | + 'OCA\\DAV\\Avatars\\RootCollection' => $baseDir.'/../lib/Avatars/RootCollection.php', |
|
15 | + 'OCA\\DAV\\BackgroundJob\\BuildReminderIndexBackgroundJob' => $baseDir.'/../lib/BackgroundJob/BuildReminderIndexBackgroundJob.php', |
|
16 | + 'OCA\\DAV\\BackgroundJob\\CalendarRetentionJob' => $baseDir.'/../lib/BackgroundJob/CalendarRetentionJob.php', |
|
17 | + 'OCA\\DAV\\BackgroundJob\\CleanupDirectLinksJob' => $baseDir.'/../lib/BackgroundJob/CleanupDirectLinksJob.php', |
|
18 | + 'OCA\\DAV\\BackgroundJob\\CleanupInvitationTokenJob' => $baseDir.'/../lib/BackgroundJob/CleanupInvitationTokenJob.php', |
|
19 | + 'OCA\\DAV\\BackgroundJob\\EventReminderJob' => $baseDir.'/../lib/BackgroundJob/EventReminderJob.php', |
|
20 | + 'OCA\\DAV\\BackgroundJob\\GenerateBirthdayCalendarBackgroundJob' => $baseDir.'/../lib/BackgroundJob/GenerateBirthdayCalendarBackgroundJob.php', |
|
21 | + 'OCA\\DAV\\BackgroundJob\\PruneOutdatedSyncTokensJob' => $baseDir.'/../lib/BackgroundJob/PruneOutdatedSyncTokensJob.php', |
|
22 | + 'OCA\\DAV\\BackgroundJob\\RefreshWebcalJob' => $baseDir.'/../lib/BackgroundJob/RefreshWebcalJob.php', |
|
23 | + 'OCA\\DAV\\BackgroundJob\\RegisterRegenerateBirthdayCalendars' => $baseDir.'/../lib/BackgroundJob/RegisterRegenerateBirthdayCalendars.php', |
|
24 | + 'OCA\\DAV\\BackgroundJob\\UpdateCalendarResourcesRoomsBackgroundJob' => $baseDir.'/../lib/BackgroundJob/UpdateCalendarResourcesRoomsBackgroundJob.php', |
|
25 | + 'OCA\\DAV\\BackgroundJob\\UploadCleanup' => $baseDir.'/../lib/BackgroundJob/UploadCleanup.php', |
|
26 | + 'OCA\\DAV\\BackgroundJob\\UserStatusAutomation' => $baseDir.'/../lib/BackgroundJob/UserStatusAutomation.php', |
|
27 | + 'OCA\\DAV\\BulkUpload\\BulkUploadPlugin' => $baseDir.'/../lib/BulkUpload/BulkUploadPlugin.php', |
|
28 | + 'OCA\\DAV\\BulkUpload\\MultipartRequestParser' => $baseDir.'/../lib/BulkUpload/MultipartRequestParser.php', |
|
29 | + 'OCA\\DAV\\CalDAV\\Activity\\Backend' => $baseDir.'/../lib/CalDAV/Activity/Backend.php', |
|
30 | + 'OCA\\DAV\\CalDAV\\Activity\\Filter\\Calendar' => $baseDir.'/../lib/CalDAV/Activity/Filter/Calendar.php', |
|
31 | + 'OCA\\DAV\\CalDAV\\Activity\\Filter\\Todo' => $baseDir.'/../lib/CalDAV/Activity/Filter/Todo.php', |
|
32 | + 'OCA\\DAV\\CalDAV\\Activity\\Provider\\Base' => $baseDir.'/../lib/CalDAV/Activity/Provider/Base.php', |
|
33 | + 'OCA\\DAV\\CalDAV\\Activity\\Provider\\Calendar' => $baseDir.'/../lib/CalDAV/Activity/Provider/Calendar.php', |
|
34 | + 'OCA\\DAV\\CalDAV\\Activity\\Provider\\Event' => $baseDir.'/../lib/CalDAV/Activity/Provider/Event.php', |
|
35 | + 'OCA\\DAV\\CalDAV\\Activity\\Provider\\Todo' => $baseDir.'/../lib/CalDAV/Activity/Provider/Todo.php', |
|
36 | + 'OCA\\DAV\\CalDAV\\Activity\\Setting\\CalDAVSetting' => $baseDir.'/../lib/CalDAV/Activity/Setting/CalDAVSetting.php', |
|
37 | + 'OCA\\DAV\\CalDAV\\Activity\\Setting\\Calendar' => $baseDir.'/../lib/CalDAV/Activity/Setting/Calendar.php', |
|
38 | + 'OCA\\DAV\\CalDAV\\Activity\\Setting\\Event' => $baseDir.'/../lib/CalDAV/Activity/Setting/Event.php', |
|
39 | + 'OCA\\DAV\\CalDAV\\Activity\\Setting\\Todo' => $baseDir.'/../lib/CalDAV/Activity/Setting/Todo.php', |
|
40 | + 'OCA\\DAV\\CalDAV\\Auth\\CustomPrincipalPlugin' => $baseDir.'/../lib/CalDAV/Auth/CustomPrincipalPlugin.php', |
|
41 | + 'OCA\\DAV\\CalDAV\\Auth\\PublicPrincipalPlugin' => $baseDir.'/../lib/CalDAV/Auth/PublicPrincipalPlugin.php', |
|
42 | + 'OCA\\DAV\\CalDAV\\BirthdayCalendar\\EnablePlugin' => $baseDir.'/../lib/CalDAV/BirthdayCalendar/EnablePlugin.php', |
|
43 | + 'OCA\\DAV\\CalDAV\\BirthdayService' => $baseDir.'/../lib/CalDAV/BirthdayService.php', |
|
44 | + 'OCA\\DAV\\CalDAV\\CachedSubscription' => $baseDir.'/../lib/CalDAV/CachedSubscription.php', |
|
45 | + 'OCA\\DAV\\CalDAV\\CachedSubscriptionObject' => $baseDir.'/../lib/CalDAV/CachedSubscriptionObject.php', |
|
46 | + 'OCA\\DAV\\CalDAV\\CalDavBackend' => $baseDir.'/../lib/CalDAV/CalDavBackend.php', |
|
47 | + 'OCA\\DAV\\CalDAV\\Calendar' => $baseDir.'/../lib/CalDAV/Calendar.php', |
|
48 | + 'OCA\\DAV\\CalDAV\\CalendarHome' => $baseDir.'/../lib/CalDAV/CalendarHome.php', |
|
49 | + 'OCA\\DAV\\CalDAV\\CalendarImpl' => $baseDir.'/../lib/CalDAV/CalendarImpl.php', |
|
50 | + 'OCA\\DAV\\CalDAV\\CalendarManager' => $baseDir.'/../lib/CalDAV/CalendarManager.php', |
|
51 | + 'OCA\\DAV\\CalDAV\\CalendarObject' => $baseDir.'/../lib/CalDAV/CalendarObject.php', |
|
52 | + 'OCA\\DAV\\CalDAV\\CalendarProvider' => $baseDir.'/../lib/CalDAV/CalendarProvider.php', |
|
53 | + 'OCA\\DAV\\CalDAV\\CalendarRoot' => $baseDir.'/../lib/CalDAV/CalendarRoot.php', |
|
54 | + 'OCA\\DAV\\CalDAV\\ICSExportPlugin\\ICSExportPlugin' => $baseDir.'/../lib/CalDAV/ICSExportPlugin/ICSExportPlugin.php', |
|
55 | + 'OCA\\DAV\\CalDAV\\IRestorable' => $baseDir.'/../lib/CalDAV/IRestorable.php', |
|
56 | + 'OCA\\DAV\\CalDAV\\Integration\\ExternalCalendar' => $baseDir.'/../lib/CalDAV/Integration/ExternalCalendar.php', |
|
57 | + 'OCA\\DAV\\CalDAV\\Integration\\ICalendarProvider' => $baseDir.'/../lib/CalDAV/Integration/ICalendarProvider.php', |
|
58 | + 'OCA\\DAV\\CalDAV\\InvitationResponse\\InvitationResponseServer' => $baseDir.'/../lib/CalDAV/InvitationResponse/InvitationResponseServer.php', |
|
59 | + 'OCA\\DAV\\CalDAV\\Outbox' => $baseDir.'/../lib/CalDAV/Outbox.php', |
|
60 | + 'OCA\\DAV\\CalDAV\\Plugin' => $baseDir.'/../lib/CalDAV/Plugin.php', |
|
61 | + 'OCA\\DAV\\CalDAV\\Principal\\Collection' => $baseDir.'/../lib/CalDAV/Principal/Collection.php', |
|
62 | + 'OCA\\DAV\\CalDAV\\Principal\\User' => $baseDir.'/../lib/CalDAV/Principal/User.php', |
|
63 | + 'OCA\\DAV\\CalDAV\\Proxy\\Proxy' => $baseDir.'/../lib/CalDAV/Proxy/Proxy.php', |
|
64 | + 'OCA\\DAV\\CalDAV\\Proxy\\ProxyMapper' => $baseDir.'/../lib/CalDAV/Proxy/ProxyMapper.php', |
|
65 | + 'OCA\\DAV\\CalDAV\\PublicCalendar' => $baseDir.'/../lib/CalDAV/PublicCalendar.php', |
|
66 | + 'OCA\\DAV\\CalDAV\\PublicCalendarObject' => $baseDir.'/../lib/CalDAV/PublicCalendarObject.php', |
|
67 | + 'OCA\\DAV\\CalDAV\\PublicCalendarRoot' => $baseDir.'/../lib/CalDAV/PublicCalendarRoot.php', |
|
68 | + 'OCA\\DAV\\CalDAV\\Publishing\\PublishPlugin' => $baseDir.'/../lib/CalDAV/Publishing/PublishPlugin.php', |
|
69 | + 'OCA\\DAV\\CalDAV\\Publishing\\Xml\\Publisher' => $baseDir.'/../lib/CalDAV/Publishing/Xml/Publisher.php', |
|
70 | + 'OCA\\DAV\\CalDAV\\Reminder\\Backend' => $baseDir.'/../lib/CalDAV/Reminder/Backend.php', |
|
71 | + 'OCA\\DAV\\CalDAV\\Reminder\\INotificationProvider' => $baseDir.'/../lib/CalDAV/Reminder/INotificationProvider.php', |
|
72 | + 'OCA\\DAV\\CalDAV\\Reminder\\NotificationProviderManager' => $baseDir.'/../lib/CalDAV/Reminder/NotificationProviderManager.php', |
|
73 | + 'OCA\\DAV\\CalDAV\\Reminder\\NotificationProvider\\AbstractProvider' => $baseDir.'/../lib/CalDAV/Reminder/NotificationProvider/AbstractProvider.php', |
|
74 | + 'OCA\\DAV\\CalDAV\\Reminder\\NotificationProvider\\AudioProvider' => $baseDir.'/../lib/CalDAV/Reminder/NotificationProvider/AudioProvider.php', |
|
75 | + 'OCA\\DAV\\CalDAV\\Reminder\\NotificationProvider\\EmailProvider' => $baseDir.'/../lib/CalDAV/Reminder/NotificationProvider/EmailProvider.php', |
|
76 | + 'OCA\\DAV\\CalDAV\\Reminder\\NotificationProvider\\ProviderNotAvailableException' => $baseDir.'/../lib/CalDAV/Reminder/NotificationProvider/ProviderNotAvailableException.php', |
|
77 | + 'OCA\\DAV\\CalDAV\\Reminder\\NotificationProvider\\PushProvider' => $baseDir.'/../lib/CalDAV/Reminder/NotificationProvider/PushProvider.php', |
|
78 | + 'OCA\\DAV\\CalDAV\\Reminder\\NotificationTypeDoesNotExistException' => $baseDir.'/../lib/CalDAV/Reminder/NotificationTypeDoesNotExistException.php', |
|
79 | + 'OCA\\DAV\\CalDAV\\Reminder\\Notifier' => $baseDir.'/../lib/CalDAV/Reminder/Notifier.php', |
|
80 | + 'OCA\\DAV\\CalDAV\\Reminder\\ReminderService' => $baseDir.'/../lib/CalDAV/Reminder/ReminderService.php', |
|
81 | + 'OCA\\DAV\\CalDAV\\ResourceBooking\\AbstractPrincipalBackend' => $baseDir.'/../lib/CalDAV/ResourceBooking/AbstractPrincipalBackend.php', |
|
82 | + 'OCA\\DAV\\CalDAV\\ResourceBooking\\ResourcePrincipalBackend' => $baseDir.'/../lib/CalDAV/ResourceBooking/ResourcePrincipalBackend.php', |
|
83 | + 'OCA\\DAV\\CalDAV\\ResourceBooking\\RoomPrincipalBackend' => $baseDir.'/../lib/CalDAV/ResourceBooking/RoomPrincipalBackend.php', |
|
84 | + 'OCA\\DAV\\CalDAV\\RetentionService' => $baseDir.'/../lib/CalDAV/RetentionService.php', |
|
85 | + 'OCA\\DAV\\CalDAV\\Schedule\\IMipPlugin' => $baseDir.'/../lib/CalDAV/Schedule/IMipPlugin.php', |
|
86 | + 'OCA\\DAV\\CalDAV\\Schedule\\Plugin' => $baseDir.'/../lib/CalDAV/Schedule/Plugin.php', |
|
87 | + 'OCA\\DAV\\CalDAV\\Search\\SearchPlugin' => $baseDir.'/../lib/CalDAV/Search/SearchPlugin.php', |
|
88 | + 'OCA\\DAV\\CalDAV\\Search\\Xml\\Filter\\CompFilter' => $baseDir.'/../lib/CalDAV/Search/Xml/Filter/CompFilter.php', |
|
89 | + 'OCA\\DAV\\CalDAV\\Search\\Xml\\Filter\\LimitFilter' => $baseDir.'/../lib/CalDAV/Search/Xml/Filter/LimitFilter.php', |
|
90 | + 'OCA\\DAV\\CalDAV\\Search\\Xml\\Filter\\OffsetFilter' => $baseDir.'/../lib/CalDAV/Search/Xml/Filter/OffsetFilter.php', |
|
91 | + 'OCA\\DAV\\CalDAV\\Search\\Xml\\Filter\\ParamFilter' => $baseDir.'/../lib/CalDAV/Search/Xml/Filter/ParamFilter.php', |
|
92 | + 'OCA\\DAV\\CalDAV\\Search\\Xml\\Filter\\PropFilter' => $baseDir.'/../lib/CalDAV/Search/Xml/Filter/PropFilter.php', |
|
93 | + 'OCA\\DAV\\CalDAV\\Search\\Xml\\Filter\\SearchTermFilter' => $baseDir.'/../lib/CalDAV/Search/Xml/Filter/SearchTermFilter.php', |
|
94 | + 'OCA\\DAV\\CalDAV\\Search\\Xml\\Request\\CalendarSearchReport' => $baseDir.'/../lib/CalDAV/Search/Xml/Request/CalendarSearchReport.php', |
|
95 | + 'OCA\\DAV\\CalDAV\\Trashbin\\DeletedCalendarObject' => $baseDir.'/../lib/CalDAV/Trashbin/DeletedCalendarObject.php', |
|
96 | + 'OCA\\DAV\\CalDAV\\Trashbin\\DeletedCalendarObjectsCollection' => $baseDir.'/../lib/CalDAV/Trashbin/DeletedCalendarObjectsCollection.php', |
|
97 | + 'OCA\\DAV\\CalDAV\\Trashbin\\Plugin' => $baseDir.'/../lib/CalDAV/Trashbin/Plugin.php', |
|
98 | + 'OCA\\DAV\\CalDAV\\Trashbin\\RestoreTarget' => $baseDir.'/../lib/CalDAV/Trashbin/RestoreTarget.php', |
|
99 | + 'OCA\\DAV\\CalDAV\\Trashbin\\TrashbinHome' => $baseDir.'/../lib/CalDAV/Trashbin/TrashbinHome.php', |
|
100 | + 'OCA\\DAV\\CalDAV\\WebcalCaching\\Plugin' => $baseDir.'/../lib/CalDAV/WebcalCaching/Plugin.php', |
|
101 | + 'OCA\\DAV\\CalDAV\\WebcalCaching\\RefreshWebcalService' => $baseDir.'/../lib/CalDAV/WebcalCaching/RefreshWebcalService.php', |
|
102 | + 'OCA\\DAV\\Capabilities' => $baseDir.'/../lib/Capabilities.php', |
|
103 | + 'OCA\\DAV\\CardDAV\\Activity\\Backend' => $baseDir.'/../lib/CardDAV/Activity/Backend.php', |
|
104 | + 'OCA\\DAV\\CardDAV\\Activity\\Filter' => $baseDir.'/../lib/CardDAV/Activity/Filter.php', |
|
105 | + 'OCA\\DAV\\CardDAV\\Activity\\Provider\\Addressbook' => $baseDir.'/../lib/CardDAV/Activity/Provider/Addressbook.php', |
|
106 | + 'OCA\\DAV\\CardDAV\\Activity\\Provider\\Base' => $baseDir.'/../lib/CardDAV/Activity/Provider/Base.php', |
|
107 | + 'OCA\\DAV\\CardDAV\\Activity\\Provider\\Card' => $baseDir.'/../lib/CardDAV/Activity/Provider/Card.php', |
|
108 | + 'OCA\\DAV\\CardDAV\\Activity\\Setting' => $baseDir.'/../lib/CardDAV/Activity/Setting.php', |
|
109 | + 'OCA\\DAV\\CardDAV\\AddressBook' => $baseDir.'/../lib/CardDAV/AddressBook.php', |
|
110 | + 'OCA\\DAV\\CardDAV\\AddressBookImpl' => $baseDir.'/../lib/CardDAV/AddressBookImpl.php', |
|
111 | + 'OCA\\DAV\\CardDAV\\AddressBookRoot' => $baseDir.'/../lib/CardDAV/AddressBookRoot.php', |
|
112 | + 'OCA\\DAV\\CardDAV\\CardDavBackend' => $baseDir.'/../lib/CardDAV/CardDavBackend.php', |
|
113 | + 'OCA\\DAV\\CardDAV\\ContactsManager' => $baseDir.'/../lib/CardDAV/ContactsManager.php', |
|
114 | + 'OCA\\DAV\\CardDAV\\Converter' => $baseDir.'/../lib/CardDAV/Converter.php', |
|
115 | + 'OCA\\DAV\\CardDAV\\HasPhotoPlugin' => $baseDir.'/../lib/CardDAV/HasPhotoPlugin.php', |
|
116 | + 'OCA\\DAV\\CardDAV\\ImageExportPlugin' => $baseDir.'/../lib/CardDAV/ImageExportPlugin.php', |
|
117 | + 'OCA\\DAV\\CardDAV\\Integration\\ExternalAddressBook' => $baseDir.'/../lib/CardDAV/Integration/ExternalAddressBook.php', |
|
118 | + 'OCA\\DAV\\CardDAV\\Integration\\IAddressBookProvider' => $baseDir.'/../lib/CardDAV/Integration/IAddressBookProvider.php', |
|
119 | + 'OCA\\DAV\\CardDAV\\MultiGetExportPlugin' => $baseDir.'/../lib/CardDAV/MultiGetExportPlugin.php', |
|
120 | + 'OCA\\DAV\\CardDAV\\PhotoCache' => $baseDir.'/../lib/CardDAV/PhotoCache.php', |
|
121 | + 'OCA\\DAV\\CardDAV\\Plugin' => $baseDir.'/../lib/CardDAV/Plugin.php', |
|
122 | + 'OCA\\DAV\\CardDAV\\SyncService' => $baseDir.'/../lib/CardDAV/SyncService.php', |
|
123 | + 'OCA\\DAV\\CardDAV\\SystemAddressbook' => $baseDir.'/../lib/CardDAV/SystemAddressbook.php', |
|
124 | + 'OCA\\DAV\\CardDAV\\UserAddressBooks' => $baseDir.'/../lib/CardDAV/UserAddressBooks.php', |
|
125 | + 'OCA\\DAV\\CardDAV\\Xml\\Groups' => $baseDir.'/../lib/CardDAV/Xml/Groups.php', |
|
126 | + 'OCA\\DAV\\Command\\CreateAddressBook' => $baseDir.'/../lib/Command/CreateAddressBook.php', |
|
127 | + 'OCA\\DAV\\Command\\CreateCalendar' => $baseDir.'/../lib/Command/CreateCalendar.php', |
|
128 | + 'OCA\\DAV\\Command\\DeleteCalendar' => $baseDir.'/../lib/Command/DeleteCalendar.php', |
|
129 | + 'OCA\\DAV\\Command\\ListCalendars' => $baseDir.'/../lib/Command/ListCalendars.php', |
|
130 | + 'OCA\\DAV\\Command\\MoveCalendar' => $baseDir.'/../lib/Command/MoveCalendar.php', |
|
131 | + 'OCA\\DAV\\Command\\RemoveInvalidShares' => $baseDir.'/../lib/Command/RemoveInvalidShares.php', |
|
132 | + 'OCA\\DAV\\Command\\RetentionCleanupCommand' => $baseDir.'/../lib/Command/RetentionCleanupCommand.php', |
|
133 | + 'OCA\\DAV\\Command\\SendEventReminders' => $baseDir.'/../lib/Command/SendEventReminders.php', |
|
134 | + 'OCA\\DAV\\Command\\SyncBirthdayCalendar' => $baseDir.'/../lib/Command/SyncBirthdayCalendar.php', |
|
135 | + 'OCA\\DAV\\Command\\SyncSystemAddressBook' => $baseDir.'/../lib/Command/SyncSystemAddressBook.php', |
|
136 | + 'OCA\\DAV\\Comments\\CommentNode' => $baseDir.'/../lib/Comments/CommentNode.php', |
|
137 | + 'OCA\\DAV\\Comments\\CommentsPlugin' => $baseDir.'/../lib/Comments/CommentsPlugin.php', |
|
138 | + 'OCA\\DAV\\Comments\\EntityCollection' => $baseDir.'/../lib/Comments/EntityCollection.php', |
|
139 | + 'OCA\\DAV\\Comments\\EntityTypeCollection' => $baseDir.'/../lib/Comments/EntityTypeCollection.php', |
|
140 | + 'OCA\\DAV\\Comments\\RootCollection' => $baseDir.'/../lib/Comments/RootCollection.php', |
|
141 | + 'OCA\\DAV\\Connector\\LegacyDAVACL' => $baseDir.'/../lib/Connector/LegacyDAVACL.php', |
|
142 | + 'OCA\\DAV\\Connector\\PublicAuth' => $baseDir.'/../lib/Connector/PublicAuth.php', |
|
143 | + 'OCA\\DAV\\Connector\\Sabre\\AnonymousOptionsPlugin' => $baseDir.'/../lib/Connector/Sabre/AnonymousOptionsPlugin.php', |
|
144 | + 'OCA\\DAV\\Connector\\Sabre\\Auth' => $baseDir.'/../lib/Connector/Sabre/Auth.php', |
|
145 | + 'OCA\\DAV\\Connector\\Sabre\\BearerAuth' => $baseDir.'/../lib/Connector/Sabre/BearerAuth.php', |
|
146 | + 'OCA\\DAV\\Connector\\Sabre\\BlockLegacyClientPlugin' => $baseDir.'/../lib/Connector/Sabre/BlockLegacyClientPlugin.php', |
|
147 | + 'OCA\\DAV\\Connector\\Sabre\\CachingTree' => $baseDir.'/../lib/Connector/Sabre/CachingTree.php', |
|
148 | + 'OCA\\DAV\\Connector\\Sabre\\ChecksumList' => $baseDir.'/../lib/Connector/Sabre/ChecksumList.php', |
|
149 | + 'OCA\\DAV\\Connector\\Sabre\\ChecksumUpdatePlugin' => $baseDir.'/../lib/Connector/Sabre/ChecksumUpdatePlugin.php', |
|
150 | + 'OCA\\DAV\\Connector\\Sabre\\CommentPropertiesPlugin' => $baseDir.'/../lib/Connector/Sabre/CommentPropertiesPlugin.php', |
|
151 | + 'OCA\\DAV\\Connector\\Sabre\\CopyEtagHeaderPlugin' => $baseDir.'/../lib/Connector/Sabre/CopyEtagHeaderPlugin.php', |
|
152 | + 'OCA\\DAV\\Connector\\Sabre\\DavAclPlugin' => $baseDir.'/../lib/Connector/Sabre/DavAclPlugin.php', |
|
153 | + 'OCA\\DAV\\Connector\\Sabre\\Directory' => $baseDir.'/../lib/Connector/Sabre/Directory.php', |
|
154 | + 'OCA\\DAV\\Connector\\Sabre\\DummyGetResponsePlugin' => $baseDir.'/../lib/Connector/Sabre/DummyGetResponsePlugin.php', |
|
155 | + 'OCA\\DAV\\Connector\\Sabre\\ExceptionLoggerPlugin' => $baseDir.'/../lib/Connector/Sabre/ExceptionLoggerPlugin.php', |
|
156 | + 'OCA\\DAV\\Connector\\Sabre\\Exception\\BadGateway' => $baseDir.'/../lib/Connector/Sabre/Exception/BadGateway.php', |
|
157 | + 'OCA\\DAV\\Connector\\Sabre\\Exception\\EntityTooLarge' => $baseDir.'/../lib/Connector/Sabre/Exception/EntityTooLarge.php', |
|
158 | + 'OCA\\DAV\\Connector\\Sabre\\Exception\\FileLocked' => $baseDir.'/../lib/Connector/Sabre/Exception/FileLocked.php', |
|
159 | + 'OCA\\DAV\\Connector\\Sabre\\Exception\\Forbidden' => $baseDir.'/../lib/Connector/Sabre/Exception/Forbidden.php', |
|
160 | + 'OCA\\DAV\\Connector\\Sabre\\Exception\\InvalidPath' => $baseDir.'/../lib/Connector/Sabre/Exception/InvalidPath.php', |
|
161 | + 'OCA\\DAV\\Connector\\Sabre\\Exception\\PasswordLoginForbidden' => $baseDir.'/../lib/Connector/Sabre/Exception/PasswordLoginForbidden.php', |
|
162 | + 'OCA\\DAV\\Connector\\Sabre\\Exception\\UnsupportedMediaType' => $baseDir.'/../lib/Connector/Sabre/Exception/UnsupportedMediaType.php', |
|
163 | + 'OCA\\DAV\\Connector\\Sabre\\FakeLockerPlugin' => $baseDir.'/../lib/Connector/Sabre/FakeLockerPlugin.php', |
|
164 | + 'OCA\\DAV\\Connector\\Sabre\\File' => $baseDir.'/../lib/Connector/Sabre/File.php', |
|
165 | + 'OCA\\DAV\\Connector\\Sabre\\FilesPlugin' => $baseDir.'/../lib/Connector/Sabre/FilesPlugin.php', |
|
166 | + 'OCA\\DAV\\Connector\\Sabre\\FilesReportPlugin' => $baseDir.'/../lib/Connector/Sabre/FilesReportPlugin.php', |
|
167 | + 'OCA\\DAV\\Connector\\Sabre\\LockPlugin' => $baseDir.'/../lib/Connector/Sabre/LockPlugin.php', |
|
168 | + 'OCA\\DAV\\Connector\\Sabre\\MaintenancePlugin' => $baseDir.'/../lib/Connector/Sabre/MaintenancePlugin.php', |
|
169 | + 'OCA\\DAV\\Connector\\Sabre\\MtimeSanitizer' => $baseDir.'/../lib/Connector/Sabre/MtimeSanitizer.php', |
|
170 | + 'OCA\\DAV\\Connector\\Sabre\\Node' => $baseDir.'/../lib/Connector/Sabre/Node.php', |
|
171 | + 'OCA\\DAV\\Connector\\Sabre\\ObjectTree' => $baseDir.'/../lib/Connector/Sabre/ObjectTree.php', |
|
172 | + 'OCA\\DAV\\Connector\\Sabre\\Principal' => $baseDir.'/../lib/Connector/Sabre/Principal.php', |
|
173 | + 'OCA\\DAV\\Connector\\Sabre\\PropfindCompressionPlugin' => $baseDir.'/../lib/Connector/Sabre/PropfindCompressionPlugin.php', |
|
174 | + 'OCA\\DAV\\Connector\\Sabre\\QuotaPlugin' => $baseDir.'/../lib/Connector/Sabre/QuotaPlugin.php', |
|
175 | + 'OCA\\DAV\\Connector\\Sabre\\RequestIdHeaderPlugin' => $baseDir.'/../lib/Connector/Sabre/RequestIdHeaderPlugin.php', |
|
176 | + 'OCA\\DAV\\Connector\\Sabre\\Server' => $baseDir.'/../lib/Connector/Sabre/Server.php', |
|
177 | + 'OCA\\DAV\\Connector\\Sabre\\ServerFactory' => $baseDir.'/../lib/Connector/Sabre/ServerFactory.php', |
|
178 | + 'OCA\\DAV\\Connector\\Sabre\\ShareTypeList' => $baseDir.'/../lib/Connector/Sabre/ShareTypeList.php', |
|
179 | + 'OCA\\DAV\\Connector\\Sabre\\ShareeList' => $baseDir.'/../lib/Connector/Sabre/ShareeList.php', |
|
180 | + 'OCA\\DAV\\Connector\\Sabre\\SharesPlugin' => $baseDir.'/../lib/Connector/Sabre/SharesPlugin.php', |
|
181 | + 'OCA\\DAV\\Connector\\Sabre\\TagList' => $baseDir.'/../lib/Connector/Sabre/TagList.php', |
|
182 | + 'OCA\\DAV\\Connector\\Sabre\\TagsPlugin' => $baseDir.'/../lib/Connector/Sabre/TagsPlugin.php', |
|
183 | + 'OCA\\DAV\\Controller\\BirthdayCalendarController' => $baseDir.'/../lib/Controller/BirthdayCalendarController.php', |
|
184 | + 'OCA\\DAV\\Controller\\DirectController' => $baseDir.'/../lib/Controller/DirectController.php', |
|
185 | + 'OCA\\DAV\\Controller\\InvitationResponseController' => $baseDir.'/../lib/Controller/InvitationResponseController.php', |
|
186 | + 'OCA\\DAV\\DAV\\CustomPropertiesBackend' => $baseDir.'/../lib/DAV/CustomPropertiesBackend.php', |
|
187 | + 'OCA\\DAV\\DAV\\GroupPrincipalBackend' => $baseDir.'/../lib/DAV/GroupPrincipalBackend.php', |
|
188 | + 'OCA\\DAV\\DAV\\PublicAuth' => $baseDir.'/../lib/DAV/PublicAuth.php', |
|
189 | + 'OCA\\DAV\\DAV\\Sharing\\Backend' => $baseDir.'/../lib/DAV/Sharing/Backend.php', |
|
190 | + 'OCA\\DAV\\DAV\\Sharing\\IShareable' => $baseDir.'/../lib/DAV/Sharing/IShareable.php', |
|
191 | + 'OCA\\DAV\\DAV\\Sharing\\Plugin' => $baseDir.'/../lib/DAV/Sharing/Plugin.php', |
|
192 | + 'OCA\\DAV\\DAV\\Sharing\\Xml\\Invite' => $baseDir.'/../lib/DAV/Sharing/Xml/Invite.php', |
|
193 | + 'OCA\\DAV\\DAV\\Sharing\\Xml\\ShareRequest' => $baseDir.'/../lib/DAV/Sharing/Xml/ShareRequest.php', |
|
194 | + 'OCA\\DAV\\DAV\\SystemPrincipalBackend' => $baseDir.'/../lib/DAV/SystemPrincipalBackend.php', |
|
195 | + 'OCA\\DAV\\DAV\\ViewOnlyPlugin' => $baseDir.'/../lib/DAV/ViewOnlyPlugin.php', |
|
196 | + 'OCA\\DAV\\Db\\Direct' => $baseDir.'/../lib/Db/Direct.php', |
|
197 | + 'OCA\\DAV\\Db\\DirectMapper' => $baseDir.'/../lib/Db/DirectMapper.php', |
|
198 | + 'OCA\\DAV\\Direct\\DirectFile' => $baseDir.'/../lib/Direct/DirectFile.php', |
|
199 | + 'OCA\\DAV\\Direct\\DirectHome' => $baseDir.'/../lib/Direct/DirectHome.php', |
|
200 | + 'OCA\\DAV\\Direct\\Server' => $baseDir.'/../lib/Direct/Server.php', |
|
201 | + 'OCA\\DAV\\Direct\\ServerFactory' => $baseDir.'/../lib/Direct/ServerFactory.php', |
|
202 | + 'OCA\\DAV\\Events\\AddressBookCreatedEvent' => $baseDir.'/../lib/Events/AddressBookCreatedEvent.php', |
|
203 | + 'OCA\\DAV\\Events\\AddressBookDeletedEvent' => $baseDir.'/../lib/Events/AddressBookDeletedEvent.php', |
|
204 | + 'OCA\\DAV\\Events\\AddressBookShareUpdatedEvent' => $baseDir.'/../lib/Events/AddressBookShareUpdatedEvent.php', |
|
205 | + 'OCA\\DAV\\Events\\AddressBookUpdatedEvent' => $baseDir.'/../lib/Events/AddressBookUpdatedEvent.php', |
|
206 | + 'OCA\\DAV\\Events\\BeforeFileDirectDownloadedEvent' => $baseDir.'/../lib/Events/BeforeFileDirectDownloadedEvent.php', |
|
207 | + 'OCA\\DAV\\Events\\CachedCalendarObjectCreatedEvent' => $baseDir.'/../lib/Events/CachedCalendarObjectCreatedEvent.php', |
|
208 | + 'OCA\\DAV\\Events\\CachedCalendarObjectDeletedEvent' => $baseDir.'/../lib/Events/CachedCalendarObjectDeletedEvent.php', |
|
209 | + 'OCA\\DAV\\Events\\CachedCalendarObjectUpdatedEvent' => $baseDir.'/../lib/Events/CachedCalendarObjectUpdatedEvent.php', |
|
210 | + 'OCA\\DAV\\Events\\CalendarCreatedEvent' => $baseDir.'/../lib/Events/CalendarCreatedEvent.php', |
|
211 | + 'OCA\\DAV\\Events\\CalendarDeletedEvent' => $baseDir.'/../lib/Events/CalendarDeletedEvent.php', |
|
212 | + 'OCA\\DAV\\Events\\CalendarMovedToTrashEvent' => $baseDir.'/../lib/Events/CalendarMovedToTrashEvent.php', |
|
213 | + 'OCA\\DAV\\Events\\CalendarObjectCreatedEvent' => $baseDir.'/../lib/Events/CalendarObjectCreatedEvent.php', |
|
214 | + 'OCA\\DAV\\Events\\CalendarObjectDeletedEvent' => $baseDir.'/../lib/Events/CalendarObjectDeletedEvent.php', |
|
215 | + 'OCA\\DAV\\Events\\CalendarObjectMovedEvent' => $baseDir.'/../lib/Events/CalendarObjectMovedEvent.php', |
|
216 | + 'OCA\\DAV\\Events\\CalendarObjectMovedToTrashEvent' => $baseDir.'/../lib/Events/CalendarObjectMovedToTrashEvent.php', |
|
217 | + 'OCA\\DAV\\Events\\CalendarObjectRestoredEvent' => $baseDir.'/../lib/Events/CalendarObjectRestoredEvent.php', |
|
218 | + 'OCA\\DAV\\Events\\CalendarObjectUpdatedEvent' => $baseDir.'/../lib/Events/CalendarObjectUpdatedEvent.php', |
|
219 | + 'OCA\\DAV\\Events\\CalendarPublishedEvent' => $baseDir.'/../lib/Events/CalendarPublishedEvent.php', |
|
220 | + 'OCA\\DAV\\Events\\CalendarRestoredEvent' => $baseDir.'/../lib/Events/CalendarRestoredEvent.php', |
|
221 | + 'OCA\\DAV\\Events\\CalendarShareUpdatedEvent' => $baseDir.'/../lib/Events/CalendarShareUpdatedEvent.php', |
|
222 | + 'OCA\\DAV\\Events\\CalendarUnpublishedEvent' => $baseDir.'/../lib/Events/CalendarUnpublishedEvent.php', |
|
223 | + 'OCA\\DAV\\Events\\CalendarUpdatedEvent' => $baseDir.'/../lib/Events/CalendarUpdatedEvent.php', |
|
224 | + 'OCA\\DAV\\Events\\CardCreatedEvent' => $baseDir.'/../lib/Events/CardCreatedEvent.php', |
|
225 | + 'OCA\\DAV\\Events\\CardDeletedEvent' => $baseDir.'/../lib/Events/CardDeletedEvent.php', |
|
226 | + 'OCA\\DAV\\Events\\CardUpdatedEvent' => $baseDir.'/../lib/Events/CardUpdatedEvent.php', |
|
227 | + 'OCA\\DAV\\Events\\SabrePluginAuthInitEvent' => $baseDir.'/../lib/Events/SabrePluginAuthInitEvent.php', |
|
228 | + 'OCA\\DAV\\Events\\SubscriptionCreatedEvent' => $baseDir.'/../lib/Events/SubscriptionCreatedEvent.php', |
|
229 | + 'OCA\\DAV\\Events\\SubscriptionDeletedEvent' => $baseDir.'/../lib/Events/SubscriptionDeletedEvent.php', |
|
230 | + 'OCA\\DAV\\Events\\SubscriptionUpdatedEvent' => $baseDir.'/../lib/Events/SubscriptionUpdatedEvent.php', |
|
231 | + 'OCA\\DAV\\Exception\\ServerMaintenanceMode' => $baseDir.'/../lib/Exception/ServerMaintenanceMode.php', |
|
232 | + 'OCA\\DAV\\Exception\\UnsupportedLimitOnInitialSyncException' => $baseDir.'/../lib/Exception/UnsupportedLimitOnInitialSyncException.php', |
|
233 | + 'OCA\\DAV\\Files\\BrowserErrorPagePlugin' => $baseDir.'/../lib/Files/BrowserErrorPagePlugin.php', |
|
234 | + 'OCA\\DAV\\Files\\FileSearchBackend' => $baseDir.'/../lib/Files/FileSearchBackend.php', |
|
235 | + 'OCA\\DAV\\Files\\FilesHome' => $baseDir.'/../lib/Files/FilesHome.php', |
|
236 | + 'OCA\\DAV\\Files\\LazySearchBackend' => $baseDir.'/../lib/Files/LazySearchBackend.php', |
|
237 | + 'OCA\\DAV\\Files\\RootCollection' => $baseDir.'/../lib/Files/RootCollection.php', |
|
238 | + 'OCA\\DAV\\Files\\Sharing\\FilesDropPlugin' => $baseDir.'/../lib/Files/Sharing/FilesDropPlugin.php', |
|
239 | + 'OCA\\DAV\\Files\\Sharing\\PublicLinkCheckPlugin' => $baseDir.'/../lib/Files/Sharing/PublicLinkCheckPlugin.php', |
|
240 | + 'OCA\\DAV\\HookManager' => $baseDir.'/../lib/HookManager.php', |
|
241 | + 'OCA\\DAV\\Listener\\ActivityUpdaterListener' => $baseDir.'/../lib/Listener/ActivityUpdaterListener.php', |
|
242 | + 'OCA\\DAV\\Listener\\AddressbookListener' => $baseDir.'/../lib/Listener/AddressbookListener.php', |
|
243 | + 'OCA\\DAV\\Listener\\BirthdayListener' => $baseDir.'/../lib/Listener/BirthdayListener.php', |
|
244 | + 'OCA\\DAV\\Listener\\CalendarContactInteractionListener' => $baseDir.'/../lib/Listener/CalendarContactInteractionListener.php', |
|
245 | + 'OCA\\DAV\\Listener\\CalendarDeletionDefaultUpdaterListener' => $baseDir.'/../lib/Listener/CalendarDeletionDefaultUpdaterListener.php', |
|
246 | + 'OCA\\DAV\\Listener\\CalendarObjectReminderUpdaterListener' => $baseDir.'/../lib/Listener/CalendarObjectReminderUpdaterListener.php', |
|
247 | + 'OCA\\DAV\\Listener\\CalendarPublicationListener' => $baseDir.'/../lib/Listener/CalendarPublicationListener.php', |
|
248 | + 'OCA\\DAV\\Listener\\CalendarShareUpdateListener' => $baseDir.'/../lib/Listener/CalendarShareUpdateListener.php', |
|
249 | + 'OCA\\DAV\\Listener\\CardListener' => $baseDir.'/../lib/Listener/CardListener.php', |
|
250 | + 'OCA\\DAV\\Listener\\ClearPhotoCacheListener' => $baseDir.'/../lib/Listener/ClearPhotoCacheListener.php', |
|
251 | + 'OCA\\DAV\\Listener\\SubscriptionListener' => $baseDir.'/../lib/Listener/SubscriptionListener.php', |
|
252 | + 'OCA\\DAV\\Listener\\TrustedServerRemovedListener' => $baseDir.'/../lib/Listener/TrustedServerRemovedListener.php', |
|
253 | + 'OCA\\DAV\\Listener\\UserPreferenceListener' => $baseDir.'/../lib/Listener/UserPreferenceListener.php', |
|
254 | + 'OCA\\DAV\\Migration\\BuildCalendarSearchIndex' => $baseDir.'/../lib/Migration/BuildCalendarSearchIndex.php', |
|
255 | + 'OCA\\DAV\\Migration\\BuildCalendarSearchIndexBackgroundJob' => $baseDir.'/../lib/Migration/BuildCalendarSearchIndexBackgroundJob.php', |
|
256 | + 'OCA\\DAV\\Migration\\BuildSocialSearchIndex' => $baseDir.'/../lib/Migration/BuildSocialSearchIndex.php', |
|
257 | + 'OCA\\DAV\\Migration\\BuildSocialSearchIndexBackgroundJob' => $baseDir.'/../lib/Migration/BuildSocialSearchIndexBackgroundJob.php', |
|
258 | + 'OCA\\DAV\\Migration\\CalDAVRemoveEmptyValue' => $baseDir.'/../lib/Migration/CalDAVRemoveEmptyValue.php', |
|
259 | + 'OCA\\DAV\\Migration\\ChunkCleanup' => $baseDir.'/../lib/Migration/ChunkCleanup.php', |
|
260 | + 'OCA\\DAV\\Migration\\FixBirthdayCalendarComponent' => $baseDir.'/../lib/Migration/FixBirthdayCalendarComponent.php', |
|
261 | + 'OCA\\DAV\\Migration\\RefreshWebcalJobRegistrar' => $baseDir.'/../lib/Migration/RefreshWebcalJobRegistrar.php', |
|
262 | + 'OCA\\DAV\\Migration\\RegenerateBirthdayCalendars' => $baseDir.'/../lib/Migration/RegenerateBirthdayCalendars.php', |
|
263 | + 'OCA\\DAV\\Migration\\RegisterBuildReminderIndexBackgroundJob' => $baseDir.'/../lib/Migration/RegisterBuildReminderIndexBackgroundJob.php', |
|
264 | + 'OCA\\DAV\\Migration\\RemoveClassifiedEventActivity' => $baseDir.'/../lib/Migration/RemoveClassifiedEventActivity.php', |
|
265 | + 'OCA\\DAV\\Migration\\RemoveDeletedUsersCalendarSubscriptions' => $baseDir.'/../lib/Migration/RemoveDeletedUsersCalendarSubscriptions.php', |
|
266 | + 'OCA\\DAV\\Migration\\RemoveObjectProperties' => $baseDir.'/../lib/Migration/RemoveObjectProperties.php', |
|
267 | + 'OCA\\DAV\\Migration\\RemoveOrphanEventsAndContacts' => $baseDir.'/../lib/Migration/RemoveOrphanEventsAndContacts.php', |
|
268 | + 'OCA\\DAV\\Migration\\Version1004Date20170825134824' => $baseDir.'/../lib/Migration/Version1004Date20170825134824.php', |
|
269 | + 'OCA\\DAV\\Migration\\Version1004Date20170919104507' => $baseDir.'/../lib/Migration/Version1004Date20170919104507.php', |
|
270 | + 'OCA\\DAV\\Migration\\Version1004Date20170924124212' => $baseDir.'/../lib/Migration/Version1004Date20170924124212.php', |
|
271 | + 'OCA\\DAV\\Migration\\Version1004Date20170926103422' => $baseDir.'/../lib/Migration/Version1004Date20170926103422.php', |
|
272 | + 'OCA\\DAV\\Migration\\Version1005Date20180413093149' => $baseDir.'/../lib/Migration/Version1005Date20180413093149.php', |
|
273 | + 'OCA\\DAV\\Migration\\Version1005Date20180530124431' => $baseDir.'/../lib/Migration/Version1005Date20180530124431.php', |
|
274 | + 'OCA\\DAV\\Migration\\Version1006Date20180619154313' => $baseDir.'/../lib/Migration/Version1006Date20180619154313.php', |
|
275 | + 'OCA\\DAV\\Migration\\Version1006Date20180628111625' => $baseDir.'/../lib/Migration/Version1006Date20180628111625.php', |
|
276 | + 'OCA\\DAV\\Migration\\Version1008Date20181030113700' => $baseDir.'/../lib/Migration/Version1008Date20181030113700.php', |
|
277 | + 'OCA\\DAV\\Migration\\Version1008Date20181105104826' => $baseDir.'/../lib/Migration/Version1008Date20181105104826.php', |
|
278 | + 'OCA\\DAV\\Migration\\Version1008Date20181105104833' => $baseDir.'/../lib/Migration/Version1008Date20181105104833.php', |
|
279 | + 'OCA\\DAV\\Migration\\Version1008Date20181105110300' => $baseDir.'/../lib/Migration/Version1008Date20181105110300.php', |
|
280 | + 'OCA\\DAV\\Migration\\Version1008Date20181105112049' => $baseDir.'/../lib/Migration/Version1008Date20181105112049.php', |
|
281 | + 'OCA\\DAV\\Migration\\Version1008Date20181114084440' => $baseDir.'/../lib/Migration/Version1008Date20181114084440.php', |
|
282 | + 'OCA\\DAV\\Migration\\Version1011Date20190725113607' => $baseDir.'/../lib/Migration/Version1011Date20190725113607.php', |
|
283 | + 'OCA\\DAV\\Migration\\Version1011Date20190806104428' => $baseDir.'/../lib/Migration/Version1011Date20190806104428.php', |
|
284 | + 'OCA\\DAV\\Migration\\Version1012Date20190808122342' => $baseDir.'/../lib/Migration/Version1012Date20190808122342.php', |
|
285 | + 'OCA\\DAV\\Migration\\Version1016Date20201109085907' => $baseDir.'/../lib/Migration/Version1016Date20201109085907.php', |
|
286 | + 'OCA\\DAV\\Migration\\Version1017Date20210216083742' => $baseDir.'/../lib/Migration/Version1017Date20210216083742.php', |
|
287 | + 'OCA\\DAV\\Migration\\Version1018Date20210312100735' => $baseDir.'/../lib/Migration/Version1018Date20210312100735.php', |
|
288 | + 'OCA\\DAV\\Migration\\Version1024Date20211221144219' => $baseDir.'/../lib/Migration/Version1024Date20211221144219.php', |
|
289 | + 'OCA\\DAV\\Profiler\\ProfilerPlugin' => $baseDir.'/../lib/Profiler/ProfilerPlugin.php', |
|
290 | + 'OCA\\DAV\\Provisioning\\Apple\\AppleProvisioningNode' => $baseDir.'/../lib/Provisioning/Apple/AppleProvisioningNode.php', |
|
291 | + 'OCA\\DAV\\Provisioning\\Apple\\AppleProvisioningPlugin' => $baseDir.'/../lib/Provisioning/Apple/AppleProvisioningPlugin.php', |
|
292 | + 'OCA\\DAV\\RootCollection' => $baseDir.'/../lib/RootCollection.php', |
|
293 | + 'OCA\\DAV\\Search\\ACalendarSearchProvider' => $baseDir.'/../lib/Search/ACalendarSearchProvider.php', |
|
294 | + 'OCA\\DAV\\Search\\ContactsSearchProvider' => $baseDir.'/../lib/Search/ContactsSearchProvider.php', |
|
295 | + 'OCA\\DAV\\Search\\EventsSearchProvider' => $baseDir.'/../lib/Search/EventsSearchProvider.php', |
|
296 | + 'OCA\\DAV\\Search\\TasksSearchProvider' => $baseDir.'/../lib/Search/TasksSearchProvider.php', |
|
297 | + 'OCA\\DAV\\Server' => $baseDir.'/../lib/Server.php', |
|
298 | + 'OCA\\DAV\\Settings\\AvailabilitySettings' => $baseDir.'/../lib/Settings/AvailabilitySettings.php', |
|
299 | + 'OCA\\DAV\\Settings\\CalDAVSettings' => $baseDir.'/../lib/Settings/CalDAVSettings.php', |
|
300 | + 'OCA\\DAV\\Storage\\PublicOwnerWrapper' => $baseDir.'/../lib/Storage/PublicOwnerWrapper.php', |
|
301 | + 'OCA\\DAV\\SystemTag\\SystemTagMappingNode' => $baseDir.'/../lib/SystemTag/SystemTagMappingNode.php', |
|
302 | + 'OCA\\DAV\\SystemTag\\SystemTagNode' => $baseDir.'/../lib/SystemTag/SystemTagNode.php', |
|
303 | + 'OCA\\DAV\\SystemTag\\SystemTagPlugin' => $baseDir.'/../lib/SystemTag/SystemTagPlugin.php', |
|
304 | + 'OCA\\DAV\\SystemTag\\SystemTagsByIdCollection' => $baseDir.'/../lib/SystemTag/SystemTagsByIdCollection.php', |
|
305 | + 'OCA\\DAV\\SystemTag\\SystemTagsObjectMappingCollection' => $baseDir.'/../lib/SystemTag/SystemTagsObjectMappingCollection.php', |
|
306 | + 'OCA\\DAV\\SystemTag\\SystemTagsObjectTypeCollection' => $baseDir.'/../lib/SystemTag/SystemTagsObjectTypeCollection.php', |
|
307 | + 'OCA\\DAV\\SystemTag\\SystemTagsRelationsCollection' => $baseDir.'/../lib/SystemTag/SystemTagsRelationsCollection.php', |
|
308 | + 'OCA\\DAV\\Traits\\PrincipalProxyTrait' => $baseDir.'/../lib/Traits/PrincipalProxyTrait.php', |
|
309 | + 'OCA\\DAV\\Upload\\AssemblyStream' => $baseDir.'/../lib/Upload/AssemblyStream.php', |
|
310 | + 'OCA\\DAV\\Upload\\ChunkingPlugin' => $baseDir.'/../lib/Upload/ChunkingPlugin.php', |
|
311 | + 'OCA\\DAV\\Upload\\CleanupService' => $baseDir.'/../lib/Upload/CleanupService.php', |
|
312 | + 'OCA\\DAV\\Upload\\FutureFile' => $baseDir.'/../lib/Upload/FutureFile.php', |
|
313 | + 'OCA\\DAV\\Upload\\RootCollection' => $baseDir.'/../lib/Upload/RootCollection.php', |
|
314 | + 'OCA\\DAV\\Upload\\UploadFile' => $baseDir.'/../lib/Upload/UploadFile.php', |
|
315 | + 'OCA\\DAV\\Upload\\UploadFolder' => $baseDir.'/../lib/Upload/UploadFolder.php', |
|
316 | + 'OCA\\DAV\\Upload\\UploadHome' => $baseDir.'/../lib/Upload/UploadHome.php', |
|
317 | + 'OCA\\DAV\\UserMigration\\CalendarMigrator' => $baseDir.'/../lib/UserMigration/CalendarMigrator.php', |
|
318 | + 'OCA\\DAV\\UserMigration\\CalendarMigratorException' => $baseDir.'/../lib/UserMigration/CalendarMigratorException.php', |
|
319 | + 'OCA\\DAV\\UserMigration\\ContactsMigrator' => $baseDir.'/../lib/UserMigration/ContactsMigrator.php', |
|
320 | + 'OCA\\DAV\\UserMigration\\ContactsMigratorException' => $baseDir.'/../lib/UserMigration/ContactsMigratorException.php', |
|
321 | + 'OCA\\DAV\\UserMigration\\InvalidAddressBookException' => $baseDir.'/../lib/UserMigration/InvalidAddressBookException.php', |
|
322 | + 'OCA\\DAV\\UserMigration\\InvalidCalendarException' => $baseDir.'/../lib/UserMigration/InvalidCalendarException.php', |
|
323 | 323 | ); |