@@ -36,33 +36,33 @@ discard block |
||
36 | 36 | use Sabre\CardDAV\Plugin; |
37 | 37 | |
38 | 38 | $authBackend = new Auth( |
39 | - Server::get(ISession::class), |
|
40 | - Server::get(IUserSession::class), |
|
41 | - Server::get(IRequest::class), |
|
42 | - Server::get(\OC\Authentication\TwoFactorAuth\Manager::class), |
|
43 | - Server::get(IThrottler::class), |
|
44 | - 'principals/' |
|
39 | + Server::get(ISession::class), |
|
40 | + Server::get(IUserSession::class), |
|
41 | + Server::get(IRequest::class), |
|
42 | + Server::get(\OC\Authentication\TwoFactorAuth\Manager::class), |
|
43 | + Server::get(IThrottler::class), |
|
44 | + 'principals/' |
|
45 | 45 | ); |
46 | 46 | $principalBackend = new Principal( |
47 | - Server::get(IUserManager::class), |
|
48 | - Server::get(IGroupManager::class), |
|
49 | - Server::get(IAccountManager::class), |
|
50 | - Server::get(\OCP\Share\IManager::class), |
|
51 | - Server::get(IUserSession::class), |
|
52 | - Server::get(IAppManager::class), |
|
53 | - Server::get(ProxyMapper::class), |
|
54 | - Server::get(KnownUserService::class), |
|
55 | - Server::get(IConfig::class), |
|
56 | - \OC::$server->getL10NFactory(), |
|
57 | - 'principals/' |
|
47 | + Server::get(IUserManager::class), |
|
48 | + Server::get(IGroupManager::class), |
|
49 | + Server::get(IAccountManager::class), |
|
50 | + Server::get(\OCP\Share\IManager::class), |
|
51 | + Server::get(IUserSession::class), |
|
52 | + Server::get(IAppManager::class), |
|
53 | + Server::get(ProxyMapper::class), |
|
54 | + Server::get(KnownUserService::class), |
|
55 | + Server::get(IConfig::class), |
|
56 | + \OC::$server->getL10NFactory(), |
|
57 | + 'principals/' |
|
58 | 58 | ); |
59 | 59 | $db = Server::get(IDBConnection::class); |
60 | 60 | $cardDavBackend = new CardDavBackend( |
61 | - $db, |
|
62 | - $principalBackend, |
|
63 | - Server::get(IUserManager::class), |
|
64 | - Server::get(IEventDispatcher::class), |
|
65 | - Server::get(\OCA\DAV\CardDAV\Sharing\Backend::class), |
|
61 | + $db, |
|
62 | + $principalBackend, |
|
63 | + Server::get(IUserManager::class), |
|
64 | + Server::get(IEventDispatcher::class), |
|
65 | + Server::get(\OCA\DAV\CardDAV\Sharing\Backend::class), |
|
66 | 66 | ); |
67 | 67 | |
68 | 68 | $debugging = Server::get(IConfig::class)->getSystemValue('debug', false); |
@@ -76,8 +76,8 @@ discard block |
||
76 | 76 | $addressBookRoot->disableListing = !$debugging; // Disable listing |
77 | 77 | |
78 | 78 | $nodes = [ |
79 | - $principalCollection, |
|
80 | - $addressBookRoot, |
|
79 | + $principalCollection, |
|
80 | + $addressBookRoot, |
|
81 | 81 | ]; |
82 | 82 | |
83 | 83 | // Fire up server |
@@ -92,7 +92,7 @@ discard block |
||
92 | 92 | |
93 | 93 | $server->addPlugin(new LegacyDAVACL()); |
94 | 94 | if ($debugging) { |
95 | - $server->addPlugin(new Sabre\DAV\Browser\Plugin()); |
|
95 | + $server->addPlugin(new Sabre\DAV\Browser\Plugin()); |
|
96 | 96 | } |
97 | 97 | |
98 | 98 | $server->addPlugin(new \Sabre\DAV\Sync\Plugin()); |
@@ -6,421 +6,421 @@ |
||
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\\CleanupOrphanedChildrenJob' => __DIR__ . '/..' . '/../lib/BackgroundJob/CleanupOrphanedChildrenJob.php', |
|
35 | - 'OCA\\DAV\\BackgroundJob\\DeleteOutdatedSchedulingObjects' => __DIR__ . '/..' . '/../lib/BackgroundJob/DeleteOutdatedSchedulingObjects.php', |
|
36 | - 'OCA\\DAV\\BackgroundJob\\EventReminderJob' => __DIR__ . '/..' . '/../lib/BackgroundJob/EventReminderJob.php', |
|
37 | - 'OCA\\DAV\\BackgroundJob\\GenerateBirthdayCalendarBackgroundJob' => __DIR__ . '/..' . '/../lib/BackgroundJob/GenerateBirthdayCalendarBackgroundJob.php', |
|
38 | - 'OCA\\DAV\\BackgroundJob\\OutOfOfficeEventDispatcherJob' => __DIR__ . '/..' . '/../lib/BackgroundJob/OutOfOfficeEventDispatcherJob.php', |
|
39 | - 'OCA\\DAV\\BackgroundJob\\PruneOutdatedSyncTokensJob' => __DIR__ . '/..' . '/../lib/BackgroundJob/PruneOutdatedSyncTokensJob.php', |
|
40 | - 'OCA\\DAV\\BackgroundJob\\RefreshWebcalJob' => __DIR__ . '/..' . '/../lib/BackgroundJob/RefreshWebcalJob.php', |
|
41 | - 'OCA\\DAV\\BackgroundJob\\RegisterRegenerateBirthdayCalendars' => __DIR__ . '/..' . '/../lib/BackgroundJob/RegisterRegenerateBirthdayCalendars.php', |
|
42 | - 'OCA\\DAV\\BackgroundJob\\UpdateCalendarResourcesRoomsBackgroundJob' => __DIR__ . '/..' . '/../lib/BackgroundJob/UpdateCalendarResourcesRoomsBackgroundJob.php', |
|
43 | - 'OCA\\DAV\\BackgroundJob\\UploadCleanup' => __DIR__ . '/..' . '/../lib/BackgroundJob/UploadCleanup.php', |
|
44 | - 'OCA\\DAV\\BackgroundJob\\UserStatusAutomation' => __DIR__ . '/..' . '/../lib/BackgroundJob/UserStatusAutomation.php', |
|
45 | - 'OCA\\DAV\\BulkUpload\\BulkUploadPlugin' => __DIR__ . '/..' . '/../lib/BulkUpload/BulkUploadPlugin.php', |
|
46 | - 'OCA\\DAV\\BulkUpload\\MultipartRequestParser' => __DIR__ . '/..' . '/../lib/BulkUpload/MultipartRequestParser.php', |
|
47 | - 'OCA\\DAV\\CalDAV\\Activity\\Backend' => __DIR__ . '/..' . '/../lib/CalDAV/Activity/Backend.php', |
|
48 | - 'OCA\\DAV\\CalDAV\\Activity\\Filter\\Calendar' => __DIR__ . '/..' . '/../lib/CalDAV/Activity/Filter/Calendar.php', |
|
49 | - 'OCA\\DAV\\CalDAV\\Activity\\Filter\\Todo' => __DIR__ . '/..' . '/../lib/CalDAV/Activity/Filter/Todo.php', |
|
50 | - 'OCA\\DAV\\CalDAV\\Activity\\Provider\\Base' => __DIR__ . '/..' . '/../lib/CalDAV/Activity/Provider/Base.php', |
|
51 | - 'OCA\\DAV\\CalDAV\\Activity\\Provider\\Calendar' => __DIR__ . '/..' . '/../lib/CalDAV/Activity/Provider/Calendar.php', |
|
52 | - 'OCA\\DAV\\CalDAV\\Activity\\Provider\\Event' => __DIR__ . '/..' . '/../lib/CalDAV/Activity/Provider/Event.php', |
|
53 | - 'OCA\\DAV\\CalDAV\\Activity\\Provider\\Todo' => __DIR__ . '/..' . '/../lib/CalDAV/Activity/Provider/Todo.php', |
|
54 | - 'OCA\\DAV\\CalDAV\\Activity\\Setting\\CalDAVSetting' => __DIR__ . '/..' . '/../lib/CalDAV/Activity/Setting/CalDAVSetting.php', |
|
55 | - 'OCA\\DAV\\CalDAV\\Activity\\Setting\\Calendar' => __DIR__ . '/..' . '/../lib/CalDAV/Activity/Setting/Calendar.php', |
|
56 | - 'OCA\\DAV\\CalDAV\\Activity\\Setting\\Event' => __DIR__ . '/..' . '/../lib/CalDAV/Activity/Setting/Event.php', |
|
57 | - 'OCA\\DAV\\CalDAV\\Activity\\Setting\\Todo' => __DIR__ . '/..' . '/../lib/CalDAV/Activity/Setting/Todo.php', |
|
58 | - 'OCA\\DAV\\CalDAV\\AppCalendar\\AppCalendar' => __DIR__ . '/..' . '/../lib/CalDAV/AppCalendar/AppCalendar.php', |
|
59 | - 'OCA\\DAV\\CalDAV\\AppCalendar\\AppCalendarPlugin' => __DIR__ . '/..' . '/../lib/CalDAV/AppCalendar/AppCalendarPlugin.php', |
|
60 | - 'OCA\\DAV\\CalDAV\\AppCalendar\\CalendarObject' => __DIR__ . '/..' . '/../lib/CalDAV/AppCalendar/CalendarObject.php', |
|
61 | - 'OCA\\DAV\\CalDAV\\Auth\\CustomPrincipalPlugin' => __DIR__ . '/..' . '/../lib/CalDAV/Auth/CustomPrincipalPlugin.php', |
|
62 | - 'OCA\\DAV\\CalDAV\\Auth\\PublicPrincipalPlugin' => __DIR__ . '/..' . '/../lib/CalDAV/Auth/PublicPrincipalPlugin.php', |
|
63 | - 'OCA\\DAV\\CalDAV\\BirthdayCalendar\\EnablePlugin' => __DIR__ . '/..' . '/../lib/CalDAV/BirthdayCalendar/EnablePlugin.php', |
|
64 | - 'OCA\\DAV\\CalDAV\\BirthdayService' => __DIR__ . '/..' . '/../lib/CalDAV/BirthdayService.php', |
|
65 | - 'OCA\\DAV\\CalDAV\\CachedSubscription' => __DIR__ . '/..' . '/../lib/CalDAV/CachedSubscription.php', |
|
66 | - 'OCA\\DAV\\CalDAV\\CachedSubscriptionImpl' => __DIR__ . '/..' . '/../lib/CalDAV/CachedSubscriptionImpl.php', |
|
67 | - 'OCA\\DAV\\CalDAV\\CachedSubscriptionObject' => __DIR__ . '/..' . '/../lib/CalDAV/CachedSubscriptionObject.php', |
|
68 | - 'OCA\\DAV\\CalDAV\\CachedSubscriptionProvider' => __DIR__ . '/..' . '/../lib/CalDAV/CachedSubscriptionProvider.php', |
|
69 | - 'OCA\\DAV\\CalDAV\\CalDavBackend' => __DIR__ . '/..' . '/../lib/CalDAV/CalDavBackend.php', |
|
70 | - 'OCA\\DAV\\CalDAV\\Calendar' => __DIR__ . '/..' . '/../lib/CalDAV/Calendar.php', |
|
71 | - 'OCA\\DAV\\CalDAV\\CalendarHome' => __DIR__ . '/..' . '/../lib/CalDAV/CalendarHome.php', |
|
72 | - 'OCA\\DAV\\CalDAV\\CalendarImpl' => __DIR__ . '/..' . '/../lib/CalDAV/CalendarImpl.php', |
|
73 | - 'OCA\\DAV\\CalDAV\\CalendarManager' => __DIR__ . '/..' . '/../lib/CalDAV/CalendarManager.php', |
|
74 | - 'OCA\\DAV\\CalDAV\\CalendarObject' => __DIR__ . '/..' . '/../lib/CalDAV/CalendarObject.php', |
|
75 | - 'OCA\\DAV\\CalDAV\\CalendarProvider' => __DIR__ . '/..' . '/../lib/CalDAV/CalendarProvider.php', |
|
76 | - 'OCA\\DAV\\CalDAV\\CalendarRoot' => __DIR__ . '/..' . '/../lib/CalDAV/CalendarRoot.php', |
|
77 | - 'OCA\\DAV\\CalDAV\\DefaultCalendarValidator' => __DIR__ . '/..' . '/../lib/CalDAV/DefaultCalendarValidator.php', |
|
78 | - 'OCA\\DAV\\CalDAV\\EventComparisonService' => __DIR__ . '/..' . '/../lib/CalDAV/EventComparisonService.php', |
|
79 | - 'OCA\\DAV\\CalDAV\\EventReader' => __DIR__ . '/..' . '/../lib/CalDAV/EventReader.php', |
|
80 | - 'OCA\\DAV\\CalDAV\\EventReaderRDate' => __DIR__ . '/..' . '/../lib/CalDAV/EventReaderRDate.php', |
|
81 | - 'OCA\\DAV\\CalDAV\\EventReaderRRule' => __DIR__ . '/..' . '/../lib/CalDAV/EventReaderRRule.php', |
|
82 | - 'OCA\\DAV\\CalDAV\\Export\\ExportService' => __DIR__ . '/..' . '/../lib/CalDAV/Export/ExportService.php', |
|
83 | - 'OCA\\DAV\\CalDAV\\FreeBusy\\FreeBusyGenerator' => __DIR__ . '/..' . '/../lib/CalDAV/FreeBusy/FreeBusyGenerator.php', |
|
84 | - 'OCA\\DAV\\CalDAV\\ICSExportPlugin\\ICSExportPlugin' => __DIR__ . '/..' . '/../lib/CalDAV/ICSExportPlugin/ICSExportPlugin.php', |
|
85 | - 'OCA\\DAV\\CalDAV\\IRestorable' => __DIR__ . '/..' . '/../lib/CalDAV/IRestorable.php', |
|
86 | - 'OCA\\DAV\\CalDAV\\Integration\\ExternalCalendar' => __DIR__ . '/..' . '/../lib/CalDAV/Integration/ExternalCalendar.php', |
|
87 | - 'OCA\\DAV\\CalDAV\\Integration\\ICalendarProvider' => __DIR__ . '/..' . '/../lib/CalDAV/Integration/ICalendarProvider.php', |
|
88 | - 'OCA\\DAV\\CalDAV\\InvitationResponse\\InvitationResponseServer' => __DIR__ . '/..' . '/../lib/CalDAV/InvitationResponse/InvitationResponseServer.php', |
|
89 | - 'OCA\\DAV\\CalDAV\\Outbox' => __DIR__ . '/..' . '/../lib/CalDAV/Outbox.php', |
|
90 | - 'OCA\\DAV\\CalDAV\\Plugin' => __DIR__ . '/..' . '/../lib/CalDAV/Plugin.php', |
|
91 | - 'OCA\\DAV\\CalDAV\\Principal\\Collection' => __DIR__ . '/..' . '/../lib/CalDAV/Principal/Collection.php', |
|
92 | - 'OCA\\DAV\\CalDAV\\Principal\\User' => __DIR__ . '/..' . '/../lib/CalDAV/Principal/User.php', |
|
93 | - 'OCA\\DAV\\CalDAV\\Proxy\\Proxy' => __DIR__ . '/..' . '/../lib/CalDAV/Proxy/Proxy.php', |
|
94 | - 'OCA\\DAV\\CalDAV\\Proxy\\ProxyMapper' => __DIR__ . '/..' . '/../lib/CalDAV/Proxy/ProxyMapper.php', |
|
95 | - 'OCA\\DAV\\CalDAV\\PublicCalendar' => __DIR__ . '/..' . '/../lib/CalDAV/PublicCalendar.php', |
|
96 | - 'OCA\\DAV\\CalDAV\\PublicCalendarObject' => __DIR__ . '/..' . '/../lib/CalDAV/PublicCalendarObject.php', |
|
97 | - 'OCA\\DAV\\CalDAV\\PublicCalendarRoot' => __DIR__ . '/..' . '/../lib/CalDAV/PublicCalendarRoot.php', |
|
98 | - 'OCA\\DAV\\CalDAV\\Publishing\\PublishPlugin' => __DIR__ . '/..' . '/../lib/CalDAV/Publishing/PublishPlugin.php', |
|
99 | - 'OCA\\DAV\\CalDAV\\Publishing\\Xml\\Publisher' => __DIR__ . '/..' . '/../lib/CalDAV/Publishing/Xml/Publisher.php', |
|
100 | - 'OCA\\DAV\\CalDAV\\Reminder\\Backend' => __DIR__ . '/..' . '/../lib/CalDAV/Reminder/Backend.php', |
|
101 | - 'OCA\\DAV\\CalDAV\\Reminder\\INotificationProvider' => __DIR__ . '/..' . '/../lib/CalDAV/Reminder/INotificationProvider.php', |
|
102 | - 'OCA\\DAV\\CalDAV\\Reminder\\NotificationProviderManager' => __DIR__ . '/..' . '/../lib/CalDAV/Reminder/NotificationProviderManager.php', |
|
103 | - 'OCA\\DAV\\CalDAV\\Reminder\\NotificationProvider\\AbstractProvider' => __DIR__ . '/..' . '/../lib/CalDAV/Reminder/NotificationProvider/AbstractProvider.php', |
|
104 | - 'OCA\\DAV\\CalDAV\\Reminder\\NotificationProvider\\AudioProvider' => __DIR__ . '/..' . '/../lib/CalDAV/Reminder/NotificationProvider/AudioProvider.php', |
|
105 | - 'OCA\\DAV\\CalDAV\\Reminder\\NotificationProvider\\EmailProvider' => __DIR__ . '/..' . '/../lib/CalDAV/Reminder/NotificationProvider/EmailProvider.php', |
|
106 | - 'OCA\\DAV\\CalDAV\\Reminder\\NotificationProvider\\ProviderNotAvailableException' => __DIR__ . '/..' . '/../lib/CalDAV/Reminder/NotificationProvider/ProviderNotAvailableException.php', |
|
107 | - 'OCA\\DAV\\CalDAV\\Reminder\\NotificationProvider\\PushProvider' => __DIR__ . '/..' . '/../lib/CalDAV/Reminder/NotificationProvider/PushProvider.php', |
|
108 | - 'OCA\\DAV\\CalDAV\\Reminder\\NotificationTypeDoesNotExistException' => __DIR__ . '/..' . '/../lib/CalDAV/Reminder/NotificationTypeDoesNotExistException.php', |
|
109 | - 'OCA\\DAV\\CalDAV\\Reminder\\Notifier' => __DIR__ . '/..' . '/../lib/CalDAV/Reminder/Notifier.php', |
|
110 | - 'OCA\\DAV\\CalDAV\\Reminder\\ReminderService' => __DIR__ . '/..' . '/../lib/CalDAV/Reminder/ReminderService.php', |
|
111 | - 'OCA\\DAV\\CalDAV\\ResourceBooking\\AbstractPrincipalBackend' => __DIR__ . '/..' . '/../lib/CalDAV/ResourceBooking/AbstractPrincipalBackend.php', |
|
112 | - 'OCA\\DAV\\CalDAV\\ResourceBooking\\ResourcePrincipalBackend' => __DIR__ . '/..' . '/../lib/CalDAV/ResourceBooking/ResourcePrincipalBackend.php', |
|
113 | - 'OCA\\DAV\\CalDAV\\ResourceBooking\\RoomPrincipalBackend' => __DIR__ . '/..' . '/../lib/CalDAV/ResourceBooking/RoomPrincipalBackend.php', |
|
114 | - 'OCA\\DAV\\CalDAV\\RetentionService' => __DIR__ . '/..' . '/../lib/CalDAV/RetentionService.php', |
|
115 | - 'OCA\\DAV\\CalDAV\\Schedule\\IMipPlugin' => __DIR__ . '/..' . '/../lib/CalDAV/Schedule/IMipPlugin.php', |
|
116 | - 'OCA\\DAV\\CalDAV\\Schedule\\IMipService' => __DIR__ . '/..' . '/../lib/CalDAV/Schedule/IMipService.php', |
|
117 | - 'OCA\\DAV\\CalDAV\\Schedule\\Plugin' => __DIR__ . '/..' . '/../lib/CalDAV/Schedule/Plugin.php', |
|
118 | - 'OCA\\DAV\\CalDAV\\Search\\SearchPlugin' => __DIR__ . '/..' . '/../lib/CalDAV/Search/SearchPlugin.php', |
|
119 | - 'OCA\\DAV\\CalDAV\\Search\\Xml\\Filter\\CompFilter' => __DIR__ . '/..' . '/../lib/CalDAV/Search/Xml/Filter/CompFilter.php', |
|
120 | - 'OCA\\DAV\\CalDAV\\Search\\Xml\\Filter\\LimitFilter' => __DIR__ . '/..' . '/../lib/CalDAV/Search/Xml/Filter/LimitFilter.php', |
|
121 | - 'OCA\\DAV\\CalDAV\\Search\\Xml\\Filter\\OffsetFilter' => __DIR__ . '/..' . '/../lib/CalDAV/Search/Xml/Filter/OffsetFilter.php', |
|
122 | - 'OCA\\DAV\\CalDAV\\Search\\Xml\\Filter\\ParamFilter' => __DIR__ . '/..' . '/../lib/CalDAV/Search/Xml/Filter/ParamFilter.php', |
|
123 | - 'OCA\\DAV\\CalDAV\\Search\\Xml\\Filter\\PropFilter' => __DIR__ . '/..' . '/../lib/CalDAV/Search/Xml/Filter/PropFilter.php', |
|
124 | - 'OCA\\DAV\\CalDAV\\Search\\Xml\\Filter\\SearchTermFilter' => __DIR__ . '/..' . '/../lib/CalDAV/Search/Xml/Filter/SearchTermFilter.php', |
|
125 | - 'OCA\\DAV\\CalDAV\\Search\\Xml\\Request\\CalendarSearchReport' => __DIR__ . '/..' . '/../lib/CalDAV/Search/Xml/Request/CalendarSearchReport.php', |
|
126 | - 'OCA\\DAV\\CalDAV\\Security\\RateLimitingPlugin' => __DIR__ . '/..' . '/../lib/CalDAV/Security/RateLimitingPlugin.php', |
|
127 | - 'OCA\\DAV\\CalDAV\\Sharing\\Backend' => __DIR__ . '/..' . '/../lib/CalDAV/Sharing/Backend.php', |
|
128 | - 'OCA\\DAV\\CalDAV\\Sharing\\Service' => __DIR__ . '/..' . '/../lib/CalDAV/Sharing/Service.php', |
|
129 | - 'OCA\\DAV\\CalDAV\\Status\\StatusService' => __DIR__ . '/..' . '/../lib/CalDAV/Status/StatusService.php', |
|
130 | - 'OCA\\DAV\\CalDAV\\TimeZoneFactory' => __DIR__ . '/..' . '/../lib/CalDAV/TimeZoneFactory.php', |
|
131 | - 'OCA\\DAV\\CalDAV\\TimezoneService' => __DIR__ . '/..' . '/../lib/CalDAV/TimezoneService.php', |
|
132 | - 'OCA\\DAV\\CalDAV\\TipBroker' => __DIR__ . '/..' . '/../lib/CalDAV/TipBroker.php', |
|
133 | - 'OCA\\DAV\\CalDAV\\Trashbin\\DeletedCalendarObject' => __DIR__ . '/..' . '/../lib/CalDAV/Trashbin/DeletedCalendarObject.php', |
|
134 | - 'OCA\\DAV\\CalDAV\\Trashbin\\DeletedCalendarObjectsCollection' => __DIR__ . '/..' . '/../lib/CalDAV/Trashbin/DeletedCalendarObjectsCollection.php', |
|
135 | - 'OCA\\DAV\\CalDAV\\Trashbin\\Plugin' => __DIR__ . '/..' . '/../lib/CalDAV/Trashbin/Plugin.php', |
|
136 | - 'OCA\\DAV\\CalDAV\\Trashbin\\RestoreTarget' => __DIR__ . '/..' . '/../lib/CalDAV/Trashbin/RestoreTarget.php', |
|
137 | - 'OCA\\DAV\\CalDAV\\Trashbin\\TrashbinHome' => __DIR__ . '/..' . '/../lib/CalDAV/Trashbin/TrashbinHome.php', |
|
138 | - 'OCA\\DAV\\CalDAV\\UpcomingEvent' => __DIR__ . '/..' . '/../lib/CalDAV/UpcomingEvent.php', |
|
139 | - 'OCA\\DAV\\CalDAV\\UpcomingEventsService' => __DIR__ . '/..' . '/../lib/CalDAV/UpcomingEventsService.php', |
|
140 | - 'OCA\\DAV\\CalDAV\\Validation\\CalDavValidatePlugin' => __DIR__ . '/..' . '/../lib/CalDAV/Validation/CalDavValidatePlugin.php', |
|
141 | - 'OCA\\DAV\\CalDAV\\WebcalCaching\\Connection' => __DIR__ . '/..' . '/../lib/CalDAV/WebcalCaching/Connection.php', |
|
142 | - 'OCA\\DAV\\CalDAV\\WebcalCaching\\Plugin' => __DIR__ . '/..' . '/../lib/CalDAV/WebcalCaching/Plugin.php', |
|
143 | - 'OCA\\DAV\\CalDAV\\WebcalCaching\\RefreshWebcalService' => __DIR__ . '/..' . '/../lib/CalDAV/WebcalCaching/RefreshWebcalService.php', |
|
144 | - 'OCA\\DAV\\Capabilities' => __DIR__ . '/..' . '/../lib/Capabilities.php', |
|
145 | - 'OCA\\DAV\\CardDAV\\Activity\\Backend' => __DIR__ . '/..' . '/../lib/CardDAV/Activity/Backend.php', |
|
146 | - 'OCA\\DAV\\CardDAV\\Activity\\Filter' => __DIR__ . '/..' . '/../lib/CardDAV/Activity/Filter.php', |
|
147 | - 'OCA\\DAV\\CardDAV\\Activity\\Provider\\Addressbook' => __DIR__ . '/..' . '/../lib/CardDAV/Activity/Provider/Addressbook.php', |
|
148 | - 'OCA\\DAV\\CardDAV\\Activity\\Provider\\Base' => __DIR__ . '/..' . '/../lib/CardDAV/Activity/Provider/Base.php', |
|
149 | - 'OCA\\DAV\\CardDAV\\Activity\\Provider\\Card' => __DIR__ . '/..' . '/../lib/CardDAV/Activity/Provider/Card.php', |
|
150 | - 'OCA\\DAV\\CardDAV\\Activity\\Setting' => __DIR__ . '/..' . '/../lib/CardDAV/Activity/Setting.php', |
|
151 | - 'OCA\\DAV\\CardDAV\\AddressBook' => __DIR__ . '/..' . '/../lib/CardDAV/AddressBook.php', |
|
152 | - 'OCA\\DAV\\CardDAV\\AddressBookImpl' => __DIR__ . '/..' . '/../lib/CardDAV/AddressBookImpl.php', |
|
153 | - 'OCA\\DAV\\CardDAV\\AddressBookRoot' => __DIR__ . '/..' . '/../lib/CardDAV/AddressBookRoot.php', |
|
154 | - 'OCA\\DAV\\CardDAV\\Card' => __DIR__ . '/..' . '/../lib/CardDAV/Card.php', |
|
155 | - 'OCA\\DAV\\CardDAV\\CardDavBackend' => __DIR__ . '/..' . '/../lib/CardDAV/CardDavBackend.php', |
|
156 | - 'OCA\\DAV\\CardDAV\\ContactsManager' => __DIR__ . '/..' . '/../lib/CardDAV/ContactsManager.php', |
|
157 | - 'OCA\\DAV\\CardDAV\\Converter' => __DIR__ . '/..' . '/../lib/CardDAV/Converter.php', |
|
158 | - 'OCA\\DAV\\CardDAV\\HasPhotoPlugin' => __DIR__ . '/..' . '/../lib/CardDAV/HasPhotoPlugin.php', |
|
159 | - 'OCA\\DAV\\CardDAV\\ImageExportPlugin' => __DIR__ . '/..' . '/../lib/CardDAV/ImageExportPlugin.php', |
|
160 | - 'OCA\\DAV\\CardDAV\\Integration\\ExternalAddressBook' => __DIR__ . '/..' . '/../lib/CardDAV/Integration/ExternalAddressBook.php', |
|
161 | - 'OCA\\DAV\\CardDAV\\Integration\\IAddressBookProvider' => __DIR__ . '/..' . '/../lib/CardDAV/Integration/IAddressBookProvider.php', |
|
162 | - 'OCA\\DAV\\CardDAV\\MultiGetExportPlugin' => __DIR__ . '/..' . '/../lib/CardDAV/MultiGetExportPlugin.php', |
|
163 | - 'OCA\\DAV\\CardDAV\\PhotoCache' => __DIR__ . '/..' . '/../lib/CardDAV/PhotoCache.php', |
|
164 | - 'OCA\\DAV\\CardDAV\\Plugin' => __DIR__ . '/..' . '/../lib/CardDAV/Plugin.php', |
|
165 | - 'OCA\\DAV\\CardDAV\\Security\\CardDavRateLimitingPlugin' => __DIR__ . '/..' . '/../lib/CardDAV/Security/CardDavRateLimitingPlugin.php', |
|
166 | - 'OCA\\DAV\\CardDAV\\Sharing\\Backend' => __DIR__ . '/..' . '/../lib/CardDAV/Sharing/Backend.php', |
|
167 | - 'OCA\\DAV\\CardDAV\\Sharing\\Service' => __DIR__ . '/..' . '/../lib/CardDAV/Sharing/Service.php', |
|
168 | - 'OCA\\DAV\\CardDAV\\SyncService' => __DIR__ . '/..' . '/../lib/CardDAV/SyncService.php', |
|
169 | - 'OCA\\DAV\\CardDAV\\SystemAddressbook' => __DIR__ . '/..' . '/../lib/CardDAV/SystemAddressbook.php', |
|
170 | - 'OCA\\DAV\\CardDAV\\UserAddressBooks' => __DIR__ . '/..' . '/../lib/CardDAV/UserAddressBooks.php', |
|
171 | - 'OCA\\DAV\\CardDAV\\Validation\\CardDavValidatePlugin' => __DIR__ . '/..' . '/../lib/CardDAV/Validation/CardDavValidatePlugin.php', |
|
172 | - 'OCA\\DAV\\CardDAV\\Xml\\Groups' => __DIR__ . '/..' . '/../lib/CardDAV/Xml/Groups.php', |
|
173 | - 'OCA\\DAV\\Command\\ClearCalendarUnshares' => __DIR__ . '/..' . '/../lib/Command/ClearCalendarUnshares.php', |
|
174 | - 'OCA\\DAV\\Command\\ClearContactsPhotoCache' => __DIR__ . '/..' . '/../lib/Command/ClearContactsPhotoCache.php', |
|
175 | - 'OCA\\DAV\\Command\\CreateAddressBook' => __DIR__ . '/..' . '/../lib/Command/CreateAddressBook.php', |
|
176 | - 'OCA\\DAV\\Command\\CreateCalendar' => __DIR__ . '/..' . '/../lib/Command/CreateCalendar.php', |
|
177 | - 'OCA\\DAV\\Command\\CreateSubscription' => __DIR__ . '/..' . '/../lib/Command/CreateSubscription.php', |
|
178 | - 'OCA\\DAV\\Command\\DeleteCalendar' => __DIR__ . '/..' . '/../lib/Command/DeleteCalendar.php', |
|
179 | - 'OCA\\DAV\\Command\\DeleteSubscription' => __DIR__ . '/..' . '/../lib/Command/DeleteSubscription.php', |
|
180 | - 'OCA\\DAV\\Command\\ExportCalendar' => __DIR__ . '/..' . '/../lib/Command/ExportCalendar.php', |
|
181 | - 'OCA\\DAV\\Command\\FixCalendarSyncCommand' => __DIR__ . '/..' . '/../lib/Command/FixCalendarSyncCommand.php', |
|
182 | - 'OCA\\DAV\\Command\\ListAddressbooks' => __DIR__ . '/..' . '/../lib/Command/ListAddressbooks.php', |
|
183 | - 'OCA\\DAV\\Command\\ListCalendarShares' => __DIR__ . '/..' . '/../lib/Command/ListCalendarShares.php', |
|
184 | - 'OCA\\DAV\\Command\\ListCalendars' => __DIR__ . '/..' . '/../lib/Command/ListCalendars.php', |
|
185 | - 'OCA\\DAV\\Command\\ListSubscriptions' => __DIR__ . '/..' . '/../lib/Command/ListSubscriptions.php', |
|
186 | - 'OCA\\DAV\\Command\\MoveCalendar' => __DIR__ . '/..' . '/../lib/Command/MoveCalendar.php', |
|
187 | - 'OCA\\DAV\\Command\\RemoveInvalidShares' => __DIR__ . '/..' . '/../lib/Command/RemoveInvalidShares.php', |
|
188 | - 'OCA\\DAV\\Command\\RetentionCleanupCommand' => __DIR__ . '/..' . '/../lib/Command/RetentionCleanupCommand.php', |
|
189 | - 'OCA\\DAV\\Command\\SendEventReminders' => __DIR__ . '/..' . '/../lib/Command/SendEventReminders.php', |
|
190 | - 'OCA\\DAV\\Command\\SyncBirthdayCalendar' => __DIR__ . '/..' . '/../lib/Command/SyncBirthdayCalendar.php', |
|
191 | - 'OCA\\DAV\\Command\\SyncSystemAddressBook' => __DIR__ . '/..' . '/../lib/Command/SyncSystemAddressBook.php', |
|
192 | - 'OCA\\DAV\\Comments\\CommentNode' => __DIR__ . '/..' . '/../lib/Comments/CommentNode.php', |
|
193 | - 'OCA\\DAV\\Comments\\CommentsPlugin' => __DIR__ . '/..' . '/../lib/Comments/CommentsPlugin.php', |
|
194 | - 'OCA\\DAV\\Comments\\EntityCollection' => __DIR__ . '/..' . '/../lib/Comments/EntityCollection.php', |
|
195 | - 'OCA\\DAV\\Comments\\EntityTypeCollection' => __DIR__ . '/..' . '/../lib/Comments/EntityTypeCollection.php', |
|
196 | - 'OCA\\DAV\\Comments\\RootCollection' => __DIR__ . '/..' . '/../lib/Comments/RootCollection.php', |
|
197 | - 'OCA\\DAV\\Connector\\LegacyDAVACL' => __DIR__ . '/..' . '/../lib/Connector/LegacyDAVACL.php', |
|
198 | - 'OCA\\DAV\\Connector\\LegacyPublicAuth' => __DIR__ . '/..' . '/../lib/Connector/LegacyPublicAuth.php', |
|
199 | - 'OCA\\DAV\\Connector\\Sabre\\AnonymousOptionsPlugin' => __DIR__ . '/..' . '/../lib/Connector/Sabre/AnonymousOptionsPlugin.php', |
|
200 | - 'OCA\\DAV\\Connector\\Sabre\\AppleQuirksPlugin' => __DIR__ . '/..' . '/../lib/Connector/Sabre/AppleQuirksPlugin.php', |
|
201 | - 'OCA\\DAV\\Connector\\Sabre\\Auth' => __DIR__ . '/..' . '/../lib/Connector/Sabre/Auth.php', |
|
202 | - 'OCA\\DAV\\Connector\\Sabre\\BearerAuth' => __DIR__ . '/..' . '/../lib/Connector/Sabre/BearerAuth.php', |
|
203 | - 'OCA\\DAV\\Connector\\Sabre\\BlockLegacyClientPlugin' => __DIR__ . '/..' . '/../lib/Connector/Sabre/BlockLegacyClientPlugin.php', |
|
204 | - 'OCA\\DAV\\Connector\\Sabre\\CachingTree' => __DIR__ . '/..' . '/../lib/Connector/Sabre/CachingTree.php', |
|
205 | - 'OCA\\DAV\\Connector\\Sabre\\ChecksumList' => __DIR__ . '/..' . '/../lib/Connector/Sabre/ChecksumList.php', |
|
206 | - 'OCA\\DAV\\Connector\\Sabre\\ChecksumUpdatePlugin' => __DIR__ . '/..' . '/../lib/Connector/Sabre/ChecksumUpdatePlugin.php', |
|
207 | - 'OCA\\DAV\\Connector\\Sabre\\CommentPropertiesPlugin' => __DIR__ . '/..' . '/../lib/Connector/Sabre/CommentPropertiesPlugin.php', |
|
208 | - 'OCA\\DAV\\Connector\\Sabre\\CopyEtagHeaderPlugin' => __DIR__ . '/..' . '/../lib/Connector/Sabre/CopyEtagHeaderPlugin.php', |
|
209 | - 'OCA\\DAV\\Connector\\Sabre\\DavAclPlugin' => __DIR__ . '/..' . '/../lib/Connector/Sabre/DavAclPlugin.php', |
|
210 | - 'OCA\\DAV\\Connector\\Sabre\\Directory' => __DIR__ . '/..' . '/../lib/Connector/Sabre/Directory.php', |
|
211 | - 'OCA\\DAV\\Connector\\Sabre\\DummyGetResponsePlugin' => __DIR__ . '/..' . '/../lib/Connector/Sabre/DummyGetResponsePlugin.php', |
|
212 | - 'OCA\\DAV\\Connector\\Sabre\\ExceptionLoggerPlugin' => __DIR__ . '/..' . '/../lib/Connector/Sabre/ExceptionLoggerPlugin.php', |
|
213 | - 'OCA\\DAV\\Connector\\Sabre\\Exception\\BadGateway' => __DIR__ . '/..' . '/../lib/Connector/Sabre/Exception/BadGateway.php', |
|
214 | - 'OCA\\DAV\\Connector\\Sabre\\Exception\\EntityTooLarge' => __DIR__ . '/..' . '/../lib/Connector/Sabre/Exception/EntityTooLarge.php', |
|
215 | - 'OCA\\DAV\\Connector\\Sabre\\Exception\\FileLocked' => __DIR__ . '/..' . '/../lib/Connector/Sabre/Exception/FileLocked.php', |
|
216 | - 'OCA\\DAV\\Connector\\Sabre\\Exception\\Forbidden' => __DIR__ . '/..' . '/../lib/Connector/Sabre/Exception/Forbidden.php', |
|
217 | - 'OCA\\DAV\\Connector\\Sabre\\Exception\\InvalidPath' => __DIR__ . '/..' . '/../lib/Connector/Sabre/Exception/InvalidPath.php', |
|
218 | - 'OCA\\DAV\\Connector\\Sabre\\Exception\\PasswordLoginForbidden' => __DIR__ . '/..' . '/../lib/Connector/Sabre/Exception/PasswordLoginForbidden.php', |
|
219 | - 'OCA\\DAV\\Connector\\Sabre\\Exception\\TooManyRequests' => __DIR__ . '/..' . '/../lib/Connector/Sabre/Exception/TooManyRequests.php', |
|
220 | - 'OCA\\DAV\\Connector\\Sabre\\Exception\\UnsupportedMediaType' => __DIR__ . '/..' . '/../lib/Connector/Sabre/Exception/UnsupportedMediaType.php', |
|
221 | - 'OCA\\DAV\\Connector\\Sabre\\FakeLockerPlugin' => __DIR__ . '/..' . '/../lib/Connector/Sabre/FakeLockerPlugin.php', |
|
222 | - 'OCA\\DAV\\Connector\\Sabre\\File' => __DIR__ . '/..' . '/../lib/Connector/Sabre/File.php', |
|
223 | - 'OCA\\DAV\\Connector\\Sabre\\FilesPlugin' => __DIR__ . '/..' . '/../lib/Connector/Sabre/FilesPlugin.php', |
|
224 | - 'OCA\\DAV\\Connector\\Sabre\\FilesReportPlugin' => __DIR__ . '/..' . '/../lib/Connector/Sabre/FilesReportPlugin.php', |
|
225 | - 'OCA\\DAV\\Connector\\Sabre\\LockPlugin' => __DIR__ . '/..' . '/../lib/Connector/Sabre/LockPlugin.php', |
|
226 | - 'OCA\\DAV\\Connector\\Sabre\\MaintenancePlugin' => __DIR__ . '/..' . '/../lib/Connector/Sabre/MaintenancePlugin.php', |
|
227 | - 'OCA\\DAV\\Connector\\Sabre\\MtimeSanitizer' => __DIR__ . '/..' . '/../lib/Connector/Sabre/MtimeSanitizer.php', |
|
228 | - 'OCA\\DAV\\Connector\\Sabre\\Node' => __DIR__ . '/..' . '/../lib/Connector/Sabre/Node.php', |
|
229 | - 'OCA\\DAV\\Connector\\Sabre\\ObjectTree' => __DIR__ . '/..' . '/../lib/Connector/Sabre/ObjectTree.php', |
|
230 | - 'OCA\\DAV\\Connector\\Sabre\\Principal' => __DIR__ . '/..' . '/../lib/Connector/Sabre/Principal.php', |
|
231 | - 'OCA\\DAV\\Connector\\Sabre\\PropfindCompressionPlugin' => __DIR__ . '/..' . '/../lib/Connector/Sabre/PropfindCompressionPlugin.php', |
|
232 | - 'OCA\\DAV\\Connector\\Sabre\\PublicAuth' => __DIR__ . '/..' . '/../lib/Connector/Sabre/PublicAuth.php', |
|
233 | - 'OCA\\DAV\\Connector\\Sabre\\QuotaPlugin' => __DIR__ . '/..' . '/../lib/Connector/Sabre/QuotaPlugin.php', |
|
234 | - 'OCA\\DAV\\Connector\\Sabre\\RequestIdHeaderPlugin' => __DIR__ . '/..' . '/../lib/Connector/Sabre/RequestIdHeaderPlugin.php', |
|
235 | - 'OCA\\DAV\\Connector\\Sabre\\Server' => __DIR__ . '/..' . '/../lib/Connector/Sabre/Server.php', |
|
236 | - 'OCA\\DAV\\Connector\\Sabre\\ServerFactory' => __DIR__ . '/..' . '/../lib/Connector/Sabre/ServerFactory.php', |
|
237 | - 'OCA\\DAV\\Connector\\Sabre\\ShareTypeList' => __DIR__ . '/..' . '/../lib/Connector/Sabre/ShareTypeList.php', |
|
238 | - 'OCA\\DAV\\Connector\\Sabre\\ShareeList' => __DIR__ . '/..' . '/../lib/Connector/Sabre/ShareeList.php', |
|
239 | - 'OCA\\DAV\\Connector\\Sabre\\SharesPlugin' => __DIR__ . '/..' . '/../lib/Connector/Sabre/SharesPlugin.php', |
|
240 | - 'OCA\\DAV\\Connector\\Sabre\\TagList' => __DIR__ . '/..' . '/../lib/Connector/Sabre/TagList.php', |
|
241 | - 'OCA\\DAV\\Connector\\Sabre\\TagsPlugin' => __DIR__ . '/..' . '/../lib/Connector/Sabre/TagsPlugin.php', |
|
242 | - 'OCA\\DAV\\Connector\\Sabre\\ZipFolderPlugin' => __DIR__ . '/..' . '/../lib/Connector/Sabre/ZipFolderPlugin.php', |
|
243 | - 'OCA\\DAV\\Controller\\BirthdayCalendarController' => __DIR__ . '/..' . '/../lib/Controller/BirthdayCalendarController.php', |
|
244 | - 'OCA\\DAV\\Controller\\DirectController' => __DIR__ . '/..' . '/../lib/Controller/DirectController.php', |
|
245 | - 'OCA\\DAV\\Controller\\ExampleContentController' => __DIR__ . '/..' . '/../lib/Controller/ExampleContentController.php', |
|
246 | - 'OCA\\DAV\\Controller\\InvitationResponseController' => __DIR__ . '/..' . '/../lib/Controller/InvitationResponseController.php', |
|
247 | - 'OCA\\DAV\\Controller\\OutOfOfficeController' => __DIR__ . '/..' . '/../lib/Controller/OutOfOfficeController.php', |
|
248 | - 'OCA\\DAV\\Controller\\UpcomingEventsController' => __DIR__ . '/..' . '/../lib/Controller/UpcomingEventsController.php', |
|
249 | - 'OCA\\DAV\\DAV\\CustomPropertiesBackend' => __DIR__ . '/..' . '/../lib/DAV/CustomPropertiesBackend.php', |
|
250 | - 'OCA\\DAV\\DAV\\GroupPrincipalBackend' => __DIR__ . '/..' . '/../lib/DAV/GroupPrincipalBackend.php', |
|
251 | - 'OCA\\DAV\\DAV\\PublicAuth' => __DIR__ . '/..' . '/../lib/DAV/PublicAuth.php', |
|
252 | - 'OCA\\DAV\\DAV\\Sharing\\Backend' => __DIR__ . '/..' . '/../lib/DAV/Sharing/Backend.php', |
|
253 | - 'OCA\\DAV\\DAV\\Sharing\\IShareable' => __DIR__ . '/..' . '/../lib/DAV/Sharing/IShareable.php', |
|
254 | - 'OCA\\DAV\\DAV\\Sharing\\Plugin' => __DIR__ . '/..' . '/../lib/DAV/Sharing/Plugin.php', |
|
255 | - 'OCA\\DAV\\DAV\\Sharing\\SharingMapper' => __DIR__ . '/..' . '/../lib/DAV/Sharing/SharingMapper.php', |
|
256 | - 'OCA\\DAV\\DAV\\Sharing\\SharingService' => __DIR__ . '/..' . '/../lib/DAV/Sharing/SharingService.php', |
|
257 | - 'OCA\\DAV\\DAV\\Sharing\\Xml\\Invite' => __DIR__ . '/..' . '/../lib/DAV/Sharing/Xml/Invite.php', |
|
258 | - 'OCA\\DAV\\DAV\\Sharing\\Xml\\ShareRequest' => __DIR__ . '/..' . '/../lib/DAV/Sharing/Xml/ShareRequest.php', |
|
259 | - 'OCA\\DAV\\DAV\\SystemPrincipalBackend' => __DIR__ . '/..' . '/../lib/DAV/SystemPrincipalBackend.php', |
|
260 | - 'OCA\\DAV\\DAV\\ViewOnlyPlugin' => __DIR__ . '/..' . '/../lib/DAV/ViewOnlyPlugin.php', |
|
261 | - 'OCA\\DAV\\Db\\Absence' => __DIR__ . '/..' . '/../lib/Db/Absence.php', |
|
262 | - 'OCA\\DAV\\Db\\AbsenceMapper' => __DIR__ . '/..' . '/../lib/Db/AbsenceMapper.php', |
|
263 | - 'OCA\\DAV\\Db\\Direct' => __DIR__ . '/..' . '/../lib/Db/Direct.php', |
|
264 | - 'OCA\\DAV\\Db\\DirectMapper' => __DIR__ . '/..' . '/../lib/Db/DirectMapper.php', |
|
265 | - 'OCA\\DAV\\Db\\Property' => __DIR__ . '/..' . '/../lib/Db/Property.php', |
|
266 | - 'OCA\\DAV\\Db\\PropertyMapper' => __DIR__ . '/..' . '/../lib/Db/PropertyMapper.php', |
|
267 | - 'OCA\\DAV\\Direct\\DirectFile' => __DIR__ . '/..' . '/../lib/Direct/DirectFile.php', |
|
268 | - 'OCA\\DAV\\Direct\\DirectHome' => __DIR__ . '/..' . '/../lib/Direct/DirectHome.php', |
|
269 | - 'OCA\\DAV\\Direct\\Server' => __DIR__ . '/..' . '/../lib/Direct/Server.php', |
|
270 | - 'OCA\\DAV\\Direct\\ServerFactory' => __DIR__ . '/..' . '/../lib/Direct/ServerFactory.php', |
|
271 | - 'OCA\\DAV\\Events\\AddressBookCreatedEvent' => __DIR__ . '/..' . '/../lib/Events/AddressBookCreatedEvent.php', |
|
272 | - 'OCA\\DAV\\Events\\AddressBookDeletedEvent' => __DIR__ . '/..' . '/../lib/Events/AddressBookDeletedEvent.php', |
|
273 | - 'OCA\\DAV\\Events\\AddressBookShareUpdatedEvent' => __DIR__ . '/..' . '/../lib/Events/AddressBookShareUpdatedEvent.php', |
|
274 | - 'OCA\\DAV\\Events\\AddressBookUpdatedEvent' => __DIR__ . '/..' . '/../lib/Events/AddressBookUpdatedEvent.php', |
|
275 | - 'OCA\\DAV\\Events\\BeforeFileDirectDownloadedEvent' => __DIR__ . '/..' . '/../lib/Events/BeforeFileDirectDownloadedEvent.php', |
|
276 | - 'OCA\\DAV\\Events\\CachedCalendarObjectCreatedEvent' => __DIR__ . '/..' . '/../lib/Events/CachedCalendarObjectCreatedEvent.php', |
|
277 | - 'OCA\\DAV\\Events\\CachedCalendarObjectDeletedEvent' => __DIR__ . '/..' . '/../lib/Events/CachedCalendarObjectDeletedEvent.php', |
|
278 | - 'OCA\\DAV\\Events\\CachedCalendarObjectUpdatedEvent' => __DIR__ . '/..' . '/../lib/Events/CachedCalendarObjectUpdatedEvent.php', |
|
279 | - 'OCA\\DAV\\Events\\CalendarCreatedEvent' => __DIR__ . '/..' . '/../lib/Events/CalendarCreatedEvent.php', |
|
280 | - 'OCA\\DAV\\Events\\CalendarDeletedEvent' => __DIR__ . '/..' . '/../lib/Events/CalendarDeletedEvent.php', |
|
281 | - 'OCA\\DAV\\Events\\CalendarMovedToTrashEvent' => __DIR__ . '/..' . '/../lib/Events/CalendarMovedToTrashEvent.php', |
|
282 | - 'OCA\\DAV\\Events\\CalendarPublishedEvent' => __DIR__ . '/..' . '/../lib/Events/CalendarPublishedEvent.php', |
|
283 | - 'OCA\\DAV\\Events\\CalendarRestoredEvent' => __DIR__ . '/..' . '/../lib/Events/CalendarRestoredEvent.php', |
|
284 | - 'OCA\\DAV\\Events\\CalendarShareUpdatedEvent' => __DIR__ . '/..' . '/../lib/Events/CalendarShareUpdatedEvent.php', |
|
285 | - 'OCA\\DAV\\Events\\CalendarUnpublishedEvent' => __DIR__ . '/..' . '/../lib/Events/CalendarUnpublishedEvent.php', |
|
286 | - 'OCA\\DAV\\Events\\CalendarUpdatedEvent' => __DIR__ . '/..' . '/../lib/Events/CalendarUpdatedEvent.php', |
|
287 | - 'OCA\\DAV\\Events\\CardCreatedEvent' => __DIR__ . '/..' . '/../lib/Events/CardCreatedEvent.php', |
|
288 | - 'OCA\\DAV\\Events\\CardDeletedEvent' => __DIR__ . '/..' . '/../lib/Events/CardDeletedEvent.php', |
|
289 | - 'OCA\\DAV\\Events\\CardMovedEvent' => __DIR__ . '/..' . '/../lib/Events/CardMovedEvent.php', |
|
290 | - 'OCA\\DAV\\Events\\CardUpdatedEvent' => __DIR__ . '/..' . '/../lib/Events/CardUpdatedEvent.php', |
|
291 | - 'OCA\\DAV\\Events\\SabrePluginAddEvent' => __DIR__ . '/..' . '/../lib/Events/SabrePluginAddEvent.php', |
|
292 | - 'OCA\\DAV\\Events\\SabrePluginAuthInitEvent' => __DIR__ . '/..' . '/../lib/Events/SabrePluginAuthInitEvent.php', |
|
293 | - 'OCA\\DAV\\Events\\SubscriptionCreatedEvent' => __DIR__ . '/..' . '/../lib/Events/SubscriptionCreatedEvent.php', |
|
294 | - 'OCA\\DAV\\Events\\SubscriptionDeletedEvent' => __DIR__ . '/..' . '/../lib/Events/SubscriptionDeletedEvent.php', |
|
295 | - 'OCA\\DAV\\Events\\SubscriptionUpdatedEvent' => __DIR__ . '/..' . '/../lib/Events/SubscriptionUpdatedEvent.php', |
|
296 | - 'OCA\\DAV\\Exception\\ServerMaintenanceMode' => __DIR__ . '/..' . '/../lib/Exception/ServerMaintenanceMode.php', |
|
297 | - 'OCA\\DAV\\Exception\\UnsupportedLimitOnInitialSyncException' => __DIR__ . '/..' . '/../lib/Exception/UnsupportedLimitOnInitialSyncException.php', |
|
298 | - 'OCA\\DAV\\Files\\BrowserErrorPagePlugin' => __DIR__ . '/..' . '/../lib/Files/BrowserErrorPagePlugin.php', |
|
299 | - 'OCA\\DAV\\Files\\FileSearchBackend' => __DIR__ . '/..' . '/../lib/Files/FileSearchBackend.php', |
|
300 | - 'OCA\\DAV\\Files\\FilesHome' => __DIR__ . '/..' . '/../lib/Files/FilesHome.php', |
|
301 | - 'OCA\\DAV\\Files\\LazySearchBackend' => __DIR__ . '/..' . '/../lib/Files/LazySearchBackend.php', |
|
302 | - 'OCA\\DAV\\Files\\RootCollection' => __DIR__ . '/..' . '/../lib/Files/RootCollection.php', |
|
303 | - 'OCA\\DAV\\Files\\Sharing\\FilesDropPlugin' => __DIR__ . '/..' . '/../lib/Files/Sharing/FilesDropPlugin.php', |
|
304 | - 'OCA\\DAV\\Files\\Sharing\\PublicLinkCheckPlugin' => __DIR__ . '/..' . '/../lib/Files/Sharing/PublicLinkCheckPlugin.php', |
|
305 | - 'OCA\\DAV\\Files\\Sharing\\RootCollection' => __DIR__ . '/..' . '/../lib/Files/Sharing/RootCollection.php', |
|
306 | - 'OCA\\DAV\\Listener\\ActivityUpdaterListener' => __DIR__ . '/..' . '/../lib/Listener/ActivityUpdaterListener.php', |
|
307 | - 'OCA\\DAV\\Listener\\AddMissingIndicesListener' => __DIR__ . '/..' . '/../lib/Listener/AddMissingIndicesListener.php', |
|
308 | - 'OCA\\DAV\\Listener\\AddressbookListener' => __DIR__ . '/..' . '/../lib/Listener/AddressbookListener.php', |
|
309 | - 'OCA\\DAV\\Listener\\BirthdayListener' => __DIR__ . '/..' . '/../lib/Listener/BirthdayListener.php', |
|
310 | - 'OCA\\DAV\\Listener\\CalendarContactInteractionListener' => __DIR__ . '/..' . '/../lib/Listener/CalendarContactInteractionListener.php', |
|
311 | - 'OCA\\DAV\\Listener\\CalendarDeletionDefaultUpdaterListener' => __DIR__ . '/..' . '/../lib/Listener/CalendarDeletionDefaultUpdaterListener.php', |
|
312 | - 'OCA\\DAV\\Listener\\CalendarObjectReminderUpdaterListener' => __DIR__ . '/..' . '/../lib/Listener/CalendarObjectReminderUpdaterListener.php', |
|
313 | - 'OCA\\DAV\\Listener\\CalendarPublicationListener' => __DIR__ . '/..' . '/../lib/Listener/CalendarPublicationListener.php', |
|
314 | - 'OCA\\DAV\\Listener\\CalendarShareUpdateListener' => __DIR__ . '/..' . '/../lib/Listener/CalendarShareUpdateListener.php', |
|
315 | - 'OCA\\DAV\\Listener\\CardListener' => __DIR__ . '/..' . '/../lib/Listener/CardListener.php', |
|
316 | - 'OCA\\DAV\\Listener\\ClearPhotoCacheListener' => __DIR__ . '/..' . '/../lib/Listener/ClearPhotoCacheListener.php', |
|
317 | - 'OCA\\DAV\\Listener\\DavAdminSettingsListener' => __DIR__ . '/..' . '/../lib/Listener/DavAdminSettingsListener.php', |
|
318 | - 'OCA\\DAV\\Listener\\OutOfOfficeListener' => __DIR__ . '/..' . '/../lib/Listener/OutOfOfficeListener.php', |
|
319 | - 'OCA\\DAV\\Listener\\SubscriptionListener' => __DIR__ . '/..' . '/../lib/Listener/SubscriptionListener.php', |
|
320 | - 'OCA\\DAV\\Listener\\TrustedServerRemovedListener' => __DIR__ . '/..' . '/../lib/Listener/TrustedServerRemovedListener.php', |
|
321 | - 'OCA\\DAV\\Listener\\UserEventsListener' => __DIR__ . '/..' . '/../lib/Listener/UserEventsListener.php', |
|
322 | - 'OCA\\DAV\\Listener\\UserPreferenceListener' => __DIR__ . '/..' . '/../lib/Listener/UserPreferenceListener.php', |
|
323 | - 'OCA\\DAV\\Migration\\BuildCalendarSearchIndex' => __DIR__ . '/..' . '/../lib/Migration/BuildCalendarSearchIndex.php', |
|
324 | - 'OCA\\DAV\\Migration\\BuildCalendarSearchIndexBackgroundJob' => __DIR__ . '/..' . '/../lib/Migration/BuildCalendarSearchIndexBackgroundJob.php', |
|
325 | - 'OCA\\DAV\\Migration\\BuildSocialSearchIndex' => __DIR__ . '/..' . '/../lib/Migration/BuildSocialSearchIndex.php', |
|
326 | - 'OCA\\DAV\\Migration\\BuildSocialSearchIndexBackgroundJob' => __DIR__ . '/..' . '/../lib/Migration/BuildSocialSearchIndexBackgroundJob.php', |
|
327 | - 'OCA\\DAV\\Migration\\CalDAVRemoveEmptyValue' => __DIR__ . '/..' . '/../lib/Migration/CalDAVRemoveEmptyValue.php', |
|
328 | - 'OCA\\DAV\\Migration\\ChunkCleanup' => __DIR__ . '/..' . '/../lib/Migration/ChunkCleanup.php', |
|
329 | - 'OCA\\DAV\\Migration\\CreateSystemAddressBookStep' => __DIR__ . '/..' . '/../lib/Migration/CreateSystemAddressBookStep.php', |
|
330 | - 'OCA\\DAV\\Migration\\DeleteSchedulingObjects' => __DIR__ . '/..' . '/../lib/Migration/DeleteSchedulingObjects.php', |
|
331 | - 'OCA\\DAV\\Migration\\FixBirthdayCalendarComponent' => __DIR__ . '/..' . '/../lib/Migration/FixBirthdayCalendarComponent.php', |
|
332 | - 'OCA\\DAV\\Migration\\RefreshWebcalJobRegistrar' => __DIR__ . '/..' . '/../lib/Migration/RefreshWebcalJobRegistrar.php', |
|
333 | - 'OCA\\DAV\\Migration\\RegenerateBirthdayCalendars' => __DIR__ . '/..' . '/../lib/Migration/RegenerateBirthdayCalendars.php', |
|
334 | - 'OCA\\DAV\\Migration\\RegisterBuildReminderIndexBackgroundJob' => __DIR__ . '/..' . '/../lib/Migration/RegisterBuildReminderIndexBackgroundJob.php', |
|
335 | - 'OCA\\DAV\\Migration\\RegisterUpdateCalendarResourcesRoomBackgroundJob' => __DIR__ . '/..' . '/../lib/Migration/RegisterUpdateCalendarResourcesRoomBackgroundJob.php', |
|
336 | - 'OCA\\DAV\\Migration\\RemoveClassifiedEventActivity' => __DIR__ . '/..' . '/../lib/Migration/RemoveClassifiedEventActivity.php', |
|
337 | - 'OCA\\DAV\\Migration\\RemoveDeletedUsersCalendarSubscriptions' => __DIR__ . '/..' . '/../lib/Migration/RemoveDeletedUsersCalendarSubscriptions.php', |
|
338 | - 'OCA\\DAV\\Migration\\RemoveObjectProperties' => __DIR__ . '/..' . '/../lib/Migration/RemoveObjectProperties.php', |
|
339 | - 'OCA\\DAV\\Migration\\RemoveOrphanEventsAndContacts' => __DIR__ . '/..' . '/../lib/Migration/RemoveOrphanEventsAndContacts.php', |
|
340 | - 'OCA\\DAV\\Migration\\Version1004Date20170825134824' => __DIR__ . '/..' . '/../lib/Migration/Version1004Date20170825134824.php', |
|
341 | - 'OCA\\DAV\\Migration\\Version1004Date20170919104507' => __DIR__ . '/..' . '/../lib/Migration/Version1004Date20170919104507.php', |
|
342 | - 'OCA\\DAV\\Migration\\Version1004Date20170924124212' => __DIR__ . '/..' . '/../lib/Migration/Version1004Date20170924124212.php', |
|
343 | - 'OCA\\DAV\\Migration\\Version1004Date20170926103422' => __DIR__ . '/..' . '/../lib/Migration/Version1004Date20170926103422.php', |
|
344 | - 'OCA\\DAV\\Migration\\Version1005Date20180413093149' => __DIR__ . '/..' . '/../lib/Migration/Version1005Date20180413093149.php', |
|
345 | - 'OCA\\DAV\\Migration\\Version1005Date20180530124431' => __DIR__ . '/..' . '/../lib/Migration/Version1005Date20180530124431.php', |
|
346 | - 'OCA\\DAV\\Migration\\Version1006Date20180619154313' => __DIR__ . '/..' . '/../lib/Migration/Version1006Date20180619154313.php', |
|
347 | - 'OCA\\DAV\\Migration\\Version1006Date20180628111625' => __DIR__ . '/..' . '/../lib/Migration/Version1006Date20180628111625.php', |
|
348 | - 'OCA\\DAV\\Migration\\Version1008Date20181030113700' => __DIR__ . '/..' . '/../lib/Migration/Version1008Date20181030113700.php', |
|
349 | - 'OCA\\DAV\\Migration\\Version1008Date20181105104826' => __DIR__ . '/..' . '/../lib/Migration/Version1008Date20181105104826.php', |
|
350 | - 'OCA\\DAV\\Migration\\Version1008Date20181105104833' => __DIR__ . '/..' . '/../lib/Migration/Version1008Date20181105104833.php', |
|
351 | - 'OCA\\DAV\\Migration\\Version1008Date20181105110300' => __DIR__ . '/..' . '/../lib/Migration/Version1008Date20181105110300.php', |
|
352 | - 'OCA\\DAV\\Migration\\Version1008Date20181105112049' => __DIR__ . '/..' . '/../lib/Migration/Version1008Date20181105112049.php', |
|
353 | - 'OCA\\DAV\\Migration\\Version1008Date20181114084440' => __DIR__ . '/..' . '/../lib/Migration/Version1008Date20181114084440.php', |
|
354 | - 'OCA\\DAV\\Migration\\Version1011Date20190725113607' => __DIR__ . '/..' . '/../lib/Migration/Version1011Date20190725113607.php', |
|
355 | - 'OCA\\DAV\\Migration\\Version1011Date20190806104428' => __DIR__ . '/..' . '/../lib/Migration/Version1011Date20190806104428.php', |
|
356 | - 'OCA\\DAV\\Migration\\Version1012Date20190808122342' => __DIR__ . '/..' . '/../lib/Migration/Version1012Date20190808122342.php', |
|
357 | - 'OCA\\DAV\\Migration\\Version1016Date20201109085907' => __DIR__ . '/..' . '/../lib/Migration/Version1016Date20201109085907.php', |
|
358 | - 'OCA\\DAV\\Migration\\Version1017Date20210216083742' => __DIR__ . '/..' . '/../lib/Migration/Version1017Date20210216083742.php', |
|
359 | - 'OCA\\DAV\\Migration\\Version1018Date20210312100735' => __DIR__ . '/..' . '/../lib/Migration/Version1018Date20210312100735.php', |
|
360 | - 'OCA\\DAV\\Migration\\Version1024Date20211221144219' => __DIR__ . '/..' . '/../lib/Migration/Version1024Date20211221144219.php', |
|
361 | - 'OCA\\DAV\\Migration\\Version1025Date20240308063933' => __DIR__ . '/..' . '/../lib/Migration/Version1025Date20240308063933.php', |
|
362 | - 'OCA\\DAV\\Migration\\Version1027Date20230504122946' => __DIR__ . '/..' . '/../lib/Migration/Version1027Date20230504122946.php', |
|
363 | - 'OCA\\DAV\\Migration\\Version1029Date20221114151721' => __DIR__ . '/..' . '/../lib/Migration/Version1029Date20221114151721.php', |
|
364 | - 'OCA\\DAV\\Migration\\Version1029Date20231004091403' => __DIR__ . '/..' . '/../lib/Migration/Version1029Date20231004091403.php', |
|
365 | - 'OCA\\DAV\\Migration\\Version1030Date20240205103243' => __DIR__ . '/..' . '/../lib/Migration/Version1030Date20240205103243.php', |
|
366 | - 'OCA\\DAV\\Migration\\Version1031Date20240610134258' => __DIR__ . '/..' . '/../lib/Migration/Version1031Date20240610134258.php', |
|
367 | - 'OCA\\DAV\\Paginate\\LimitedCopyIterator' => __DIR__ . '/..' . '/../lib/Paginate/LimitedCopyIterator.php', |
|
368 | - 'OCA\\DAV\\Paginate\\PaginateCache' => __DIR__ . '/..' . '/../lib/Paginate/PaginateCache.php', |
|
369 | - 'OCA\\DAV\\Paginate\\PaginatePlugin' => __DIR__ . '/..' . '/../lib/Paginate/PaginatePlugin.php', |
|
370 | - 'OCA\\DAV\\Profiler\\ProfilerPlugin' => __DIR__ . '/..' . '/../lib/Profiler/ProfilerPlugin.php', |
|
371 | - 'OCA\\DAV\\Provisioning\\Apple\\AppleProvisioningNode' => __DIR__ . '/..' . '/../lib/Provisioning/Apple/AppleProvisioningNode.php', |
|
372 | - 'OCA\\DAV\\Provisioning\\Apple\\AppleProvisioningPlugin' => __DIR__ . '/..' . '/../lib/Provisioning/Apple/AppleProvisioningPlugin.php', |
|
373 | - 'OCA\\DAV\\ResponseDefinitions' => __DIR__ . '/..' . '/../lib/ResponseDefinitions.php', |
|
374 | - 'OCA\\DAV\\RootCollection' => __DIR__ . '/..' . '/../lib/RootCollection.php', |
|
375 | - 'OCA\\DAV\\Search\\ACalendarSearchProvider' => __DIR__ . '/..' . '/../lib/Search/ACalendarSearchProvider.php', |
|
376 | - 'OCA\\DAV\\Search\\ContactsSearchProvider' => __DIR__ . '/..' . '/../lib/Search/ContactsSearchProvider.php', |
|
377 | - 'OCA\\DAV\\Search\\EventsSearchProvider' => __DIR__ . '/..' . '/../lib/Search/EventsSearchProvider.php', |
|
378 | - 'OCA\\DAV\\Search\\TasksSearchProvider' => __DIR__ . '/..' . '/../lib/Search/TasksSearchProvider.php', |
|
379 | - 'OCA\\DAV\\Server' => __DIR__ . '/..' . '/../lib/Server.php', |
|
380 | - 'OCA\\DAV\\ServerFactory' => __DIR__ . '/..' . '/../lib/ServerFactory.php', |
|
381 | - 'OCA\\DAV\\Service\\AbsenceService' => __DIR__ . '/..' . '/../lib/Service/AbsenceService.php', |
|
382 | - 'OCA\\DAV\\Service\\DefaultContactService' => __DIR__ . '/..' . '/../lib/Service/DefaultContactService.php', |
|
383 | - 'OCA\\DAV\\Settings\\Admin\\SystemAddressBookSettings' => __DIR__ . '/..' . '/../lib/Settings/Admin/SystemAddressBookSettings.php', |
|
384 | - 'OCA\\DAV\\Settings\\AvailabilitySettings' => __DIR__ . '/..' . '/../lib/Settings/AvailabilitySettings.php', |
|
385 | - 'OCA\\DAV\\Settings\\CalDAVSettings' => __DIR__ . '/..' . '/../lib/Settings/CalDAVSettings.php', |
|
386 | - 'OCA\\DAV\\Settings\\ExampleContentSettings' => __DIR__ . '/..' . '/../lib/Settings/ExampleContentSettings.php', |
|
387 | - 'OCA\\DAV\\SetupChecks\\NeedsSystemAddressBookSync' => __DIR__ . '/..' . '/../lib/SetupChecks/NeedsSystemAddressBookSync.php', |
|
388 | - 'OCA\\DAV\\SetupChecks\\WebdavEndpoint' => __DIR__ . '/..' . '/../lib/SetupChecks/WebdavEndpoint.php', |
|
389 | - 'OCA\\DAV\\Storage\\PublicOwnerWrapper' => __DIR__ . '/..' . '/../lib/Storage/PublicOwnerWrapper.php', |
|
390 | - 'OCA\\DAV\\Storage\\PublicShareWrapper' => __DIR__ . '/..' . '/../lib/Storage/PublicShareWrapper.php', |
|
391 | - 'OCA\\DAV\\SystemTag\\SystemTagList' => __DIR__ . '/..' . '/../lib/SystemTag/SystemTagList.php', |
|
392 | - 'OCA\\DAV\\SystemTag\\SystemTagMappingNode' => __DIR__ . '/..' . '/../lib/SystemTag/SystemTagMappingNode.php', |
|
393 | - 'OCA\\DAV\\SystemTag\\SystemTagNode' => __DIR__ . '/..' . '/../lib/SystemTag/SystemTagNode.php', |
|
394 | - 'OCA\\DAV\\SystemTag\\SystemTagObjectType' => __DIR__ . '/..' . '/../lib/SystemTag/SystemTagObjectType.php', |
|
395 | - 'OCA\\DAV\\SystemTag\\SystemTagPlugin' => __DIR__ . '/..' . '/../lib/SystemTag/SystemTagPlugin.php', |
|
396 | - 'OCA\\DAV\\SystemTag\\SystemTagsByIdCollection' => __DIR__ . '/..' . '/../lib/SystemTag/SystemTagsByIdCollection.php', |
|
397 | - 'OCA\\DAV\\SystemTag\\SystemTagsInUseCollection' => __DIR__ . '/..' . '/../lib/SystemTag/SystemTagsInUseCollection.php', |
|
398 | - 'OCA\\DAV\\SystemTag\\SystemTagsObjectList' => __DIR__ . '/..' . '/../lib/SystemTag/SystemTagsObjectList.php', |
|
399 | - 'OCA\\DAV\\SystemTag\\SystemTagsObjectMappingCollection' => __DIR__ . '/..' . '/../lib/SystemTag/SystemTagsObjectMappingCollection.php', |
|
400 | - 'OCA\\DAV\\SystemTag\\SystemTagsObjectTypeCollection' => __DIR__ . '/..' . '/../lib/SystemTag/SystemTagsObjectTypeCollection.php', |
|
401 | - 'OCA\\DAV\\SystemTag\\SystemTagsRelationsCollection' => __DIR__ . '/..' . '/../lib/SystemTag/SystemTagsRelationsCollection.php', |
|
402 | - 'OCA\\DAV\\Traits\\PrincipalProxyTrait' => __DIR__ . '/..' . '/../lib/Traits/PrincipalProxyTrait.php', |
|
403 | - 'OCA\\DAV\\Upload\\AssemblyStream' => __DIR__ . '/..' . '/../lib/Upload/AssemblyStream.php', |
|
404 | - 'OCA\\DAV\\Upload\\ChunkingPlugin' => __DIR__ . '/..' . '/../lib/Upload/ChunkingPlugin.php', |
|
405 | - 'OCA\\DAV\\Upload\\ChunkingV2Plugin' => __DIR__ . '/..' . '/../lib/Upload/ChunkingV2Plugin.php', |
|
406 | - 'OCA\\DAV\\Upload\\CleanupService' => __DIR__ . '/..' . '/../lib/Upload/CleanupService.php', |
|
407 | - 'OCA\\DAV\\Upload\\FutureFile' => __DIR__ . '/..' . '/../lib/Upload/FutureFile.php', |
|
408 | - 'OCA\\DAV\\Upload\\PartFile' => __DIR__ . '/..' . '/../lib/Upload/PartFile.php', |
|
409 | - 'OCA\\DAV\\Upload\\RootCollection' => __DIR__ . '/..' . '/../lib/Upload/RootCollection.php', |
|
410 | - 'OCA\\DAV\\Upload\\UploadFile' => __DIR__ . '/..' . '/../lib/Upload/UploadFile.php', |
|
411 | - 'OCA\\DAV\\Upload\\UploadFolder' => __DIR__ . '/..' . '/../lib/Upload/UploadFolder.php', |
|
412 | - 'OCA\\DAV\\Upload\\UploadHome' => __DIR__ . '/..' . '/../lib/Upload/UploadHome.php', |
|
413 | - 'OCA\\DAV\\UserMigration\\CalendarMigrator' => __DIR__ . '/..' . '/../lib/UserMigration/CalendarMigrator.php', |
|
414 | - 'OCA\\DAV\\UserMigration\\CalendarMigratorException' => __DIR__ . '/..' . '/../lib/UserMigration/CalendarMigratorException.php', |
|
415 | - 'OCA\\DAV\\UserMigration\\ContactsMigrator' => __DIR__ . '/..' . '/../lib/UserMigration/ContactsMigrator.php', |
|
416 | - 'OCA\\DAV\\UserMigration\\ContactsMigratorException' => __DIR__ . '/..' . '/../lib/UserMigration/ContactsMigratorException.php', |
|
417 | - 'OCA\\DAV\\UserMigration\\InvalidAddressBookException' => __DIR__ . '/..' . '/../lib/UserMigration/InvalidAddressBookException.php', |
|
418 | - '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\\CleanupOrphanedChildrenJob' => __DIR__.'/..'.'/../lib/BackgroundJob/CleanupOrphanedChildrenJob.php', |
|
35 | + 'OCA\\DAV\\BackgroundJob\\DeleteOutdatedSchedulingObjects' => __DIR__.'/..'.'/../lib/BackgroundJob/DeleteOutdatedSchedulingObjects.php', |
|
36 | + 'OCA\\DAV\\BackgroundJob\\EventReminderJob' => __DIR__.'/..'.'/../lib/BackgroundJob/EventReminderJob.php', |
|
37 | + 'OCA\\DAV\\BackgroundJob\\GenerateBirthdayCalendarBackgroundJob' => __DIR__.'/..'.'/../lib/BackgroundJob/GenerateBirthdayCalendarBackgroundJob.php', |
|
38 | + 'OCA\\DAV\\BackgroundJob\\OutOfOfficeEventDispatcherJob' => __DIR__.'/..'.'/../lib/BackgroundJob/OutOfOfficeEventDispatcherJob.php', |
|
39 | + 'OCA\\DAV\\BackgroundJob\\PruneOutdatedSyncTokensJob' => __DIR__.'/..'.'/../lib/BackgroundJob/PruneOutdatedSyncTokensJob.php', |
|
40 | + 'OCA\\DAV\\BackgroundJob\\RefreshWebcalJob' => __DIR__.'/..'.'/../lib/BackgroundJob/RefreshWebcalJob.php', |
|
41 | + 'OCA\\DAV\\BackgroundJob\\RegisterRegenerateBirthdayCalendars' => __DIR__.'/..'.'/../lib/BackgroundJob/RegisterRegenerateBirthdayCalendars.php', |
|
42 | + 'OCA\\DAV\\BackgroundJob\\UpdateCalendarResourcesRoomsBackgroundJob' => __DIR__.'/..'.'/../lib/BackgroundJob/UpdateCalendarResourcesRoomsBackgroundJob.php', |
|
43 | + 'OCA\\DAV\\BackgroundJob\\UploadCleanup' => __DIR__.'/..'.'/../lib/BackgroundJob/UploadCleanup.php', |
|
44 | + 'OCA\\DAV\\BackgroundJob\\UserStatusAutomation' => __DIR__.'/..'.'/../lib/BackgroundJob/UserStatusAutomation.php', |
|
45 | + 'OCA\\DAV\\BulkUpload\\BulkUploadPlugin' => __DIR__.'/..'.'/../lib/BulkUpload/BulkUploadPlugin.php', |
|
46 | + 'OCA\\DAV\\BulkUpload\\MultipartRequestParser' => __DIR__.'/..'.'/../lib/BulkUpload/MultipartRequestParser.php', |
|
47 | + 'OCA\\DAV\\CalDAV\\Activity\\Backend' => __DIR__.'/..'.'/../lib/CalDAV/Activity/Backend.php', |
|
48 | + 'OCA\\DAV\\CalDAV\\Activity\\Filter\\Calendar' => __DIR__.'/..'.'/../lib/CalDAV/Activity/Filter/Calendar.php', |
|
49 | + 'OCA\\DAV\\CalDAV\\Activity\\Filter\\Todo' => __DIR__.'/..'.'/../lib/CalDAV/Activity/Filter/Todo.php', |
|
50 | + 'OCA\\DAV\\CalDAV\\Activity\\Provider\\Base' => __DIR__.'/..'.'/../lib/CalDAV/Activity/Provider/Base.php', |
|
51 | + 'OCA\\DAV\\CalDAV\\Activity\\Provider\\Calendar' => __DIR__.'/..'.'/../lib/CalDAV/Activity/Provider/Calendar.php', |
|
52 | + 'OCA\\DAV\\CalDAV\\Activity\\Provider\\Event' => __DIR__.'/..'.'/../lib/CalDAV/Activity/Provider/Event.php', |
|
53 | + 'OCA\\DAV\\CalDAV\\Activity\\Provider\\Todo' => __DIR__.'/..'.'/../lib/CalDAV/Activity/Provider/Todo.php', |
|
54 | + 'OCA\\DAV\\CalDAV\\Activity\\Setting\\CalDAVSetting' => __DIR__.'/..'.'/../lib/CalDAV/Activity/Setting/CalDAVSetting.php', |
|
55 | + 'OCA\\DAV\\CalDAV\\Activity\\Setting\\Calendar' => __DIR__.'/..'.'/../lib/CalDAV/Activity/Setting/Calendar.php', |
|
56 | + 'OCA\\DAV\\CalDAV\\Activity\\Setting\\Event' => __DIR__.'/..'.'/../lib/CalDAV/Activity/Setting/Event.php', |
|
57 | + 'OCA\\DAV\\CalDAV\\Activity\\Setting\\Todo' => __DIR__.'/..'.'/../lib/CalDAV/Activity/Setting/Todo.php', |
|
58 | + 'OCA\\DAV\\CalDAV\\AppCalendar\\AppCalendar' => __DIR__.'/..'.'/../lib/CalDAV/AppCalendar/AppCalendar.php', |
|
59 | + 'OCA\\DAV\\CalDAV\\AppCalendar\\AppCalendarPlugin' => __DIR__.'/..'.'/../lib/CalDAV/AppCalendar/AppCalendarPlugin.php', |
|
60 | + 'OCA\\DAV\\CalDAV\\AppCalendar\\CalendarObject' => __DIR__.'/..'.'/../lib/CalDAV/AppCalendar/CalendarObject.php', |
|
61 | + 'OCA\\DAV\\CalDAV\\Auth\\CustomPrincipalPlugin' => __DIR__.'/..'.'/../lib/CalDAV/Auth/CustomPrincipalPlugin.php', |
|
62 | + 'OCA\\DAV\\CalDAV\\Auth\\PublicPrincipalPlugin' => __DIR__.'/..'.'/../lib/CalDAV/Auth/PublicPrincipalPlugin.php', |
|
63 | + 'OCA\\DAV\\CalDAV\\BirthdayCalendar\\EnablePlugin' => __DIR__.'/..'.'/../lib/CalDAV/BirthdayCalendar/EnablePlugin.php', |
|
64 | + 'OCA\\DAV\\CalDAV\\BirthdayService' => __DIR__.'/..'.'/../lib/CalDAV/BirthdayService.php', |
|
65 | + 'OCA\\DAV\\CalDAV\\CachedSubscription' => __DIR__.'/..'.'/../lib/CalDAV/CachedSubscription.php', |
|
66 | + 'OCA\\DAV\\CalDAV\\CachedSubscriptionImpl' => __DIR__.'/..'.'/../lib/CalDAV/CachedSubscriptionImpl.php', |
|
67 | + 'OCA\\DAV\\CalDAV\\CachedSubscriptionObject' => __DIR__.'/..'.'/../lib/CalDAV/CachedSubscriptionObject.php', |
|
68 | + 'OCA\\DAV\\CalDAV\\CachedSubscriptionProvider' => __DIR__.'/..'.'/../lib/CalDAV/CachedSubscriptionProvider.php', |
|
69 | + 'OCA\\DAV\\CalDAV\\CalDavBackend' => __DIR__.'/..'.'/../lib/CalDAV/CalDavBackend.php', |
|
70 | + 'OCA\\DAV\\CalDAV\\Calendar' => __DIR__.'/..'.'/../lib/CalDAV/Calendar.php', |
|
71 | + 'OCA\\DAV\\CalDAV\\CalendarHome' => __DIR__.'/..'.'/../lib/CalDAV/CalendarHome.php', |
|
72 | + 'OCA\\DAV\\CalDAV\\CalendarImpl' => __DIR__.'/..'.'/../lib/CalDAV/CalendarImpl.php', |
|
73 | + 'OCA\\DAV\\CalDAV\\CalendarManager' => __DIR__.'/..'.'/../lib/CalDAV/CalendarManager.php', |
|
74 | + 'OCA\\DAV\\CalDAV\\CalendarObject' => __DIR__.'/..'.'/../lib/CalDAV/CalendarObject.php', |
|
75 | + 'OCA\\DAV\\CalDAV\\CalendarProvider' => __DIR__.'/..'.'/../lib/CalDAV/CalendarProvider.php', |
|
76 | + 'OCA\\DAV\\CalDAV\\CalendarRoot' => __DIR__.'/..'.'/../lib/CalDAV/CalendarRoot.php', |
|
77 | + 'OCA\\DAV\\CalDAV\\DefaultCalendarValidator' => __DIR__.'/..'.'/../lib/CalDAV/DefaultCalendarValidator.php', |
|
78 | + 'OCA\\DAV\\CalDAV\\EventComparisonService' => __DIR__.'/..'.'/../lib/CalDAV/EventComparisonService.php', |
|
79 | + 'OCA\\DAV\\CalDAV\\EventReader' => __DIR__.'/..'.'/../lib/CalDAV/EventReader.php', |
|
80 | + 'OCA\\DAV\\CalDAV\\EventReaderRDate' => __DIR__.'/..'.'/../lib/CalDAV/EventReaderRDate.php', |
|
81 | + 'OCA\\DAV\\CalDAV\\EventReaderRRule' => __DIR__.'/..'.'/../lib/CalDAV/EventReaderRRule.php', |
|
82 | + 'OCA\\DAV\\CalDAV\\Export\\ExportService' => __DIR__.'/..'.'/../lib/CalDAV/Export/ExportService.php', |
|
83 | + 'OCA\\DAV\\CalDAV\\FreeBusy\\FreeBusyGenerator' => __DIR__.'/..'.'/../lib/CalDAV/FreeBusy/FreeBusyGenerator.php', |
|
84 | + 'OCA\\DAV\\CalDAV\\ICSExportPlugin\\ICSExportPlugin' => __DIR__.'/..'.'/../lib/CalDAV/ICSExportPlugin/ICSExportPlugin.php', |
|
85 | + 'OCA\\DAV\\CalDAV\\IRestorable' => __DIR__.'/..'.'/../lib/CalDAV/IRestorable.php', |
|
86 | + 'OCA\\DAV\\CalDAV\\Integration\\ExternalCalendar' => __DIR__.'/..'.'/../lib/CalDAV/Integration/ExternalCalendar.php', |
|
87 | + 'OCA\\DAV\\CalDAV\\Integration\\ICalendarProvider' => __DIR__.'/..'.'/../lib/CalDAV/Integration/ICalendarProvider.php', |
|
88 | + 'OCA\\DAV\\CalDAV\\InvitationResponse\\InvitationResponseServer' => __DIR__.'/..'.'/../lib/CalDAV/InvitationResponse/InvitationResponseServer.php', |
|
89 | + 'OCA\\DAV\\CalDAV\\Outbox' => __DIR__.'/..'.'/../lib/CalDAV/Outbox.php', |
|
90 | + 'OCA\\DAV\\CalDAV\\Plugin' => __DIR__.'/..'.'/../lib/CalDAV/Plugin.php', |
|
91 | + 'OCA\\DAV\\CalDAV\\Principal\\Collection' => __DIR__.'/..'.'/../lib/CalDAV/Principal/Collection.php', |
|
92 | + 'OCA\\DAV\\CalDAV\\Principal\\User' => __DIR__.'/..'.'/../lib/CalDAV/Principal/User.php', |
|
93 | + 'OCA\\DAV\\CalDAV\\Proxy\\Proxy' => __DIR__.'/..'.'/../lib/CalDAV/Proxy/Proxy.php', |
|
94 | + 'OCA\\DAV\\CalDAV\\Proxy\\ProxyMapper' => __DIR__.'/..'.'/../lib/CalDAV/Proxy/ProxyMapper.php', |
|
95 | + 'OCA\\DAV\\CalDAV\\PublicCalendar' => __DIR__.'/..'.'/../lib/CalDAV/PublicCalendar.php', |
|
96 | + 'OCA\\DAV\\CalDAV\\PublicCalendarObject' => __DIR__.'/..'.'/../lib/CalDAV/PublicCalendarObject.php', |
|
97 | + 'OCA\\DAV\\CalDAV\\PublicCalendarRoot' => __DIR__.'/..'.'/../lib/CalDAV/PublicCalendarRoot.php', |
|
98 | + 'OCA\\DAV\\CalDAV\\Publishing\\PublishPlugin' => __DIR__.'/..'.'/../lib/CalDAV/Publishing/PublishPlugin.php', |
|
99 | + 'OCA\\DAV\\CalDAV\\Publishing\\Xml\\Publisher' => __DIR__.'/..'.'/../lib/CalDAV/Publishing/Xml/Publisher.php', |
|
100 | + 'OCA\\DAV\\CalDAV\\Reminder\\Backend' => __DIR__.'/..'.'/../lib/CalDAV/Reminder/Backend.php', |
|
101 | + 'OCA\\DAV\\CalDAV\\Reminder\\INotificationProvider' => __DIR__.'/..'.'/../lib/CalDAV/Reminder/INotificationProvider.php', |
|
102 | + 'OCA\\DAV\\CalDAV\\Reminder\\NotificationProviderManager' => __DIR__.'/..'.'/../lib/CalDAV/Reminder/NotificationProviderManager.php', |
|
103 | + 'OCA\\DAV\\CalDAV\\Reminder\\NotificationProvider\\AbstractProvider' => __DIR__.'/..'.'/../lib/CalDAV/Reminder/NotificationProvider/AbstractProvider.php', |
|
104 | + 'OCA\\DAV\\CalDAV\\Reminder\\NotificationProvider\\AudioProvider' => __DIR__.'/..'.'/../lib/CalDAV/Reminder/NotificationProvider/AudioProvider.php', |
|
105 | + 'OCA\\DAV\\CalDAV\\Reminder\\NotificationProvider\\EmailProvider' => __DIR__.'/..'.'/../lib/CalDAV/Reminder/NotificationProvider/EmailProvider.php', |
|
106 | + 'OCA\\DAV\\CalDAV\\Reminder\\NotificationProvider\\ProviderNotAvailableException' => __DIR__.'/..'.'/../lib/CalDAV/Reminder/NotificationProvider/ProviderNotAvailableException.php', |
|
107 | + 'OCA\\DAV\\CalDAV\\Reminder\\NotificationProvider\\PushProvider' => __DIR__.'/..'.'/../lib/CalDAV/Reminder/NotificationProvider/PushProvider.php', |
|
108 | + 'OCA\\DAV\\CalDAV\\Reminder\\NotificationTypeDoesNotExistException' => __DIR__.'/..'.'/../lib/CalDAV/Reminder/NotificationTypeDoesNotExistException.php', |
|
109 | + 'OCA\\DAV\\CalDAV\\Reminder\\Notifier' => __DIR__.'/..'.'/../lib/CalDAV/Reminder/Notifier.php', |
|
110 | + 'OCA\\DAV\\CalDAV\\Reminder\\ReminderService' => __DIR__.'/..'.'/../lib/CalDAV/Reminder/ReminderService.php', |
|
111 | + 'OCA\\DAV\\CalDAV\\ResourceBooking\\AbstractPrincipalBackend' => __DIR__.'/..'.'/../lib/CalDAV/ResourceBooking/AbstractPrincipalBackend.php', |
|
112 | + 'OCA\\DAV\\CalDAV\\ResourceBooking\\ResourcePrincipalBackend' => __DIR__.'/..'.'/../lib/CalDAV/ResourceBooking/ResourcePrincipalBackend.php', |
|
113 | + 'OCA\\DAV\\CalDAV\\ResourceBooking\\RoomPrincipalBackend' => __DIR__.'/..'.'/../lib/CalDAV/ResourceBooking/RoomPrincipalBackend.php', |
|
114 | + 'OCA\\DAV\\CalDAV\\RetentionService' => __DIR__.'/..'.'/../lib/CalDAV/RetentionService.php', |
|
115 | + 'OCA\\DAV\\CalDAV\\Schedule\\IMipPlugin' => __DIR__.'/..'.'/../lib/CalDAV/Schedule/IMipPlugin.php', |
|
116 | + 'OCA\\DAV\\CalDAV\\Schedule\\IMipService' => __DIR__.'/..'.'/../lib/CalDAV/Schedule/IMipService.php', |
|
117 | + 'OCA\\DAV\\CalDAV\\Schedule\\Plugin' => __DIR__.'/..'.'/../lib/CalDAV/Schedule/Plugin.php', |
|
118 | + 'OCA\\DAV\\CalDAV\\Search\\SearchPlugin' => __DIR__.'/..'.'/../lib/CalDAV/Search/SearchPlugin.php', |
|
119 | + 'OCA\\DAV\\CalDAV\\Search\\Xml\\Filter\\CompFilter' => __DIR__.'/..'.'/../lib/CalDAV/Search/Xml/Filter/CompFilter.php', |
|
120 | + 'OCA\\DAV\\CalDAV\\Search\\Xml\\Filter\\LimitFilter' => __DIR__.'/..'.'/../lib/CalDAV/Search/Xml/Filter/LimitFilter.php', |
|
121 | + 'OCA\\DAV\\CalDAV\\Search\\Xml\\Filter\\OffsetFilter' => __DIR__.'/..'.'/../lib/CalDAV/Search/Xml/Filter/OffsetFilter.php', |
|
122 | + 'OCA\\DAV\\CalDAV\\Search\\Xml\\Filter\\ParamFilter' => __DIR__.'/..'.'/../lib/CalDAV/Search/Xml/Filter/ParamFilter.php', |
|
123 | + 'OCA\\DAV\\CalDAV\\Search\\Xml\\Filter\\PropFilter' => __DIR__.'/..'.'/../lib/CalDAV/Search/Xml/Filter/PropFilter.php', |
|
124 | + 'OCA\\DAV\\CalDAV\\Search\\Xml\\Filter\\SearchTermFilter' => __DIR__.'/..'.'/../lib/CalDAV/Search/Xml/Filter/SearchTermFilter.php', |
|
125 | + 'OCA\\DAV\\CalDAV\\Search\\Xml\\Request\\CalendarSearchReport' => __DIR__.'/..'.'/../lib/CalDAV/Search/Xml/Request/CalendarSearchReport.php', |
|
126 | + 'OCA\\DAV\\CalDAV\\Security\\RateLimitingPlugin' => __DIR__.'/..'.'/../lib/CalDAV/Security/RateLimitingPlugin.php', |
|
127 | + 'OCA\\DAV\\CalDAV\\Sharing\\Backend' => __DIR__.'/..'.'/../lib/CalDAV/Sharing/Backend.php', |
|
128 | + 'OCA\\DAV\\CalDAV\\Sharing\\Service' => __DIR__.'/..'.'/../lib/CalDAV/Sharing/Service.php', |
|
129 | + 'OCA\\DAV\\CalDAV\\Status\\StatusService' => __DIR__.'/..'.'/../lib/CalDAV/Status/StatusService.php', |
|
130 | + 'OCA\\DAV\\CalDAV\\TimeZoneFactory' => __DIR__.'/..'.'/../lib/CalDAV/TimeZoneFactory.php', |
|
131 | + 'OCA\\DAV\\CalDAV\\TimezoneService' => __DIR__.'/..'.'/../lib/CalDAV/TimezoneService.php', |
|
132 | + 'OCA\\DAV\\CalDAV\\TipBroker' => __DIR__.'/..'.'/../lib/CalDAV/TipBroker.php', |
|
133 | + 'OCA\\DAV\\CalDAV\\Trashbin\\DeletedCalendarObject' => __DIR__.'/..'.'/../lib/CalDAV/Trashbin/DeletedCalendarObject.php', |
|
134 | + 'OCA\\DAV\\CalDAV\\Trashbin\\DeletedCalendarObjectsCollection' => __DIR__.'/..'.'/../lib/CalDAV/Trashbin/DeletedCalendarObjectsCollection.php', |
|
135 | + 'OCA\\DAV\\CalDAV\\Trashbin\\Plugin' => __DIR__.'/..'.'/../lib/CalDAV/Trashbin/Plugin.php', |
|
136 | + 'OCA\\DAV\\CalDAV\\Trashbin\\RestoreTarget' => __DIR__.'/..'.'/../lib/CalDAV/Trashbin/RestoreTarget.php', |
|
137 | + 'OCA\\DAV\\CalDAV\\Trashbin\\TrashbinHome' => __DIR__.'/..'.'/../lib/CalDAV/Trashbin/TrashbinHome.php', |
|
138 | + 'OCA\\DAV\\CalDAV\\UpcomingEvent' => __DIR__.'/..'.'/../lib/CalDAV/UpcomingEvent.php', |
|
139 | + 'OCA\\DAV\\CalDAV\\UpcomingEventsService' => __DIR__.'/..'.'/../lib/CalDAV/UpcomingEventsService.php', |
|
140 | + 'OCA\\DAV\\CalDAV\\Validation\\CalDavValidatePlugin' => __DIR__.'/..'.'/../lib/CalDAV/Validation/CalDavValidatePlugin.php', |
|
141 | + 'OCA\\DAV\\CalDAV\\WebcalCaching\\Connection' => __DIR__.'/..'.'/../lib/CalDAV/WebcalCaching/Connection.php', |
|
142 | + 'OCA\\DAV\\CalDAV\\WebcalCaching\\Plugin' => __DIR__.'/..'.'/../lib/CalDAV/WebcalCaching/Plugin.php', |
|
143 | + 'OCA\\DAV\\CalDAV\\WebcalCaching\\RefreshWebcalService' => __DIR__.'/..'.'/../lib/CalDAV/WebcalCaching/RefreshWebcalService.php', |
|
144 | + 'OCA\\DAV\\Capabilities' => __DIR__.'/..'.'/../lib/Capabilities.php', |
|
145 | + 'OCA\\DAV\\CardDAV\\Activity\\Backend' => __DIR__.'/..'.'/../lib/CardDAV/Activity/Backend.php', |
|
146 | + 'OCA\\DAV\\CardDAV\\Activity\\Filter' => __DIR__.'/..'.'/../lib/CardDAV/Activity/Filter.php', |
|
147 | + 'OCA\\DAV\\CardDAV\\Activity\\Provider\\Addressbook' => __DIR__.'/..'.'/../lib/CardDAV/Activity/Provider/Addressbook.php', |
|
148 | + 'OCA\\DAV\\CardDAV\\Activity\\Provider\\Base' => __DIR__.'/..'.'/../lib/CardDAV/Activity/Provider/Base.php', |
|
149 | + 'OCA\\DAV\\CardDAV\\Activity\\Provider\\Card' => __DIR__.'/..'.'/../lib/CardDAV/Activity/Provider/Card.php', |
|
150 | + 'OCA\\DAV\\CardDAV\\Activity\\Setting' => __DIR__.'/..'.'/../lib/CardDAV/Activity/Setting.php', |
|
151 | + 'OCA\\DAV\\CardDAV\\AddressBook' => __DIR__.'/..'.'/../lib/CardDAV/AddressBook.php', |
|
152 | + 'OCA\\DAV\\CardDAV\\AddressBookImpl' => __DIR__.'/..'.'/../lib/CardDAV/AddressBookImpl.php', |
|
153 | + 'OCA\\DAV\\CardDAV\\AddressBookRoot' => __DIR__.'/..'.'/../lib/CardDAV/AddressBookRoot.php', |
|
154 | + 'OCA\\DAV\\CardDAV\\Card' => __DIR__.'/..'.'/../lib/CardDAV/Card.php', |
|
155 | + 'OCA\\DAV\\CardDAV\\CardDavBackend' => __DIR__.'/..'.'/../lib/CardDAV/CardDavBackend.php', |
|
156 | + 'OCA\\DAV\\CardDAV\\ContactsManager' => __DIR__.'/..'.'/../lib/CardDAV/ContactsManager.php', |
|
157 | + 'OCA\\DAV\\CardDAV\\Converter' => __DIR__.'/..'.'/../lib/CardDAV/Converter.php', |
|
158 | + 'OCA\\DAV\\CardDAV\\HasPhotoPlugin' => __DIR__.'/..'.'/../lib/CardDAV/HasPhotoPlugin.php', |
|
159 | + 'OCA\\DAV\\CardDAV\\ImageExportPlugin' => __DIR__.'/..'.'/../lib/CardDAV/ImageExportPlugin.php', |
|
160 | + 'OCA\\DAV\\CardDAV\\Integration\\ExternalAddressBook' => __DIR__.'/..'.'/../lib/CardDAV/Integration/ExternalAddressBook.php', |
|
161 | + 'OCA\\DAV\\CardDAV\\Integration\\IAddressBookProvider' => __DIR__.'/..'.'/../lib/CardDAV/Integration/IAddressBookProvider.php', |
|
162 | + 'OCA\\DAV\\CardDAV\\MultiGetExportPlugin' => __DIR__.'/..'.'/../lib/CardDAV/MultiGetExportPlugin.php', |
|
163 | + 'OCA\\DAV\\CardDAV\\PhotoCache' => __DIR__.'/..'.'/../lib/CardDAV/PhotoCache.php', |
|
164 | + 'OCA\\DAV\\CardDAV\\Plugin' => __DIR__.'/..'.'/../lib/CardDAV/Plugin.php', |
|
165 | + 'OCA\\DAV\\CardDAV\\Security\\CardDavRateLimitingPlugin' => __DIR__.'/..'.'/../lib/CardDAV/Security/CardDavRateLimitingPlugin.php', |
|
166 | + 'OCA\\DAV\\CardDAV\\Sharing\\Backend' => __DIR__.'/..'.'/../lib/CardDAV/Sharing/Backend.php', |
|
167 | + 'OCA\\DAV\\CardDAV\\Sharing\\Service' => __DIR__.'/..'.'/../lib/CardDAV/Sharing/Service.php', |
|
168 | + 'OCA\\DAV\\CardDAV\\SyncService' => __DIR__.'/..'.'/../lib/CardDAV/SyncService.php', |
|
169 | + 'OCA\\DAV\\CardDAV\\SystemAddressbook' => __DIR__.'/..'.'/../lib/CardDAV/SystemAddressbook.php', |
|
170 | + 'OCA\\DAV\\CardDAV\\UserAddressBooks' => __DIR__.'/..'.'/../lib/CardDAV/UserAddressBooks.php', |
|
171 | + 'OCA\\DAV\\CardDAV\\Validation\\CardDavValidatePlugin' => __DIR__.'/..'.'/../lib/CardDAV/Validation/CardDavValidatePlugin.php', |
|
172 | + 'OCA\\DAV\\CardDAV\\Xml\\Groups' => __DIR__.'/..'.'/../lib/CardDAV/Xml/Groups.php', |
|
173 | + 'OCA\\DAV\\Command\\ClearCalendarUnshares' => __DIR__.'/..'.'/../lib/Command/ClearCalendarUnshares.php', |
|
174 | + 'OCA\\DAV\\Command\\ClearContactsPhotoCache' => __DIR__.'/..'.'/../lib/Command/ClearContactsPhotoCache.php', |
|
175 | + 'OCA\\DAV\\Command\\CreateAddressBook' => __DIR__.'/..'.'/../lib/Command/CreateAddressBook.php', |
|
176 | + 'OCA\\DAV\\Command\\CreateCalendar' => __DIR__.'/..'.'/../lib/Command/CreateCalendar.php', |
|
177 | + 'OCA\\DAV\\Command\\CreateSubscription' => __DIR__.'/..'.'/../lib/Command/CreateSubscription.php', |
|
178 | + 'OCA\\DAV\\Command\\DeleteCalendar' => __DIR__.'/..'.'/../lib/Command/DeleteCalendar.php', |
|
179 | + 'OCA\\DAV\\Command\\DeleteSubscription' => __DIR__.'/..'.'/../lib/Command/DeleteSubscription.php', |
|
180 | + 'OCA\\DAV\\Command\\ExportCalendar' => __DIR__.'/..'.'/../lib/Command/ExportCalendar.php', |
|
181 | + 'OCA\\DAV\\Command\\FixCalendarSyncCommand' => __DIR__.'/..'.'/../lib/Command/FixCalendarSyncCommand.php', |
|
182 | + 'OCA\\DAV\\Command\\ListAddressbooks' => __DIR__.'/..'.'/../lib/Command/ListAddressbooks.php', |
|
183 | + 'OCA\\DAV\\Command\\ListCalendarShares' => __DIR__.'/..'.'/../lib/Command/ListCalendarShares.php', |
|
184 | + 'OCA\\DAV\\Command\\ListCalendars' => __DIR__.'/..'.'/../lib/Command/ListCalendars.php', |
|
185 | + 'OCA\\DAV\\Command\\ListSubscriptions' => __DIR__.'/..'.'/../lib/Command/ListSubscriptions.php', |
|
186 | + 'OCA\\DAV\\Command\\MoveCalendar' => __DIR__.'/..'.'/../lib/Command/MoveCalendar.php', |
|
187 | + 'OCA\\DAV\\Command\\RemoveInvalidShares' => __DIR__.'/..'.'/../lib/Command/RemoveInvalidShares.php', |
|
188 | + 'OCA\\DAV\\Command\\RetentionCleanupCommand' => __DIR__.'/..'.'/../lib/Command/RetentionCleanupCommand.php', |
|
189 | + 'OCA\\DAV\\Command\\SendEventReminders' => __DIR__.'/..'.'/../lib/Command/SendEventReminders.php', |
|
190 | + 'OCA\\DAV\\Command\\SyncBirthdayCalendar' => __DIR__.'/..'.'/../lib/Command/SyncBirthdayCalendar.php', |
|
191 | + 'OCA\\DAV\\Command\\SyncSystemAddressBook' => __DIR__.'/..'.'/../lib/Command/SyncSystemAddressBook.php', |
|
192 | + 'OCA\\DAV\\Comments\\CommentNode' => __DIR__.'/..'.'/../lib/Comments/CommentNode.php', |
|
193 | + 'OCA\\DAV\\Comments\\CommentsPlugin' => __DIR__.'/..'.'/../lib/Comments/CommentsPlugin.php', |
|
194 | + 'OCA\\DAV\\Comments\\EntityCollection' => __DIR__.'/..'.'/../lib/Comments/EntityCollection.php', |
|
195 | + 'OCA\\DAV\\Comments\\EntityTypeCollection' => __DIR__.'/..'.'/../lib/Comments/EntityTypeCollection.php', |
|
196 | + 'OCA\\DAV\\Comments\\RootCollection' => __DIR__.'/..'.'/../lib/Comments/RootCollection.php', |
|
197 | + 'OCA\\DAV\\Connector\\LegacyDAVACL' => __DIR__.'/..'.'/../lib/Connector/LegacyDAVACL.php', |
|
198 | + 'OCA\\DAV\\Connector\\LegacyPublicAuth' => __DIR__.'/..'.'/../lib/Connector/LegacyPublicAuth.php', |
|
199 | + 'OCA\\DAV\\Connector\\Sabre\\AnonymousOptionsPlugin' => __DIR__.'/..'.'/../lib/Connector/Sabre/AnonymousOptionsPlugin.php', |
|
200 | + 'OCA\\DAV\\Connector\\Sabre\\AppleQuirksPlugin' => __DIR__.'/..'.'/../lib/Connector/Sabre/AppleQuirksPlugin.php', |
|
201 | + 'OCA\\DAV\\Connector\\Sabre\\Auth' => __DIR__.'/..'.'/../lib/Connector/Sabre/Auth.php', |
|
202 | + 'OCA\\DAV\\Connector\\Sabre\\BearerAuth' => __DIR__.'/..'.'/../lib/Connector/Sabre/BearerAuth.php', |
|
203 | + 'OCA\\DAV\\Connector\\Sabre\\BlockLegacyClientPlugin' => __DIR__.'/..'.'/../lib/Connector/Sabre/BlockLegacyClientPlugin.php', |
|
204 | + 'OCA\\DAV\\Connector\\Sabre\\CachingTree' => __DIR__.'/..'.'/../lib/Connector/Sabre/CachingTree.php', |
|
205 | + 'OCA\\DAV\\Connector\\Sabre\\ChecksumList' => __DIR__.'/..'.'/../lib/Connector/Sabre/ChecksumList.php', |
|
206 | + 'OCA\\DAV\\Connector\\Sabre\\ChecksumUpdatePlugin' => __DIR__.'/..'.'/../lib/Connector/Sabre/ChecksumUpdatePlugin.php', |
|
207 | + 'OCA\\DAV\\Connector\\Sabre\\CommentPropertiesPlugin' => __DIR__.'/..'.'/../lib/Connector/Sabre/CommentPropertiesPlugin.php', |
|
208 | + 'OCA\\DAV\\Connector\\Sabre\\CopyEtagHeaderPlugin' => __DIR__.'/..'.'/../lib/Connector/Sabre/CopyEtagHeaderPlugin.php', |
|
209 | + 'OCA\\DAV\\Connector\\Sabre\\DavAclPlugin' => __DIR__.'/..'.'/../lib/Connector/Sabre/DavAclPlugin.php', |
|
210 | + 'OCA\\DAV\\Connector\\Sabre\\Directory' => __DIR__.'/..'.'/../lib/Connector/Sabre/Directory.php', |
|
211 | + 'OCA\\DAV\\Connector\\Sabre\\DummyGetResponsePlugin' => __DIR__.'/..'.'/../lib/Connector/Sabre/DummyGetResponsePlugin.php', |
|
212 | + 'OCA\\DAV\\Connector\\Sabre\\ExceptionLoggerPlugin' => __DIR__.'/..'.'/../lib/Connector/Sabre/ExceptionLoggerPlugin.php', |
|
213 | + 'OCA\\DAV\\Connector\\Sabre\\Exception\\BadGateway' => __DIR__.'/..'.'/../lib/Connector/Sabre/Exception/BadGateway.php', |
|
214 | + 'OCA\\DAV\\Connector\\Sabre\\Exception\\EntityTooLarge' => __DIR__.'/..'.'/../lib/Connector/Sabre/Exception/EntityTooLarge.php', |
|
215 | + 'OCA\\DAV\\Connector\\Sabre\\Exception\\FileLocked' => __DIR__.'/..'.'/../lib/Connector/Sabre/Exception/FileLocked.php', |
|
216 | + 'OCA\\DAV\\Connector\\Sabre\\Exception\\Forbidden' => __DIR__.'/..'.'/../lib/Connector/Sabre/Exception/Forbidden.php', |
|
217 | + 'OCA\\DAV\\Connector\\Sabre\\Exception\\InvalidPath' => __DIR__.'/..'.'/../lib/Connector/Sabre/Exception/InvalidPath.php', |
|
218 | + 'OCA\\DAV\\Connector\\Sabre\\Exception\\PasswordLoginForbidden' => __DIR__.'/..'.'/../lib/Connector/Sabre/Exception/PasswordLoginForbidden.php', |
|
219 | + 'OCA\\DAV\\Connector\\Sabre\\Exception\\TooManyRequests' => __DIR__.'/..'.'/../lib/Connector/Sabre/Exception/TooManyRequests.php', |
|
220 | + 'OCA\\DAV\\Connector\\Sabre\\Exception\\UnsupportedMediaType' => __DIR__.'/..'.'/../lib/Connector/Sabre/Exception/UnsupportedMediaType.php', |
|
221 | + 'OCA\\DAV\\Connector\\Sabre\\FakeLockerPlugin' => __DIR__.'/..'.'/../lib/Connector/Sabre/FakeLockerPlugin.php', |
|
222 | + 'OCA\\DAV\\Connector\\Sabre\\File' => __DIR__.'/..'.'/../lib/Connector/Sabre/File.php', |
|
223 | + 'OCA\\DAV\\Connector\\Sabre\\FilesPlugin' => __DIR__.'/..'.'/../lib/Connector/Sabre/FilesPlugin.php', |
|
224 | + 'OCA\\DAV\\Connector\\Sabre\\FilesReportPlugin' => __DIR__.'/..'.'/../lib/Connector/Sabre/FilesReportPlugin.php', |
|
225 | + 'OCA\\DAV\\Connector\\Sabre\\LockPlugin' => __DIR__.'/..'.'/../lib/Connector/Sabre/LockPlugin.php', |
|
226 | + 'OCA\\DAV\\Connector\\Sabre\\MaintenancePlugin' => __DIR__.'/..'.'/../lib/Connector/Sabre/MaintenancePlugin.php', |
|
227 | + 'OCA\\DAV\\Connector\\Sabre\\MtimeSanitizer' => __DIR__.'/..'.'/../lib/Connector/Sabre/MtimeSanitizer.php', |
|
228 | + 'OCA\\DAV\\Connector\\Sabre\\Node' => __DIR__.'/..'.'/../lib/Connector/Sabre/Node.php', |
|
229 | + 'OCA\\DAV\\Connector\\Sabre\\ObjectTree' => __DIR__.'/..'.'/../lib/Connector/Sabre/ObjectTree.php', |
|
230 | + 'OCA\\DAV\\Connector\\Sabre\\Principal' => __DIR__.'/..'.'/../lib/Connector/Sabre/Principal.php', |
|
231 | + 'OCA\\DAV\\Connector\\Sabre\\PropfindCompressionPlugin' => __DIR__.'/..'.'/../lib/Connector/Sabre/PropfindCompressionPlugin.php', |
|
232 | + 'OCA\\DAV\\Connector\\Sabre\\PublicAuth' => __DIR__.'/..'.'/../lib/Connector/Sabre/PublicAuth.php', |
|
233 | + 'OCA\\DAV\\Connector\\Sabre\\QuotaPlugin' => __DIR__.'/..'.'/../lib/Connector/Sabre/QuotaPlugin.php', |
|
234 | + 'OCA\\DAV\\Connector\\Sabre\\RequestIdHeaderPlugin' => __DIR__.'/..'.'/../lib/Connector/Sabre/RequestIdHeaderPlugin.php', |
|
235 | + 'OCA\\DAV\\Connector\\Sabre\\Server' => __DIR__.'/..'.'/../lib/Connector/Sabre/Server.php', |
|
236 | + 'OCA\\DAV\\Connector\\Sabre\\ServerFactory' => __DIR__.'/..'.'/../lib/Connector/Sabre/ServerFactory.php', |
|
237 | + 'OCA\\DAV\\Connector\\Sabre\\ShareTypeList' => __DIR__.'/..'.'/../lib/Connector/Sabre/ShareTypeList.php', |
|
238 | + 'OCA\\DAV\\Connector\\Sabre\\ShareeList' => __DIR__.'/..'.'/../lib/Connector/Sabre/ShareeList.php', |
|
239 | + 'OCA\\DAV\\Connector\\Sabre\\SharesPlugin' => __DIR__.'/..'.'/../lib/Connector/Sabre/SharesPlugin.php', |
|
240 | + 'OCA\\DAV\\Connector\\Sabre\\TagList' => __DIR__.'/..'.'/../lib/Connector/Sabre/TagList.php', |
|
241 | + 'OCA\\DAV\\Connector\\Sabre\\TagsPlugin' => __DIR__.'/..'.'/../lib/Connector/Sabre/TagsPlugin.php', |
|
242 | + 'OCA\\DAV\\Connector\\Sabre\\ZipFolderPlugin' => __DIR__.'/..'.'/../lib/Connector/Sabre/ZipFolderPlugin.php', |
|
243 | + 'OCA\\DAV\\Controller\\BirthdayCalendarController' => __DIR__.'/..'.'/../lib/Controller/BirthdayCalendarController.php', |
|
244 | + 'OCA\\DAV\\Controller\\DirectController' => __DIR__.'/..'.'/../lib/Controller/DirectController.php', |
|
245 | + 'OCA\\DAV\\Controller\\ExampleContentController' => __DIR__.'/..'.'/../lib/Controller/ExampleContentController.php', |
|
246 | + 'OCA\\DAV\\Controller\\InvitationResponseController' => __DIR__.'/..'.'/../lib/Controller/InvitationResponseController.php', |
|
247 | + 'OCA\\DAV\\Controller\\OutOfOfficeController' => __DIR__.'/..'.'/../lib/Controller/OutOfOfficeController.php', |
|
248 | + 'OCA\\DAV\\Controller\\UpcomingEventsController' => __DIR__.'/..'.'/../lib/Controller/UpcomingEventsController.php', |
|
249 | + 'OCA\\DAV\\DAV\\CustomPropertiesBackend' => __DIR__.'/..'.'/../lib/DAV/CustomPropertiesBackend.php', |
|
250 | + 'OCA\\DAV\\DAV\\GroupPrincipalBackend' => __DIR__.'/..'.'/../lib/DAV/GroupPrincipalBackend.php', |
|
251 | + 'OCA\\DAV\\DAV\\PublicAuth' => __DIR__.'/..'.'/../lib/DAV/PublicAuth.php', |
|
252 | + 'OCA\\DAV\\DAV\\Sharing\\Backend' => __DIR__.'/..'.'/../lib/DAV/Sharing/Backend.php', |
|
253 | + 'OCA\\DAV\\DAV\\Sharing\\IShareable' => __DIR__.'/..'.'/../lib/DAV/Sharing/IShareable.php', |
|
254 | + 'OCA\\DAV\\DAV\\Sharing\\Plugin' => __DIR__.'/..'.'/../lib/DAV/Sharing/Plugin.php', |
|
255 | + 'OCA\\DAV\\DAV\\Sharing\\SharingMapper' => __DIR__.'/..'.'/../lib/DAV/Sharing/SharingMapper.php', |
|
256 | + 'OCA\\DAV\\DAV\\Sharing\\SharingService' => __DIR__.'/..'.'/../lib/DAV/Sharing/SharingService.php', |
|
257 | + 'OCA\\DAV\\DAV\\Sharing\\Xml\\Invite' => __DIR__.'/..'.'/../lib/DAV/Sharing/Xml/Invite.php', |
|
258 | + 'OCA\\DAV\\DAV\\Sharing\\Xml\\ShareRequest' => __DIR__.'/..'.'/../lib/DAV/Sharing/Xml/ShareRequest.php', |
|
259 | + 'OCA\\DAV\\DAV\\SystemPrincipalBackend' => __DIR__.'/..'.'/../lib/DAV/SystemPrincipalBackend.php', |
|
260 | + 'OCA\\DAV\\DAV\\ViewOnlyPlugin' => __DIR__.'/..'.'/../lib/DAV/ViewOnlyPlugin.php', |
|
261 | + 'OCA\\DAV\\Db\\Absence' => __DIR__.'/..'.'/../lib/Db/Absence.php', |
|
262 | + 'OCA\\DAV\\Db\\AbsenceMapper' => __DIR__.'/..'.'/../lib/Db/AbsenceMapper.php', |
|
263 | + 'OCA\\DAV\\Db\\Direct' => __DIR__.'/..'.'/../lib/Db/Direct.php', |
|
264 | + 'OCA\\DAV\\Db\\DirectMapper' => __DIR__.'/..'.'/../lib/Db/DirectMapper.php', |
|
265 | + 'OCA\\DAV\\Db\\Property' => __DIR__.'/..'.'/../lib/Db/Property.php', |
|
266 | + 'OCA\\DAV\\Db\\PropertyMapper' => __DIR__.'/..'.'/../lib/Db/PropertyMapper.php', |
|
267 | + 'OCA\\DAV\\Direct\\DirectFile' => __DIR__.'/..'.'/../lib/Direct/DirectFile.php', |
|
268 | + 'OCA\\DAV\\Direct\\DirectHome' => __DIR__.'/..'.'/../lib/Direct/DirectHome.php', |
|
269 | + 'OCA\\DAV\\Direct\\Server' => __DIR__.'/..'.'/../lib/Direct/Server.php', |
|
270 | + 'OCA\\DAV\\Direct\\ServerFactory' => __DIR__.'/..'.'/../lib/Direct/ServerFactory.php', |
|
271 | + 'OCA\\DAV\\Events\\AddressBookCreatedEvent' => __DIR__.'/..'.'/../lib/Events/AddressBookCreatedEvent.php', |
|
272 | + 'OCA\\DAV\\Events\\AddressBookDeletedEvent' => __DIR__.'/..'.'/../lib/Events/AddressBookDeletedEvent.php', |
|
273 | + 'OCA\\DAV\\Events\\AddressBookShareUpdatedEvent' => __DIR__.'/..'.'/../lib/Events/AddressBookShareUpdatedEvent.php', |
|
274 | + 'OCA\\DAV\\Events\\AddressBookUpdatedEvent' => __DIR__.'/..'.'/../lib/Events/AddressBookUpdatedEvent.php', |
|
275 | + 'OCA\\DAV\\Events\\BeforeFileDirectDownloadedEvent' => __DIR__.'/..'.'/../lib/Events/BeforeFileDirectDownloadedEvent.php', |
|
276 | + 'OCA\\DAV\\Events\\CachedCalendarObjectCreatedEvent' => __DIR__.'/..'.'/../lib/Events/CachedCalendarObjectCreatedEvent.php', |
|
277 | + 'OCA\\DAV\\Events\\CachedCalendarObjectDeletedEvent' => __DIR__.'/..'.'/../lib/Events/CachedCalendarObjectDeletedEvent.php', |
|
278 | + 'OCA\\DAV\\Events\\CachedCalendarObjectUpdatedEvent' => __DIR__.'/..'.'/../lib/Events/CachedCalendarObjectUpdatedEvent.php', |
|
279 | + 'OCA\\DAV\\Events\\CalendarCreatedEvent' => __DIR__.'/..'.'/../lib/Events/CalendarCreatedEvent.php', |
|
280 | + 'OCA\\DAV\\Events\\CalendarDeletedEvent' => __DIR__.'/..'.'/../lib/Events/CalendarDeletedEvent.php', |
|
281 | + 'OCA\\DAV\\Events\\CalendarMovedToTrashEvent' => __DIR__.'/..'.'/../lib/Events/CalendarMovedToTrashEvent.php', |
|
282 | + 'OCA\\DAV\\Events\\CalendarPublishedEvent' => __DIR__.'/..'.'/../lib/Events/CalendarPublishedEvent.php', |
|
283 | + 'OCA\\DAV\\Events\\CalendarRestoredEvent' => __DIR__.'/..'.'/../lib/Events/CalendarRestoredEvent.php', |
|
284 | + 'OCA\\DAV\\Events\\CalendarShareUpdatedEvent' => __DIR__.'/..'.'/../lib/Events/CalendarShareUpdatedEvent.php', |
|
285 | + 'OCA\\DAV\\Events\\CalendarUnpublishedEvent' => __DIR__.'/..'.'/../lib/Events/CalendarUnpublishedEvent.php', |
|
286 | + 'OCA\\DAV\\Events\\CalendarUpdatedEvent' => __DIR__.'/..'.'/../lib/Events/CalendarUpdatedEvent.php', |
|
287 | + 'OCA\\DAV\\Events\\CardCreatedEvent' => __DIR__.'/..'.'/../lib/Events/CardCreatedEvent.php', |
|
288 | + 'OCA\\DAV\\Events\\CardDeletedEvent' => __DIR__.'/..'.'/../lib/Events/CardDeletedEvent.php', |
|
289 | + 'OCA\\DAV\\Events\\CardMovedEvent' => __DIR__.'/..'.'/../lib/Events/CardMovedEvent.php', |
|
290 | + 'OCA\\DAV\\Events\\CardUpdatedEvent' => __DIR__.'/..'.'/../lib/Events/CardUpdatedEvent.php', |
|
291 | + 'OCA\\DAV\\Events\\SabrePluginAddEvent' => __DIR__.'/..'.'/../lib/Events/SabrePluginAddEvent.php', |
|
292 | + 'OCA\\DAV\\Events\\SabrePluginAuthInitEvent' => __DIR__.'/..'.'/../lib/Events/SabrePluginAuthInitEvent.php', |
|
293 | + 'OCA\\DAV\\Events\\SubscriptionCreatedEvent' => __DIR__.'/..'.'/../lib/Events/SubscriptionCreatedEvent.php', |
|
294 | + 'OCA\\DAV\\Events\\SubscriptionDeletedEvent' => __DIR__.'/..'.'/../lib/Events/SubscriptionDeletedEvent.php', |
|
295 | + 'OCA\\DAV\\Events\\SubscriptionUpdatedEvent' => __DIR__.'/..'.'/../lib/Events/SubscriptionUpdatedEvent.php', |
|
296 | + 'OCA\\DAV\\Exception\\ServerMaintenanceMode' => __DIR__.'/..'.'/../lib/Exception/ServerMaintenanceMode.php', |
|
297 | + 'OCA\\DAV\\Exception\\UnsupportedLimitOnInitialSyncException' => __DIR__.'/..'.'/../lib/Exception/UnsupportedLimitOnInitialSyncException.php', |
|
298 | + 'OCA\\DAV\\Files\\BrowserErrorPagePlugin' => __DIR__.'/..'.'/../lib/Files/BrowserErrorPagePlugin.php', |
|
299 | + 'OCA\\DAV\\Files\\FileSearchBackend' => __DIR__.'/..'.'/../lib/Files/FileSearchBackend.php', |
|
300 | + 'OCA\\DAV\\Files\\FilesHome' => __DIR__.'/..'.'/../lib/Files/FilesHome.php', |
|
301 | + 'OCA\\DAV\\Files\\LazySearchBackend' => __DIR__.'/..'.'/../lib/Files/LazySearchBackend.php', |
|
302 | + 'OCA\\DAV\\Files\\RootCollection' => __DIR__.'/..'.'/../lib/Files/RootCollection.php', |
|
303 | + 'OCA\\DAV\\Files\\Sharing\\FilesDropPlugin' => __DIR__.'/..'.'/../lib/Files/Sharing/FilesDropPlugin.php', |
|
304 | + 'OCA\\DAV\\Files\\Sharing\\PublicLinkCheckPlugin' => __DIR__.'/..'.'/../lib/Files/Sharing/PublicLinkCheckPlugin.php', |
|
305 | + 'OCA\\DAV\\Files\\Sharing\\RootCollection' => __DIR__.'/..'.'/../lib/Files/Sharing/RootCollection.php', |
|
306 | + 'OCA\\DAV\\Listener\\ActivityUpdaterListener' => __DIR__.'/..'.'/../lib/Listener/ActivityUpdaterListener.php', |
|
307 | + 'OCA\\DAV\\Listener\\AddMissingIndicesListener' => __DIR__.'/..'.'/../lib/Listener/AddMissingIndicesListener.php', |
|
308 | + 'OCA\\DAV\\Listener\\AddressbookListener' => __DIR__.'/..'.'/../lib/Listener/AddressbookListener.php', |
|
309 | + 'OCA\\DAV\\Listener\\BirthdayListener' => __DIR__.'/..'.'/../lib/Listener/BirthdayListener.php', |
|
310 | + 'OCA\\DAV\\Listener\\CalendarContactInteractionListener' => __DIR__.'/..'.'/../lib/Listener/CalendarContactInteractionListener.php', |
|
311 | + 'OCA\\DAV\\Listener\\CalendarDeletionDefaultUpdaterListener' => __DIR__.'/..'.'/../lib/Listener/CalendarDeletionDefaultUpdaterListener.php', |
|
312 | + 'OCA\\DAV\\Listener\\CalendarObjectReminderUpdaterListener' => __DIR__.'/..'.'/../lib/Listener/CalendarObjectReminderUpdaterListener.php', |
|
313 | + 'OCA\\DAV\\Listener\\CalendarPublicationListener' => __DIR__.'/..'.'/../lib/Listener/CalendarPublicationListener.php', |
|
314 | + 'OCA\\DAV\\Listener\\CalendarShareUpdateListener' => __DIR__.'/..'.'/../lib/Listener/CalendarShareUpdateListener.php', |
|
315 | + 'OCA\\DAV\\Listener\\CardListener' => __DIR__.'/..'.'/../lib/Listener/CardListener.php', |
|
316 | + 'OCA\\DAV\\Listener\\ClearPhotoCacheListener' => __DIR__.'/..'.'/../lib/Listener/ClearPhotoCacheListener.php', |
|
317 | + 'OCA\\DAV\\Listener\\DavAdminSettingsListener' => __DIR__.'/..'.'/../lib/Listener/DavAdminSettingsListener.php', |
|
318 | + 'OCA\\DAV\\Listener\\OutOfOfficeListener' => __DIR__.'/..'.'/../lib/Listener/OutOfOfficeListener.php', |
|
319 | + 'OCA\\DAV\\Listener\\SubscriptionListener' => __DIR__.'/..'.'/../lib/Listener/SubscriptionListener.php', |
|
320 | + 'OCA\\DAV\\Listener\\TrustedServerRemovedListener' => __DIR__.'/..'.'/../lib/Listener/TrustedServerRemovedListener.php', |
|
321 | + 'OCA\\DAV\\Listener\\UserEventsListener' => __DIR__.'/..'.'/../lib/Listener/UserEventsListener.php', |
|
322 | + 'OCA\\DAV\\Listener\\UserPreferenceListener' => __DIR__.'/..'.'/../lib/Listener/UserPreferenceListener.php', |
|
323 | + 'OCA\\DAV\\Migration\\BuildCalendarSearchIndex' => __DIR__.'/..'.'/../lib/Migration/BuildCalendarSearchIndex.php', |
|
324 | + 'OCA\\DAV\\Migration\\BuildCalendarSearchIndexBackgroundJob' => __DIR__.'/..'.'/../lib/Migration/BuildCalendarSearchIndexBackgroundJob.php', |
|
325 | + 'OCA\\DAV\\Migration\\BuildSocialSearchIndex' => __DIR__.'/..'.'/../lib/Migration/BuildSocialSearchIndex.php', |
|
326 | + 'OCA\\DAV\\Migration\\BuildSocialSearchIndexBackgroundJob' => __DIR__.'/..'.'/../lib/Migration/BuildSocialSearchIndexBackgroundJob.php', |
|
327 | + 'OCA\\DAV\\Migration\\CalDAVRemoveEmptyValue' => __DIR__.'/..'.'/../lib/Migration/CalDAVRemoveEmptyValue.php', |
|
328 | + 'OCA\\DAV\\Migration\\ChunkCleanup' => __DIR__.'/..'.'/../lib/Migration/ChunkCleanup.php', |
|
329 | + 'OCA\\DAV\\Migration\\CreateSystemAddressBookStep' => __DIR__.'/..'.'/../lib/Migration/CreateSystemAddressBookStep.php', |
|
330 | + 'OCA\\DAV\\Migration\\DeleteSchedulingObjects' => __DIR__.'/..'.'/../lib/Migration/DeleteSchedulingObjects.php', |
|
331 | + 'OCA\\DAV\\Migration\\FixBirthdayCalendarComponent' => __DIR__.'/..'.'/../lib/Migration/FixBirthdayCalendarComponent.php', |
|
332 | + 'OCA\\DAV\\Migration\\RefreshWebcalJobRegistrar' => __DIR__.'/..'.'/../lib/Migration/RefreshWebcalJobRegistrar.php', |
|
333 | + 'OCA\\DAV\\Migration\\RegenerateBirthdayCalendars' => __DIR__.'/..'.'/../lib/Migration/RegenerateBirthdayCalendars.php', |
|
334 | + 'OCA\\DAV\\Migration\\RegisterBuildReminderIndexBackgroundJob' => __DIR__.'/..'.'/../lib/Migration/RegisterBuildReminderIndexBackgroundJob.php', |
|
335 | + 'OCA\\DAV\\Migration\\RegisterUpdateCalendarResourcesRoomBackgroundJob' => __DIR__.'/..'.'/../lib/Migration/RegisterUpdateCalendarResourcesRoomBackgroundJob.php', |
|
336 | + 'OCA\\DAV\\Migration\\RemoveClassifiedEventActivity' => __DIR__.'/..'.'/../lib/Migration/RemoveClassifiedEventActivity.php', |
|
337 | + 'OCA\\DAV\\Migration\\RemoveDeletedUsersCalendarSubscriptions' => __DIR__.'/..'.'/../lib/Migration/RemoveDeletedUsersCalendarSubscriptions.php', |
|
338 | + 'OCA\\DAV\\Migration\\RemoveObjectProperties' => __DIR__.'/..'.'/../lib/Migration/RemoveObjectProperties.php', |
|
339 | + 'OCA\\DAV\\Migration\\RemoveOrphanEventsAndContacts' => __DIR__.'/..'.'/../lib/Migration/RemoveOrphanEventsAndContacts.php', |
|
340 | + 'OCA\\DAV\\Migration\\Version1004Date20170825134824' => __DIR__.'/..'.'/../lib/Migration/Version1004Date20170825134824.php', |
|
341 | + 'OCA\\DAV\\Migration\\Version1004Date20170919104507' => __DIR__.'/..'.'/../lib/Migration/Version1004Date20170919104507.php', |
|
342 | + 'OCA\\DAV\\Migration\\Version1004Date20170924124212' => __DIR__.'/..'.'/../lib/Migration/Version1004Date20170924124212.php', |
|
343 | + 'OCA\\DAV\\Migration\\Version1004Date20170926103422' => __DIR__.'/..'.'/../lib/Migration/Version1004Date20170926103422.php', |
|
344 | + 'OCA\\DAV\\Migration\\Version1005Date20180413093149' => __DIR__.'/..'.'/../lib/Migration/Version1005Date20180413093149.php', |
|
345 | + 'OCA\\DAV\\Migration\\Version1005Date20180530124431' => __DIR__.'/..'.'/../lib/Migration/Version1005Date20180530124431.php', |
|
346 | + 'OCA\\DAV\\Migration\\Version1006Date20180619154313' => __DIR__.'/..'.'/../lib/Migration/Version1006Date20180619154313.php', |
|
347 | + 'OCA\\DAV\\Migration\\Version1006Date20180628111625' => __DIR__.'/..'.'/../lib/Migration/Version1006Date20180628111625.php', |
|
348 | + 'OCA\\DAV\\Migration\\Version1008Date20181030113700' => __DIR__.'/..'.'/../lib/Migration/Version1008Date20181030113700.php', |
|
349 | + 'OCA\\DAV\\Migration\\Version1008Date20181105104826' => __DIR__.'/..'.'/../lib/Migration/Version1008Date20181105104826.php', |
|
350 | + 'OCA\\DAV\\Migration\\Version1008Date20181105104833' => __DIR__.'/..'.'/../lib/Migration/Version1008Date20181105104833.php', |
|
351 | + 'OCA\\DAV\\Migration\\Version1008Date20181105110300' => __DIR__.'/..'.'/../lib/Migration/Version1008Date20181105110300.php', |
|
352 | + 'OCA\\DAV\\Migration\\Version1008Date20181105112049' => __DIR__.'/..'.'/../lib/Migration/Version1008Date20181105112049.php', |
|
353 | + 'OCA\\DAV\\Migration\\Version1008Date20181114084440' => __DIR__.'/..'.'/../lib/Migration/Version1008Date20181114084440.php', |
|
354 | + 'OCA\\DAV\\Migration\\Version1011Date20190725113607' => __DIR__.'/..'.'/../lib/Migration/Version1011Date20190725113607.php', |
|
355 | + 'OCA\\DAV\\Migration\\Version1011Date20190806104428' => __DIR__.'/..'.'/../lib/Migration/Version1011Date20190806104428.php', |
|
356 | + 'OCA\\DAV\\Migration\\Version1012Date20190808122342' => __DIR__.'/..'.'/../lib/Migration/Version1012Date20190808122342.php', |
|
357 | + 'OCA\\DAV\\Migration\\Version1016Date20201109085907' => __DIR__.'/..'.'/../lib/Migration/Version1016Date20201109085907.php', |
|
358 | + 'OCA\\DAV\\Migration\\Version1017Date20210216083742' => __DIR__.'/..'.'/../lib/Migration/Version1017Date20210216083742.php', |
|
359 | + 'OCA\\DAV\\Migration\\Version1018Date20210312100735' => __DIR__.'/..'.'/../lib/Migration/Version1018Date20210312100735.php', |
|
360 | + 'OCA\\DAV\\Migration\\Version1024Date20211221144219' => __DIR__.'/..'.'/../lib/Migration/Version1024Date20211221144219.php', |
|
361 | + 'OCA\\DAV\\Migration\\Version1025Date20240308063933' => __DIR__.'/..'.'/../lib/Migration/Version1025Date20240308063933.php', |
|
362 | + 'OCA\\DAV\\Migration\\Version1027Date20230504122946' => __DIR__.'/..'.'/../lib/Migration/Version1027Date20230504122946.php', |
|
363 | + 'OCA\\DAV\\Migration\\Version1029Date20221114151721' => __DIR__.'/..'.'/../lib/Migration/Version1029Date20221114151721.php', |
|
364 | + 'OCA\\DAV\\Migration\\Version1029Date20231004091403' => __DIR__.'/..'.'/../lib/Migration/Version1029Date20231004091403.php', |
|
365 | + 'OCA\\DAV\\Migration\\Version1030Date20240205103243' => __DIR__.'/..'.'/../lib/Migration/Version1030Date20240205103243.php', |
|
366 | + 'OCA\\DAV\\Migration\\Version1031Date20240610134258' => __DIR__.'/..'.'/../lib/Migration/Version1031Date20240610134258.php', |
|
367 | + 'OCA\\DAV\\Paginate\\LimitedCopyIterator' => __DIR__.'/..'.'/../lib/Paginate/LimitedCopyIterator.php', |
|
368 | + 'OCA\\DAV\\Paginate\\PaginateCache' => __DIR__.'/..'.'/../lib/Paginate/PaginateCache.php', |
|
369 | + 'OCA\\DAV\\Paginate\\PaginatePlugin' => __DIR__.'/..'.'/../lib/Paginate/PaginatePlugin.php', |
|
370 | + 'OCA\\DAV\\Profiler\\ProfilerPlugin' => __DIR__.'/..'.'/../lib/Profiler/ProfilerPlugin.php', |
|
371 | + 'OCA\\DAV\\Provisioning\\Apple\\AppleProvisioningNode' => __DIR__.'/..'.'/../lib/Provisioning/Apple/AppleProvisioningNode.php', |
|
372 | + 'OCA\\DAV\\Provisioning\\Apple\\AppleProvisioningPlugin' => __DIR__.'/..'.'/../lib/Provisioning/Apple/AppleProvisioningPlugin.php', |
|
373 | + 'OCA\\DAV\\ResponseDefinitions' => __DIR__.'/..'.'/../lib/ResponseDefinitions.php', |
|
374 | + 'OCA\\DAV\\RootCollection' => __DIR__.'/..'.'/../lib/RootCollection.php', |
|
375 | + 'OCA\\DAV\\Search\\ACalendarSearchProvider' => __DIR__.'/..'.'/../lib/Search/ACalendarSearchProvider.php', |
|
376 | + 'OCA\\DAV\\Search\\ContactsSearchProvider' => __DIR__.'/..'.'/../lib/Search/ContactsSearchProvider.php', |
|
377 | + 'OCA\\DAV\\Search\\EventsSearchProvider' => __DIR__.'/..'.'/../lib/Search/EventsSearchProvider.php', |
|
378 | + 'OCA\\DAV\\Search\\TasksSearchProvider' => __DIR__.'/..'.'/../lib/Search/TasksSearchProvider.php', |
|
379 | + 'OCA\\DAV\\Server' => __DIR__.'/..'.'/../lib/Server.php', |
|
380 | + 'OCA\\DAV\\ServerFactory' => __DIR__.'/..'.'/../lib/ServerFactory.php', |
|
381 | + 'OCA\\DAV\\Service\\AbsenceService' => __DIR__.'/..'.'/../lib/Service/AbsenceService.php', |
|
382 | + 'OCA\\DAV\\Service\\DefaultContactService' => __DIR__.'/..'.'/../lib/Service/DefaultContactService.php', |
|
383 | + 'OCA\\DAV\\Settings\\Admin\\SystemAddressBookSettings' => __DIR__.'/..'.'/../lib/Settings/Admin/SystemAddressBookSettings.php', |
|
384 | + 'OCA\\DAV\\Settings\\AvailabilitySettings' => __DIR__.'/..'.'/../lib/Settings/AvailabilitySettings.php', |
|
385 | + 'OCA\\DAV\\Settings\\CalDAVSettings' => __DIR__.'/..'.'/../lib/Settings/CalDAVSettings.php', |
|
386 | + 'OCA\\DAV\\Settings\\ExampleContentSettings' => __DIR__.'/..'.'/../lib/Settings/ExampleContentSettings.php', |
|
387 | + 'OCA\\DAV\\SetupChecks\\NeedsSystemAddressBookSync' => __DIR__.'/..'.'/../lib/SetupChecks/NeedsSystemAddressBookSync.php', |
|
388 | + 'OCA\\DAV\\SetupChecks\\WebdavEndpoint' => __DIR__.'/..'.'/../lib/SetupChecks/WebdavEndpoint.php', |
|
389 | + 'OCA\\DAV\\Storage\\PublicOwnerWrapper' => __DIR__.'/..'.'/../lib/Storage/PublicOwnerWrapper.php', |
|
390 | + 'OCA\\DAV\\Storage\\PublicShareWrapper' => __DIR__.'/..'.'/../lib/Storage/PublicShareWrapper.php', |
|
391 | + 'OCA\\DAV\\SystemTag\\SystemTagList' => __DIR__.'/..'.'/../lib/SystemTag/SystemTagList.php', |
|
392 | + 'OCA\\DAV\\SystemTag\\SystemTagMappingNode' => __DIR__.'/..'.'/../lib/SystemTag/SystemTagMappingNode.php', |
|
393 | + 'OCA\\DAV\\SystemTag\\SystemTagNode' => __DIR__.'/..'.'/../lib/SystemTag/SystemTagNode.php', |
|
394 | + 'OCA\\DAV\\SystemTag\\SystemTagObjectType' => __DIR__.'/..'.'/../lib/SystemTag/SystemTagObjectType.php', |
|
395 | + 'OCA\\DAV\\SystemTag\\SystemTagPlugin' => __DIR__.'/..'.'/../lib/SystemTag/SystemTagPlugin.php', |
|
396 | + 'OCA\\DAV\\SystemTag\\SystemTagsByIdCollection' => __DIR__.'/..'.'/../lib/SystemTag/SystemTagsByIdCollection.php', |
|
397 | + 'OCA\\DAV\\SystemTag\\SystemTagsInUseCollection' => __DIR__.'/..'.'/../lib/SystemTag/SystemTagsInUseCollection.php', |
|
398 | + 'OCA\\DAV\\SystemTag\\SystemTagsObjectList' => __DIR__.'/..'.'/../lib/SystemTag/SystemTagsObjectList.php', |
|
399 | + 'OCA\\DAV\\SystemTag\\SystemTagsObjectMappingCollection' => __DIR__.'/..'.'/../lib/SystemTag/SystemTagsObjectMappingCollection.php', |
|
400 | + 'OCA\\DAV\\SystemTag\\SystemTagsObjectTypeCollection' => __DIR__.'/..'.'/../lib/SystemTag/SystemTagsObjectTypeCollection.php', |
|
401 | + 'OCA\\DAV\\SystemTag\\SystemTagsRelationsCollection' => __DIR__.'/..'.'/../lib/SystemTag/SystemTagsRelationsCollection.php', |
|
402 | + 'OCA\\DAV\\Traits\\PrincipalProxyTrait' => __DIR__.'/..'.'/../lib/Traits/PrincipalProxyTrait.php', |
|
403 | + 'OCA\\DAV\\Upload\\AssemblyStream' => __DIR__.'/..'.'/../lib/Upload/AssemblyStream.php', |
|
404 | + 'OCA\\DAV\\Upload\\ChunkingPlugin' => __DIR__.'/..'.'/../lib/Upload/ChunkingPlugin.php', |
|
405 | + 'OCA\\DAV\\Upload\\ChunkingV2Plugin' => __DIR__.'/..'.'/../lib/Upload/ChunkingV2Plugin.php', |
|
406 | + 'OCA\\DAV\\Upload\\CleanupService' => __DIR__.'/..'.'/../lib/Upload/CleanupService.php', |
|
407 | + 'OCA\\DAV\\Upload\\FutureFile' => __DIR__.'/..'.'/../lib/Upload/FutureFile.php', |
|
408 | + 'OCA\\DAV\\Upload\\PartFile' => __DIR__.'/..'.'/../lib/Upload/PartFile.php', |
|
409 | + 'OCA\\DAV\\Upload\\RootCollection' => __DIR__.'/..'.'/../lib/Upload/RootCollection.php', |
|
410 | + 'OCA\\DAV\\Upload\\UploadFile' => __DIR__.'/..'.'/../lib/Upload/UploadFile.php', |
|
411 | + 'OCA\\DAV\\Upload\\UploadFolder' => __DIR__.'/..'.'/../lib/Upload/UploadFolder.php', |
|
412 | + 'OCA\\DAV\\Upload\\UploadHome' => __DIR__.'/..'.'/../lib/Upload/UploadHome.php', |
|
413 | + 'OCA\\DAV\\UserMigration\\CalendarMigrator' => __DIR__.'/..'.'/../lib/UserMigration/CalendarMigrator.php', |
|
414 | + 'OCA\\DAV\\UserMigration\\CalendarMigratorException' => __DIR__.'/..'.'/../lib/UserMigration/CalendarMigratorException.php', |
|
415 | + 'OCA\\DAV\\UserMigration\\ContactsMigrator' => __DIR__.'/..'.'/../lib/UserMigration/ContactsMigrator.php', |
|
416 | + 'OCA\\DAV\\UserMigration\\ContactsMigratorException' => __DIR__.'/..'.'/../lib/UserMigration/ContactsMigratorException.php', |
|
417 | + 'OCA\\DAV\\UserMigration\\InvalidAddressBookException' => __DIR__.'/..'.'/../lib/UserMigration/InvalidAddressBookException.php', |
|
418 | + 'OCA\\DAV\\UserMigration\\InvalidCalendarException' => __DIR__.'/..'.'/../lib/UserMigration/InvalidCalendarException.php', |
|
419 | 419 | ); |
420 | 420 | |
421 | 421 | public static function getInitializer(ClassLoader $loader) |
422 | 422 | { |
423 | - return \Closure::bind(function () use ($loader) { |
|
423 | + return \Closure::bind(function() use ($loader) { |
|
424 | 424 | $loader->prefixLengthsPsr4 = ComposerStaticInitDAV::$prefixLengthsPsr4; |
425 | 425 | $loader->prefixDirsPsr4 = ComposerStaticInitDAV::$prefixDirsPsr4; |
426 | 426 | $loader->classMap = ComposerStaticInitDAV::$classMap; |
@@ -6,399 +6,399 @@ |
||
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\\CleanupOrphanedChildrenJob' => $baseDir . '/../lib/BackgroundJob/CleanupOrphanedChildrenJob.php', |
|
20 | - 'OCA\\DAV\\BackgroundJob\\DeleteOutdatedSchedulingObjects' => $baseDir . '/../lib/BackgroundJob/DeleteOutdatedSchedulingObjects.php', |
|
21 | - 'OCA\\DAV\\BackgroundJob\\EventReminderJob' => $baseDir . '/../lib/BackgroundJob/EventReminderJob.php', |
|
22 | - 'OCA\\DAV\\BackgroundJob\\GenerateBirthdayCalendarBackgroundJob' => $baseDir . '/../lib/BackgroundJob/GenerateBirthdayCalendarBackgroundJob.php', |
|
23 | - 'OCA\\DAV\\BackgroundJob\\OutOfOfficeEventDispatcherJob' => $baseDir . '/../lib/BackgroundJob/OutOfOfficeEventDispatcherJob.php', |
|
24 | - 'OCA\\DAV\\BackgroundJob\\PruneOutdatedSyncTokensJob' => $baseDir . '/../lib/BackgroundJob/PruneOutdatedSyncTokensJob.php', |
|
25 | - 'OCA\\DAV\\BackgroundJob\\RefreshWebcalJob' => $baseDir . '/../lib/BackgroundJob/RefreshWebcalJob.php', |
|
26 | - 'OCA\\DAV\\BackgroundJob\\RegisterRegenerateBirthdayCalendars' => $baseDir . '/../lib/BackgroundJob/RegisterRegenerateBirthdayCalendars.php', |
|
27 | - 'OCA\\DAV\\BackgroundJob\\UpdateCalendarResourcesRoomsBackgroundJob' => $baseDir . '/../lib/BackgroundJob/UpdateCalendarResourcesRoomsBackgroundJob.php', |
|
28 | - 'OCA\\DAV\\BackgroundJob\\UploadCleanup' => $baseDir . '/../lib/BackgroundJob/UploadCleanup.php', |
|
29 | - 'OCA\\DAV\\BackgroundJob\\UserStatusAutomation' => $baseDir . '/../lib/BackgroundJob/UserStatusAutomation.php', |
|
30 | - 'OCA\\DAV\\BulkUpload\\BulkUploadPlugin' => $baseDir . '/../lib/BulkUpload/BulkUploadPlugin.php', |
|
31 | - 'OCA\\DAV\\BulkUpload\\MultipartRequestParser' => $baseDir . '/../lib/BulkUpload/MultipartRequestParser.php', |
|
32 | - 'OCA\\DAV\\CalDAV\\Activity\\Backend' => $baseDir . '/../lib/CalDAV/Activity/Backend.php', |
|
33 | - 'OCA\\DAV\\CalDAV\\Activity\\Filter\\Calendar' => $baseDir . '/../lib/CalDAV/Activity/Filter/Calendar.php', |
|
34 | - 'OCA\\DAV\\CalDAV\\Activity\\Filter\\Todo' => $baseDir . '/../lib/CalDAV/Activity/Filter/Todo.php', |
|
35 | - 'OCA\\DAV\\CalDAV\\Activity\\Provider\\Base' => $baseDir . '/../lib/CalDAV/Activity/Provider/Base.php', |
|
36 | - 'OCA\\DAV\\CalDAV\\Activity\\Provider\\Calendar' => $baseDir . '/../lib/CalDAV/Activity/Provider/Calendar.php', |
|
37 | - 'OCA\\DAV\\CalDAV\\Activity\\Provider\\Event' => $baseDir . '/../lib/CalDAV/Activity/Provider/Event.php', |
|
38 | - 'OCA\\DAV\\CalDAV\\Activity\\Provider\\Todo' => $baseDir . '/../lib/CalDAV/Activity/Provider/Todo.php', |
|
39 | - 'OCA\\DAV\\CalDAV\\Activity\\Setting\\CalDAVSetting' => $baseDir . '/../lib/CalDAV/Activity/Setting/CalDAVSetting.php', |
|
40 | - 'OCA\\DAV\\CalDAV\\Activity\\Setting\\Calendar' => $baseDir . '/../lib/CalDAV/Activity/Setting/Calendar.php', |
|
41 | - 'OCA\\DAV\\CalDAV\\Activity\\Setting\\Event' => $baseDir . '/../lib/CalDAV/Activity/Setting/Event.php', |
|
42 | - 'OCA\\DAV\\CalDAV\\Activity\\Setting\\Todo' => $baseDir . '/../lib/CalDAV/Activity/Setting/Todo.php', |
|
43 | - 'OCA\\DAV\\CalDAV\\AppCalendar\\AppCalendar' => $baseDir . '/../lib/CalDAV/AppCalendar/AppCalendar.php', |
|
44 | - 'OCA\\DAV\\CalDAV\\AppCalendar\\AppCalendarPlugin' => $baseDir . '/../lib/CalDAV/AppCalendar/AppCalendarPlugin.php', |
|
45 | - 'OCA\\DAV\\CalDAV\\AppCalendar\\CalendarObject' => $baseDir . '/../lib/CalDAV/AppCalendar/CalendarObject.php', |
|
46 | - 'OCA\\DAV\\CalDAV\\Auth\\CustomPrincipalPlugin' => $baseDir . '/../lib/CalDAV/Auth/CustomPrincipalPlugin.php', |
|
47 | - 'OCA\\DAV\\CalDAV\\Auth\\PublicPrincipalPlugin' => $baseDir . '/../lib/CalDAV/Auth/PublicPrincipalPlugin.php', |
|
48 | - 'OCA\\DAV\\CalDAV\\BirthdayCalendar\\EnablePlugin' => $baseDir . '/../lib/CalDAV/BirthdayCalendar/EnablePlugin.php', |
|
49 | - 'OCA\\DAV\\CalDAV\\BirthdayService' => $baseDir . '/../lib/CalDAV/BirthdayService.php', |
|
50 | - 'OCA\\DAV\\CalDAV\\CachedSubscription' => $baseDir . '/../lib/CalDAV/CachedSubscription.php', |
|
51 | - 'OCA\\DAV\\CalDAV\\CachedSubscriptionImpl' => $baseDir . '/../lib/CalDAV/CachedSubscriptionImpl.php', |
|
52 | - 'OCA\\DAV\\CalDAV\\CachedSubscriptionObject' => $baseDir . '/../lib/CalDAV/CachedSubscriptionObject.php', |
|
53 | - 'OCA\\DAV\\CalDAV\\CachedSubscriptionProvider' => $baseDir . '/../lib/CalDAV/CachedSubscriptionProvider.php', |
|
54 | - 'OCA\\DAV\\CalDAV\\CalDavBackend' => $baseDir . '/../lib/CalDAV/CalDavBackend.php', |
|
55 | - 'OCA\\DAV\\CalDAV\\Calendar' => $baseDir . '/../lib/CalDAV/Calendar.php', |
|
56 | - 'OCA\\DAV\\CalDAV\\CalendarHome' => $baseDir . '/../lib/CalDAV/CalendarHome.php', |
|
57 | - 'OCA\\DAV\\CalDAV\\CalendarImpl' => $baseDir . '/../lib/CalDAV/CalendarImpl.php', |
|
58 | - 'OCA\\DAV\\CalDAV\\CalendarManager' => $baseDir . '/../lib/CalDAV/CalendarManager.php', |
|
59 | - 'OCA\\DAV\\CalDAV\\CalendarObject' => $baseDir . '/../lib/CalDAV/CalendarObject.php', |
|
60 | - 'OCA\\DAV\\CalDAV\\CalendarProvider' => $baseDir . '/../lib/CalDAV/CalendarProvider.php', |
|
61 | - 'OCA\\DAV\\CalDAV\\CalendarRoot' => $baseDir . '/../lib/CalDAV/CalendarRoot.php', |
|
62 | - 'OCA\\DAV\\CalDAV\\DefaultCalendarValidator' => $baseDir . '/../lib/CalDAV/DefaultCalendarValidator.php', |
|
63 | - 'OCA\\DAV\\CalDAV\\EventComparisonService' => $baseDir . '/../lib/CalDAV/EventComparisonService.php', |
|
64 | - 'OCA\\DAV\\CalDAV\\EventReader' => $baseDir . '/../lib/CalDAV/EventReader.php', |
|
65 | - 'OCA\\DAV\\CalDAV\\EventReaderRDate' => $baseDir . '/../lib/CalDAV/EventReaderRDate.php', |
|
66 | - 'OCA\\DAV\\CalDAV\\EventReaderRRule' => $baseDir . '/../lib/CalDAV/EventReaderRRule.php', |
|
67 | - 'OCA\\DAV\\CalDAV\\Export\\ExportService' => $baseDir . '/../lib/CalDAV/Export/ExportService.php', |
|
68 | - 'OCA\\DAV\\CalDAV\\FreeBusy\\FreeBusyGenerator' => $baseDir . '/../lib/CalDAV/FreeBusy/FreeBusyGenerator.php', |
|
69 | - 'OCA\\DAV\\CalDAV\\ICSExportPlugin\\ICSExportPlugin' => $baseDir . '/../lib/CalDAV/ICSExportPlugin/ICSExportPlugin.php', |
|
70 | - 'OCA\\DAV\\CalDAV\\IRestorable' => $baseDir . '/../lib/CalDAV/IRestorable.php', |
|
71 | - 'OCA\\DAV\\CalDAV\\Integration\\ExternalCalendar' => $baseDir . '/../lib/CalDAV/Integration/ExternalCalendar.php', |
|
72 | - 'OCA\\DAV\\CalDAV\\Integration\\ICalendarProvider' => $baseDir . '/../lib/CalDAV/Integration/ICalendarProvider.php', |
|
73 | - 'OCA\\DAV\\CalDAV\\InvitationResponse\\InvitationResponseServer' => $baseDir . '/../lib/CalDAV/InvitationResponse/InvitationResponseServer.php', |
|
74 | - 'OCA\\DAV\\CalDAV\\Outbox' => $baseDir . '/../lib/CalDAV/Outbox.php', |
|
75 | - 'OCA\\DAV\\CalDAV\\Plugin' => $baseDir . '/../lib/CalDAV/Plugin.php', |
|
76 | - 'OCA\\DAV\\CalDAV\\Principal\\Collection' => $baseDir . '/../lib/CalDAV/Principal/Collection.php', |
|
77 | - 'OCA\\DAV\\CalDAV\\Principal\\User' => $baseDir . '/../lib/CalDAV/Principal/User.php', |
|
78 | - 'OCA\\DAV\\CalDAV\\Proxy\\Proxy' => $baseDir . '/../lib/CalDAV/Proxy/Proxy.php', |
|
79 | - 'OCA\\DAV\\CalDAV\\Proxy\\ProxyMapper' => $baseDir . '/../lib/CalDAV/Proxy/ProxyMapper.php', |
|
80 | - 'OCA\\DAV\\CalDAV\\PublicCalendar' => $baseDir . '/../lib/CalDAV/PublicCalendar.php', |
|
81 | - 'OCA\\DAV\\CalDAV\\PublicCalendarObject' => $baseDir . '/../lib/CalDAV/PublicCalendarObject.php', |
|
82 | - 'OCA\\DAV\\CalDAV\\PublicCalendarRoot' => $baseDir . '/../lib/CalDAV/PublicCalendarRoot.php', |
|
83 | - 'OCA\\DAV\\CalDAV\\Publishing\\PublishPlugin' => $baseDir . '/../lib/CalDAV/Publishing/PublishPlugin.php', |
|
84 | - 'OCA\\DAV\\CalDAV\\Publishing\\Xml\\Publisher' => $baseDir . '/../lib/CalDAV/Publishing/Xml/Publisher.php', |
|
85 | - 'OCA\\DAV\\CalDAV\\Reminder\\Backend' => $baseDir . '/../lib/CalDAV/Reminder/Backend.php', |
|
86 | - 'OCA\\DAV\\CalDAV\\Reminder\\INotificationProvider' => $baseDir . '/../lib/CalDAV/Reminder/INotificationProvider.php', |
|
87 | - 'OCA\\DAV\\CalDAV\\Reminder\\NotificationProviderManager' => $baseDir . '/../lib/CalDAV/Reminder/NotificationProviderManager.php', |
|
88 | - 'OCA\\DAV\\CalDAV\\Reminder\\NotificationProvider\\AbstractProvider' => $baseDir . '/../lib/CalDAV/Reminder/NotificationProvider/AbstractProvider.php', |
|
89 | - 'OCA\\DAV\\CalDAV\\Reminder\\NotificationProvider\\AudioProvider' => $baseDir . '/../lib/CalDAV/Reminder/NotificationProvider/AudioProvider.php', |
|
90 | - 'OCA\\DAV\\CalDAV\\Reminder\\NotificationProvider\\EmailProvider' => $baseDir . '/../lib/CalDAV/Reminder/NotificationProvider/EmailProvider.php', |
|
91 | - 'OCA\\DAV\\CalDAV\\Reminder\\NotificationProvider\\ProviderNotAvailableException' => $baseDir . '/../lib/CalDAV/Reminder/NotificationProvider/ProviderNotAvailableException.php', |
|
92 | - 'OCA\\DAV\\CalDAV\\Reminder\\NotificationProvider\\PushProvider' => $baseDir . '/../lib/CalDAV/Reminder/NotificationProvider/PushProvider.php', |
|
93 | - 'OCA\\DAV\\CalDAV\\Reminder\\NotificationTypeDoesNotExistException' => $baseDir . '/../lib/CalDAV/Reminder/NotificationTypeDoesNotExistException.php', |
|
94 | - 'OCA\\DAV\\CalDAV\\Reminder\\Notifier' => $baseDir . '/../lib/CalDAV/Reminder/Notifier.php', |
|
95 | - 'OCA\\DAV\\CalDAV\\Reminder\\ReminderService' => $baseDir . '/../lib/CalDAV/Reminder/ReminderService.php', |
|
96 | - 'OCA\\DAV\\CalDAV\\ResourceBooking\\AbstractPrincipalBackend' => $baseDir . '/../lib/CalDAV/ResourceBooking/AbstractPrincipalBackend.php', |
|
97 | - 'OCA\\DAV\\CalDAV\\ResourceBooking\\ResourcePrincipalBackend' => $baseDir . '/../lib/CalDAV/ResourceBooking/ResourcePrincipalBackend.php', |
|
98 | - 'OCA\\DAV\\CalDAV\\ResourceBooking\\RoomPrincipalBackend' => $baseDir . '/../lib/CalDAV/ResourceBooking/RoomPrincipalBackend.php', |
|
99 | - 'OCA\\DAV\\CalDAV\\RetentionService' => $baseDir . '/../lib/CalDAV/RetentionService.php', |
|
100 | - 'OCA\\DAV\\CalDAV\\Schedule\\IMipPlugin' => $baseDir . '/../lib/CalDAV/Schedule/IMipPlugin.php', |
|
101 | - 'OCA\\DAV\\CalDAV\\Schedule\\IMipService' => $baseDir . '/../lib/CalDAV/Schedule/IMipService.php', |
|
102 | - 'OCA\\DAV\\CalDAV\\Schedule\\Plugin' => $baseDir . '/../lib/CalDAV/Schedule/Plugin.php', |
|
103 | - 'OCA\\DAV\\CalDAV\\Search\\SearchPlugin' => $baseDir . '/../lib/CalDAV/Search/SearchPlugin.php', |
|
104 | - 'OCA\\DAV\\CalDAV\\Search\\Xml\\Filter\\CompFilter' => $baseDir . '/../lib/CalDAV/Search/Xml/Filter/CompFilter.php', |
|
105 | - 'OCA\\DAV\\CalDAV\\Search\\Xml\\Filter\\LimitFilter' => $baseDir . '/../lib/CalDAV/Search/Xml/Filter/LimitFilter.php', |
|
106 | - 'OCA\\DAV\\CalDAV\\Search\\Xml\\Filter\\OffsetFilter' => $baseDir . '/../lib/CalDAV/Search/Xml/Filter/OffsetFilter.php', |
|
107 | - 'OCA\\DAV\\CalDAV\\Search\\Xml\\Filter\\ParamFilter' => $baseDir . '/../lib/CalDAV/Search/Xml/Filter/ParamFilter.php', |
|
108 | - 'OCA\\DAV\\CalDAV\\Search\\Xml\\Filter\\PropFilter' => $baseDir . '/../lib/CalDAV/Search/Xml/Filter/PropFilter.php', |
|
109 | - 'OCA\\DAV\\CalDAV\\Search\\Xml\\Filter\\SearchTermFilter' => $baseDir . '/../lib/CalDAV/Search/Xml/Filter/SearchTermFilter.php', |
|
110 | - 'OCA\\DAV\\CalDAV\\Search\\Xml\\Request\\CalendarSearchReport' => $baseDir . '/../lib/CalDAV/Search/Xml/Request/CalendarSearchReport.php', |
|
111 | - 'OCA\\DAV\\CalDAV\\Security\\RateLimitingPlugin' => $baseDir . '/../lib/CalDAV/Security/RateLimitingPlugin.php', |
|
112 | - 'OCA\\DAV\\CalDAV\\Sharing\\Backend' => $baseDir . '/../lib/CalDAV/Sharing/Backend.php', |
|
113 | - 'OCA\\DAV\\CalDAV\\Sharing\\Service' => $baseDir . '/../lib/CalDAV/Sharing/Service.php', |
|
114 | - 'OCA\\DAV\\CalDAV\\Status\\StatusService' => $baseDir . '/../lib/CalDAV/Status/StatusService.php', |
|
115 | - 'OCA\\DAV\\CalDAV\\TimeZoneFactory' => $baseDir . '/../lib/CalDAV/TimeZoneFactory.php', |
|
116 | - 'OCA\\DAV\\CalDAV\\TimezoneService' => $baseDir . '/../lib/CalDAV/TimezoneService.php', |
|
117 | - 'OCA\\DAV\\CalDAV\\TipBroker' => $baseDir . '/../lib/CalDAV/TipBroker.php', |
|
118 | - 'OCA\\DAV\\CalDAV\\Trashbin\\DeletedCalendarObject' => $baseDir . '/../lib/CalDAV/Trashbin/DeletedCalendarObject.php', |
|
119 | - 'OCA\\DAV\\CalDAV\\Trashbin\\DeletedCalendarObjectsCollection' => $baseDir . '/../lib/CalDAV/Trashbin/DeletedCalendarObjectsCollection.php', |
|
120 | - 'OCA\\DAV\\CalDAV\\Trashbin\\Plugin' => $baseDir . '/../lib/CalDAV/Trashbin/Plugin.php', |
|
121 | - 'OCA\\DAV\\CalDAV\\Trashbin\\RestoreTarget' => $baseDir . '/../lib/CalDAV/Trashbin/RestoreTarget.php', |
|
122 | - 'OCA\\DAV\\CalDAV\\Trashbin\\TrashbinHome' => $baseDir . '/../lib/CalDAV/Trashbin/TrashbinHome.php', |
|
123 | - 'OCA\\DAV\\CalDAV\\UpcomingEvent' => $baseDir . '/../lib/CalDAV/UpcomingEvent.php', |
|
124 | - 'OCA\\DAV\\CalDAV\\UpcomingEventsService' => $baseDir . '/../lib/CalDAV/UpcomingEventsService.php', |
|
125 | - 'OCA\\DAV\\CalDAV\\Validation\\CalDavValidatePlugin' => $baseDir . '/../lib/CalDAV/Validation/CalDavValidatePlugin.php', |
|
126 | - 'OCA\\DAV\\CalDAV\\WebcalCaching\\Connection' => $baseDir . '/../lib/CalDAV/WebcalCaching/Connection.php', |
|
127 | - 'OCA\\DAV\\CalDAV\\WebcalCaching\\Plugin' => $baseDir . '/../lib/CalDAV/WebcalCaching/Plugin.php', |
|
128 | - 'OCA\\DAV\\CalDAV\\WebcalCaching\\RefreshWebcalService' => $baseDir . '/../lib/CalDAV/WebcalCaching/RefreshWebcalService.php', |
|
129 | - 'OCA\\DAV\\Capabilities' => $baseDir . '/../lib/Capabilities.php', |
|
130 | - 'OCA\\DAV\\CardDAV\\Activity\\Backend' => $baseDir . '/../lib/CardDAV/Activity/Backend.php', |
|
131 | - 'OCA\\DAV\\CardDAV\\Activity\\Filter' => $baseDir . '/../lib/CardDAV/Activity/Filter.php', |
|
132 | - 'OCA\\DAV\\CardDAV\\Activity\\Provider\\Addressbook' => $baseDir . '/../lib/CardDAV/Activity/Provider/Addressbook.php', |
|
133 | - 'OCA\\DAV\\CardDAV\\Activity\\Provider\\Base' => $baseDir . '/../lib/CardDAV/Activity/Provider/Base.php', |
|
134 | - 'OCA\\DAV\\CardDAV\\Activity\\Provider\\Card' => $baseDir . '/../lib/CardDAV/Activity/Provider/Card.php', |
|
135 | - 'OCA\\DAV\\CardDAV\\Activity\\Setting' => $baseDir . '/../lib/CardDAV/Activity/Setting.php', |
|
136 | - 'OCA\\DAV\\CardDAV\\AddressBook' => $baseDir . '/../lib/CardDAV/AddressBook.php', |
|
137 | - 'OCA\\DAV\\CardDAV\\AddressBookImpl' => $baseDir . '/../lib/CardDAV/AddressBookImpl.php', |
|
138 | - 'OCA\\DAV\\CardDAV\\AddressBookRoot' => $baseDir . '/../lib/CardDAV/AddressBookRoot.php', |
|
139 | - 'OCA\\DAV\\CardDAV\\Card' => $baseDir . '/../lib/CardDAV/Card.php', |
|
140 | - 'OCA\\DAV\\CardDAV\\CardDavBackend' => $baseDir . '/../lib/CardDAV/CardDavBackend.php', |
|
141 | - 'OCA\\DAV\\CardDAV\\ContactsManager' => $baseDir . '/../lib/CardDAV/ContactsManager.php', |
|
142 | - 'OCA\\DAV\\CardDAV\\Converter' => $baseDir . '/../lib/CardDAV/Converter.php', |
|
143 | - 'OCA\\DAV\\CardDAV\\HasPhotoPlugin' => $baseDir . '/../lib/CardDAV/HasPhotoPlugin.php', |
|
144 | - 'OCA\\DAV\\CardDAV\\ImageExportPlugin' => $baseDir . '/../lib/CardDAV/ImageExportPlugin.php', |
|
145 | - 'OCA\\DAV\\CardDAV\\Integration\\ExternalAddressBook' => $baseDir . '/../lib/CardDAV/Integration/ExternalAddressBook.php', |
|
146 | - 'OCA\\DAV\\CardDAV\\Integration\\IAddressBookProvider' => $baseDir . '/../lib/CardDAV/Integration/IAddressBookProvider.php', |
|
147 | - 'OCA\\DAV\\CardDAV\\MultiGetExportPlugin' => $baseDir . '/../lib/CardDAV/MultiGetExportPlugin.php', |
|
148 | - 'OCA\\DAV\\CardDAV\\PhotoCache' => $baseDir . '/../lib/CardDAV/PhotoCache.php', |
|
149 | - 'OCA\\DAV\\CardDAV\\Plugin' => $baseDir . '/../lib/CardDAV/Plugin.php', |
|
150 | - 'OCA\\DAV\\CardDAV\\Security\\CardDavRateLimitingPlugin' => $baseDir . '/../lib/CardDAV/Security/CardDavRateLimitingPlugin.php', |
|
151 | - 'OCA\\DAV\\CardDAV\\Sharing\\Backend' => $baseDir . '/../lib/CardDAV/Sharing/Backend.php', |
|
152 | - 'OCA\\DAV\\CardDAV\\Sharing\\Service' => $baseDir . '/../lib/CardDAV/Sharing/Service.php', |
|
153 | - 'OCA\\DAV\\CardDAV\\SyncService' => $baseDir . '/../lib/CardDAV/SyncService.php', |
|
154 | - 'OCA\\DAV\\CardDAV\\SystemAddressbook' => $baseDir . '/../lib/CardDAV/SystemAddressbook.php', |
|
155 | - 'OCA\\DAV\\CardDAV\\UserAddressBooks' => $baseDir . '/../lib/CardDAV/UserAddressBooks.php', |
|
156 | - 'OCA\\DAV\\CardDAV\\Validation\\CardDavValidatePlugin' => $baseDir . '/../lib/CardDAV/Validation/CardDavValidatePlugin.php', |
|
157 | - 'OCA\\DAV\\CardDAV\\Xml\\Groups' => $baseDir . '/../lib/CardDAV/Xml/Groups.php', |
|
158 | - 'OCA\\DAV\\Command\\ClearCalendarUnshares' => $baseDir . '/../lib/Command/ClearCalendarUnshares.php', |
|
159 | - 'OCA\\DAV\\Command\\ClearContactsPhotoCache' => $baseDir . '/../lib/Command/ClearContactsPhotoCache.php', |
|
160 | - 'OCA\\DAV\\Command\\CreateAddressBook' => $baseDir . '/../lib/Command/CreateAddressBook.php', |
|
161 | - 'OCA\\DAV\\Command\\CreateCalendar' => $baseDir . '/../lib/Command/CreateCalendar.php', |
|
162 | - 'OCA\\DAV\\Command\\CreateSubscription' => $baseDir . '/../lib/Command/CreateSubscription.php', |
|
163 | - 'OCA\\DAV\\Command\\DeleteCalendar' => $baseDir . '/../lib/Command/DeleteCalendar.php', |
|
164 | - 'OCA\\DAV\\Command\\DeleteSubscription' => $baseDir . '/../lib/Command/DeleteSubscription.php', |
|
165 | - 'OCA\\DAV\\Command\\ExportCalendar' => $baseDir . '/../lib/Command/ExportCalendar.php', |
|
166 | - 'OCA\\DAV\\Command\\FixCalendarSyncCommand' => $baseDir . '/../lib/Command/FixCalendarSyncCommand.php', |
|
167 | - 'OCA\\DAV\\Command\\ListAddressbooks' => $baseDir . '/../lib/Command/ListAddressbooks.php', |
|
168 | - 'OCA\\DAV\\Command\\ListCalendarShares' => $baseDir . '/../lib/Command/ListCalendarShares.php', |
|
169 | - 'OCA\\DAV\\Command\\ListCalendars' => $baseDir . '/../lib/Command/ListCalendars.php', |
|
170 | - 'OCA\\DAV\\Command\\ListSubscriptions' => $baseDir . '/../lib/Command/ListSubscriptions.php', |
|
171 | - 'OCA\\DAV\\Command\\MoveCalendar' => $baseDir . '/../lib/Command/MoveCalendar.php', |
|
172 | - 'OCA\\DAV\\Command\\RemoveInvalidShares' => $baseDir . '/../lib/Command/RemoveInvalidShares.php', |
|
173 | - 'OCA\\DAV\\Command\\RetentionCleanupCommand' => $baseDir . '/../lib/Command/RetentionCleanupCommand.php', |
|
174 | - 'OCA\\DAV\\Command\\SendEventReminders' => $baseDir . '/../lib/Command/SendEventReminders.php', |
|
175 | - 'OCA\\DAV\\Command\\SyncBirthdayCalendar' => $baseDir . '/../lib/Command/SyncBirthdayCalendar.php', |
|
176 | - 'OCA\\DAV\\Command\\SyncSystemAddressBook' => $baseDir . '/../lib/Command/SyncSystemAddressBook.php', |
|
177 | - 'OCA\\DAV\\Comments\\CommentNode' => $baseDir . '/../lib/Comments/CommentNode.php', |
|
178 | - 'OCA\\DAV\\Comments\\CommentsPlugin' => $baseDir . '/../lib/Comments/CommentsPlugin.php', |
|
179 | - 'OCA\\DAV\\Comments\\EntityCollection' => $baseDir . '/../lib/Comments/EntityCollection.php', |
|
180 | - 'OCA\\DAV\\Comments\\EntityTypeCollection' => $baseDir . '/../lib/Comments/EntityTypeCollection.php', |
|
181 | - 'OCA\\DAV\\Comments\\RootCollection' => $baseDir . '/../lib/Comments/RootCollection.php', |
|
182 | - 'OCA\\DAV\\Connector\\LegacyDAVACL' => $baseDir . '/../lib/Connector/LegacyDAVACL.php', |
|
183 | - 'OCA\\DAV\\Connector\\LegacyPublicAuth' => $baseDir . '/../lib/Connector/LegacyPublicAuth.php', |
|
184 | - 'OCA\\DAV\\Connector\\Sabre\\AnonymousOptionsPlugin' => $baseDir . '/../lib/Connector/Sabre/AnonymousOptionsPlugin.php', |
|
185 | - 'OCA\\DAV\\Connector\\Sabre\\AppleQuirksPlugin' => $baseDir . '/../lib/Connector/Sabre/AppleQuirksPlugin.php', |
|
186 | - 'OCA\\DAV\\Connector\\Sabre\\Auth' => $baseDir . '/../lib/Connector/Sabre/Auth.php', |
|
187 | - 'OCA\\DAV\\Connector\\Sabre\\BearerAuth' => $baseDir . '/../lib/Connector/Sabre/BearerAuth.php', |
|
188 | - 'OCA\\DAV\\Connector\\Sabre\\BlockLegacyClientPlugin' => $baseDir . '/../lib/Connector/Sabre/BlockLegacyClientPlugin.php', |
|
189 | - 'OCA\\DAV\\Connector\\Sabre\\CachingTree' => $baseDir . '/../lib/Connector/Sabre/CachingTree.php', |
|
190 | - 'OCA\\DAV\\Connector\\Sabre\\ChecksumList' => $baseDir . '/../lib/Connector/Sabre/ChecksumList.php', |
|
191 | - 'OCA\\DAV\\Connector\\Sabre\\ChecksumUpdatePlugin' => $baseDir . '/../lib/Connector/Sabre/ChecksumUpdatePlugin.php', |
|
192 | - 'OCA\\DAV\\Connector\\Sabre\\CommentPropertiesPlugin' => $baseDir . '/../lib/Connector/Sabre/CommentPropertiesPlugin.php', |
|
193 | - 'OCA\\DAV\\Connector\\Sabre\\CopyEtagHeaderPlugin' => $baseDir . '/../lib/Connector/Sabre/CopyEtagHeaderPlugin.php', |
|
194 | - 'OCA\\DAV\\Connector\\Sabre\\DavAclPlugin' => $baseDir . '/../lib/Connector/Sabre/DavAclPlugin.php', |
|
195 | - 'OCA\\DAV\\Connector\\Sabre\\Directory' => $baseDir . '/../lib/Connector/Sabre/Directory.php', |
|
196 | - 'OCA\\DAV\\Connector\\Sabre\\DummyGetResponsePlugin' => $baseDir . '/../lib/Connector/Sabre/DummyGetResponsePlugin.php', |
|
197 | - 'OCA\\DAV\\Connector\\Sabre\\ExceptionLoggerPlugin' => $baseDir . '/../lib/Connector/Sabre/ExceptionLoggerPlugin.php', |
|
198 | - 'OCA\\DAV\\Connector\\Sabre\\Exception\\BadGateway' => $baseDir . '/../lib/Connector/Sabre/Exception/BadGateway.php', |
|
199 | - 'OCA\\DAV\\Connector\\Sabre\\Exception\\EntityTooLarge' => $baseDir . '/../lib/Connector/Sabre/Exception/EntityTooLarge.php', |
|
200 | - 'OCA\\DAV\\Connector\\Sabre\\Exception\\FileLocked' => $baseDir . '/../lib/Connector/Sabre/Exception/FileLocked.php', |
|
201 | - 'OCA\\DAV\\Connector\\Sabre\\Exception\\Forbidden' => $baseDir . '/../lib/Connector/Sabre/Exception/Forbidden.php', |
|
202 | - 'OCA\\DAV\\Connector\\Sabre\\Exception\\InvalidPath' => $baseDir . '/../lib/Connector/Sabre/Exception/InvalidPath.php', |
|
203 | - 'OCA\\DAV\\Connector\\Sabre\\Exception\\PasswordLoginForbidden' => $baseDir . '/../lib/Connector/Sabre/Exception/PasswordLoginForbidden.php', |
|
204 | - 'OCA\\DAV\\Connector\\Sabre\\Exception\\TooManyRequests' => $baseDir . '/../lib/Connector/Sabre/Exception/TooManyRequests.php', |
|
205 | - 'OCA\\DAV\\Connector\\Sabre\\Exception\\UnsupportedMediaType' => $baseDir . '/../lib/Connector/Sabre/Exception/UnsupportedMediaType.php', |
|
206 | - 'OCA\\DAV\\Connector\\Sabre\\FakeLockerPlugin' => $baseDir . '/../lib/Connector/Sabre/FakeLockerPlugin.php', |
|
207 | - 'OCA\\DAV\\Connector\\Sabre\\File' => $baseDir . '/../lib/Connector/Sabre/File.php', |
|
208 | - 'OCA\\DAV\\Connector\\Sabre\\FilesPlugin' => $baseDir . '/../lib/Connector/Sabre/FilesPlugin.php', |
|
209 | - 'OCA\\DAV\\Connector\\Sabre\\FilesReportPlugin' => $baseDir . '/../lib/Connector/Sabre/FilesReportPlugin.php', |
|
210 | - 'OCA\\DAV\\Connector\\Sabre\\LockPlugin' => $baseDir . '/../lib/Connector/Sabre/LockPlugin.php', |
|
211 | - 'OCA\\DAV\\Connector\\Sabre\\MaintenancePlugin' => $baseDir . '/../lib/Connector/Sabre/MaintenancePlugin.php', |
|
212 | - 'OCA\\DAV\\Connector\\Sabre\\MtimeSanitizer' => $baseDir . '/../lib/Connector/Sabre/MtimeSanitizer.php', |
|
213 | - 'OCA\\DAV\\Connector\\Sabre\\Node' => $baseDir . '/../lib/Connector/Sabre/Node.php', |
|
214 | - 'OCA\\DAV\\Connector\\Sabre\\ObjectTree' => $baseDir . '/../lib/Connector/Sabre/ObjectTree.php', |
|
215 | - 'OCA\\DAV\\Connector\\Sabre\\Principal' => $baseDir . '/../lib/Connector/Sabre/Principal.php', |
|
216 | - 'OCA\\DAV\\Connector\\Sabre\\PropfindCompressionPlugin' => $baseDir . '/../lib/Connector/Sabre/PropfindCompressionPlugin.php', |
|
217 | - 'OCA\\DAV\\Connector\\Sabre\\PublicAuth' => $baseDir . '/../lib/Connector/Sabre/PublicAuth.php', |
|
218 | - 'OCA\\DAV\\Connector\\Sabre\\QuotaPlugin' => $baseDir . '/../lib/Connector/Sabre/QuotaPlugin.php', |
|
219 | - 'OCA\\DAV\\Connector\\Sabre\\RequestIdHeaderPlugin' => $baseDir . '/../lib/Connector/Sabre/RequestIdHeaderPlugin.php', |
|
220 | - 'OCA\\DAV\\Connector\\Sabre\\Server' => $baseDir . '/../lib/Connector/Sabre/Server.php', |
|
221 | - 'OCA\\DAV\\Connector\\Sabre\\ServerFactory' => $baseDir . '/../lib/Connector/Sabre/ServerFactory.php', |
|
222 | - 'OCA\\DAV\\Connector\\Sabre\\ShareTypeList' => $baseDir . '/../lib/Connector/Sabre/ShareTypeList.php', |
|
223 | - 'OCA\\DAV\\Connector\\Sabre\\ShareeList' => $baseDir . '/../lib/Connector/Sabre/ShareeList.php', |
|
224 | - 'OCA\\DAV\\Connector\\Sabre\\SharesPlugin' => $baseDir . '/../lib/Connector/Sabre/SharesPlugin.php', |
|
225 | - 'OCA\\DAV\\Connector\\Sabre\\TagList' => $baseDir . '/../lib/Connector/Sabre/TagList.php', |
|
226 | - 'OCA\\DAV\\Connector\\Sabre\\TagsPlugin' => $baseDir . '/../lib/Connector/Sabre/TagsPlugin.php', |
|
227 | - 'OCA\\DAV\\Connector\\Sabre\\ZipFolderPlugin' => $baseDir . '/../lib/Connector/Sabre/ZipFolderPlugin.php', |
|
228 | - 'OCA\\DAV\\Controller\\BirthdayCalendarController' => $baseDir . '/../lib/Controller/BirthdayCalendarController.php', |
|
229 | - 'OCA\\DAV\\Controller\\DirectController' => $baseDir . '/../lib/Controller/DirectController.php', |
|
230 | - 'OCA\\DAV\\Controller\\ExampleContentController' => $baseDir . '/../lib/Controller/ExampleContentController.php', |
|
231 | - 'OCA\\DAV\\Controller\\InvitationResponseController' => $baseDir . '/../lib/Controller/InvitationResponseController.php', |
|
232 | - 'OCA\\DAV\\Controller\\OutOfOfficeController' => $baseDir . '/../lib/Controller/OutOfOfficeController.php', |
|
233 | - 'OCA\\DAV\\Controller\\UpcomingEventsController' => $baseDir . '/../lib/Controller/UpcomingEventsController.php', |
|
234 | - 'OCA\\DAV\\DAV\\CustomPropertiesBackend' => $baseDir . '/../lib/DAV/CustomPropertiesBackend.php', |
|
235 | - 'OCA\\DAV\\DAV\\GroupPrincipalBackend' => $baseDir . '/../lib/DAV/GroupPrincipalBackend.php', |
|
236 | - 'OCA\\DAV\\DAV\\PublicAuth' => $baseDir . '/../lib/DAV/PublicAuth.php', |
|
237 | - 'OCA\\DAV\\DAV\\Sharing\\Backend' => $baseDir . '/../lib/DAV/Sharing/Backend.php', |
|
238 | - 'OCA\\DAV\\DAV\\Sharing\\IShareable' => $baseDir . '/../lib/DAV/Sharing/IShareable.php', |
|
239 | - 'OCA\\DAV\\DAV\\Sharing\\Plugin' => $baseDir . '/../lib/DAV/Sharing/Plugin.php', |
|
240 | - 'OCA\\DAV\\DAV\\Sharing\\SharingMapper' => $baseDir . '/../lib/DAV/Sharing/SharingMapper.php', |
|
241 | - 'OCA\\DAV\\DAV\\Sharing\\SharingService' => $baseDir . '/../lib/DAV/Sharing/SharingService.php', |
|
242 | - 'OCA\\DAV\\DAV\\Sharing\\Xml\\Invite' => $baseDir . '/../lib/DAV/Sharing/Xml/Invite.php', |
|
243 | - 'OCA\\DAV\\DAV\\Sharing\\Xml\\ShareRequest' => $baseDir . '/../lib/DAV/Sharing/Xml/ShareRequest.php', |
|
244 | - 'OCA\\DAV\\DAV\\SystemPrincipalBackend' => $baseDir . '/../lib/DAV/SystemPrincipalBackend.php', |
|
245 | - 'OCA\\DAV\\DAV\\ViewOnlyPlugin' => $baseDir . '/../lib/DAV/ViewOnlyPlugin.php', |
|
246 | - 'OCA\\DAV\\Db\\Absence' => $baseDir . '/../lib/Db/Absence.php', |
|
247 | - 'OCA\\DAV\\Db\\AbsenceMapper' => $baseDir . '/../lib/Db/AbsenceMapper.php', |
|
248 | - 'OCA\\DAV\\Db\\Direct' => $baseDir . '/../lib/Db/Direct.php', |
|
249 | - 'OCA\\DAV\\Db\\DirectMapper' => $baseDir . '/../lib/Db/DirectMapper.php', |
|
250 | - 'OCA\\DAV\\Db\\Property' => $baseDir . '/../lib/Db/Property.php', |
|
251 | - 'OCA\\DAV\\Db\\PropertyMapper' => $baseDir . '/../lib/Db/PropertyMapper.php', |
|
252 | - 'OCA\\DAV\\Direct\\DirectFile' => $baseDir . '/../lib/Direct/DirectFile.php', |
|
253 | - 'OCA\\DAV\\Direct\\DirectHome' => $baseDir . '/../lib/Direct/DirectHome.php', |
|
254 | - 'OCA\\DAV\\Direct\\Server' => $baseDir . '/../lib/Direct/Server.php', |
|
255 | - 'OCA\\DAV\\Direct\\ServerFactory' => $baseDir . '/../lib/Direct/ServerFactory.php', |
|
256 | - 'OCA\\DAV\\Events\\AddressBookCreatedEvent' => $baseDir . '/../lib/Events/AddressBookCreatedEvent.php', |
|
257 | - 'OCA\\DAV\\Events\\AddressBookDeletedEvent' => $baseDir . '/../lib/Events/AddressBookDeletedEvent.php', |
|
258 | - 'OCA\\DAV\\Events\\AddressBookShareUpdatedEvent' => $baseDir . '/../lib/Events/AddressBookShareUpdatedEvent.php', |
|
259 | - 'OCA\\DAV\\Events\\AddressBookUpdatedEvent' => $baseDir . '/../lib/Events/AddressBookUpdatedEvent.php', |
|
260 | - 'OCA\\DAV\\Events\\BeforeFileDirectDownloadedEvent' => $baseDir . '/../lib/Events/BeforeFileDirectDownloadedEvent.php', |
|
261 | - 'OCA\\DAV\\Events\\CachedCalendarObjectCreatedEvent' => $baseDir . '/../lib/Events/CachedCalendarObjectCreatedEvent.php', |
|
262 | - 'OCA\\DAV\\Events\\CachedCalendarObjectDeletedEvent' => $baseDir . '/../lib/Events/CachedCalendarObjectDeletedEvent.php', |
|
263 | - 'OCA\\DAV\\Events\\CachedCalendarObjectUpdatedEvent' => $baseDir . '/../lib/Events/CachedCalendarObjectUpdatedEvent.php', |
|
264 | - 'OCA\\DAV\\Events\\CalendarCreatedEvent' => $baseDir . '/../lib/Events/CalendarCreatedEvent.php', |
|
265 | - 'OCA\\DAV\\Events\\CalendarDeletedEvent' => $baseDir . '/../lib/Events/CalendarDeletedEvent.php', |
|
266 | - 'OCA\\DAV\\Events\\CalendarMovedToTrashEvent' => $baseDir . '/../lib/Events/CalendarMovedToTrashEvent.php', |
|
267 | - 'OCA\\DAV\\Events\\CalendarPublishedEvent' => $baseDir . '/../lib/Events/CalendarPublishedEvent.php', |
|
268 | - 'OCA\\DAV\\Events\\CalendarRestoredEvent' => $baseDir . '/../lib/Events/CalendarRestoredEvent.php', |
|
269 | - 'OCA\\DAV\\Events\\CalendarShareUpdatedEvent' => $baseDir . '/../lib/Events/CalendarShareUpdatedEvent.php', |
|
270 | - 'OCA\\DAV\\Events\\CalendarUnpublishedEvent' => $baseDir . '/../lib/Events/CalendarUnpublishedEvent.php', |
|
271 | - 'OCA\\DAV\\Events\\CalendarUpdatedEvent' => $baseDir . '/../lib/Events/CalendarUpdatedEvent.php', |
|
272 | - 'OCA\\DAV\\Events\\CardCreatedEvent' => $baseDir . '/../lib/Events/CardCreatedEvent.php', |
|
273 | - 'OCA\\DAV\\Events\\CardDeletedEvent' => $baseDir . '/../lib/Events/CardDeletedEvent.php', |
|
274 | - 'OCA\\DAV\\Events\\CardMovedEvent' => $baseDir . '/../lib/Events/CardMovedEvent.php', |
|
275 | - 'OCA\\DAV\\Events\\CardUpdatedEvent' => $baseDir . '/../lib/Events/CardUpdatedEvent.php', |
|
276 | - 'OCA\\DAV\\Events\\SabrePluginAddEvent' => $baseDir . '/../lib/Events/SabrePluginAddEvent.php', |
|
277 | - 'OCA\\DAV\\Events\\SabrePluginAuthInitEvent' => $baseDir . '/../lib/Events/SabrePluginAuthInitEvent.php', |
|
278 | - 'OCA\\DAV\\Events\\SubscriptionCreatedEvent' => $baseDir . '/../lib/Events/SubscriptionCreatedEvent.php', |
|
279 | - 'OCA\\DAV\\Events\\SubscriptionDeletedEvent' => $baseDir . '/../lib/Events/SubscriptionDeletedEvent.php', |
|
280 | - 'OCA\\DAV\\Events\\SubscriptionUpdatedEvent' => $baseDir . '/../lib/Events/SubscriptionUpdatedEvent.php', |
|
281 | - 'OCA\\DAV\\Exception\\ServerMaintenanceMode' => $baseDir . '/../lib/Exception/ServerMaintenanceMode.php', |
|
282 | - 'OCA\\DAV\\Exception\\UnsupportedLimitOnInitialSyncException' => $baseDir . '/../lib/Exception/UnsupportedLimitOnInitialSyncException.php', |
|
283 | - 'OCA\\DAV\\Files\\BrowserErrorPagePlugin' => $baseDir . '/../lib/Files/BrowserErrorPagePlugin.php', |
|
284 | - 'OCA\\DAV\\Files\\FileSearchBackend' => $baseDir . '/../lib/Files/FileSearchBackend.php', |
|
285 | - 'OCA\\DAV\\Files\\FilesHome' => $baseDir . '/../lib/Files/FilesHome.php', |
|
286 | - 'OCA\\DAV\\Files\\LazySearchBackend' => $baseDir . '/../lib/Files/LazySearchBackend.php', |
|
287 | - 'OCA\\DAV\\Files\\RootCollection' => $baseDir . '/../lib/Files/RootCollection.php', |
|
288 | - 'OCA\\DAV\\Files\\Sharing\\FilesDropPlugin' => $baseDir . '/../lib/Files/Sharing/FilesDropPlugin.php', |
|
289 | - 'OCA\\DAV\\Files\\Sharing\\PublicLinkCheckPlugin' => $baseDir . '/../lib/Files/Sharing/PublicLinkCheckPlugin.php', |
|
290 | - 'OCA\\DAV\\Files\\Sharing\\RootCollection' => $baseDir . '/../lib/Files/Sharing/RootCollection.php', |
|
291 | - 'OCA\\DAV\\Listener\\ActivityUpdaterListener' => $baseDir . '/../lib/Listener/ActivityUpdaterListener.php', |
|
292 | - 'OCA\\DAV\\Listener\\AddMissingIndicesListener' => $baseDir . '/../lib/Listener/AddMissingIndicesListener.php', |
|
293 | - 'OCA\\DAV\\Listener\\AddressbookListener' => $baseDir . '/../lib/Listener/AddressbookListener.php', |
|
294 | - 'OCA\\DAV\\Listener\\BirthdayListener' => $baseDir . '/../lib/Listener/BirthdayListener.php', |
|
295 | - 'OCA\\DAV\\Listener\\CalendarContactInteractionListener' => $baseDir . '/../lib/Listener/CalendarContactInteractionListener.php', |
|
296 | - 'OCA\\DAV\\Listener\\CalendarDeletionDefaultUpdaterListener' => $baseDir . '/../lib/Listener/CalendarDeletionDefaultUpdaterListener.php', |
|
297 | - 'OCA\\DAV\\Listener\\CalendarObjectReminderUpdaterListener' => $baseDir . '/../lib/Listener/CalendarObjectReminderUpdaterListener.php', |
|
298 | - 'OCA\\DAV\\Listener\\CalendarPublicationListener' => $baseDir . '/../lib/Listener/CalendarPublicationListener.php', |
|
299 | - 'OCA\\DAV\\Listener\\CalendarShareUpdateListener' => $baseDir . '/../lib/Listener/CalendarShareUpdateListener.php', |
|
300 | - 'OCA\\DAV\\Listener\\CardListener' => $baseDir . '/../lib/Listener/CardListener.php', |
|
301 | - 'OCA\\DAV\\Listener\\ClearPhotoCacheListener' => $baseDir . '/../lib/Listener/ClearPhotoCacheListener.php', |
|
302 | - 'OCA\\DAV\\Listener\\DavAdminSettingsListener' => $baseDir . '/../lib/Listener/DavAdminSettingsListener.php', |
|
303 | - 'OCA\\DAV\\Listener\\OutOfOfficeListener' => $baseDir . '/../lib/Listener/OutOfOfficeListener.php', |
|
304 | - 'OCA\\DAV\\Listener\\SubscriptionListener' => $baseDir . '/../lib/Listener/SubscriptionListener.php', |
|
305 | - 'OCA\\DAV\\Listener\\TrustedServerRemovedListener' => $baseDir . '/../lib/Listener/TrustedServerRemovedListener.php', |
|
306 | - 'OCA\\DAV\\Listener\\UserEventsListener' => $baseDir . '/../lib/Listener/UserEventsListener.php', |
|
307 | - 'OCA\\DAV\\Listener\\UserPreferenceListener' => $baseDir . '/../lib/Listener/UserPreferenceListener.php', |
|
308 | - 'OCA\\DAV\\Migration\\BuildCalendarSearchIndex' => $baseDir . '/../lib/Migration/BuildCalendarSearchIndex.php', |
|
309 | - 'OCA\\DAV\\Migration\\BuildCalendarSearchIndexBackgroundJob' => $baseDir . '/../lib/Migration/BuildCalendarSearchIndexBackgroundJob.php', |
|
310 | - 'OCA\\DAV\\Migration\\BuildSocialSearchIndex' => $baseDir . '/../lib/Migration/BuildSocialSearchIndex.php', |
|
311 | - 'OCA\\DAV\\Migration\\BuildSocialSearchIndexBackgroundJob' => $baseDir . '/../lib/Migration/BuildSocialSearchIndexBackgroundJob.php', |
|
312 | - 'OCA\\DAV\\Migration\\CalDAVRemoveEmptyValue' => $baseDir . '/../lib/Migration/CalDAVRemoveEmptyValue.php', |
|
313 | - 'OCA\\DAV\\Migration\\ChunkCleanup' => $baseDir . '/../lib/Migration/ChunkCleanup.php', |
|
314 | - 'OCA\\DAV\\Migration\\CreateSystemAddressBookStep' => $baseDir . '/../lib/Migration/CreateSystemAddressBookStep.php', |
|
315 | - 'OCA\\DAV\\Migration\\DeleteSchedulingObjects' => $baseDir . '/../lib/Migration/DeleteSchedulingObjects.php', |
|
316 | - 'OCA\\DAV\\Migration\\FixBirthdayCalendarComponent' => $baseDir . '/../lib/Migration/FixBirthdayCalendarComponent.php', |
|
317 | - 'OCA\\DAV\\Migration\\RefreshWebcalJobRegistrar' => $baseDir . '/../lib/Migration/RefreshWebcalJobRegistrar.php', |
|
318 | - 'OCA\\DAV\\Migration\\RegenerateBirthdayCalendars' => $baseDir . '/../lib/Migration/RegenerateBirthdayCalendars.php', |
|
319 | - 'OCA\\DAV\\Migration\\RegisterBuildReminderIndexBackgroundJob' => $baseDir . '/../lib/Migration/RegisterBuildReminderIndexBackgroundJob.php', |
|
320 | - 'OCA\\DAV\\Migration\\RegisterUpdateCalendarResourcesRoomBackgroundJob' => $baseDir . '/../lib/Migration/RegisterUpdateCalendarResourcesRoomBackgroundJob.php', |
|
321 | - 'OCA\\DAV\\Migration\\RemoveClassifiedEventActivity' => $baseDir . '/../lib/Migration/RemoveClassifiedEventActivity.php', |
|
322 | - 'OCA\\DAV\\Migration\\RemoveDeletedUsersCalendarSubscriptions' => $baseDir . '/../lib/Migration/RemoveDeletedUsersCalendarSubscriptions.php', |
|
323 | - 'OCA\\DAV\\Migration\\RemoveObjectProperties' => $baseDir . '/../lib/Migration/RemoveObjectProperties.php', |
|
324 | - 'OCA\\DAV\\Migration\\RemoveOrphanEventsAndContacts' => $baseDir . '/../lib/Migration/RemoveOrphanEventsAndContacts.php', |
|
325 | - 'OCA\\DAV\\Migration\\Version1004Date20170825134824' => $baseDir . '/../lib/Migration/Version1004Date20170825134824.php', |
|
326 | - 'OCA\\DAV\\Migration\\Version1004Date20170919104507' => $baseDir . '/../lib/Migration/Version1004Date20170919104507.php', |
|
327 | - 'OCA\\DAV\\Migration\\Version1004Date20170924124212' => $baseDir . '/../lib/Migration/Version1004Date20170924124212.php', |
|
328 | - 'OCA\\DAV\\Migration\\Version1004Date20170926103422' => $baseDir . '/../lib/Migration/Version1004Date20170926103422.php', |
|
329 | - 'OCA\\DAV\\Migration\\Version1005Date20180413093149' => $baseDir . '/../lib/Migration/Version1005Date20180413093149.php', |
|
330 | - 'OCA\\DAV\\Migration\\Version1005Date20180530124431' => $baseDir . '/../lib/Migration/Version1005Date20180530124431.php', |
|
331 | - 'OCA\\DAV\\Migration\\Version1006Date20180619154313' => $baseDir . '/../lib/Migration/Version1006Date20180619154313.php', |
|
332 | - 'OCA\\DAV\\Migration\\Version1006Date20180628111625' => $baseDir . '/../lib/Migration/Version1006Date20180628111625.php', |
|
333 | - 'OCA\\DAV\\Migration\\Version1008Date20181030113700' => $baseDir . '/../lib/Migration/Version1008Date20181030113700.php', |
|
334 | - 'OCA\\DAV\\Migration\\Version1008Date20181105104826' => $baseDir . '/../lib/Migration/Version1008Date20181105104826.php', |
|
335 | - 'OCA\\DAV\\Migration\\Version1008Date20181105104833' => $baseDir . '/../lib/Migration/Version1008Date20181105104833.php', |
|
336 | - 'OCA\\DAV\\Migration\\Version1008Date20181105110300' => $baseDir . '/../lib/Migration/Version1008Date20181105110300.php', |
|
337 | - 'OCA\\DAV\\Migration\\Version1008Date20181105112049' => $baseDir . '/../lib/Migration/Version1008Date20181105112049.php', |
|
338 | - 'OCA\\DAV\\Migration\\Version1008Date20181114084440' => $baseDir . '/../lib/Migration/Version1008Date20181114084440.php', |
|
339 | - 'OCA\\DAV\\Migration\\Version1011Date20190725113607' => $baseDir . '/../lib/Migration/Version1011Date20190725113607.php', |
|
340 | - 'OCA\\DAV\\Migration\\Version1011Date20190806104428' => $baseDir . '/../lib/Migration/Version1011Date20190806104428.php', |
|
341 | - 'OCA\\DAV\\Migration\\Version1012Date20190808122342' => $baseDir . '/../lib/Migration/Version1012Date20190808122342.php', |
|
342 | - 'OCA\\DAV\\Migration\\Version1016Date20201109085907' => $baseDir . '/../lib/Migration/Version1016Date20201109085907.php', |
|
343 | - 'OCA\\DAV\\Migration\\Version1017Date20210216083742' => $baseDir . '/../lib/Migration/Version1017Date20210216083742.php', |
|
344 | - 'OCA\\DAV\\Migration\\Version1018Date20210312100735' => $baseDir . '/../lib/Migration/Version1018Date20210312100735.php', |
|
345 | - 'OCA\\DAV\\Migration\\Version1024Date20211221144219' => $baseDir . '/../lib/Migration/Version1024Date20211221144219.php', |
|
346 | - 'OCA\\DAV\\Migration\\Version1025Date20240308063933' => $baseDir . '/../lib/Migration/Version1025Date20240308063933.php', |
|
347 | - 'OCA\\DAV\\Migration\\Version1027Date20230504122946' => $baseDir . '/../lib/Migration/Version1027Date20230504122946.php', |
|
348 | - 'OCA\\DAV\\Migration\\Version1029Date20221114151721' => $baseDir . '/../lib/Migration/Version1029Date20221114151721.php', |
|
349 | - 'OCA\\DAV\\Migration\\Version1029Date20231004091403' => $baseDir . '/../lib/Migration/Version1029Date20231004091403.php', |
|
350 | - 'OCA\\DAV\\Migration\\Version1030Date20240205103243' => $baseDir . '/../lib/Migration/Version1030Date20240205103243.php', |
|
351 | - 'OCA\\DAV\\Migration\\Version1031Date20240610134258' => $baseDir . '/../lib/Migration/Version1031Date20240610134258.php', |
|
352 | - 'OCA\\DAV\\Paginate\\LimitedCopyIterator' => $baseDir . '/../lib/Paginate/LimitedCopyIterator.php', |
|
353 | - 'OCA\\DAV\\Paginate\\PaginateCache' => $baseDir . '/../lib/Paginate/PaginateCache.php', |
|
354 | - 'OCA\\DAV\\Paginate\\PaginatePlugin' => $baseDir . '/../lib/Paginate/PaginatePlugin.php', |
|
355 | - 'OCA\\DAV\\Profiler\\ProfilerPlugin' => $baseDir . '/../lib/Profiler/ProfilerPlugin.php', |
|
356 | - 'OCA\\DAV\\Provisioning\\Apple\\AppleProvisioningNode' => $baseDir . '/../lib/Provisioning/Apple/AppleProvisioningNode.php', |
|
357 | - 'OCA\\DAV\\Provisioning\\Apple\\AppleProvisioningPlugin' => $baseDir . '/../lib/Provisioning/Apple/AppleProvisioningPlugin.php', |
|
358 | - 'OCA\\DAV\\ResponseDefinitions' => $baseDir . '/../lib/ResponseDefinitions.php', |
|
359 | - 'OCA\\DAV\\RootCollection' => $baseDir . '/../lib/RootCollection.php', |
|
360 | - 'OCA\\DAV\\Search\\ACalendarSearchProvider' => $baseDir . '/../lib/Search/ACalendarSearchProvider.php', |
|
361 | - 'OCA\\DAV\\Search\\ContactsSearchProvider' => $baseDir . '/../lib/Search/ContactsSearchProvider.php', |
|
362 | - 'OCA\\DAV\\Search\\EventsSearchProvider' => $baseDir . '/../lib/Search/EventsSearchProvider.php', |
|
363 | - 'OCA\\DAV\\Search\\TasksSearchProvider' => $baseDir . '/../lib/Search/TasksSearchProvider.php', |
|
364 | - 'OCA\\DAV\\Server' => $baseDir . '/../lib/Server.php', |
|
365 | - 'OCA\\DAV\\ServerFactory' => $baseDir . '/../lib/ServerFactory.php', |
|
366 | - 'OCA\\DAV\\Service\\AbsenceService' => $baseDir . '/../lib/Service/AbsenceService.php', |
|
367 | - 'OCA\\DAV\\Service\\DefaultContactService' => $baseDir . '/../lib/Service/DefaultContactService.php', |
|
368 | - 'OCA\\DAV\\Settings\\Admin\\SystemAddressBookSettings' => $baseDir . '/../lib/Settings/Admin/SystemAddressBookSettings.php', |
|
369 | - 'OCA\\DAV\\Settings\\AvailabilitySettings' => $baseDir . '/../lib/Settings/AvailabilitySettings.php', |
|
370 | - 'OCA\\DAV\\Settings\\CalDAVSettings' => $baseDir . '/../lib/Settings/CalDAVSettings.php', |
|
371 | - 'OCA\\DAV\\Settings\\ExampleContentSettings' => $baseDir . '/../lib/Settings/ExampleContentSettings.php', |
|
372 | - 'OCA\\DAV\\SetupChecks\\NeedsSystemAddressBookSync' => $baseDir . '/../lib/SetupChecks/NeedsSystemAddressBookSync.php', |
|
373 | - 'OCA\\DAV\\SetupChecks\\WebdavEndpoint' => $baseDir . '/../lib/SetupChecks/WebdavEndpoint.php', |
|
374 | - 'OCA\\DAV\\Storage\\PublicOwnerWrapper' => $baseDir . '/../lib/Storage/PublicOwnerWrapper.php', |
|
375 | - 'OCA\\DAV\\Storage\\PublicShareWrapper' => $baseDir . '/../lib/Storage/PublicShareWrapper.php', |
|
376 | - 'OCA\\DAV\\SystemTag\\SystemTagList' => $baseDir . '/../lib/SystemTag/SystemTagList.php', |
|
377 | - 'OCA\\DAV\\SystemTag\\SystemTagMappingNode' => $baseDir . '/../lib/SystemTag/SystemTagMappingNode.php', |
|
378 | - 'OCA\\DAV\\SystemTag\\SystemTagNode' => $baseDir . '/../lib/SystemTag/SystemTagNode.php', |
|
379 | - 'OCA\\DAV\\SystemTag\\SystemTagObjectType' => $baseDir . '/../lib/SystemTag/SystemTagObjectType.php', |
|
380 | - 'OCA\\DAV\\SystemTag\\SystemTagPlugin' => $baseDir . '/../lib/SystemTag/SystemTagPlugin.php', |
|
381 | - 'OCA\\DAV\\SystemTag\\SystemTagsByIdCollection' => $baseDir . '/../lib/SystemTag/SystemTagsByIdCollection.php', |
|
382 | - 'OCA\\DAV\\SystemTag\\SystemTagsInUseCollection' => $baseDir . '/../lib/SystemTag/SystemTagsInUseCollection.php', |
|
383 | - 'OCA\\DAV\\SystemTag\\SystemTagsObjectList' => $baseDir . '/../lib/SystemTag/SystemTagsObjectList.php', |
|
384 | - 'OCA\\DAV\\SystemTag\\SystemTagsObjectMappingCollection' => $baseDir . '/../lib/SystemTag/SystemTagsObjectMappingCollection.php', |
|
385 | - 'OCA\\DAV\\SystemTag\\SystemTagsObjectTypeCollection' => $baseDir . '/../lib/SystemTag/SystemTagsObjectTypeCollection.php', |
|
386 | - 'OCA\\DAV\\SystemTag\\SystemTagsRelationsCollection' => $baseDir . '/../lib/SystemTag/SystemTagsRelationsCollection.php', |
|
387 | - 'OCA\\DAV\\Traits\\PrincipalProxyTrait' => $baseDir . '/../lib/Traits/PrincipalProxyTrait.php', |
|
388 | - 'OCA\\DAV\\Upload\\AssemblyStream' => $baseDir . '/../lib/Upload/AssemblyStream.php', |
|
389 | - 'OCA\\DAV\\Upload\\ChunkingPlugin' => $baseDir . '/../lib/Upload/ChunkingPlugin.php', |
|
390 | - 'OCA\\DAV\\Upload\\ChunkingV2Plugin' => $baseDir . '/../lib/Upload/ChunkingV2Plugin.php', |
|
391 | - 'OCA\\DAV\\Upload\\CleanupService' => $baseDir . '/../lib/Upload/CleanupService.php', |
|
392 | - 'OCA\\DAV\\Upload\\FutureFile' => $baseDir . '/../lib/Upload/FutureFile.php', |
|
393 | - 'OCA\\DAV\\Upload\\PartFile' => $baseDir . '/../lib/Upload/PartFile.php', |
|
394 | - 'OCA\\DAV\\Upload\\RootCollection' => $baseDir . '/../lib/Upload/RootCollection.php', |
|
395 | - 'OCA\\DAV\\Upload\\UploadFile' => $baseDir . '/../lib/Upload/UploadFile.php', |
|
396 | - 'OCA\\DAV\\Upload\\UploadFolder' => $baseDir . '/../lib/Upload/UploadFolder.php', |
|
397 | - 'OCA\\DAV\\Upload\\UploadHome' => $baseDir . '/../lib/Upload/UploadHome.php', |
|
398 | - 'OCA\\DAV\\UserMigration\\CalendarMigrator' => $baseDir . '/../lib/UserMigration/CalendarMigrator.php', |
|
399 | - 'OCA\\DAV\\UserMigration\\CalendarMigratorException' => $baseDir . '/../lib/UserMigration/CalendarMigratorException.php', |
|
400 | - 'OCA\\DAV\\UserMigration\\ContactsMigrator' => $baseDir . '/../lib/UserMigration/ContactsMigrator.php', |
|
401 | - 'OCA\\DAV\\UserMigration\\ContactsMigratorException' => $baseDir . '/../lib/UserMigration/ContactsMigratorException.php', |
|
402 | - 'OCA\\DAV\\UserMigration\\InvalidAddressBookException' => $baseDir . '/../lib/UserMigration/InvalidAddressBookException.php', |
|
403 | - '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\\CleanupOrphanedChildrenJob' => $baseDir.'/../lib/BackgroundJob/CleanupOrphanedChildrenJob.php', |
|
20 | + 'OCA\\DAV\\BackgroundJob\\DeleteOutdatedSchedulingObjects' => $baseDir.'/../lib/BackgroundJob/DeleteOutdatedSchedulingObjects.php', |
|
21 | + 'OCA\\DAV\\BackgroundJob\\EventReminderJob' => $baseDir.'/../lib/BackgroundJob/EventReminderJob.php', |
|
22 | + 'OCA\\DAV\\BackgroundJob\\GenerateBirthdayCalendarBackgroundJob' => $baseDir.'/../lib/BackgroundJob/GenerateBirthdayCalendarBackgroundJob.php', |
|
23 | + 'OCA\\DAV\\BackgroundJob\\OutOfOfficeEventDispatcherJob' => $baseDir.'/../lib/BackgroundJob/OutOfOfficeEventDispatcherJob.php', |
|
24 | + 'OCA\\DAV\\BackgroundJob\\PruneOutdatedSyncTokensJob' => $baseDir.'/../lib/BackgroundJob/PruneOutdatedSyncTokensJob.php', |
|
25 | + 'OCA\\DAV\\BackgroundJob\\RefreshWebcalJob' => $baseDir.'/../lib/BackgroundJob/RefreshWebcalJob.php', |
|
26 | + 'OCA\\DAV\\BackgroundJob\\RegisterRegenerateBirthdayCalendars' => $baseDir.'/../lib/BackgroundJob/RegisterRegenerateBirthdayCalendars.php', |
|
27 | + 'OCA\\DAV\\BackgroundJob\\UpdateCalendarResourcesRoomsBackgroundJob' => $baseDir.'/../lib/BackgroundJob/UpdateCalendarResourcesRoomsBackgroundJob.php', |
|
28 | + 'OCA\\DAV\\BackgroundJob\\UploadCleanup' => $baseDir.'/../lib/BackgroundJob/UploadCleanup.php', |
|
29 | + 'OCA\\DAV\\BackgroundJob\\UserStatusAutomation' => $baseDir.'/../lib/BackgroundJob/UserStatusAutomation.php', |
|
30 | + 'OCA\\DAV\\BulkUpload\\BulkUploadPlugin' => $baseDir.'/../lib/BulkUpload/BulkUploadPlugin.php', |
|
31 | + 'OCA\\DAV\\BulkUpload\\MultipartRequestParser' => $baseDir.'/../lib/BulkUpload/MultipartRequestParser.php', |
|
32 | + 'OCA\\DAV\\CalDAV\\Activity\\Backend' => $baseDir.'/../lib/CalDAV/Activity/Backend.php', |
|
33 | + 'OCA\\DAV\\CalDAV\\Activity\\Filter\\Calendar' => $baseDir.'/../lib/CalDAV/Activity/Filter/Calendar.php', |
|
34 | + 'OCA\\DAV\\CalDAV\\Activity\\Filter\\Todo' => $baseDir.'/../lib/CalDAV/Activity/Filter/Todo.php', |
|
35 | + 'OCA\\DAV\\CalDAV\\Activity\\Provider\\Base' => $baseDir.'/../lib/CalDAV/Activity/Provider/Base.php', |
|
36 | + 'OCA\\DAV\\CalDAV\\Activity\\Provider\\Calendar' => $baseDir.'/../lib/CalDAV/Activity/Provider/Calendar.php', |
|
37 | + 'OCA\\DAV\\CalDAV\\Activity\\Provider\\Event' => $baseDir.'/../lib/CalDAV/Activity/Provider/Event.php', |
|
38 | + 'OCA\\DAV\\CalDAV\\Activity\\Provider\\Todo' => $baseDir.'/../lib/CalDAV/Activity/Provider/Todo.php', |
|
39 | + 'OCA\\DAV\\CalDAV\\Activity\\Setting\\CalDAVSetting' => $baseDir.'/../lib/CalDAV/Activity/Setting/CalDAVSetting.php', |
|
40 | + 'OCA\\DAV\\CalDAV\\Activity\\Setting\\Calendar' => $baseDir.'/../lib/CalDAV/Activity/Setting/Calendar.php', |
|
41 | + 'OCA\\DAV\\CalDAV\\Activity\\Setting\\Event' => $baseDir.'/../lib/CalDAV/Activity/Setting/Event.php', |
|
42 | + 'OCA\\DAV\\CalDAV\\Activity\\Setting\\Todo' => $baseDir.'/../lib/CalDAV/Activity/Setting/Todo.php', |
|
43 | + 'OCA\\DAV\\CalDAV\\AppCalendar\\AppCalendar' => $baseDir.'/../lib/CalDAV/AppCalendar/AppCalendar.php', |
|
44 | + 'OCA\\DAV\\CalDAV\\AppCalendar\\AppCalendarPlugin' => $baseDir.'/../lib/CalDAV/AppCalendar/AppCalendarPlugin.php', |
|
45 | + 'OCA\\DAV\\CalDAV\\AppCalendar\\CalendarObject' => $baseDir.'/../lib/CalDAV/AppCalendar/CalendarObject.php', |
|
46 | + 'OCA\\DAV\\CalDAV\\Auth\\CustomPrincipalPlugin' => $baseDir.'/../lib/CalDAV/Auth/CustomPrincipalPlugin.php', |
|
47 | + 'OCA\\DAV\\CalDAV\\Auth\\PublicPrincipalPlugin' => $baseDir.'/../lib/CalDAV/Auth/PublicPrincipalPlugin.php', |
|
48 | + 'OCA\\DAV\\CalDAV\\BirthdayCalendar\\EnablePlugin' => $baseDir.'/../lib/CalDAV/BirthdayCalendar/EnablePlugin.php', |
|
49 | + 'OCA\\DAV\\CalDAV\\BirthdayService' => $baseDir.'/../lib/CalDAV/BirthdayService.php', |
|
50 | + 'OCA\\DAV\\CalDAV\\CachedSubscription' => $baseDir.'/../lib/CalDAV/CachedSubscription.php', |
|
51 | + 'OCA\\DAV\\CalDAV\\CachedSubscriptionImpl' => $baseDir.'/../lib/CalDAV/CachedSubscriptionImpl.php', |
|
52 | + 'OCA\\DAV\\CalDAV\\CachedSubscriptionObject' => $baseDir.'/../lib/CalDAV/CachedSubscriptionObject.php', |
|
53 | + 'OCA\\DAV\\CalDAV\\CachedSubscriptionProvider' => $baseDir.'/../lib/CalDAV/CachedSubscriptionProvider.php', |
|
54 | + 'OCA\\DAV\\CalDAV\\CalDavBackend' => $baseDir.'/../lib/CalDAV/CalDavBackend.php', |
|
55 | + 'OCA\\DAV\\CalDAV\\Calendar' => $baseDir.'/../lib/CalDAV/Calendar.php', |
|
56 | + 'OCA\\DAV\\CalDAV\\CalendarHome' => $baseDir.'/../lib/CalDAV/CalendarHome.php', |
|
57 | + 'OCA\\DAV\\CalDAV\\CalendarImpl' => $baseDir.'/../lib/CalDAV/CalendarImpl.php', |
|
58 | + 'OCA\\DAV\\CalDAV\\CalendarManager' => $baseDir.'/../lib/CalDAV/CalendarManager.php', |
|
59 | + 'OCA\\DAV\\CalDAV\\CalendarObject' => $baseDir.'/../lib/CalDAV/CalendarObject.php', |
|
60 | + 'OCA\\DAV\\CalDAV\\CalendarProvider' => $baseDir.'/../lib/CalDAV/CalendarProvider.php', |
|
61 | + 'OCA\\DAV\\CalDAV\\CalendarRoot' => $baseDir.'/../lib/CalDAV/CalendarRoot.php', |
|
62 | + 'OCA\\DAV\\CalDAV\\DefaultCalendarValidator' => $baseDir.'/../lib/CalDAV/DefaultCalendarValidator.php', |
|
63 | + 'OCA\\DAV\\CalDAV\\EventComparisonService' => $baseDir.'/../lib/CalDAV/EventComparisonService.php', |
|
64 | + 'OCA\\DAV\\CalDAV\\EventReader' => $baseDir.'/../lib/CalDAV/EventReader.php', |
|
65 | + 'OCA\\DAV\\CalDAV\\EventReaderRDate' => $baseDir.'/../lib/CalDAV/EventReaderRDate.php', |
|
66 | + 'OCA\\DAV\\CalDAV\\EventReaderRRule' => $baseDir.'/../lib/CalDAV/EventReaderRRule.php', |
|
67 | + 'OCA\\DAV\\CalDAV\\Export\\ExportService' => $baseDir.'/../lib/CalDAV/Export/ExportService.php', |
|
68 | + 'OCA\\DAV\\CalDAV\\FreeBusy\\FreeBusyGenerator' => $baseDir.'/../lib/CalDAV/FreeBusy/FreeBusyGenerator.php', |
|
69 | + 'OCA\\DAV\\CalDAV\\ICSExportPlugin\\ICSExportPlugin' => $baseDir.'/../lib/CalDAV/ICSExportPlugin/ICSExportPlugin.php', |
|
70 | + 'OCA\\DAV\\CalDAV\\IRestorable' => $baseDir.'/../lib/CalDAV/IRestorable.php', |
|
71 | + 'OCA\\DAV\\CalDAV\\Integration\\ExternalCalendar' => $baseDir.'/../lib/CalDAV/Integration/ExternalCalendar.php', |
|
72 | + 'OCA\\DAV\\CalDAV\\Integration\\ICalendarProvider' => $baseDir.'/../lib/CalDAV/Integration/ICalendarProvider.php', |
|
73 | + 'OCA\\DAV\\CalDAV\\InvitationResponse\\InvitationResponseServer' => $baseDir.'/../lib/CalDAV/InvitationResponse/InvitationResponseServer.php', |
|
74 | + 'OCA\\DAV\\CalDAV\\Outbox' => $baseDir.'/../lib/CalDAV/Outbox.php', |
|
75 | + 'OCA\\DAV\\CalDAV\\Plugin' => $baseDir.'/../lib/CalDAV/Plugin.php', |
|
76 | + 'OCA\\DAV\\CalDAV\\Principal\\Collection' => $baseDir.'/../lib/CalDAV/Principal/Collection.php', |
|
77 | + 'OCA\\DAV\\CalDAV\\Principal\\User' => $baseDir.'/../lib/CalDAV/Principal/User.php', |
|
78 | + 'OCA\\DAV\\CalDAV\\Proxy\\Proxy' => $baseDir.'/../lib/CalDAV/Proxy/Proxy.php', |
|
79 | + 'OCA\\DAV\\CalDAV\\Proxy\\ProxyMapper' => $baseDir.'/../lib/CalDAV/Proxy/ProxyMapper.php', |
|
80 | + 'OCA\\DAV\\CalDAV\\PublicCalendar' => $baseDir.'/../lib/CalDAV/PublicCalendar.php', |
|
81 | + 'OCA\\DAV\\CalDAV\\PublicCalendarObject' => $baseDir.'/../lib/CalDAV/PublicCalendarObject.php', |
|
82 | + 'OCA\\DAV\\CalDAV\\PublicCalendarRoot' => $baseDir.'/../lib/CalDAV/PublicCalendarRoot.php', |
|
83 | + 'OCA\\DAV\\CalDAV\\Publishing\\PublishPlugin' => $baseDir.'/../lib/CalDAV/Publishing/PublishPlugin.php', |
|
84 | + 'OCA\\DAV\\CalDAV\\Publishing\\Xml\\Publisher' => $baseDir.'/../lib/CalDAV/Publishing/Xml/Publisher.php', |
|
85 | + 'OCA\\DAV\\CalDAV\\Reminder\\Backend' => $baseDir.'/../lib/CalDAV/Reminder/Backend.php', |
|
86 | + 'OCA\\DAV\\CalDAV\\Reminder\\INotificationProvider' => $baseDir.'/../lib/CalDAV/Reminder/INotificationProvider.php', |
|
87 | + 'OCA\\DAV\\CalDAV\\Reminder\\NotificationProviderManager' => $baseDir.'/../lib/CalDAV/Reminder/NotificationProviderManager.php', |
|
88 | + 'OCA\\DAV\\CalDAV\\Reminder\\NotificationProvider\\AbstractProvider' => $baseDir.'/../lib/CalDAV/Reminder/NotificationProvider/AbstractProvider.php', |
|
89 | + 'OCA\\DAV\\CalDAV\\Reminder\\NotificationProvider\\AudioProvider' => $baseDir.'/../lib/CalDAV/Reminder/NotificationProvider/AudioProvider.php', |
|
90 | + 'OCA\\DAV\\CalDAV\\Reminder\\NotificationProvider\\EmailProvider' => $baseDir.'/../lib/CalDAV/Reminder/NotificationProvider/EmailProvider.php', |
|
91 | + 'OCA\\DAV\\CalDAV\\Reminder\\NotificationProvider\\ProviderNotAvailableException' => $baseDir.'/../lib/CalDAV/Reminder/NotificationProvider/ProviderNotAvailableException.php', |
|
92 | + 'OCA\\DAV\\CalDAV\\Reminder\\NotificationProvider\\PushProvider' => $baseDir.'/../lib/CalDAV/Reminder/NotificationProvider/PushProvider.php', |
|
93 | + 'OCA\\DAV\\CalDAV\\Reminder\\NotificationTypeDoesNotExistException' => $baseDir.'/../lib/CalDAV/Reminder/NotificationTypeDoesNotExistException.php', |
|
94 | + 'OCA\\DAV\\CalDAV\\Reminder\\Notifier' => $baseDir.'/../lib/CalDAV/Reminder/Notifier.php', |
|
95 | + 'OCA\\DAV\\CalDAV\\Reminder\\ReminderService' => $baseDir.'/../lib/CalDAV/Reminder/ReminderService.php', |
|
96 | + 'OCA\\DAV\\CalDAV\\ResourceBooking\\AbstractPrincipalBackend' => $baseDir.'/../lib/CalDAV/ResourceBooking/AbstractPrincipalBackend.php', |
|
97 | + 'OCA\\DAV\\CalDAV\\ResourceBooking\\ResourcePrincipalBackend' => $baseDir.'/../lib/CalDAV/ResourceBooking/ResourcePrincipalBackend.php', |
|
98 | + 'OCA\\DAV\\CalDAV\\ResourceBooking\\RoomPrincipalBackend' => $baseDir.'/../lib/CalDAV/ResourceBooking/RoomPrincipalBackend.php', |
|
99 | + 'OCA\\DAV\\CalDAV\\RetentionService' => $baseDir.'/../lib/CalDAV/RetentionService.php', |
|
100 | + 'OCA\\DAV\\CalDAV\\Schedule\\IMipPlugin' => $baseDir.'/../lib/CalDAV/Schedule/IMipPlugin.php', |
|
101 | + 'OCA\\DAV\\CalDAV\\Schedule\\IMipService' => $baseDir.'/../lib/CalDAV/Schedule/IMipService.php', |
|
102 | + 'OCA\\DAV\\CalDAV\\Schedule\\Plugin' => $baseDir.'/../lib/CalDAV/Schedule/Plugin.php', |
|
103 | + 'OCA\\DAV\\CalDAV\\Search\\SearchPlugin' => $baseDir.'/../lib/CalDAV/Search/SearchPlugin.php', |
|
104 | + 'OCA\\DAV\\CalDAV\\Search\\Xml\\Filter\\CompFilter' => $baseDir.'/../lib/CalDAV/Search/Xml/Filter/CompFilter.php', |
|
105 | + 'OCA\\DAV\\CalDAV\\Search\\Xml\\Filter\\LimitFilter' => $baseDir.'/../lib/CalDAV/Search/Xml/Filter/LimitFilter.php', |
|
106 | + 'OCA\\DAV\\CalDAV\\Search\\Xml\\Filter\\OffsetFilter' => $baseDir.'/../lib/CalDAV/Search/Xml/Filter/OffsetFilter.php', |
|
107 | + 'OCA\\DAV\\CalDAV\\Search\\Xml\\Filter\\ParamFilter' => $baseDir.'/../lib/CalDAV/Search/Xml/Filter/ParamFilter.php', |
|
108 | + 'OCA\\DAV\\CalDAV\\Search\\Xml\\Filter\\PropFilter' => $baseDir.'/../lib/CalDAV/Search/Xml/Filter/PropFilter.php', |
|
109 | + 'OCA\\DAV\\CalDAV\\Search\\Xml\\Filter\\SearchTermFilter' => $baseDir.'/../lib/CalDAV/Search/Xml/Filter/SearchTermFilter.php', |
|
110 | + 'OCA\\DAV\\CalDAV\\Search\\Xml\\Request\\CalendarSearchReport' => $baseDir.'/../lib/CalDAV/Search/Xml/Request/CalendarSearchReport.php', |
|
111 | + 'OCA\\DAV\\CalDAV\\Security\\RateLimitingPlugin' => $baseDir.'/../lib/CalDAV/Security/RateLimitingPlugin.php', |
|
112 | + 'OCA\\DAV\\CalDAV\\Sharing\\Backend' => $baseDir.'/../lib/CalDAV/Sharing/Backend.php', |
|
113 | + 'OCA\\DAV\\CalDAV\\Sharing\\Service' => $baseDir.'/../lib/CalDAV/Sharing/Service.php', |
|
114 | + 'OCA\\DAV\\CalDAV\\Status\\StatusService' => $baseDir.'/../lib/CalDAV/Status/StatusService.php', |
|
115 | + 'OCA\\DAV\\CalDAV\\TimeZoneFactory' => $baseDir.'/../lib/CalDAV/TimeZoneFactory.php', |
|
116 | + 'OCA\\DAV\\CalDAV\\TimezoneService' => $baseDir.'/../lib/CalDAV/TimezoneService.php', |
|
117 | + 'OCA\\DAV\\CalDAV\\TipBroker' => $baseDir.'/../lib/CalDAV/TipBroker.php', |
|
118 | + 'OCA\\DAV\\CalDAV\\Trashbin\\DeletedCalendarObject' => $baseDir.'/../lib/CalDAV/Trashbin/DeletedCalendarObject.php', |
|
119 | + 'OCA\\DAV\\CalDAV\\Trashbin\\DeletedCalendarObjectsCollection' => $baseDir.'/../lib/CalDAV/Trashbin/DeletedCalendarObjectsCollection.php', |
|
120 | + 'OCA\\DAV\\CalDAV\\Trashbin\\Plugin' => $baseDir.'/../lib/CalDAV/Trashbin/Plugin.php', |
|
121 | + 'OCA\\DAV\\CalDAV\\Trashbin\\RestoreTarget' => $baseDir.'/../lib/CalDAV/Trashbin/RestoreTarget.php', |
|
122 | + 'OCA\\DAV\\CalDAV\\Trashbin\\TrashbinHome' => $baseDir.'/../lib/CalDAV/Trashbin/TrashbinHome.php', |
|
123 | + 'OCA\\DAV\\CalDAV\\UpcomingEvent' => $baseDir.'/../lib/CalDAV/UpcomingEvent.php', |
|
124 | + 'OCA\\DAV\\CalDAV\\UpcomingEventsService' => $baseDir.'/../lib/CalDAV/UpcomingEventsService.php', |
|
125 | + 'OCA\\DAV\\CalDAV\\Validation\\CalDavValidatePlugin' => $baseDir.'/../lib/CalDAV/Validation/CalDavValidatePlugin.php', |
|
126 | + 'OCA\\DAV\\CalDAV\\WebcalCaching\\Connection' => $baseDir.'/../lib/CalDAV/WebcalCaching/Connection.php', |
|
127 | + 'OCA\\DAV\\CalDAV\\WebcalCaching\\Plugin' => $baseDir.'/../lib/CalDAV/WebcalCaching/Plugin.php', |
|
128 | + 'OCA\\DAV\\CalDAV\\WebcalCaching\\RefreshWebcalService' => $baseDir.'/../lib/CalDAV/WebcalCaching/RefreshWebcalService.php', |
|
129 | + 'OCA\\DAV\\Capabilities' => $baseDir.'/../lib/Capabilities.php', |
|
130 | + 'OCA\\DAV\\CardDAV\\Activity\\Backend' => $baseDir.'/../lib/CardDAV/Activity/Backend.php', |
|
131 | + 'OCA\\DAV\\CardDAV\\Activity\\Filter' => $baseDir.'/../lib/CardDAV/Activity/Filter.php', |
|
132 | + 'OCA\\DAV\\CardDAV\\Activity\\Provider\\Addressbook' => $baseDir.'/../lib/CardDAV/Activity/Provider/Addressbook.php', |
|
133 | + 'OCA\\DAV\\CardDAV\\Activity\\Provider\\Base' => $baseDir.'/../lib/CardDAV/Activity/Provider/Base.php', |
|
134 | + 'OCA\\DAV\\CardDAV\\Activity\\Provider\\Card' => $baseDir.'/../lib/CardDAV/Activity/Provider/Card.php', |
|
135 | + 'OCA\\DAV\\CardDAV\\Activity\\Setting' => $baseDir.'/../lib/CardDAV/Activity/Setting.php', |
|
136 | + 'OCA\\DAV\\CardDAV\\AddressBook' => $baseDir.'/../lib/CardDAV/AddressBook.php', |
|
137 | + 'OCA\\DAV\\CardDAV\\AddressBookImpl' => $baseDir.'/../lib/CardDAV/AddressBookImpl.php', |
|
138 | + 'OCA\\DAV\\CardDAV\\AddressBookRoot' => $baseDir.'/../lib/CardDAV/AddressBookRoot.php', |
|
139 | + 'OCA\\DAV\\CardDAV\\Card' => $baseDir.'/../lib/CardDAV/Card.php', |
|
140 | + 'OCA\\DAV\\CardDAV\\CardDavBackend' => $baseDir.'/../lib/CardDAV/CardDavBackend.php', |
|
141 | + 'OCA\\DAV\\CardDAV\\ContactsManager' => $baseDir.'/../lib/CardDAV/ContactsManager.php', |
|
142 | + 'OCA\\DAV\\CardDAV\\Converter' => $baseDir.'/../lib/CardDAV/Converter.php', |
|
143 | + 'OCA\\DAV\\CardDAV\\HasPhotoPlugin' => $baseDir.'/../lib/CardDAV/HasPhotoPlugin.php', |
|
144 | + 'OCA\\DAV\\CardDAV\\ImageExportPlugin' => $baseDir.'/../lib/CardDAV/ImageExportPlugin.php', |
|
145 | + 'OCA\\DAV\\CardDAV\\Integration\\ExternalAddressBook' => $baseDir.'/../lib/CardDAV/Integration/ExternalAddressBook.php', |
|
146 | + 'OCA\\DAV\\CardDAV\\Integration\\IAddressBookProvider' => $baseDir.'/../lib/CardDAV/Integration/IAddressBookProvider.php', |
|
147 | + 'OCA\\DAV\\CardDAV\\MultiGetExportPlugin' => $baseDir.'/../lib/CardDAV/MultiGetExportPlugin.php', |
|
148 | + 'OCA\\DAV\\CardDAV\\PhotoCache' => $baseDir.'/../lib/CardDAV/PhotoCache.php', |
|
149 | + 'OCA\\DAV\\CardDAV\\Plugin' => $baseDir.'/../lib/CardDAV/Plugin.php', |
|
150 | + 'OCA\\DAV\\CardDAV\\Security\\CardDavRateLimitingPlugin' => $baseDir.'/../lib/CardDAV/Security/CardDavRateLimitingPlugin.php', |
|
151 | + 'OCA\\DAV\\CardDAV\\Sharing\\Backend' => $baseDir.'/../lib/CardDAV/Sharing/Backend.php', |
|
152 | + 'OCA\\DAV\\CardDAV\\Sharing\\Service' => $baseDir.'/../lib/CardDAV/Sharing/Service.php', |
|
153 | + 'OCA\\DAV\\CardDAV\\SyncService' => $baseDir.'/../lib/CardDAV/SyncService.php', |
|
154 | + 'OCA\\DAV\\CardDAV\\SystemAddressbook' => $baseDir.'/../lib/CardDAV/SystemAddressbook.php', |
|
155 | + 'OCA\\DAV\\CardDAV\\UserAddressBooks' => $baseDir.'/../lib/CardDAV/UserAddressBooks.php', |
|
156 | + 'OCA\\DAV\\CardDAV\\Validation\\CardDavValidatePlugin' => $baseDir.'/../lib/CardDAV/Validation/CardDavValidatePlugin.php', |
|
157 | + 'OCA\\DAV\\CardDAV\\Xml\\Groups' => $baseDir.'/../lib/CardDAV/Xml/Groups.php', |
|
158 | + 'OCA\\DAV\\Command\\ClearCalendarUnshares' => $baseDir.'/../lib/Command/ClearCalendarUnshares.php', |
|
159 | + 'OCA\\DAV\\Command\\ClearContactsPhotoCache' => $baseDir.'/../lib/Command/ClearContactsPhotoCache.php', |
|
160 | + 'OCA\\DAV\\Command\\CreateAddressBook' => $baseDir.'/../lib/Command/CreateAddressBook.php', |
|
161 | + 'OCA\\DAV\\Command\\CreateCalendar' => $baseDir.'/../lib/Command/CreateCalendar.php', |
|
162 | + 'OCA\\DAV\\Command\\CreateSubscription' => $baseDir.'/../lib/Command/CreateSubscription.php', |
|
163 | + 'OCA\\DAV\\Command\\DeleteCalendar' => $baseDir.'/../lib/Command/DeleteCalendar.php', |
|
164 | + 'OCA\\DAV\\Command\\DeleteSubscription' => $baseDir.'/../lib/Command/DeleteSubscription.php', |
|
165 | + 'OCA\\DAV\\Command\\ExportCalendar' => $baseDir.'/../lib/Command/ExportCalendar.php', |
|
166 | + 'OCA\\DAV\\Command\\FixCalendarSyncCommand' => $baseDir.'/../lib/Command/FixCalendarSyncCommand.php', |
|
167 | + 'OCA\\DAV\\Command\\ListAddressbooks' => $baseDir.'/../lib/Command/ListAddressbooks.php', |
|
168 | + 'OCA\\DAV\\Command\\ListCalendarShares' => $baseDir.'/../lib/Command/ListCalendarShares.php', |
|
169 | + 'OCA\\DAV\\Command\\ListCalendars' => $baseDir.'/../lib/Command/ListCalendars.php', |
|
170 | + 'OCA\\DAV\\Command\\ListSubscriptions' => $baseDir.'/../lib/Command/ListSubscriptions.php', |
|
171 | + 'OCA\\DAV\\Command\\MoveCalendar' => $baseDir.'/../lib/Command/MoveCalendar.php', |
|
172 | + 'OCA\\DAV\\Command\\RemoveInvalidShares' => $baseDir.'/../lib/Command/RemoveInvalidShares.php', |
|
173 | + 'OCA\\DAV\\Command\\RetentionCleanupCommand' => $baseDir.'/../lib/Command/RetentionCleanupCommand.php', |
|
174 | + 'OCA\\DAV\\Command\\SendEventReminders' => $baseDir.'/../lib/Command/SendEventReminders.php', |
|
175 | + 'OCA\\DAV\\Command\\SyncBirthdayCalendar' => $baseDir.'/../lib/Command/SyncBirthdayCalendar.php', |
|
176 | + 'OCA\\DAV\\Command\\SyncSystemAddressBook' => $baseDir.'/../lib/Command/SyncSystemAddressBook.php', |
|
177 | + 'OCA\\DAV\\Comments\\CommentNode' => $baseDir.'/../lib/Comments/CommentNode.php', |
|
178 | + 'OCA\\DAV\\Comments\\CommentsPlugin' => $baseDir.'/../lib/Comments/CommentsPlugin.php', |
|
179 | + 'OCA\\DAV\\Comments\\EntityCollection' => $baseDir.'/../lib/Comments/EntityCollection.php', |
|
180 | + 'OCA\\DAV\\Comments\\EntityTypeCollection' => $baseDir.'/../lib/Comments/EntityTypeCollection.php', |
|
181 | + 'OCA\\DAV\\Comments\\RootCollection' => $baseDir.'/../lib/Comments/RootCollection.php', |
|
182 | + 'OCA\\DAV\\Connector\\LegacyDAVACL' => $baseDir.'/../lib/Connector/LegacyDAVACL.php', |
|
183 | + 'OCA\\DAV\\Connector\\LegacyPublicAuth' => $baseDir.'/../lib/Connector/LegacyPublicAuth.php', |
|
184 | + 'OCA\\DAV\\Connector\\Sabre\\AnonymousOptionsPlugin' => $baseDir.'/../lib/Connector/Sabre/AnonymousOptionsPlugin.php', |
|
185 | + 'OCA\\DAV\\Connector\\Sabre\\AppleQuirksPlugin' => $baseDir.'/../lib/Connector/Sabre/AppleQuirksPlugin.php', |
|
186 | + 'OCA\\DAV\\Connector\\Sabre\\Auth' => $baseDir.'/../lib/Connector/Sabre/Auth.php', |
|
187 | + 'OCA\\DAV\\Connector\\Sabre\\BearerAuth' => $baseDir.'/../lib/Connector/Sabre/BearerAuth.php', |
|
188 | + 'OCA\\DAV\\Connector\\Sabre\\BlockLegacyClientPlugin' => $baseDir.'/../lib/Connector/Sabre/BlockLegacyClientPlugin.php', |
|
189 | + 'OCA\\DAV\\Connector\\Sabre\\CachingTree' => $baseDir.'/../lib/Connector/Sabre/CachingTree.php', |
|
190 | + 'OCA\\DAV\\Connector\\Sabre\\ChecksumList' => $baseDir.'/../lib/Connector/Sabre/ChecksumList.php', |
|
191 | + 'OCA\\DAV\\Connector\\Sabre\\ChecksumUpdatePlugin' => $baseDir.'/../lib/Connector/Sabre/ChecksumUpdatePlugin.php', |
|
192 | + 'OCA\\DAV\\Connector\\Sabre\\CommentPropertiesPlugin' => $baseDir.'/../lib/Connector/Sabre/CommentPropertiesPlugin.php', |
|
193 | + 'OCA\\DAV\\Connector\\Sabre\\CopyEtagHeaderPlugin' => $baseDir.'/../lib/Connector/Sabre/CopyEtagHeaderPlugin.php', |
|
194 | + 'OCA\\DAV\\Connector\\Sabre\\DavAclPlugin' => $baseDir.'/../lib/Connector/Sabre/DavAclPlugin.php', |
|
195 | + 'OCA\\DAV\\Connector\\Sabre\\Directory' => $baseDir.'/../lib/Connector/Sabre/Directory.php', |
|
196 | + 'OCA\\DAV\\Connector\\Sabre\\DummyGetResponsePlugin' => $baseDir.'/../lib/Connector/Sabre/DummyGetResponsePlugin.php', |
|
197 | + 'OCA\\DAV\\Connector\\Sabre\\ExceptionLoggerPlugin' => $baseDir.'/../lib/Connector/Sabre/ExceptionLoggerPlugin.php', |
|
198 | + 'OCA\\DAV\\Connector\\Sabre\\Exception\\BadGateway' => $baseDir.'/../lib/Connector/Sabre/Exception/BadGateway.php', |
|
199 | + 'OCA\\DAV\\Connector\\Sabre\\Exception\\EntityTooLarge' => $baseDir.'/../lib/Connector/Sabre/Exception/EntityTooLarge.php', |
|
200 | + 'OCA\\DAV\\Connector\\Sabre\\Exception\\FileLocked' => $baseDir.'/../lib/Connector/Sabre/Exception/FileLocked.php', |
|
201 | + 'OCA\\DAV\\Connector\\Sabre\\Exception\\Forbidden' => $baseDir.'/../lib/Connector/Sabre/Exception/Forbidden.php', |
|
202 | + 'OCA\\DAV\\Connector\\Sabre\\Exception\\InvalidPath' => $baseDir.'/../lib/Connector/Sabre/Exception/InvalidPath.php', |
|
203 | + 'OCA\\DAV\\Connector\\Sabre\\Exception\\PasswordLoginForbidden' => $baseDir.'/../lib/Connector/Sabre/Exception/PasswordLoginForbidden.php', |
|
204 | + 'OCA\\DAV\\Connector\\Sabre\\Exception\\TooManyRequests' => $baseDir.'/../lib/Connector/Sabre/Exception/TooManyRequests.php', |
|
205 | + 'OCA\\DAV\\Connector\\Sabre\\Exception\\UnsupportedMediaType' => $baseDir.'/../lib/Connector/Sabre/Exception/UnsupportedMediaType.php', |
|
206 | + 'OCA\\DAV\\Connector\\Sabre\\FakeLockerPlugin' => $baseDir.'/../lib/Connector/Sabre/FakeLockerPlugin.php', |
|
207 | + 'OCA\\DAV\\Connector\\Sabre\\File' => $baseDir.'/../lib/Connector/Sabre/File.php', |
|
208 | + 'OCA\\DAV\\Connector\\Sabre\\FilesPlugin' => $baseDir.'/../lib/Connector/Sabre/FilesPlugin.php', |
|
209 | + 'OCA\\DAV\\Connector\\Sabre\\FilesReportPlugin' => $baseDir.'/../lib/Connector/Sabre/FilesReportPlugin.php', |
|
210 | + 'OCA\\DAV\\Connector\\Sabre\\LockPlugin' => $baseDir.'/../lib/Connector/Sabre/LockPlugin.php', |
|
211 | + 'OCA\\DAV\\Connector\\Sabre\\MaintenancePlugin' => $baseDir.'/../lib/Connector/Sabre/MaintenancePlugin.php', |
|
212 | + 'OCA\\DAV\\Connector\\Sabre\\MtimeSanitizer' => $baseDir.'/../lib/Connector/Sabre/MtimeSanitizer.php', |
|
213 | + 'OCA\\DAV\\Connector\\Sabre\\Node' => $baseDir.'/../lib/Connector/Sabre/Node.php', |
|
214 | + 'OCA\\DAV\\Connector\\Sabre\\ObjectTree' => $baseDir.'/../lib/Connector/Sabre/ObjectTree.php', |
|
215 | + 'OCA\\DAV\\Connector\\Sabre\\Principal' => $baseDir.'/../lib/Connector/Sabre/Principal.php', |
|
216 | + 'OCA\\DAV\\Connector\\Sabre\\PropfindCompressionPlugin' => $baseDir.'/../lib/Connector/Sabre/PropfindCompressionPlugin.php', |
|
217 | + 'OCA\\DAV\\Connector\\Sabre\\PublicAuth' => $baseDir.'/../lib/Connector/Sabre/PublicAuth.php', |
|
218 | + 'OCA\\DAV\\Connector\\Sabre\\QuotaPlugin' => $baseDir.'/../lib/Connector/Sabre/QuotaPlugin.php', |
|
219 | + 'OCA\\DAV\\Connector\\Sabre\\RequestIdHeaderPlugin' => $baseDir.'/../lib/Connector/Sabre/RequestIdHeaderPlugin.php', |
|
220 | + 'OCA\\DAV\\Connector\\Sabre\\Server' => $baseDir.'/../lib/Connector/Sabre/Server.php', |
|
221 | + 'OCA\\DAV\\Connector\\Sabre\\ServerFactory' => $baseDir.'/../lib/Connector/Sabre/ServerFactory.php', |
|
222 | + 'OCA\\DAV\\Connector\\Sabre\\ShareTypeList' => $baseDir.'/../lib/Connector/Sabre/ShareTypeList.php', |
|
223 | + 'OCA\\DAV\\Connector\\Sabre\\ShareeList' => $baseDir.'/../lib/Connector/Sabre/ShareeList.php', |
|
224 | + 'OCA\\DAV\\Connector\\Sabre\\SharesPlugin' => $baseDir.'/../lib/Connector/Sabre/SharesPlugin.php', |
|
225 | + 'OCA\\DAV\\Connector\\Sabre\\TagList' => $baseDir.'/../lib/Connector/Sabre/TagList.php', |
|
226 | + 'OCA\\DAV\\Connector\\Sabre\\TagsPlugin' => $baseDir.'/../lib/Connector/Sabre/TagsPlugin.php', |
|
227 | + 'OCA\\DAV\\Connector\\Sabre\\ZipFolderPlugin' => $baseDir.'/../lib/Connector/Sabre/ZipFolderPlugin.php', |
|
228 | + 'OCA\\DAV\\Controller\\BirthdayCalendarController' => $baseDir.'/../lib/Controller/BirthdayCalendarController.php', |
|
229 | + 'OCA\\DAV\\Controller\\DirectController' => $baseDir.'/../lib/Controller/DirectController.php', |
|
230 | + 'OCA\\DAV\\Controller\\ExampleContentController' => $baseDir.'/../lib/Controller/ExampleContentController.php', |
|
231 | + 'OCA\\DAV\\Controller\\InvitationResponseController' => $baseDir.'/../lib/Controller/InvitationResponseController.php', |
|
232 | + 'OCA\\DAV\\Controller\\OutOfOfficeController' => $baseDir.'/../lib/Controller/OutOfOfficeController.php', |
|
233 | + 'OCA\\DAV\\Controller\\UpcomingEventsController' => $baseDir.'/../lib/Controller/UpcomingEventsController.php', |
|
234 | + 'OCA\\DAV\\DAV\\CustomPropertiesBackend' => $baseDir.'/../lib/DAV/CustomPropertiesBackend.php', |
|
235 | + 'OCA\\DAV\\DAV\\GroupPrincipalBackend' => $baseDir.'/../lib/DAV/GroupPrincipalBackend.php', |
|
236 | + 'OCA\\DAV\\DAV\\PublicAuth' => $baseDir.'/../lib/DAV/PublicAuth.php', |
|
237 | + 'OCA\\DAV\\DAV\\Sharing\\Backend' => $baseDir.'/../lib/DAV/Sharing/Backend.php', |
|
238 | + 'OCA\\DAV\\DAV\\Sharing\\IShareable' => $baseDir.'/../lib/DAV/Sharing/IShareable.php', |
|
239 | + 'OCA\\DAV\\DAV\\Sharing\\Plugin' => $baseDir.'/../lib/DAV/Sharing/Plugin.php', |
|
240 | + 'OCA\\DAV\\DAV\\Sharing\\SharingMapper' => $baseDir.'/../lib/DAV/Sharing/SharingMapper.php', |
|
241 | + 'OCA\\DAV\\DAV\\Sharing\\SharingService' => $baseDir.'/../lib/DAV/Sharing/SharingService.php', |
|
242 | + 'OCA\\DAV\\DAV\\Sharing\\Xml\\Invite' => $baseDir.'/../lib/DAV/Sharing/Xml/Invite.php', |
|
243 | + 'OCA\\DAV\\DAV\\Sharing\\Xml\\ShareRequest' => $baseDir.'/../lib/DAV/Sharing/Xml/ShareRequest.php', |
|
244 | + 'OCA\\DAV\\DAV\\SystemPrincipalBackend' => $baseDir.'/../lib/DAV/SystemPrincipalBackend.php', |
|
245 | + 'OCA\\DAV\\DAV\\ViewOnlyPlugin' => $baseDir.'/../lib/DAV/ViewOnlyPlugin.php', |
|
246 | + 'OCA\\DAV\\Db\\Absence' => $baseDir.'/../lib/Db/Absence.php', |
|
247 | + 'OCA\\DAV\\Db\\AbsenceMapper' => $baseDir.'/../lib/Db/AbsenceMapper.php', |
|
248 | + 'OCA\\DAV\\Db\\Direct' => $baseDir.'/../lib/Db/Direct.php', |
|
249 | + 'OCA\\DAV\\Db\\DirectMapper' => $baseDir.'/../lib/Db/DirectMapper.php', |
|
250 | + 'OCA\\DAV\\Db\\Property' => $baseDir.'/../lib/Db/Property.php', |
|
251 | + 'OCA\\DAV\\Db\\PropertyMapper' => $baseDir.'/../lib/Db/PropertyMapper.php', |
|
252 | + 'OCA\\DAV\\Direct\\DirectFile' => $baseDir.'/../lib/Direct/DirectFile.php', |
|
253 | + 'OCA\\DAV\\Direct\\DirectHome' => $baseDir.'/../lib/Direct/DirectHome.php', |
|
254 | + 'OCA\\DAV\\Direct\\Server' => $baseDir.'/../lib/Direct/Server.php', |
|
255 | + 'OCA\\DAV\\Direct\\ServerFactory' => $baseDir.'/../lib/Direct/ServerFactory.php', |
|
256 | + 'OCA\\DAV\\Events\\AddressBookCreatedEvent' => $baseDir.'/../lib/Events/AddressBookCreatedEvent.php', |
|
257 | + 'OCA\\DAV\\Events\\AddressBookDeletedEvent' => $baseDir.'/../lib/Events/AddressBookDeletedEvent.php', |
|
258 | + 'OCA\\DAV\\Events\\AddressBookShareUpdatedEvent' => $baseDir.'/../lib/Events/AddressBookShareUpdatedEvent.php', |
|
259 | + 'OCA\\DAV\\Events\\AddressBookUpdatedEvent' => $baseDir.'/../lib/Events/AddressBookUpdatedEvent.php', |
|
260 | + 'OCA\\DAV\\Events\\BeforeFileDirectDownloadedEvent' => $baseDir.'/../lib/Events/BeforeFileDirectDownloadedEvent.php', |
|
261 | + 'OCA\\DAV\\Events\\CachedCalendarObjectCreatedEvent' => $baseDir.'/../lib/Events/CachedCalendarObjectCreatedEvent.php', |
|
262 | + 'OCA\\DAV\\Events\\CachedCalendarObjectDeletedEvent' => $baseDir.'/../lib/Events/CachedCalendarObjectDeletedEvent.php', |
|
263 | + 'OCA\\DAV\\Events\\CachedCalendarObjectUpdatedEvent' => $baseDir.'/../lib/Events/CachedCalendarObjectUpdatedEvent.php', |
|
264 | + 'OCA\\DAV\\Events\\CalendarCreatedEvent' => $baseDir.'/../lib/Events/CalendarCreatedEvent.php', |
|
265 | + 'OCA\\DAV\\Events\\CalendarDeletedEvent' => $baseDir.'/../lib/Events/CalendarDeletedEvent.php', |
|
266 | + 'OCA\\DAV\\Events\\CalendarMovedToTrashEvent' => $baseDir.'/../lib/Events/CalendarMovedToTrashEvent.php', |
|
267 | + 'OCA\\DAV\\Events\\CalendarPublishedEvent' => $baseDir.'/../lib/Events/CalendarPublishedEvent.php', |
|
268 | + 'OCA\\DAV\\Events\\CalendarRestoredEvent' => $baseDir.'/../lib/Events/CalendarRestoredEvent.php', |
|
269 | + 'OCA\\DAV\\Events\\CalendarShareUpdatedEvent' => $baseDir.'/../lib/Events/CalendarShareUpdatedEvent.php', |
|
270 | + 'OCA\\DAV\\Events\\CalendarUnpublishedEvent' => $baseDir.'/../lib/Events/CalendarUnpublishedEvent.php', |
|
271 | + 'OCA\\DAV\\Events\\CalendarUpdatedEvent' => $baseDir.'/../lib/Events/CalendarUpdatedEvent.php', |
|
272 | + 'OCA\\DAV\\Events\\CardCreatedEvent' => $baseDir.'/../lib/Events/CardCreatedEvent.php', |
|
273 | + 'OCA\\DAV\\Events\\CardDeletedEvent' => $baseDir.'/../lib/Events/CardDeletedEvent.php', |
|
274 | + 'OCA\\DAV\\Events\\CardMovedEvent' => $baseDir.'/../lib/Events/CardMovedEvent.php', |
|
275 | + 'OCA\\DAV\\Events\\CardUpdatedEvent' => $baseDir.'/../lib/Events/CardUpdatedEvent.php', |
|
276 | + 'OCA\\DAV\\Events\\SabrePluginAddEvent' => $baseDir.'/../lib/Events/SabrePluginAddEvent.php', |
|
277 | + 'OCA\\DAV\\Events\\SabrePluginAuthInitEvent' => $baseDir.'/../lib/Events/SabrePluginAuthInitEvent.php', |
|
278 | + 'OCA\\DAV\\Events\\SubscriptionCreatedEvent' => $baseDir.'/../lib/Events/SubscriptionCreatedEvent.php', |
|
279 | + 'OCA\\DAV\\Events\\SubscriptionDeletedEvent' => $baseDir.'/../lib/Events/SubscriptionDeletedEvent.php', |
|
280 | + 'OCA\\DAV\\Events\\SubscriptionUpdatedEvent' => $baseDir.'/../lib/Events/SubscriptionUpdatedEvent.php', |
|
281 | + 'OCA\\DAV\\Exception\\ServerMaintenanceMode' => $baseDir.'/../lib/Exception/ServerMaintenanceMode.php', |
|
282 | + 'OCA\\DAV\\Exception\\UnsupportedLimitOnInitialSyncException' => $baseDir.'/../lib/Exception/UnsupportedLimitOnInitialSyncException.php', |
|
283 | + 'OCA\\DAV\\Files\\BrowserErrorPagePlugin' => $baseDir.'/../lib/Files/BrowserErrorPagePlugin.php', |
|
284 | + 'OCA\\DAV\\Files\\FileSearchBackend' => $baseDir.'/../lib/Files/FileSearchBackend.php', |
|
285 | + 'OCA\\DAV\\Files\\FilesHome' => $baseDir.'/../lib/Files/FilesHome.php', |
|
286 | + 'OCA\\DAV\\Files\\LazySearchBackend' => $baseDir.'/../lib/Files/LazySearchBackend.php', |
|
287 | + 'OCA\\DAV\\Files\\RootCollection' => $baseDir.'/../lib/Files/RootCollection.php', |
|
288 | + 'OCA\\DAV\\Files\\Sharing\\FilesDropPlugin' => $baseDir.'/../lib/Files/Sharing/FilesDropPlugin.php', |
|
289 | + 'OCA\\DAV\\Files\\Sharing\\PublicLinkCheckPlugin' => $baseDir.'/../lib/Files/Sharing/PublicLinkCheckPlugin.php', |
|
290 | + 'OCA\\DAV\\Files\\Sharing\\RootCollection' => $baseDir.'/../lib/Files/Sharing/RootCollection.php', |
|
291 | + 'OCA\\DAV\\Listener\\ActivityUpdaterListener' => $baseDir.'/../lib/Listener/ActivityUpdaterListener.php', |
|
292 | + 'OCA\\DAV\\Listener\\AddMissingIndicesListener' => $baseDir.'/../lib/Listener/AddMissingIndicesListener.php', |
|
293 | + 'OCA\\DAV\\Listener\\AddressbookListener' => $baseDir.'/../lib/Listener/AddressbookListener.php', |
|
294 | + 'OCA\\DAV\\Listener\\BirthdayListener' => $baseDir.'/../lib/Listener/BirthdayListener.php', |
|
295 | + 'OCA\\DAV\\Listener\\CalendarContactInteractionListener' => $baseDir.'/../lib/Listener/CalendarContactInteractionListener.php', |
|
296 | + 'OCA\\DAV\\Listener\\CalendarDeletionDefaultUpdaterListener' => $baseDir.'/../lib/Listener/CalendarDeletionDefaultUpdaterListener.php', |
|
297 | + 'OCA\\DAV\\Listener\\CalendarObjectReminderUpdaterListener' => $baseDir.'/../lib/Listener/CalendarObjectReminderUpdaterListener.php', |
|
298 | + 'OCA\\DAV\\Listener\\CalendarPublicationListener' => $baseDir.'/../lib/Listener/CalendarPublicationListener.php', |
|
299 | + 'OCA\\DAV\\Listener\\CalendarShareUpdateListener' => $baseDir.'/../lib/Listener/CalendarShareUpdateListener.php', |
|
300 | + 'OCA\\DAV\\Listener\\CardListener' => $baseDir.'/../lib/Listener/CardListener.php', |
|
301 | + 'OCA\\DAV\\Listener\\ClearPhotoCacheListener' => $baseDir.'/../lib/Listener/ClearPhotoCacheListener.php', |
|
302 | + 'OCA\\DAV\\Listener\\DavAdminSettingsListener' => $baseDir.'/../lib/Listener/DavAdminSettingsListener.php', |
|
303 | + 'OCA\\DAV\\Listener\\OutOfOfficeListener' => $baseDir.'/../lib/Listener/OutOfOfficeListener.php', |
|
304 | + 'OCA\\DAV\\Listener\\SubscriptionListener' => $baseDir.'/../lib/Listener/SubscriptionListener.php', |
|
305 | + 'OCA\\DAV\\Listener\\TrustedServerRemovedListener' => $baseDir.'/../lib/Listener/TrustedServerRemovedListener.php', |
|
306 | + 'OCA\\DAV\\Listener\\UserEventsListener' => $baseDir.'/../lib/Listener/UserEventsListener.php', |
|
307 | + 'OCA\\DAV\\Listener\\UserPreferenceListener' => $baseDir.'/../lib/Listener/UserPreferenceListener.php', |
|
308 | + 'OCA\\DAV\\Migration\\BuildCalendarSearchIndex' => $baseDir.'/../lib/Migration/BuildCalendarSearchIndex.php', |
|
309 | + 'OCA\\DAV\\Migration\\BuildCalendarSearchIndexBackgroundJob' => $baseDir.'/../lib/Migration/BuildCalendarSearchIndexBackgroundJob.php', |
|
310 | + 'OCA\\DAV\\Migration\\BuildSocialSearchIndex' => $baseDir.'/../lib/Migration/BuildSocialSearchIndex.php', |
|
311 | + 'OCA\\DAV\\Migration\\BuildSocialSearchIndexBackgroundJob' => $baseDir.'/../lib/Migration/BuildSocialSearchIndexBackgroundJob.php', |
|
312 | + 'OCA\\DAV\\Migration\\CalDAVRemoveEmptyValue' => $baseDir.'/../lib/Migration/CalDAVRemoveEmptyValue.php', |
|
313 | + 'OCA\\DAV\\Migration\\ChunkCleanup' => $baseDir.'/../lib/Migration/ChunkCleanup.php', |
|
314 | + 'OCA\\DAV\\Migration\\CreateSystemAddressBookStep' => $baseDir.'/../lib/Migration/CreateSystemAddressBookStep.php', |
|
315 | + 'OCA\\DAV\\Migration\\DeleteSchedulingObjects' => $baseDir.'/../lib/Migration/DeleteSchedulingObjects.php', |
|
316 | + 'OCA\\DAV\\Migration\\FixBirthdayCalendarComponent' => $baseDir.'/../lib/Migration/FixBirthdayCalendarComponent.php', |
|
317 | + 'OCA\\DAV\\Migration\\RefreshWebcalJobRegistrar' => $baseDir.'/../lib/Migration/RefreshWebcalJobRegistrar.php', |
|
318 | + 'OCA\\DAV\\Migration\\RegenerateBirthdayCalendars' => $baseDir.'/../lib/Migration/RegenerateBirthdayCalendars.php', |
|
319 | + 'OCA\\DAV\\Migration\\RegisterBuildReminderIndexBackgroundJob' => $baseDir.'/../lib/Migration/RegisterBuildReminderIndexBackgroundJob.php', |
|
320 | + 'OCA\\DAV\\Migration\\RegisterUpdateCalendarResourcesRoomBackgroundJob' => $baseDir.'/../lib/Migration/RegisterUpdateCalendarResourcesRoomBackgroundJob.php', |
|
321 | + 'OCA\\DAV\\Migration\\RemoveClassifiedEventActivity' => $baseDir.'/../lib/Migration/RemoveClassifiedEventActivity.php', |
|
322 | + 'OCA\\DAV\\Migration\\RemoveDeletedUsersCalendarSubscriptions' => $baseDir.'/../lib/Migration/RemoveDeletedUsersCalendarSubscriptions.php', |
|
323 | + 'OCA\\DAV\\Migration\\RemoveObjectProperties' => $baseDir.'/../lib/Migration/RemoveObjectProperties.php', |
|
324 | + 'OCA\\DAV\\Migration\\RemoveOrphanEventsAndContacts' => $baseDir.'/../lib/Migration/RemoveOrphanEventsAndContacts.php', |
|
325 | + 'OCA\\DAV\\Migration\\Version1004Date20170825134824' => $baseDir.'/../lib/Migration/Version1004Date20170825134824.php', |
|
326 | + 'OCA\\DAV\\Migration\\Version1004Date20170919104507' => $baseDir.'/../lib/Migration/Version1004Date20170919104507.php', |
|
327 | + 'OCA\\DAV\\Migration\\Version1004Date20170924124212' => $baseDir.'/../lib/Migration/Version1004Date20170924124212.php', |
|
328 | + 'OCA\\DAV\\Migration\\Version1004Date20170926103422' => $baseDir.'/../lib/Migration/Version1004Date20170926103422.php', |
|
329 | + 'OCA\\DAV\\Migration\\Version1005Date20180413093149' => $baseDir.'/../lib/Migration/Version1005Date20180413093149.php', |
|
330 | + 'OCA\\DAV\\Migration\\Version1005Date20180530124431' => $baseDir.'/../lib/Migration/Version1005Date20180530124431.php', |
|
331 | + 'OCA\\DAV\\Migration\\Version1006Date20180619154313' => $baseDir.'/../lib/Migration/Version1006Date20180619154313.php', |
|
332 | + 'OCA\\DAV\\Migration\\Version1006Date20180628111625' => $baseDir.'/../lib/Migration/Version1006Date20180628111625.php', |
|
333 | + 'OCA\\DAV\\Migration\\Version1008Date20181030113700' => $baseDir.'/../lib/Migration/Version1008Date20181030113700.php', |
|
334 | + 'OCA\\DAV\\Migration\\Version1008Date20181105104826' => $baseDir.'/../lib/Migration/Version1008Date20181105104826.php', |
|
335 | + 'OCA\\DAV\\Migration\\Version1008Date20181105104833' => $baseDir.'/../lib/Migration/Version1008Date20181105104833.php', |
|
336 | + 'OCA\\DAV\\Migration\\Version1008Date20181105110300' => $baseDir.'/../lib/Migration/Version1008Date20181105110300.php', |
|
337 | + 'OCA\\DAV\\Migration\\Version1008Date20181105112049' => $baseDir.'/../lib/Migration/Version1008Date20181105112049.php', |
|
338 | + 'OCA\\DAV\\Migration\\Version1008Date20181114084440' => $baseDir.'/../lib/Migration/Version1008Date20181114084440.php', |
|
339 | + 'OCA\\DAV\\Migration\\Version1011Date20190725113607' => $baseDir.'/../lib/Migration/Version1011Date20190725113607.php', |
|
340 | + 'OCA\\DAV\\Migration\\Version1011Date20190806104428' => $baseDir.'/../lib/Migration/Version1011Date20190806104428.php', |
|
341 | + 'OCA\\DAV\\Migration\\Version1012Date20190808122342' => $baseDir.'/../lib/Migration/Version1012Date20190808122342.php', |
|
342 | + 'OCA\\DAV\\Migration\\Version1016Date20201109085907' => $baseDir.'/../lib/Migration/Version1016Date20201109085907.php', |
|
343 | + 'OCA\\DAV\\Migration\\Version1017Date20210216083742' => $baseDir.'/../lib/Migration/Version1017Date20210216083742.php', |
|
344 | + 'OCA\\DAV\\Migration\\Version1018Date20210312100735' => $baseDir.'/../lib/Migration/Version1018Date20210312100735.php', |
|
345 | + 'OCA\\DAV\\Migration\\Version1024Date20211221144219' => $baseDir.'/../lib/Migration/Version1024Date20211221144219.php', |
|
346 | + 'OCA\\DAV\\Migration\\Version1025Date20240308063933' => $baseDir.'/../lib/Migration/Version1025Date20240308063933.php', |
|
347 | + 'OCA\\DAV\\Migration\\Version1027Date20230504122946' => $baseDir.'/../lib/Migration/Version1027Date20230504122946.php', |
|
348 | + 'OCA\\DAV\\Migration\\Version1029Date20221114151721' => $baseDir.'/../lib/Migration/Version1029Date20221114151721.php', |
|
349 | + 'OCA\\DAV\\Migration\\Version1029Date20231004091403' => $baseDir.'/../lib/Migration/Version1029Date20231004091403.php', |
|
350 | + 'OCA\\DAV\\Migration\\Version1030Date20240205103243' => $baseDir.'/../lib/Migration/Version1030Date20240205103243.php', |
|
351 | + 'OCA\\DAV\\Migration\\Version1031Date20240610134258' => $baseDir.'/../lib/Migration/Version1031Date20240610134258.php', |
|
352 | + 'OCA\\DAV\\Paginate\\LimitedCopyIterator' => $baseDir.'/../lib/Paginate/LimitedCopyIterator.php', |
|
353 | + 'OCA\\DAV\\Paginate\\PaginateCache' => $baseDir.'/../lib/Paginate/PaginateCache.php', |
|
354 | + 'OCA\\DAV\\Paginate\\PaginatePlugin' => $baseDir.'/../lib/Paginate/PaginatePlugin.php', |
|
355 | + 'OCA\\DAV\\Profiler\\ProfilerPlugin' => $baseDir.'/../lib/Profiler/ProfilerPlugin.php', |
|
356 | + 'OCA\\DAV\\Provisioning\\Apple\\AppleProvisioningNode' => $baseDir.'/../lib/Provisioning/Apple/AppleProvisioningNode.php', |
|
357 | + 'OCA\\DAV\\Provisioning\\Apple\\AppleProvisioningPlugin' => $baseDir.'/../lib/Provisioning/Apple/AppleProvisioningPlugin.php', |
|
358 | + 'OCA\\DAV\\ResponseDefinitions' => $baseDir.'/../lib/ResponseDefinitions.php', |
|
359 | + 'OCA\\DAV\\RootCollection' => $baseDir.'/../lib/RootCollection.php', |
|
360 | + 'OCA\\DAV\\Search\\ACalendarSearchProvider' => $baseDir.'/../lib/Search/ACalendarSearchProvider.php', |
|
361 | + 'OCA\\DAV\\Search\\ContactsSearchProvider' => $baseDir.'/../lib/Search/ContactsSearchProvider.php', |
|
362 | + 'OCA\\DAV\\Search\\EventsSearchProvider' => $baseDir.'/../lib/Search/EventsSearchProvider.php', |
|
363 | + 'OCA\\DAV\\Search\\TasksSearchProvider' => $baseDir.'/../lib/Search/TasksSearchProvider.php', |
|
364 | + 'OCA\\DAV\\Server' => $baseDir.'/../lib/Server.php', |
|
365 | + 'OCA\\DAV\\ServerFactory' => $baseDir.'/../lib/ServerFactory.php', |
|
366 | + 'OCA\\DAV\\Service\\AbsenceService' => $baseDir.'/../lib/Service/AbsenceService.php', |
|
367 | + 'OCA\\DAV\\Service\\DefaultContactService' => $baseDir.'/../lib/Service/DefaultContactService.php', |
|
368 | + 'OCA\\DAV\\Settings\\Admin\\SystemAddressBookSettings' => $baseDir.'/../lib/Settings/Admin/SystemAddressBookSettings.php', |
|
369 | + 'OCA\\DAV\\Settings\\AvailabilitySettings' => $baseDir.'/../lib/Settings/AvailabilitySettings.php', |
|
370 | + 'OCA\\DAV\\Settings\\CalDAVSettings' => $baseDir.'/../lib/Settings/CalDAVSettings.php', |
|
371 | + 'OCA\\DAV\\Settings\\ExampleContentSettings' => $baseDir.'/../lib/Settings/ExampleContentSettings.php', |
|
372 | + 'OCA\\DAV\\SetupChecks\\NeedsSystemAddressBookSync' => $baseDir.'/../lib/SetupChecks/NeedsSystemAddressBookSync.php', |
|
373 | + 'OCA\\DAV\\SetupChecks\\WebdavEndpoint' => $baseDir.'/../lib/SetupChecks/WebdavEndpoint.php', |
|
374 | + 'OCA\\DAV\\Storage\\PublicOwnerWrapper' => $baseDir.'/../lib/Storage/PublicOwnerWrapper.php', |
|
375 | + 'OCA\\DAV\\Storage\\PublicShareWrapper' => $baseDir.'/../lib/Storage/PublicShareWrapper.php', |
|
376 | + 'OCA\\DAV\\SystemTag\\SystemTagList' => $baseDir.'/../lib/SystemTag/SystemTagList.php', |
|
377 | + 'OCA\\DAV\\SystemTag\\SystemTagMappingNode' => $baseDir.'/../lib/SystemTag/SystemTagMappingNode.php', |
|
378 | + 'OCA\\DAV\\SystemTag\\SystemTagNode' => $baseDir.'/../lib/SystemTag/SystemTagNode.php', |
|
379 | + 'OCA\\DAV\\SystemTag\\SystemTagObjectType' => $baseDir.'/../lib/SystemTag/SystemTagObjectType.php', |
|
380 | + 'OCA\\DAV\\SystemTag\\SystemTagPlugin' => $baseDir.'/../lib/SystemTag/SystemTagPlugin.php', |
|
381 | + 'OCA\\DAV\\SystemTag\\SystemTagsByIdCollection' => $baseDir.'/../lib/SystemTag/SystemTagsByIdCollection.php', |
|
382 | + 'OCA\\DAV\\SystemTag\\SystemTagsInUseCollection' => $baseDir.'/../lib/SystemTag/SystemTagsInUseCollection.php', |
|
383 | + 'OCA\\DAV\\SystemTag\\SystemTagsObjectList' => $baseDir.'/../lib/SystemTag/SystemTagsObjectList.php', |
|
384 | + 'OCA\\DAV\\SystemTag\\SystemTagsObjectMappingCollection' => $baseDir.'/../lib/SystemTag/SystemTagsObjectMappingCollection.php', |
|
385 | + 'OCA\\DAV\\SystemTag\\SystemTagsObjectTypeCollection' => $baseDir.'/../lib/SystemTag/SystemTagsObjectTypeCollection.php', |
|
386 | + 'OCA\\DAV\\SystemTag\\SystemTagsRelationsCollection' => $baseDir.'/../lib/SystemTag/SystemTagsRelationsCollection.php', |
|
387 | + 'OCA\\DAV\\Traits\\PrincipalProxyTrait' => $baseDir.'/../lib/Traits/PrincipalProxyTrait.php', |
|
388 | + 'OCA\\DAV\\Upload\\AssemblyStream' => $baseDir.'/../lib/Upload/AssemblyStream.php', |
|
389 | + 'OCA\\DAV\\Upload\\ChunkingPlugin' => $baseDir.'/../lib/Upload/ChunkingPlugin.php', |
|
390 | + 'OCA\\DAV\\Upload\\ChunkingV2Plugin' => $baseDir.'/../lib/Upload/ChunkingV2Plugin.php', |
|
391 | + 'OCA\\DAV\\Upload\\CleanupService' => $baseDir.'/../lib/Upload/CleanupService.php', |
|
392 | + 'OCA\\DAV\\Upload\\FutureFile' => $baseDir.'/../lib/Upload/FutureFile.php', |
|
393 | + 'OCA\\DAV\\Upload\\PartFile' => $baseDir.'/../lib/Upload/PartFile.php', |
|
394 | + 'OCA\\DAV\\Upload\\RootCollection' => $baseDir.'/../lib/Upload/RootCollection.php', |
|
395 | + 'OCA\\DAV\\Upload\\UploadFile' => $baseDir.'/../lib/Upload/UploadFile.php', |
|
396 | + 'OCA\\DAV\\Upload\\UploadFolder' => $baseDir.'/../lib/Upload/UploadFolder.php', |
|
397 | + 'OCA\\DAV\\Upload\\UploadHome' => $baseDir.'/../lib/Upload/UploadHome.php', |
|
398 | + 'OCA\\DAV\\UserMigration\\CalendarMigrator' => $baseDir.'/../lib/UserMigration/CalendarMigrator.php', |
|
399 | + 'OCA\\DAV\\UserMigration\\CalendarMigratorException' => $baseDir.'/../lib/UserMigration/CalendarMigratorException.php', |
|
400 | + 'OCA\\DAV\\UserMigration\\ContactsMigrator' => $baseDir.'/../lib/UserMigration/ContactsMigrator.php', |
|
401 | + 'OCA\\DAV\\UserMigration\\ContactsMigratorException' => $baseDir.'/../lib/UserMigration/ContactsMigratorException.php', |
|
402 | + 'OCA\\DAV\\UserMigration\\InvalidAddressBookException' => $baseDir.'/../lib/UserMigration/InvalidAddressBookException.php', |
|
403 | + 'OCA\\DAV\\UserMigration\\InvalidCalendarException' => $baseDir.'/../lib/UserMigration/InvalidCalendarException.php', |
|
404 | 404 | ); |
@@ -99,329 +99,329 @@ |
||
99 | 99 | use SearchDAV\DAV\SearchPlugin; |
100 | 100 | |
101 | 101 | class Server { |
102 | - public Connector\Sabre\Server $server; |
|
103 | - private IProfiler $profiler; |
|
104 | - |
|
105 | - public function __construct( |
|
106 | - private IRequest $request, |
|
107 | - private string $baseUri, |
|
108 | - ) { |
|
109 | - $this->profiler = \OCP\Server::get(IProfiler::class); |
|
110 | - if ($this->profiler->isEnabled()) { |
|
111 | - /** @var IEventLogger $eventLogger */ |
|
112 | - $eventLogger = \OCP\Server::get(IEventLogger::class); |
|
113 | - $eventLogger->start('runtime', 'DAV Runtime'); |
|
114 | - } |
|
115 | - |
|
116 | - $logger = \OCP\Server::get(LoggerInterface::class); |
|
117 | - $eventDispatcher = \OCP\Server::get(IEventDispatcher::class); |
|
118 | - |
|
119 | - $root = new RootCollection(); |
|
120 | - $this->server = new \OCA\DAV\Connector\Sabre\Server(new CachingTree($root)); |
|
121 | - |
|
122 | - // Add maintenance plugin |
|
123 | - $this->server->addPlugin(new MaintenancePlugin(\OCP\Server::get(IConfig::class), \OC::$server->getL10N('dav'))); |
|
124 | - |
|
125 | - $this->server->addPlugin(new AppleQuirksPlugin()); |
|
126 | - |
|
127 | - // Backends |
|
128 | - $authBackend = new Auth( |
|
129 | - \OCP\Server::get(ISession::class), |
|
130 | - \OCP\Server::get(IUserSession::class), |
|
131 | - \OCP\Server::get(IRequest::class), |
|
132 | - \OCP\Server::get(\OC\Authentication\TwoFactorAuth\Manager::class), |
|
133 | - \OCP\Server::get(IThrottler::class) |
|
134 | - ); |
|
135 | - |
|
136 | - // Set URL explicitly due to reverse-proxy situations |
|
137 | - $this->server->httpRequest->setUrl($this->request->getRequestUri()); |
|
138 | - $this->server->setBaseUri($this->baseUri); |
|
139 | - |
|
140 | - $this->server->addPlugin(new ProfilerPlugin($this->request)); |
|
141 | - $this->server->addPlugin(new BlockLegacyClientPlugin( |
|
142 | - \OCP\Server::get(IConfig::class), |
|
143 | - \OCP\Server::get(ThemingDefaults::class), |
|
144 | - )); |
|
145 | - $this->server->addPlugin(new AnonymousOptionsPlugin()); |
|
146 | - $authPlugin = new Plugin(); |
|
147 | - $authPlugin->addBackend(new PublicAuth()); |
|
148 | - $this->server->addPlugin($authPlugin); |
|
149 | - |
|
150 | - // allow setup of additional auth backends |
|
151 | - $event = new SabrePluginEvent($this->server); |
|
152 | - $eventDispatcher->dispatch('OCA\DAV\Connector\Sabre::authInit', $event); |
|
153 | - |
|
154 | - $newAuthEvent = new SabrePluginAuthInitEvent($this->server); |
|
155 | - $eventDispatcher->dispatchTyped($newAuthEvent); |
|
156 | - |
|
157 | - $bearerAuthBackend = new BearerAuth( |
|
158 | - \OCP\Server::get(IUserSession::class), |
|
159 | - \OCP\Server::get(ISession::class), |
|
160 | - \OCP\Server::get(IRequest::class), |
|
161 | - \OCP\Server::get(IConfig::class), |
|
162 | - ); |
|
163 | - $authPlugin->addBackend($bearerAuthBackend); |
|
164 | - // because we are throwing exceptions this plugin has to be the last one |
|
165 | - $authPlugin->addBackend($authBackend); |
|
166 | - |
|
167 | - // debugging |
|
168 | - if (\OCP\Server::get(IConfig::class)->getSystemValue('debug', false)) { |
|
169 | - $this->server->addPlugin(new \Sabre\DAV\Browser\Plugin()); |
|
170 | - } else { |
|
171 | - $this->server->addPlugin(new DummyGetResponsePlugin()); |
|
172 | - } |
|
173 | - |
|
174 | - $this->server->addPlugin(new ExceptionLoggerPlugin('webdav', $logger)); |
|
175 | - $this->server->addPlugin(new LockPlugin()); |
|
176 | - $this->server->addPlugin(new \Sabre\DAV\Sync\Plugin()); |
|
177 | - |
|
178 | - // acl |
|
179 | - $acl = new DavAclPlugin(); |
|
180 | - $acl->principalCollectionSet = [ |
|
181 | - 'principals/users', |
|
182 | - 'principals/groups', |
|
183 | - 'principals/calendar-resources', |
|
184 | - 'principals/calendar-rooms', |
|
185 | - ]; |
|
186 | - $this->server->addPlugin($acl); |
|
187 | - |
|
188 | - // calendar plugins |
|
189 | - if ($this->requestIsForSubtree(['calendars', 'public-calendars', 'system-calendars', 'principals'])) { |
|
190 | - $this->server->addPlugin(new DAV\Sharing\Plugin($authBackend, \OCP\Server::get(IRequest::class), \OCP\Server::get(IConfig::class))); |
|
191 | - $this->server->addPlugin(new \OCA\DAV\CalDAV\Plugin()); |
|
192 | - $this->server->addPlugin(new ICSExportPlugin(\OCP\Server::get(IConfig::class), $logger)); |
|
193 | - $this->server->addPlugin(new \OCA\DAV\CalDAV\Schedule\Plugin(\OCP\Server::get(IConfig::class), \OCP\Server::get(LoggerInterface::class), \OCP\Server::get(DefaultCalendarValidator::class))); |
|
194 | - |
|
195 | - $this->server->addPlugin(\OCP\Server::get(\OCA\DAV\CalDAV\Trashbin\Plugin::class)); |
|
196 | - $this->server->addPlugin(new \OCA\DAV\CalDAV\WebcalCaching\Plugin($this->request)); |
|
197 | - if (\OCP\Server::get(IConfig::class)->getAppValue('dav', 'allow_calendar_link_subscriptions', 'yes') === 'yes') { |
|
198 | - $this->server->addPlugin(new \Sabre\CalDAV\Subscriptions\Plugin()); |
|
199 | - } |
|
200 | - |
|
201 | - $this->server->addPlugin(new \Sabre\CalDAV\Notifications\Plugin()); |
|
202 | - $this->server->addPlugin(new PublishPlugin( |
|
203 | - \OCP\Server::get(IConfig::class), |
|
204 | - \OCP\Server::get(IURLGenerator::class) |
|
205 | - )); |
|
206 | - |
|
207 | - $this->server->addPlugin(\OCP\Server::get(RateLimitingPlugin::class)); |
|
208 | - $this->server->addPlugin(\OCP\Server::get(CalDavValidatePlugin::class)); |
|
209 | - } |
|
210 | - |
|
211 | - // addressbook plugins |
|
212 | - if ($this->requestIsForSubtree(['addressbooks', 'principals'])) { |
|
213 | - $this->server->addPlugin(new DAV\Sharing\Plugin($authBackend, \OCP\Server::get(IRequest::class), \OCP\Server::get(IConfig::class))); |
|
214 | - $this->server->addPlugin(new \OCA\DAV\CardDAV\Plugin()); |
|
215 | - $this->server->addPlugin(new VCFExportPlugin()); |
|
216 | - $this->server->addPlugin(new MultiGetExportPlugin()); |
|
217 | - $this->server->addPlugin(new HasPhotoPlugin()); |
|
218 | - $this->server->addPlugin(new ImageExportPlugin(\OCP\Server::get(PhotoCache::class))); |
|
219 | - |
|
220 | - $this->server->addPlugin(\OCP\Server::get(CardDavRateLimitingPlugin::class)); |
|
221 | - $this->server->addPlugin(\OCP\Server::get(CardDavValidatePlugin::class)); |
|
222 | - } |
|
223 | - |
|
224 | - // system tags plugins |
|
225 | - $this->server->addPlugin(\OCP\Server::get(SystemTagPlugin::class)); |
|
226 | - |
|
227 | - // comments plugin |
|
228 | - $this->server->addPlugin(new CommentsPlugin( |
|
229 | - \OCP\Server::get(ICommentsManager::class), |
|
230 | - \OCP\Server::get(IUserSession::class) |
|
231 | - )); |
|
232 | - |
|
233 | - $this->server->addPlugin(new CopyEtagHeaderPlugin()); |
|
234 | - $this->server->addPlugin(new RequestIdHeaderPlugin(\OCP\Server::get(IRequest::class))); |
|
235 | - $this->server->addPlugin(new ChunkingV2Plugin(\OCP\Server::get(ICacheFactory::class))); |
|
236 | - $this->server->addPlugin(new ChunkingPlugin()); |
|
237 | - $this->server->addPlugin(new ZipFolderPlugin( |
|
238 | - $this->server->tree, |
|
239 | - $logger, |
|
240 | - $eventDispatcher, |
|
241 | - )); |
|
242 | - $this->server->addPlugin(\OCP\Server::get(PaginatePlugin::class)); |
|
243 | - |
|
244 | - // allow setup of additional plugins |
|
245 | - $eventDispatcher->dispatch('OCA\DAV\Connector\Sabre::addPlugin', $event); |
|
246 | - $typedEvent = new SabrePluginAddEvent($this->server); |
|
247 | - $eventDispatcher->dispatchTyped($typedEvent); |
|
248 | - |
|
249 | - // Some WebDAV clients do require Class 2 WebDAV support (locking), since |
|
250 | - // we do not provide locking we emulate it using a fake locking plugin. |
|
251 | - if ($this->request->isUserAgent([ |
|
252 | - '/WebDAVFS/', |
|
253 | - '/OneNote/', |
|
254 | - '/^Microsoft-WebDAV/',// Microsoft-WebDAV-MiniRedir/6.1.7601 |
|
255 | - ])) { |
|
256 | - $this->server->addPlugin(new FakeLockerPlugin()); |
|
257 | - } |
|
258 | - |
|
259 | - if (BrowserErrorPagePlugin::isBrowserRequest($request)) { |
|
260 | - $this->server->addPlugin(new BrowserErrorPagePlugin()); |
|
261 | - } |
|
262 | - |
|
263 | - $lazySearchBackend = new LazySearchBackend(); |
|
264 | - $this->server->addPlugin(new SearchPlugin($lazySearchBackend)); |
|
265 | - |
|
266 | - // wait with registering these until auth is handled and the filesystem is setup |
|
267 | - $this->server->on('beforeMethod:*', function () use ($root, $lazySearchBackend, $logger): void { |
|
268 | - // Allow view-only plugin for webdav requests |
|
269 | - $this->server->addPlugin(new ViewOnlyPlugin( |
|
270 | - \OC::$server->getUserFolder(), |
|
271 | - )); |
|
272 | - |
|
273 | - // custom properties plugin must be the last one |
|
274 | - $userSession = \OCP\Server::get(IUserSession::class); |
|
275 | - $user = $userSession->getUser(); |
|
276 | - if ($user !== null) { |
|
277 | - $view = Filesystem::getView(); |
|
278 | - $config = \OCP\Server::get(IConfig::class); |
|
279 | - $this->server->addPlugin( |
|
280 | - new FilesPlugin( |
|
281 | - $this->server->tree, |
|
282 | - $config, |
|
283 | - $this->request, |
|
284 | - \OCP\Server::get(IPreview::class), |
|
285 | - \OCP\Server::get(IUserSession::class), |
|
286 | - \OCP\Server::get(IFilenameValidator::class), |
|
287 | - \OCP\Server::get(IAccountManager::class), |
|
288 | - false, |
|
289 | - $config->getSystemValueBool('debug', false) === false, |
|
290 | - ) |
|
291 | - ); |
|
292 | - $this->server->addPlugin(new ChecksumUpdatePlugin()); |
|
293 | - |
|
294 | - $this->server->addPlugin( |
|
295 | - new \Sabre\DAV\PropertyStorage\Plugin( |
|
296 | - new CustomPropertiesBackend( |
|
297 | - $this->server, |
|
298 | - $this->server->tree, |
|
299 | - \OCP\Server::get(IDBConnection::class), |
|
300 | - \OCP\Server::get(IUserSession::class)->getUser(), |
|
301 | - \OCP\Server::get(DefaultCalendarValidator::class), |
|
302 | - ) |
|
303 | - ) |
|
304 | - ); |
|
305 | - if ($view !== null) { |
|
306 | - $this->server->addPlugin( |
|
307 | - new QuotaPlugin($view)); |
|
308 | - } |
|
309 | - $this->server->addPlugin( |
|
310 | - new TagsPlugin( |
|
311 | - $this->server->tree, \OCP\Server::get(ITagManager::class), \OCP\Server::get(IEventDispatcher::class), \OCP\Server::get(IUserSession::class) |
|
312 | - ) |
|
313 | - ); |
|
314 | - |
|
315 | - // TODO: switch to LazyUserFolder |
|
316 | - $userFolder = \OC::$server->getUserFolder(); |
|
317 | - $shareManager = \OCP\Server::get(\OCP\Share\IManager::class); |
|
318 | - $this->server->addPlugin(new SharesPlugin( |
|
319 | - $this->server->tree, |
|
320 | - $userSession, |
|
321 | - $userFolder, |
|
322 | - $shareManager, |
|
323 | - )); |
|
324 | - $this->server->addPlugin(new CommentPropertiesPlugin( |
|
325 | - \OCP\Server::get(ICommentsManager::class), |
|
326 | - $userSession |
|
327 | - )); |
|
328 | - if (\OCP\Server::get(IConfig::class)->getAppValue('dav', 'sendInvitations', 'yes') === 'yes') { |
|
329 | - $this->server->addPlugin(new IMipPlugin( |
|
330 | - \OCP\Server::get(IAppConfig::class), |
|
331 | - \OCP\Server::get(IMailer::class), |
|
332 | - \OCP\Server::get(LoggerInterface::class), |
|
333 | - \OCP\Server::get(ITimeFactory::class), |
|
334 | - \OCP\Server::get(Defaults::class), |
|
335 | - $userSession, |
|
336 | - \OCP\Server::get(IMipService::class), |
|
337 | - \OCP\Server::get(EventComparisonService::class), |
|
338 | - \OCP\Server::get(\OCP\Mail\Provider\IManager::class) |
|
339 | - )); |
|
340 | - } |
|
341 | - $this->server->addPlugin(new \OCA\DAV\CalDAV\Search\SearchPlugin()); |
|
342 | - if ($view !== null) { |
|
343 | - $this->server->addPlugin(new FilesReportPlugin( |
|
344 | - $this->server->tree, |
|
345 | - $view, |
|
346 | - \OCP\Server::get(ISystemTagManager::class), |
|
347 | - \OCP\Server::get(ISystemTagObjectMapper::class), |
|
348 | - \OCP\Server::get(ITagManager::class), |
|
349 | - $userSession, |
|
350 | - \OCP\Server::get(IGroupManager::class), |
|
351 | - $userFolder, |
|
352 | - \OCP\Server::get(IAppManager::class) |
|
353 | - )); |
|
354 | - $lazySearchBackend->setBackend(new FileSearchBackend( |
|
355 | - $this->server->tree, |
|
356 | - $user, |
|
357 | - \OCP\Server::get(IRootFolder::class), |
|
358 | - $shareManager, |
|
359 | - $view, |
|
360 | - \OCP\Server::get(IFilesMetadataManager::class) |
|
361 | - )); |
|
362 | - $this->server->addPlugin( |
|
363 | - new BulkUploadPlugin( |
|
364 | - $userFolder, |
|
365 | - $logger |
|
366 | - ) |
|
367 | - ); |
|
368 | - } |
|
369 | - $this->server->addPlugin(new EnablePlugin( |
|
370 | - \OCP\Server::get(IConfig::class), |
|
371 | - \OCP\Server::get(BirthdayService::class), |
|
372 | - $user |
|
373 | - )); |
|
374 | - $this->server->addPlugin(new AppleProvisioningPlugin( |
|
375 | - \OCP\Server::get(IUserSession::class), |
|
376 | - \OCP\Server::get(IURLGenerator::class), |
|
377 | - \OCP\Server::get(ThemingDefaults::class), |
|
378 | - \OCP\Server::get(IRequest::class), |
|
379 | - \OC::$server->getL10N('dav'), |
|
380 | - function () { |
|
381 | - return UUIDUtil::getUUID(); |
|
382 | - } |
|
383 | - )); |
|
384 | - } |
|
385 | - |
|
386 | - // register plugins from apps |
|
387 | - $pluginManager = new PluginManager( |
|
388 | - \OC::$server, |
|
389 | - \OCP\Server::get(IAppManager::class) |
|
390 | - ); |
|
391 | - foreach ($pluginManager->getAppPlugins() as $appPlugin) { |
|
392 | - $this->server->addPlugin($appPlugin); |
|
393 | - } |
|
394 | - foreach ($pluginManager->getAppCollections() as $appCollection) { |
|
395 | - $root->addChild($appCollection); |
|
396 | - } |
|
397 | - }); |
|
398 | - |
|
399 | - $this->server->addPlugin( |
|
400 | - new PropfindCompressionPlugin() |
|
401 | - ); |
|
402 | - } |
|
403 | - |
|
404 | - public function exec() { |
|
405 | - /** @var IEventLogger $eventLogger */ |
|
406 | - $eventLogger = \OCP\Server::get(IEventLogger::class); |
|
407 | - $eventLogger->start('dav_server_exec', ''); |
|
408 | - $this->server->start(); |
|
409 | - $eventLogger->end('dav_server_exec'); |
|
410 | - if ($this->profiler->isEnabled()) { |
|
411 | - $eventLogger->end('runtime'); |
|
412 | - $profile = $this->profiler->collect(\OCP\Server::get(IRequest::class), new Response()); |
|
413 | - $this->profiler->saveProfile($profile); |
|
414 | - } |
|
415 | - } |
|
416 | - |
|
417 | - private function requestIsForSubtree(array $subTrees): bool { |
|
418 | - foreach ($subTrees as $subTree) { |
|
419 | - $subTree = trim($subTree, ' /'); |
|
420 | - if (str_starts_with($this->server->getRequestUri(), $subTree . '/')) { |
|
421 | - return true; |
|
422 | - } |
|
423 | - } |
|
424 | - return false; |
|
425 | - } |
|
102 | + public Connector\Sabre\Server $server; |
|
103 | + private IProfiler $profiler; |
|
104 | + |
|
105 | + public function __construct( |
|
106 | + private IRequest $request, |
|
107 | + private string $baseUri, |
|
108 | + ) { |
|
109 | + $this->profiler = \OCP\Server::get(IProfiler::class); |
|
110 | + if ($this->profiler->isEnabled()) { |
|
111 | + /** @var IEventLogger $eventLogger */ |
|
112 | + $eventLogger = \OCP\Server::get(IEventLogger::class); |
|
113 | + $eventLogger->start('runtime', 'DAV Runtime'); |
|
114 | + } |
|
115 | + |
|
116 | + $logger = \OCP\Server::get(LoggerInterface::class); |
|
117 | + $eventDispatcher = \OCP\Server::get(IEventDispatcher::class); |
|
118 | + |
|
119 | + $root = new RootCollection(); |
|
120 | + $this->server = new \OCA\DAV\Connector\Sabre\Server(new CachingTree($root)); |
|
121 | + |
|
122 | + // Add maintenance plugin |
|
123 | + $this->server->addPlugin(new MaintenancePlugin(\OCP\Server::get(IConfig::class), \OC::$server->getL10N('dav'))); |
|
124 | + |
|
125 | + $this->server->addPlugin(new AppleQuirksPlugin()); |
|
126 | + |
|
127 | + // Backends |
|
128 | + $authBackend = new Auth( |
|
129 | + \OCP\Server::get(ISession::class), |
|
130 | + \OCP\Server::get(IUserSession::class), |
|
131 | + \OCP\Server::get(IRequest::class), |
|
132 | + \OCP\Server::get(\OC\Authentication\TwoFactorAuth\Manager::class), |
|
133 | + \OCP\Server::get(IThrottler::class) |
|
134 | + ); |
|
135 | + |
|
136 | + // Set URL explicitly due to reverse-proxy situations |
|
137 | + $this->server->httpRequest->setUrl($this->request->getRequestUri()); |
|
138 | + $this->server->setBaseUri($this->baseUri); |
|
139 | + |
|
140 | + $this->server->addPlugin(new ProfilerPlugin($this->request)); |
|
141 | + $this->server->addPlugin(new BlockLegacyClientPlugin( |
|
142 | + \OCP\Server::get(IConfig::class), |
|
143 | + \OCP\Server::get(ThemingDefaults::class), |
|
144 | + )); |
|
145 | + $this->server->addPlugin(new AnonymousOptionsPlugin()); |
|
146 | + $authPlugin = new Plugin(); |
|
147 | + $authPlugin->addBackend(new PublicAuth()); |
|
148 | + $this->server->addPlugin($authPlugin); |
|
149 | + |
|
150 | + // allow setup of additional auth backends |
|
151 | + $event = new SabrePluginEvent($this->server); |
|
152 | + $eventDispatcher->dispatch('OCA\DAV\Connector\Sabre::authInit', $event); |
|
153 | + |
|
154 | + $newAuthEvent = new SabrePluginAuthInitEvent($this->server); |
|
155 | + $eventDispatcher->dispatchTyped($newAuthEvent); |
|
156 | + |
|
157 | + $bearerAuthBackend = new BearerAuth( |
|
158 | + \OCP\Server::get(IUserSession::class), |
|
159 | + \OCP\Server::get(ISession::class), |
|
160 | + \OCP\Server::get(IRequest::class), |
|
161 | + \OCP\Server::get(IConfig::class), |
|
162 | + ); |
|
163 | + $authPlugin->addBackend($bearerAuthBackend); |
|
164 | + // because we are throwing exceptions this plugin has to be the last one |
|
165 | + $authPlugin->addBackend($authBackend); |
|
166 | + |
|
167 | + // debugging |
|
168 | + if (\OCP\Server::get(IConfig::class)->getSystemValue('debug', false)) { |
|
169 | + $this->server->addPlugin(new \Sabre\DAV\Browser\Plugin()); |
|
170 | + } else { |
|
171 | + $this->server->addPlugin(new DummyGetResponsePlugin()); |
|
172 | + } |
|
173 | + |
|
174 | + $this->server->addPlugin(new ExceptionLoggerPlugin('webdav', $logger)); |
|
175 | + $this->server->addPlugin(new LockPlugin()); |
|
176 | + $this->server->addPlugin(new \Sabre\DAV\Sync\Plugin()); |
|
177 | + |
|
178 | + // acl |
|
179 | + $acl = new DavAclPlugin(); |
|
180 | + $acl->principalCollectionSet = [ |
|
181 | + 'principals/users', |
|
182 | + 'principals/groups', |
|
183 | + 'principals/calendar-resources', |
|
184 | + 'principals/calendar-rooms', |
|
185 | + ]; |
|
186 | + $this->server->addPlugin($acl); |
|
187 | + |
|
188 | + // calendar plugins |
|
189 | + if ($this->requestIsForSubtree(['calendars', 'public-calendars', 'system-calendars', 'principals'])) { |
|
190 | + $this->server->addPlugin(new DAV\Sharing\Plugin($authBackend, \OCP\Server::get(IRequest::class), \OCP\Server::get(IConfig::class))); |
|
191 | + $this->server->addPlugin(new \OCA\DAV\CalDAV\Plugin()); |
|
192 | + $this->server->addPlugin(new ICSExportPlugin(\OCP\Server::get(IConfig::class), $logger)); |
|
193 | + $this->server->addPlugin(new \OCA\DAV\CalDAV\Schedule\Plugin(\OCP\Server::get(IConfig::class), \OCP\Server::get(LoggerInterface::class), \OCP\Server::get(DefaultCalendarValidator::class))); |
|
194 | + |
|
195 | + $this->server->addPlugin(\OCP\Server::get(\OCA\DAV\CalDAV\Trashbin\Plugin::class)); |
|
196 | + $this->server->addPlugin(new \OCA\DAV\CalDAV\WebcalCaching\Plugin($this->request)); |
|
197 | + if (\OCP\Server::get(IConfig::class)->getAppValue('dav', 'allow_calendar_link_subscriptions', 'yes') === 'yes') { |
|
198 | + $this->server->addPlugin(new \Sabre\CalDAV\Subscriptions\Plugin()); |
|
199 | + } |
|
200 | + |
|
201 | + $this->server->addPlugin(new \Sabre\CalDAV\Notifications\Plugin()); |
|
202 | + $this->server->addPlugin(new PublishPlugin( |
|
203 | + \OCP\Server::get(IConfig::class), |
|
204 | + \OCP\Server::get(IURLGenerator::class) |
|
205 | + )); |
|
206 | + |
|
207 | + $this->server->addPlugin(\OCP\Server::get(RateLimitingPlugin::class)); |
|
208 | + $this->server->addPlugin(\OCP\Server::get(CalDavValidatePlugin::class)); |
|
209 | + } |
|
210 | + |
|
211 | + // addressbook plugins |
|
212 | + if ($this->requestIsForSubtree(['addressbooks', 'principals'])) { |
|
213 | + $this->server->addPlugin(new DAV\Sharing\Plugin($authBackend, \OCP\Server::get(IRequest::class), \OCP\Server::get(IConfig::class))); |
|
214 | + $this->server->addPlugin(new \OCA\DAV\CardDAV\Plugin()); |
|
215 | + $this->server->addPlugin(new VCFExportPlugin()); |
|
216 | + $this->server->addPlugin(new MultiGetExportPlugin()); |
|
217 | + $this->server->addPlugin(new HasPhotoPlugin()); |
|
218 | + $this->server->addPlugin(new ImageExportPlugin(\OCP\Server::get(PhotoCache::class))); |
|
219 | + |
|
220 | + $this->server->addPlugin(\OCP\Server::get(CardDavRateLimitingPlugin::class)); |
|
221 | + $this->server->addPlugin(\OCP\Server::get(CardDavValidatePlugin::class)); |
|
222 | + } |
|
223 | + |
|
224 | + // system tags plugins |
|
225 | + $this->server->addPlugin(\OCP\Server::get(SystemTagPlugin::class)); |
|
226 | + |
|
227 | + // comments plugin |
|
228 | + $this->server->addPlugin(new CommentsPlugin( |
|
229 | + \OCP\Server::get(ICommentsManager::class), |
|
230 | + \OCP\Server::get(IUserSession::class) |
|
231 | + )); |
|
232 | + |
|
233 | + $this->server->addPlugin(new CopyEtagHeaderPlugin()); |
|
234 | + $this->server->addPlugin(new RequestIdHeaderPlugin(\OCP\Server::get(IRequest::class))); |
|
235 | + $this->server->addPlugin(new ChunkingV2Plugin(\OCP\Server::get(ICacheFactory::class))); |
|
236 | + $this->server->addPlugin(new ChunkingPlugin()); |
|
237 | + $this->server->addPlugin(new ZipFolderPlugin( |
|
238 | + $this->server->tree, |
|
239 | + $logger, |
|
240 | + $eventDispatcher, |
|
241 | + )); |
|
242 | + $this->server->addPlugin(\OCP\Server::get(PaginatePlugin::class)); |
|
243 | + |
|
244 | + // allow setup of additional plugins |
|
245 | + $eventDispatcher->dispatch('OCA\DAV\Connector\Sabre::addPlugin', $event); |
|
246 | + $typedEvent = new SabrePluginAddEvent($this->server); |
|
247 | + $eventDispatcher->dispatchTyped($typedEvent); |
|
248 | + |
|
249 | + // Some WebDAV clients do require Class 2 WebDAV support (locking), since |
|
250 | + // we do not provide locking we emulate it using a fake locking plugin. |
|
251 | + if ($this->request->isUserAgent([ |
|
252 | + '/WebDAVFS/', |
|
253 | + '/OneNote/', |
|
254 | + '/^Microsoft-WebDAV/',// Microsoft-WebDAV-MiniRedir/6.1.7601 |
|
255 | + ])) { |
|
256 | + $this->server->addPlugin(new FakeLockerPlugin()); |
|
257 | + } |
|
258 | + |
|
259 | + if (BrowserErrorPagePlugin::isBrowserRequest($request)) { |
|
260 | + $this->server->addPlugin(new BrowserErrorPagePlugin()); |
|
261 | + } |
|
262 | + |
|
263 | + $lazySearchBackend = new LazySearchBackend(); |
|
264 | + $this->server->addPlugin(new SearchPlugin($lazySearchBackend)); |
|
265 | + |
|
266 | + // wait with registering these until auth is handled and the filesystem is setup |
|
267 | + $this->server->on('beforeMethod:*', function () use ($root, $lazySearchBackend, $logger): void { |
|
268 | + // Allow view-only plugin for webdav requests |
|
269 | + $this->server->addPlugin(new ViewOnlyPlugin( |
|
270 | + \OC::$server->getUserFolder(), |
|
271 | + )); |
|
272 | + |
|
273 | + // custom properties plugin must be the last one |
|
274 | + $userSession = \OCP\Server::get(IUserSession::class); |
|
275 | + $user = $userSession->getUser(); |
|
276 | + if ($user !== null) { |
|
277 | + $view = Filesystem::getView(); |
|
278 | + $config = \OCP\Server::get(IConfig::class); |
|
279 | + $this->server->addPlugin( |
|
280 | + new FilesPlugin( |
|
281 | + $this->server->tree, |
|
282 | + $config, |
|
283 | + $this->request, |
|
284 | + \OCP\Server::get(IPreview::class), |
|
285 | + \OCP\Server::get(IUserSession::class), |
|
286 | + \OCP\Server::get(IFilenameValidator::class), |
|
287 | + \OCP\Server::get(IAccountManager::class), |
|
288 | + false, |
|
289 | + $config->getSystemValueBool('debug', false) === false, |
|
290 | + ) |
|
291 | + ); |
|
292 | + $this->server->addPlugin(new ChecksumUpdatePlugin()); |
|
293 | + |
|
294 | + $this->server->addPlugin( |
|
295 | + new \Sabre\DAV\PropertyStorage\Plugin( |
|
296 | + new CustomPropertiesBackend( |
|
297 | + $this->server, |
|
298 | + $this->server->tree, |
|
299 | + \OCP\Server::get(IDBConnection::class), |
|
300 | + \OCP\Server::get(IUserSession::class)->getUser(), |
|
301 | + \OCP\Server::get(DefaultCalendarValidator::class), |
|
302 | + ) |
|
303 | + ) |
|
304 | + ); |
|
305 | + if ($view !== null) { |
|
306 | + $this->server->addPlugin( |
|
307 | + new QuotaPlugin($view)); |
|
308 | + } |
|
309 | + $this->server->addPlugin( |
|
310 | + new TagsPlugin( |
|
311 | + $this->server->tree, \OCP\Server::get(ITagManager::class), \OCP\Server::get(IEventDispatcher::class), \OCP\Server::get(IUserSession::class) |
|
312 | + ) |
|
313 | + ); |
|
314 | + |
|
315 | + // TODO: switch to LazyUserFolder |
|
316 | + $userFolder = \OC::$server->getUserFolder(); |
|
317 | + $shareManager = \OCP\Server::get(\OCP\Share\IManager::class); |
|
318 | + $this->server->addPlugin(new SharesPlugin( |
|
319 | + $this->server->tree, |
|
320 | + $userSession, |
|
321 | + $userFolder, |
|
322 | + $shareManager, |
|
323 | + )); |
|
324 | + $this->server->addPlugin(new CommentPropertiesPlugin( |
|
325 | + \OCP\Server::get(ICommentsManager::class), |
|
326 | + $userSession |
|
327 | + )); |
|
328 | + if (\OCP\Server::get(IConfig::class)->getAppValue('dav', 'sendInvitations', 'yes') === 'yes') { |
|
329 | + $this->server->addPlugin(new IMipPlugin( |
|
330 | + \OCP\Server::get(IAppConfig::class), |
|
331 | + \OCP\Server::get(IMailer::class), |
|
332 | + \OCP\Server::get(LoggerInterface::class), |
|
333 | + \OCP\Server::get(ITimeFactory::class), |
|
334 | + \OCP\Server::get(Defaults::class), |
|
335 | + $userSession, |
|
336 | + \OCP\Server::get(IMipService::class), |
|
337 | + \OCP\Server::get(EventComparisonService::class), |
|
338 | + \OCP\Server::get(\OCP\Mail\Provider\IManager::class) |
|
339 | + )); |
|
340 | + } |
|
341 | + $this->server->addPlugin(new \OCA\DAV\CalDAV\Search\SearchPlugin()); |
|
342 | + if ($view !== null) { |
|
343 | + $this->server->addPlugin(new FilesReportPlugin( |
|
344 | + $this->server->tree, |
|
345 | + $view, |
|
346 | + \OCP\Server::get(ISystemTagManager::class), |
|
347 | + \OCP\Server::get(ISystemTagObjectMapper::class), |
|
348 | + \OCP\Server::get(ITagManager::class), |
|
349 | + $userSession, |
|
350 | + \OCP\Server::get(IGroupManager::class), |
|
351 | + $userFolder, |
|
352 | + \OCP\Server::get(IAppManager::class) |
|
353 | + )); |
|
354 | + $lazySearchBackend->setBackend(new FileSearchBackend( |
|
355 | + $this->server->tree, |
|
356 | + $user, |
|
357 | + \OCP\Server::get(IRootFolder::class), |
|
358 | + $shareManager, |
|
359 | + $view, |
|
360 | + \OCP\Server::get(IFilesMetadataManager::class) |
|
361 | + )); |
|
362 | + $this->server->addPlugin( |
|
363 | + new BulkUploadPlugin( |
|
364 | + $userFolder, |
|
365 | + $logger |
|
366 | + ) |
|
367 | + ); |
|
368 | + } |
|
369 | + $this->server->addPlugin(new EnablePlugin( |
|
370 | + \OCP\Server::get(IConfig::class), |
|
371 | + \OCP\Server::get(BirthdayService::class), |
|
372 | + $user |
|
373 | + )); |
|
374 | + $this->server->addPlugin(new AppleProvisioningPlugin( |
|
375 | + \OCP\Server::get(IUserSession::class), |
|
376 | + \OCP\Server::get(IURLGenerator::class), |
|
377 | + \OCP\Server::get(ThemingDefaults::class), |
|
378 | + \OCP\Server::get(IRequest::class), |
|
379 | + \OC::$server->getL10N('dav'), |
|
380 | + function () { |
|
381 | + return UUIDUtil::getUUID(); |
|
382 | + } |
|
383 | + )); |
|
384 | + } |
|
385 | + |
|
386 | + // register plugins from apps |
|
387 | + $pluginManager = new PluginManager( |
|
388 | + \OC::$server, |
|
389 | + \OCP\Server::get(IAppManager::class) |
|
390 | + ); |
|
391 | + foreach ($pluginManager->getAppPlugins() as $appPlugin) { |
|
392 | + $this->server->addPlugin($appPlugin); |
|
393 | + } |
|
394 | + foreach ($pluginManager->getAppCollections() as $appCollection) { |
|
395 | + $root->addChild($appCollection); |
|
396 | + } |
|
397 | + }); |
|
398 | + |
|
399 | + $this->server->addPlugin( |
|
400 | + new PropfindCompressionPlugin() |
|
401 | + ); |
|
402 | + } |
|
403 | + |
|
404 | + public function exec() { |
|
405 | + /** @var IEventLogger $eventLogger */ |
|
406 | + $eventLogger = \OCP\Server::get(IEventLogger::class); |
|
407 | + $eventLogger->start('dav_server_exec', ''); |
|
408 | + $this->server->start(); |
|
409 | + $eventLogger->end('dav_server_exec'); |
|
410 | + if ($this->profiler->isEnabled()) { |
|
411 | + $eventLogger->end('runtime'); |
|
412 | + $profile = $this->profiler->collect(\OCP\Server::get(IRequest::class), new Response()); |
|
413 | + $this->profiler->saveProfile($profile); |
|
414 | + } |
|
415 | + } |
|
416 | + |
|
417 | + private function requestIsForSubtree(array $subTrees): bool { |
|
418 | + foreach ($subTrees as $subTree) { |
|
419 | + $subTree = trim($subTree, ' /'); |
|
420 | + if (str_starts_with($this->server->getRequestUri(), $subTree . '/')) { |
|
421 | + return true; |
|
422 | + } |
|
423 | + } |
|
424 | + return false; |
|
425 | + } |
|
426 | 426 | |
427 | 427 | } |
@@ -21,254 +21,254 @@ |
||
21 | 21 | use Sabre\VObject\Reader; |
22 | 22 | |
23 | 23 | class PhotoCache { |
24 | - private ?IAppData $photoCacheAppData = null; |
|
25 | - |
|
26 | - /** @var array */ |
|
27 | - public const ALLOWED_CONTENT_TYPES = [ |
|
28 | - 'image/png' => 'png', |
|
29 | - 'image/jpeg' => 'jpg', |
|
30 | - 'image/gif' => 'gif', |
|
31 | - 'image/vnd.microsoft.icon' => 'ico', |
|
32 | - 'image/webp' => 'webp', |
|
33 | - 'image/avif' => 'avif', |
|
34 | - ]; |
|
35 | - |
|
36 | - public function __construct( |
|
37 | - private IAppDataFactory $appDataFactory, |
|
38 | - private LoggerInterface $logger, |
|
39 | - ) { |
|
40 | - } |
|
41 | - |
|
42 | - /** |
|
43 | - * @throws NotFoundException |
|
44 | - */ |
|
45 | - public function get(int $addressBookId, string $cardUri, int $size, Card $card): ISimpleFile { |
|
46 | - $folder = $this->getFolder($addressBookId, $cardUri); |
|
47 | - |
|
48 | - if ($this->isEmpty($folder)) { |
|
49 | - $this->init($folder, $card); |
|
50 | - } |
|
51 | - |
|
52 | - if (!$this->hasPhoto($folder)) { |
|
53 | - throw new NotFoundException(); |
|
54 | - } |
|
55 | - |
|
56 | - if ($size !== -1) { |
|
57 | - $size = 2 ** ceil(log($size) / log(2)); |
|
58 | - } |
|
59 | - |
|
60 | - return $this->getFile($folder, $size); |
|
61 | - } |
|
62 | - |
|
63 | - private function isEmpty(ISimpleFolder $folder): bool { |
|
64 | - return $folder->getDirectoryListing() === []; |
|
65 | - } |
|
66 | - |
|
67 | - /** |
|
68 | - * @throws NotPermittedException |
|
69 | - */ |
|
70 | - private function init(ISimpleFolder $folder, Card $card): void { |
|
71 | - $data = $this->getPhoto($card); |
|
72 | - |
|
73 | - if ($data === false || !isset($data['Content-Type'])) { |
|
74 | - $folder->newFile('nophoto', ''); |
|
75 | - return; |
|
76 | - } |
|
77 | - |
|
78 | - $contentType = $data['Content-Type']; |
|
79 | - $extension = self::ALLOWED_CONTENT_TYPES[$contentType] ?? null; |
|
80 | - |
|
81 | - if ($extension === null) { |
|
82 | - $folder->newFile('nophoto', ''); |
|
83 | - return; |
|
84 | - } |
|
85 | - |
|
86 | - $file = $folder->newFile('photo.' . $extension); |
|
87 | - $file->putContent($data['body']); |
|
88 | - } |
|
89 | - |
|
90 | - private function hasPhoto(ISimpleFolder $folder): bool { |
|
91 | - return !$folder->fileExists('nophoto'); |
|
92 | - } |
|
93 | - |
|
94 | - /** |
|
95 | - * @param float|-1 $size |
|
96 | - */ |
|
97 | - private function getFile(ISimpleFolder $folder, $size): ISimpleFile { |
|
98 | - $ext = $this->getExtension($folder); |
|
99 | - |
|
100 | - if ($size === -1) { |
|
101 | - $path = 'photo.' . $ext; |
|
102 | - } else { |
|
103 | - $path = 'photo.' . $size . '.' . $ext; |
|
104 | - } |
|
105 | - |
|
106 | - try { |
|
107 | - $file = $folder->getFile($path); |
|
108 | - } catch (NotFoundException $e) { |
|
109 | - if ($size <= 0) { |
|
110 | - throw new NotFoundException; |
|
111 | - } |
|
112 | - |
|
113 | - $photo = new Image(); |
|
114 | - /** @var ISimpleFile $file */ |
|
115 | - $file = $folder->getFile('photo.' . $ext); |
|
116 | - $photo->loadFromData($file->getContent()); |
|
117 | - |
|
118 | - $ratio = $photo->width() / $photo->height(); |
|
119 | - if ($ratio < 1) { |
|
120 | - $ratio = 1 / $ratio; |
|
121 | - } |
|
122 | - |
|
123 | - $size = (int)($size * $ratio); |
|
124 | - if ($size !== -1) { |
|
125 | - $photo->resize($size); |
|
126 | - } |
|
127 | - |
|
128 | - try { |
|
129 | - $file = $folder->newFile($path); |
|
130 | - $file->putContent($photo->data()); |
|
131 | - } catch (NotPermittedException $e) { |
|
132 | - } |
|
133 | - } |
|
134 | - |
|
135 | - return $file; |
|
136 | - } |
|
137 | - |
|
138 | - /** |
|
139 | - * @throws NotFoundException |
|
140 | - * @throws NotPermittedException |
|
141 | - */ |
|
142 | - private function getFolder(int $addressBookId, string $cardUri, bool $createIfNotExists = true): ISimpleFolder { |
|
143 | - $hash = md5($addressBookId . ' ' . $cardUri); |
|
144 | - try { |
|
145 | - return $this->getPhotoCacheAppData()->getFolder($hash); |
|
146 | - } catch (NotFoundException $e) { |
|
147 | - if ($createIfNotExists) { |
|
148 | - return $this->getPhotoCacheAppData()->newFolder($hash); |
|
149 | - } |
|
150 | - throw $e; |
|
151 | - } |
|
152 | - } |
|
153 | - |
|
154 | - /** |
|
155 | - * Get the extension of the avatar. If there is no avatar throw Exception |
|
156 | - * |
|
157 | - * @throws NotFoundException |
|
158 | - */ |
|
159 | - private function getExtension(ISimpleFolder $folder): string { |
|
160 | - foreach (self::ALLOWED_CONTENT_TYPES as $extension) { |
|
161 | - if ($folder->fileExists('photo.' . $extension)) { |
|
162 | - return $extension; |
|
163 | - } |
|
164 | - } |
|
165 | - |
|
166 | - throw new NotFoundException('Avatar not found'); |
|
167 | - } |
|
168 | - |
|
169 | - /** |
|
170 | - * @param Card $node |
|
171 | - * @return false|array{body: string, Content-Type: string} |
|
172 | - */ |
|
173 | - private function getPhoto(Card $node) { |
|
174 | - try { |
|
175 | - $vObject = $this->readCard($node->get()); |
|
176 | - return $this->getPhotoFromVObject($vObject); |
|
177 | - } catch (\Exception $e) { |
|
178 | - $this->logger->error('Exception during vcard photo parsing', [ |
|
179 | - 'exception' => $e |
|
180 | - ]); |
|
181 | - } |
|
182 | - return false; |
|
183 | - } |
|
184 | - |
|
185 | - /** |
|
186 | - * @return false|array{body: string, Content-Type: string} |
|
187 | - */ |
|
188 | - public function getPhotoFromVObject(Document $vObject) { |
|
189 | - try { |
|
190 | - if (!$vObject->PHOTO) { |
|
191 | - return false; |
|
192 | - } |
|
193 | - |
|
194 | - $photo = $vObject->PHOTO; |
|
195 | - $val = $photo->getValue(); |
|
196 | - |
|
197 | - // handle data URI. e.g PHOTO;VALUE=URI:data:image/jpeg;base64,/9j/4AAQSkZJRgABAQE |
|
198 | - if ($photo->getValueType() === 'URI') { |
|
199 | - $parsed = \Sabre\URI\parse($val); |
|
200 | - |
|
201 | - // only allow data:// |
|
202 | - if ($parsed['scheme'] !== 'data') { |
|
203 | - return false; |
|
204 | - } |
|
205 | - if (substr_count($parsed['path'], ';') === 1) { |
|
206 | - [$type] = explode(';', $parsed['path']); |
|
207 | - } |
|
208 | - $val = file_get_contents($val); |
|
209 | - } else { |
|
210 | - // get type if binary data |
|
211 | - $type = $this->getBinaryType($photo); |
|
212 | - } |
|
213 | - |
|
214 | - if (empty($type) || !isset(self::ALLOWED_CONTENT_TYPES[$type])) { |
|
215 | - $type = 'application/octet-stream'; |
|
216 | - } |
|
217 | - |
|
218 | - return [ |
|
219 | - 'Content-Type' => $type, |
|
220 | - 'body' => $val |
|
221 | - ]; |
|
222 | - } catch (\Exception $e) { |
|
223 | - $this->logger->error('Exception during vcard photo parsing', [ |
|
224 | - 'exception' => $e |
|
225 | - ]); |
|
226 | - } |
|
227 | - return false; |
|
228 | - } |
|
229 | - |
|
230 | - private function readCard(string $cardData): Document { |
|
231 | - return Reader::read($cardData); |
|
232 | - } |
|
233 | - |
|
234 | - /** |
|
235 | - * @param Binary $photo |
|
236 | - * @return string |
|
237 | - */ |
|
238 | - private function getBinaryType(Binary $photo) { |
|
239 | - $params = $photo->parameters(); |
|
240 | - if (isset($params['TYPE']) || isset($params['MEDIATYPE'])) { |
|
241 | - /** @var Parameter $typeParam */ |
|
242 | - $typeParam = isset($params['TYPE']) ? $params['TYPE'] : $params['MEDIATYPE']; |
|
243 | - $type = (string)$typeParam->getValue(); |
|
244 | - |
|
245 | - if (str_starts_with($type, 'image/')) { |
|
246 | - return $type; |
|
247 | - } else { |
|
248 | - return 'image/' . strtolower($type); |
|
249 | - } |
|
250 | - } |
|
251 | - return ''; |
|
252 | - } |
|
253 | - |
|
254 | - /** |
|
255 | - * @param int $addressBookId |
|
256 | - * @param string $cardUri |
|
257 | - * @throws NotPermittedException |
|
258 | - */ |
|
259 | - public function delete($addressBookId, $cardUri) { |
|
260 | - try { |
|
261 | - $folder = $this->getFolder($addressBookId, $cardUri, false); |
|
262 | - $folder->delete(); |
|
263 | - } catch (NotFoundException $e) { |
|
264 | - // that's OK, nothing to do |
|
265 | - } |
|
266 | - } |
|
267 | - |
|
268 | - private function getPhotoCacheAppData(): IAppData { |
|
269 | - if ($this->photoCacheAppData === null) { |
|
270 | - $this->photoCacheAppData = $this->appDataFactory->get('dav-photocache'); |
|
271 | - } |
|
272 | - return $this->photoCacheAppData; |
|
273 | - } |
|
24 | + private ?IAppData $photoCacheAppData = null; |
|
25 | + |
|
26 | + /** @var array */ |
|
27 | + public const ALLOWED_CONTENT_TYPES = [ |
|
28 | + 'image/png' => 'png', |
|
29 | + 'image/jpeg' => 'jpg', |
|
30 | + 'image/gif' => 'gif', |
|
31 | + 'image/vnd.microsoft.icon' => 'ico', |
|
32 | + 'image/webp' => 'webp', |
|
33 | + 'image/avif' => 'avif', |
|
34 | + ]; |
|
35 | + |
|
36 | + public function __construct( |
|
37 | + private IAppDataFactory $appDataFactory, |
|
38 | + private LoggerInterface $logger, |
|
39 | + ) { |
|
40 | + } |
|
41 | + |
|
42 | + /** |
|
43 | + * @throws NotFoundException |
|
44 | + */ |
|
45 | + public function get(int $addressBookId, string $cardUri, int $size, Card $card): ISimpleFile { |
|
46 | + $folder = $this->getFolder($addressBookId, $cardUri); |
|
47 | + |
|
48 | + if ($this->isEmpty($folder)) { |
|
49 | + $this->init($folder, $card); |
|
50 | + } |
|
51 | + |
|
52 | + if (!$this->hasPhoto($folder)) { |
|
53 | + throw new NotFoundException(); |
|
54 | + } |
|
55 | + |
|
56 | + if ($size !== -1) { |
|
57 | + $size = 2 ** ceil(log($size) / log(2)); |
|
58 | + } |
|
59 | + |
|
60 | + return $this->getFile($folder, $size); |
|
61 | + } |
|
62 | + |
|
63 | + private function isEmpty(ISimpleFolder $folder): bool { |
|
64 | + return $folder->getDirectoryListing() === []; |
|
65 | + } |
|
66 | + |
|
67 | + /** |
|
68 | + * @throws NotPermittedException |
|
69 | + */ |
|
70 | + private function init(ISimpleFolder $folder, Card $card): void { |
|
71 | + $data = $this->getPhoto($card); |
|
72 | + |
|
73 | + if ($data === false || !isset($data['Content-Type'])) { |
|
74 | + $folder->newFile('nophoto', ''); |
|
75 | + return; |
|
76 | + } |
|
77 | + |
|
78 | + $contentType = $data['Content-Type']; |
|
79 | + $extension = self::ALLOWED_CONTENT_TYPES[$contentType] ?? null; |
|
80 | + |
|
81 | + if ($extension === null) { |
|
82 | + $folder->newFile('nophoto', ''); |
|
83 | + return; |
|
84 | + } |
|
85 | + |
|
86 | + $file = $folder->newFile('photo.' . $extension); |
|
87 | + $file->putContent($data['body']); |
|
88 | + } |
|
89 | + |
|
90 | + private function hasPhoto(ISimpleFolder $folder): bool { |
|
91 | + return !$folder->fileExists('nophoto'); |
|
92 | + } |
|
93 | + |
|
94 | + /** |
|
95 | + * @param float|-1 $size |
|
96 | + */ |
|
97 | + private function getFile(ISimpleFolder $folder, $size): ISimpleFile { |
|
98 | + $ext = $this->getExtension($folder); |
|
99 | + |
|
100 | + if ($size === -1) { |
|
101 | + $path = 'photo.' . $ext; |
|
102 | + } else { |
|
103 | + $path = 'photo.' . $size . '.' . $ext; |
|
104 | + } |
|
105 | + |
|
106 | + try { |
|
107 | + $file = $folder->getFile($path); |
|
108 | + } catch (NotFoundException $e) { |
|
109 | + if ($size <= 0) { |
|
110 | + throw new NotFoundException; |
|
111 | + } |
|
112 | + |
|
113 | + $photo = new Image(); |
|
114 | + /** @var ISimpleFile $file */ |
|
115 | + $file = $folder->getFile('photo.' . $ext); |
|
116 | + $photo->loadFromData($file->getContent()); |
|
117 | + |
|
118 | + $ratio = $photo->width() / $photo->height(); |
|
119 | + if ($ratio < 1) { |
|
120 | + $ratio = 1 / $ratio; |
|
121 | + } |
|
122 | + |
|
123 | + $size = (int)($size * $ratio); |
|
124 | + if ($size !== -1) { |
|
125 | + $photo->resize($size); |
|
126 | + } |
|
127 | + |
|
128 | + try { |
|
129 | + $file = $folder->newFile($path); |
|
130 | + $file->putContent($photo->data()); |
|
131 | + } catch (NotPermittedException $e) { |
|
132 | + } |
|
133 | + } |
|
134 | + |
|
135 | + return $file; |
|
136 | + } |
|
137 | + |
|
138 | + /** |
|
139 | + * @throws NotFoundException |
|
140 | + * @throws NotPermittedException |
|
141 | + */ |
|
142 | + private function getFolder(int $addressBookId, string $cardUri, bool $createIfNotExists = true): ISimpleFolder { |
|
143 | + $hash = md5($addressBookId . ' ' . $cardUri); |
|
144 | + try { |
|
145 | + return $this->getPhotoCacheAppData()->getFolder($hash); |
|
146 | + } catch (NotFoundException $e) { |
|
147 | + if ($createIfNotExists) { |
|
148 | + return $this->getPhotoCacheAppData()->newFolder($hash); |
|
149 | + } |
|
150 | + throw $e; |
|
151 | + } |
|
152 | + } |
|
153 | + |
|
154 | + /** |
|
155 | + * Get the extension of the avatar. If there is no avatar throw Exception |
|
156 | + * |
|
157 | + * @throws NotFoundException |
|
158 | + */ |
|
159 | + private function getExtension(ISimpleFolder $folder): string { |
|
160 | + foreach (self::ALLOWED_CONTENT_TYPES as $extension) { |
|
161 | + if ($folder->fileExists('photo.' . $extension)) { |
|
162 | + return $extension; |
|
163 | + } |
|
164 | + } |
|
165 | + |
|
166 | + throw new NotFoundException('Avatar not found'); |
|
167 | + } |
|
168 | + |
|
169 | + /** |
|
170 | + * @param Card $node |
|
171 | + * @return false|array{body: string, Content-Type: string} |
|
172 | + */ |
|
173 | + private function getPhoto(Card $node) { |
|
174 | + try { |
|
175 | + $vObject = $this->readCard($node->get()); |
|
176 | + return $this->getPhotoFromVObject($vObject); |
|
177 | + } catch (\Exception $e) { |
|
178 | + $this->logger->error('Exception during vcard photo parsing', [ |
|
179 | + 'exception' => $e |
|
180 | + ]); |
|
181 | + } |
|
182 | + return false; |
|
183 | + } |
|
184 | + |
|
185 | + /** |
|
186 | + * @return false|array{body: string, Content-Type: string} |
|
187 | + */ |
|
188 | + public function getPhotoFromVObject(Document $vObject) { |
|
189 | + try { |
|
190 | + if (!$vObject->PHOTO) { |
|
191 | + return false; |
|
192 | + } |
|
193 | + |
|
194 | + $photo = $vObject->PHOTO; |
|
195 | + $val = $photo->getValue(); |
|
196 | + |
|
197 | + // handle data URI. e.g PHOTO;VALUE=URI:data:image/jpeg;base64,/9j/4AAQSkZJRgABAQE |
|
198 | + if ($photo->getValueType() === 'URI') { |
|
199 | + $parsed = \Sabre\URI\parse($val); |
|
200 | + |
|
201 | + // only allow data:// |
|
202 | + if ($parsed['scheme'] !== 'data') { |
|
203 | + return false; |
|
204 | + } |
|
205 | + if (substr_count($parsed['path'], ';') === 1) { |
|
206 | + [$type] = explode(';', $parsed['path']); |
|
207 | + } |
|
208 | + $val = file_get_contents($val); |
|
209 | + } else { |
|
210 | + // get type if binary data |
|
211 | + $type = $this->getBinaryType($photo); |
|
212 | + } |
|
213 | + |
|
214 | + if (empty($type) || !isset(self::ALLOWED_CONTENT_TYPES[$type])) { |
|
215 | + $type = 'application/octet-stream'; |
|
216 | + } |
|
217 | + |
|
218 | + return [ |
|
219 | + 'Content-Type' => $type, |
|
220 | + 'body' => $val |
|
221 | + ]; |
|
222 | + } catch (\Exception $e) { |
|
223 | + $this->logger->error('Exception during vcard photo parsing', [ |
|
224 | + 'exception' => $e |
|
225 | + ]); |
|
226 | + } |
|
227 | + return false; |
|
228 | + } |
|
229 | + |
|
230 | + private function readCard(string $cardData): Document { |
|
231 | + return Reader::read($cardData); |
|
232 | + } |
|
233 | + |
|
234 | + /** |
|
235 | + * @param Binary $photo |
|
236 | + * @return string |
|
237 | + */ |
|
238 | + private function getBinaryType(Binary $photo) { |
|
239 | + $params = $photo->parameters(); |
|
240 | + if (isset($params['TYPE']) || isset($params['MEDIATYPE'])) { |
|
241 | + /** @var Parameter $typeParam */ |
|
242 | + $typeParam = isset($params['TYPE']) ? $params['TYPE'] : $params['MEDIATYPE']; |
|
243 | + $type = (string)$typeParam->getValue(); |
|
244 | + |
|
245 | + if (str_starts_with($type, 'image/')) { |
|
246 | + return $type; |
|
247 | + } else { |
|
248 | + return 'image/' . strtolower($type); |
|
249 | + } |
|
250 | + } |
|
251 | + return ''; |
|
252 | + } |
|
253 | + |
|
254 | + /** |
|
255 | + * @param int $addressBookId |
|
256 | + * @param string $cardUri |
|
257 | + * @throws NotPermittedException |
|
258 | + */ |
|
259 | + public function delete($addressBookId, $cardUri) { |
|
260 | + try { |
|
261 | + $folder = $this->getFolder($addressBookId, $cardUri, false); |
|
262 | + $folder->delete(); |
|
263 | + } catch (NotFoundException $e) { |
|
264 | + // that's OK, nothing to do |
|
265 | + } |
|
266 | + } |
|
267 | + |
|
268 | + private function getPhotoCacheAppData(): IAppData { |
|
269 | + if ($this->photoCacheAppData === null) { |
|
270 | + $this->photoCacheAppData = $this->appDataFactory->get('dav-photocache'); |
|
271 | + } |
|
272 | + return $this->photoCacheAppData; |
|
273 | + } |
|
274 | 274 | } |
@@ -83,7 +83,7 @@ discard block |
||
83 | 83 | return; |
84 | 84 | } |
85 | 85 | |
86 | - $file = $folder->newFile('photo.' . $extension); |
|
86 | + $file = $folder->newFile('photo.'.$extension); |
|
87 | 87 | $file->putContent($data['body']); |
88 | 88 | } |
89 | 89 | |
@@ -98,9 +98,9 @@ discard block |
||
98 | 98 | $ext = $this->getExtension($folder); |
99 | 99 | |
100 | 100 | if ($size === -1) { |
101 | - $path = 'photo.' . $ext; |
|
101 | + $path = 'photo.'.$ext; |
|
102 | 102 | } else { |
103 | - $path = 'photo.' . $size . '.' . $ext; |
|
103 | + $path = 'photo.'.$size.'.'.$ext; |
|
104 | 104 | } |
105 | 105 | |
106 | 106 | try { |
@@ -112,7 +112,7 @@ discard block |
||
112 | 112 | |
113 | 113 | $photo = new Image(); |
114 | 114 | /** @var ISimpleFile $file */ |
115 | - $file = $folder->getFile('photo.' . $ext); |
|
115 | + $file = $folder->getFile('photo.'.$ext); |
|
116 | 116 | $photo->loadFromData($file->getContent()); |
117 | 117 | |
118 | 118 | $ratio = $photo->width() / $photo->height(); |
@@ -120,7 +120,7 @@ discard block |
||
120 | 120 | $ratio = 1 / $ratio; |
121 | 121 | } |
122 | 122 | |
123 | - $size = (int)($size * $ratio); |
|
123 | + $size = (int) ($size * $ratio); |
|
124 | 124 | if ($size !== -1) { |
125 | 125 | $photo->resize($size); |
126 | 126 | } |
@@ -140,7 +140,7 @@ discard block |
||
140 | 140 | * @throws NotPermittedException |
141 | 141 | */ |
142 | 142 | private function getFolder(int $addressBookId, string $cardUri, bool $createIfNotExists = true): ISimpleFolder { |
143 | - $hash = md5($addressBookId . ' ' . $cardUri); |
|
143 | + $hash = md5($addressBookId.' '.$cardUri); |
|
144 | 144 | try { |
145 | 145 | return $this->getPhotoCacheAppData()->getFolder($hash); |
146 | 146 | } catch (NotFoundException $e) { |
@@ -158,7 +158,7 @@ discard block |
||
158 | 158 | */ |
159 | 159 | private function getExtension(ISimpleFolder $folder): string { |
160 | 160 | foreach (self::ALLOWED_CONTENT_TYPES as $extension) { |
161 | - if ($folder->fileExists('photo.' . $extension)) { |
|
161 | + if ($folder->fileExists('photo.'.$extension)) { |
|
162 | 162 | return $extension; |
163 | 163 | } |
164 | 164 | } |
@@ -240,12 +240,12 @@ discard block |
||
240 | 240 | if (isset($params['TYPE']) || isset($params['MEDIATYPE'])) { |
241 | 241 | /** @var Parameter $typeParam */ |
242 | 242 | $typeParam = isset($params['TYPE']) ? $params['TYPE'] : $params['MEDIATYPE']; |
243 | - $type = (string)$typeParam->getValue(); |
|
243 | + $type = (string) $typeParam->getValue(); |
|
244 | 244 | |
245 | 245 | if (str_starts_with($type, 'image/')) { |
246 | 246 | return $type; |
247 | 247 | } else { |
248 | - return 'image/' . strtolower($type); |
|
248 | + return 'image/'.strtolower($type); |
|
249 | 249 | } |
250 | 250 | } |
251 | 251 | return ''; |
@@ -20,56 +20,56 @@ |
||
20 | 20 | use Symfony\Component\Console\Question\ConfirmationQuestion; |
21 | 21 | |
22 | 22 | #[AsCommand( |
23 | - name: 'dav:clear-contacts-photo-cache', |
|
24 | - description: 'Clear cached contact photos', |
|
25 | - hidden: false, |
|
23 | + name: 'dav:clear-contacts-photo-cache', |
|
24 | + description: 'Clear cached contact photos', |
|
25 | + hidden: false, |
|
26 | 26 | )] |
27 | 27 | class ClearContactsPhotoCache extends Command { |
28 | 28 | |
29 | - public function __construct( |
|
30 | - private IAppDataFactory $appDataFactory, |
|
31 | - ) { |
|
32 | - parent::__construct(); |
|
33 | - } |
|
29 | + public function __construct( |
|
30 | + private IAppDataFactory $appDataFactory, |
|
31 | + ) { |
|
32 | + parent::__construct(); |
|
33 | + } |
|
34 | 34 | |
35 | - protected function execute(InputInterface $input, OutputInterface $output): int { |
|
36 | - $photoCacheAppData = $this->appDataFactory->get('dav-photocache'); |
|
35 | + protected function execute(InputInterface $input, OutputInterface $output): int { |
|
36 | + $photoCacheAppData = $this->appDataFactory->get('dav-photocache'); |
|
37 | 37 | |
38 | - $folders = $photoCacheAppData->getDirectoryListing(); |
|
39 | - $countFolders = count($folders); |
|
38 | + $folders = $photoCacheAppData->getDirectoryListing(); |
|
39 | + $countFolders = count($folders); |
|
40 | 40 | |
41 | - if ($countFolders === 0) { |
|
42 | - $output->writeln('No cached contact photos found.'); |
|
43 | - return self::SUCCESS; |
|
44 | - } |
|
41 | + if ($countFolders === 0) { |
|
42 | + $output->writeln('No cached contact photos found.'); |
|
43 | + return self::SUCCESS; |
|
44 | + } |
|
45 | 45 | |
46 | - $output->writeln('Found ' . count($folders) . ' cached contact photos.'); |
|
46 | + $output->writeln('Found ' . count($folders) . ' cached contact photos.'); |
|
47 | 47 | |
48 | - /** @var QuestionHelper $helper */ |
|
49 | - $helper = $this->getHelper('question'); |
|
50 | - $question = new ConfirmationQuestion('Please confirm to clear the contacts photo cache [y/n] ', true); |
|
48 | + /** @var QuestionHelper $helper */ |
|
49 | + $helper = $this->getHelper('question'); |
|
50 | + $question = new ConfirmationQuestion('Please confirm to clear the contacts photo cache [y/n] ', true); |
|
51 | 51 | |
52 | - if ($helper->ask($input, $output, $question) === false) { |
|
53 | - $output->writeln('Clearing the contacts photo cache aborted.'); |
|
54 | - return self::SUCCESS; |
|
55 | - } |
|
52 | + if ($helper->ask($input, $output, $question) === false) { |
|
53 | + $output->writeln('Clearing the contacts photo cache aborted.'); |
|
54 | + return self::SUCCESS; |
|
55 | + } |
|
56 | 56 | |
57 | - $progressBar = new ProgressBar($output, $countFolders); |
|
58 | - $progressBar->start(); |
|
57 | + $progressBar = new ProgressBar($output, $countFolders); |
|
58 | + $progressBar->start(); |
|
59 | 59 | |
60 | - foreach ($folders as $folder) { |
|
61 | - try { |
|
62 | - $folder->delete(); |
|
63 | - } catch (NotPermittedException) { |
|
64 | - } |
|
65 | - $progressBar->advance(); |
|
66 | - } |
|
60 | + foreach ($folders as $folder) { |
|
61 | + try { |
|
62 | + $folder->delete(); |
|
63 | + } catch (NotPermittedException) { |
|
64 | + } |
|
65 | + $progressBar->advance(); |
|
66 | + } |
|
67 | 67 | |
68 | - $progressBar->finish(); |
|
68 | + $progressBar->finish(); |
|
69 | 69 | |
70 | - $output->writeln(''); |
|
71 | - $output->writeln('Contacts photo cache cleared.'); |
|
70 | + $output->writeln(''); |
|
71 | + $output->writeln('Contacts photo cache cleared.'); |
|
72 | 72 | |
73 | - return self::SUCCESS; |
|
74 | - } |
|
73 | + return self::SUCCESS; |
|
74 | + } |
|
75 | 75 | } |
@@ -43,7 +43,7 @@ |
||
43 | 43 | return self::SUCCESS; |
44 | 44 | } |
45 | 45 | |
46 | - $output->writeln('Found ' . count($folders) . ' cached contact photos.'); |
|
46 | + $output->writeln('Found '.count($folders).' cached contact photos.'); |
|
47 | 47 | |
48 | 48 | /** @var QuestionHelper $helper */ |
49 | 49 | $helper = $this->getHelper('question'); |
@@ -102,180 +102,180 @@ |
||
102 | 102 | use function is_null; |
103 | 103 | |
104 | 104 | class Application extends App implements IBootstrap { |
105 | - public const APP_ID = 'dav'; |
|
105 | + public const APP_ID = 'dav'; |
|
106 | 106 | |
107 | - public function __construct() { |
|
108 | - parent::__construct(self::APP_ID); |
|
109 | - } |
|
107 | + public function __construct() { |
|
108 | + parent::__construct(self::APP_ID); |
|
109 | + } |
|
110 | 110 | |
111 | - public function register(IRegistrationContext $context): void { |
|
112 | - $context->registerServiceAlias('CardDAVSyncService', SyncService::class); |
|
113 | - $context->registerService(AppCalendarPlugin::class, function (ContainerInterface $c) { |
|
114 | - return new AppCalendarPlugin( |
|
115 | - $c->get(ICalendarManager::class), |
|
116 | - $c->get(LoggerInterface::class) |
|
117 | - ); |
|
118 | - }); |
|
111 | + public function register(IRegistrationContext $context): void { |
|
112 | + $context->registerServiceAlias('CardDAVSyncService', SyncService::class); |
|
113 | + $context->registerService(AppCalendarPlugin::class, function (ContainerInterface $c) { |
|
114 | + return new AppCalendarPlugin( |
|
115 | + $c->get(ICalendarManager::class), |
|
116 | + $c->get(LoggerInterface::class) |
|
117 | + ); |
|
118 | + }); |
|
119 | 119 | |
120 | - /* |
|
120 | + /* |
|
121 | 121 | * Register capabilities |
122 | 122 | */ |
123 | - $context->registerCapability(Capabilities::class); |
|
123 | + $context->registerCapability(Capabilities::class); |
|
124 | 124 | |
125 | - /* |
|
125 | + /* |
|
126 | 126 | * Register Search Providers |
127 | 127 | */ |
128 | - $context->registerSearchProvider(ContactsSearchProvider::class); |
|
129 | - $context->registerSearchProvider(EventsSearchProvider::class); |
|
130 | - $context->registerSearchProvider(TasksSearchProvider::class); |
|
128 | + $context->registerSearchProvider(ContactsSearchProvider::class); |
|
129 | + $context->registerSearchProvider(EventsSearchProvider::class); |
|
130 | + $context->registerSearchProvider(TasksSearchProvider::class); |
|
131 | 131 | |
132 | - /** |
|
133 | - * Register event listeners |
|
134 | - */ |
|
135 | - $context->registerEventListener(AddMissingIndicesEvent::class, AddMissingIndicesListener::class); |
|
132 | + /** |
|
133 | + * Register event listeners |
|
134 | + */ |
|
135 | + $context->registerEventListener(AddMissingIndicesEvent::class, AddMissingIndicesListener::class); |
|
136 | 136 | |
137 | - $context->registerEventListener(CalendarCreatedEvent::class, ActivityUpdaterListener::class); |
|
138 | - $context->registerEventListener(CalendarDeletedEvent::class, ActivityUpdaterListener::class); |
|
139 | - $context->registerEventListener(CalendarDeletedEvent::class, CalendarObjectReminderUpdaterListener::class); |
|
140 | - $context->registerEventListener(CalendarDeletedEvent::class, CalendarDeletionDefaultUpdaterListener::class); |
|
141 | - $context->registerEventListener(CalendarMovedToTrashEvent::class, ActivityUpdaterListener::class); |
|
142 | - $context->registerEventListener(CalendarMovedToTrashEvent::class, CalendarObjectReminderUpdaterListener::class); |
|
143 | - $context->registerEventListener(CalendarUpdatedEvent::class, ActivityUpdaterListener::class); |
|
144 | - $context->registerEventListener(CalendarRestoredEvent::class, ActivityUpdaterListener::class); |
|
145 | - $context->registerEventListener(CalendarRestoredEvent::class, CalendarObjectReminderUpdaterListener::class); |
|
146 | - $context->registerEventListener(CalendarObjectCreatedEvent::class, ActivityUpdaterListener::class); |
|
147 | - $context->registerEventListener(CalendarObjectCreatedEvent::class, CalendarContactInteractionListener::class); |
|
148 | - $context->registerEventListener(CalendarObjectCreatedEvent::class, CalendarObjectReminderUpdaterListener::class); |
|
149 | - $context->registerEventListener(CalendarObjectUpdatedEvent::class, ActivityUpdaterListener::class); |
|
150 | - $context->registerEventListener(CalendarObjectUpdatedEvent::class, CalendarContactInteractionListener::class); |
|
151 | - $context->registerEventListener(CalendarObjectUpdatedEvent::class, CalendarObjectReminderUpdaterListener::class); |
|
152 | - $context->registerEventListener(CalendarObjectDeletedEvent::class, ActivityUpdaterListener::class); |
|
153 | - $context->registerEventListener(CalendarObjectDeletedEvent::class, CalendarObjectReminderUpdaterListener::class); |
|
154 | - $context->registerEventListener(CalendarObjectMovedEvent::class, ActivityUpdaterListener::class); |
|
155 | - $context->registerEventListener(CalendarObjectMovedEvent::class, CalendarObjectReminderUpdaterListener::class); |
|
156 | - $context->registerEventListener(CalendarObjectMovedToTrashEvent::class, ActivityUpdaterListener::class); |
|
157 | - $context->registerEventListener(CalendarObjectMovedToTrashEvent::class, CalendarObjectReminderUpdaterListener::class); |
|
158 | - $context->registerEventListener(CalendarObjectRestoredEvent::class, ActivityUpdaterListener::class); |
|
159 | - $context->registerEventListener(CalendarObjectRestoredEvent::class, CalendarObjectReminderUpdaterListener::class); |
|
160 | - $context->registerEventListener(CalendarShareUpdatedEvent::class, CalendarContactInteractionListener::class); |
|
161 | - $context->registerEventListener(CalendarPublishedEvent::class, CalendarPublicationListener::class); |
|
162 | - $context->registerEventListener(CalendarUnpublishedEvent::class, CalendarPublicationListener::class); |
|
163 | - $context->registerEventListener(CalendarShareUpdatedEvent::class, CalendarShareUpdateListener::class); |
|
137 | + $context->registerEventListener(CalendarCreatedEvent::class, ActivityUpdaterListener::class); |
|
138 | + $context->registerEventListener(CalendarDeletedEvent::class, ActivityUpdaterListener::class); |
|
139 | + $context->registerEventListener(CalendarDeletedEvent::class, CalendarObjectReminderUpdaterListener::class); |
|
140 | + $context->registerEventListener(CalendarDeletedEvent::class, CalendarDeletionDefaultUpdaterListener::class); |
|
141 | + $context->registerEventListener(CalendarMovedToTrashEvent::class, ActivityUpdaterListener::class); |
|
142 | + $context->registerEventListener(CalendarMovedToTrashEvent::class, CalendarObjectReminderUpdaterListener::class); |
|
143 | + $context->registerEventListener(CalendarUpdatedEvent::class, ActivityUpdaterListener::class); |
|
144 | + $context->registerEventListener(CalendarRestoredEvent::class, ActivityUpdaterListener::class); |
|
145 | + $context->registerEventListener(CalendarRestoredEvent::class, CalendarObjectReminderUpdaterListener::class); |
|
146 | + $context->registerEventListener(CalendarObjectCreatedEvent::class, ActivityUpdaterListener::class); |
|
147 | + $context->registerEventListener(CalendarObjectCreatedEvent::class, CalendarContactInteractionListener::class); |
|
148 | + $context->registerEventListener(CalendarObjectCreatedEvent::class, CalendarObjectReminderUpdaterListener::class); |
|
149 | + $context->registerEventListener(CalendarObjectUpdatedEvent::class, ActivityUpdaterListener::class); |
|
150 | + $context->registerEventListener(CalendarObjectUpdatedEvent::class, CalendarContactInteractionListener::class); |
|
151 | + $context->registerEventListener(CalendarObjectUpdatedEvent::class, CalendarObjectReminderUpdaterListener::class); |
|
152 | + $context->registerEventListener(CalendarObjectDeletedEvent::class, ActivityUpdaterListener::class); |
|
153 | + $context->registerEventListener(CalendarObjectDeletedEvent::class, CalendarObjectReminderUpdaterListener::class); |
|
154 | + $context->registerEventListener(CalendarObjectMovedEvent::class, ActivityUpdaterListener::class); |
|
155 | + $context->registerEventListener(CalendarObjectMovedEvent::class, CalendarObjectReminderUpdaterListener::class); |
|
156 | + $context->registerEventListener(CalendarObjectMovedToTrashEvent::class, ActivityUpdaterListener::class); |
|
157 | + $context->registerEventListener(CalendarObjectMovedToTrashEvent::class, CalendarObjectReminderUpdaterListener::class); |
|
158 | + $context->registerEventListener(CalendarObjectRestoredEvent::class, ActivityUpdaterListener::class); |
|
159 | + $context->registerEventListener(CalendarObjectRestoredEvent::class, CalendarObjectReminderUpdaterListener::class); |
|
160 | + $context->registerEventListener(CalendarShareUpdatedEvent::class, CalendarContactInteractionListener::class); |
|
161 | + $context->registerEventListener(CalendarPublishedEvent::class, CalendarPublicationListener::class); |
|
162 | + $context->registerEventListener(CalendarUnpublishedEvent::class, CalendarPublicationListener::class); |
|
163 | + $context->registerEventListener(CalendarShareUpdatedEvent::class, CalendarShareUpdateListener::class); |
|
164 | 164 | |
165 | - $context->registerEventListener(SubscriptionCreatedEvent::class, SubscriptionListener::class); |
|
166 | - $context->registerEventListener(SubscriptionDeletedEvent::class, SubscriptionListener::class); |
|
165 | + $context->registerEventListener(SubscriptionCreatedEvent::class, SubscriptionListener::class); |
|
166 | + $context->registerEventListener(SubscriptionDeletedEvent::class, SubscriptionListener::class); |
|
167 | 167 | |
168 | 168 | |
169 | - $context->registerEventListener(AddressBookCreatedEvent::class, AddressbookListener::class); |
|
170 | - $context->registerEventListener(AddressBookDeletedEvent::class, AddressbookListener::class); |
|
171 | - $context->registerEventListener(AddressBookUpdatedEvent::class, AddressbookListener::class); |
|
172 | - $context->registerEventListener(AddressBookShareUpdatedEvent::class, AddressbookListener::class); |
|
173 | - $context->registerEventListener(CardCreatedEvent::class, CardListener::class); |
|
174 | - $context->registerEventListener(CardDeletedEvent::class, CardListener::class); |
|
175 | - $context->registerEventListener(CardUpdatedEvent::class, CardListener::class); |
|
176 | - $context->registerEventListener(CardCreatedEvent::class, BirthdayListener::class); |
|
177 | - $context->registerEventListener(CardDeletedEvent::class, BirthdayListener::class); |
|
178 | - $context->registerEventListener(CardUpdatedEvent::class, BirthdayListener::class); |
|
179 | - $context->registerEventListener(CardDeletedEvent::class, ClearPhotoCacheListener::class); |
|
180 | - $context->registerEventListener(CardUpdatedEvent::class, ClearPhotoCacheListener::class); |
|
181 | - $context->registerEventListener(TrustedServerRemovedEvent::class, TrustedServerRemovedListener::class); |
|
169 | + $context->registerEventListener(AddressBookCreatedEvent::class, AddressbookListener::class); |
|
170 | + $context->registerEventListener(AddressBookDeletedEvent::class, AddressbookListener::class); |
|
171 | + $context->registerEventListener(AddressBookUpdatedEvent::class, AddressbookListener::class); |
|
172 | + $context->registerEventListener(AddressBookShareUpdatedEvent::class, AddressbookListener::class); |
|
173 | + $context->registerEventListener(CardCreatedEvent::class, CardListener::class); |
|
174 | + $context->registerEventListener(CardDeletedEvent::class, CardListener::class); |
|
175 | + $context->registerEventListener(CardUpdatedEvent::class, CardListener::class); |
|
176 | + $context->registerEventListener(CardCreatedEvent::class, BirthdayListener::class); |
|
177 | + $context->registerEventListener(CardDeletedEvent::class, BirthdayListener::class); |
|
178 | + $context->registerEventListener(CardUpdatedEvent::class, BirthdayListener::class); |
|
179 | + $context->registerEventListener(CardDeletedEvent::class, ClearPhotoCacheListener::class); |
|
180 | + $context->registerEventListener(CardUpdatedEvent::class, ClearPhotoCacheListener::class); |
|
181 | + $context->registerEventListener(TrustedServerRemovedEvent::class, TrustedServerRemovedListener::class); |
|
182 | 182 | |
183 | - $context->registerEventListener(BeforePreferenceDeletedEvent::class, UserPreferenceListener::class); |
|
184 | - $context->registerEventListener(BeforePreferenceSetEvent::class, UserPreferenceListener::class); |
|
183 | + $context->registerEventListener(BeforePreferenceDeletedEvent::class, UserPreferenceListener::class); |
|
184 | + $context->registerEventListener(BeforePreferenceSetEvent::class, UserPreferenceListener::class); |
|
185 | 185 | |
186 | - $context->registerEventListener(OutOfOfficeChangedEvent::class, OutOfOfficeListener::class); |
|
187 | - $context->registerEventListener(OutOfOfficeClearedEvent::class, OutOfOfficeListener::class); |
|
188 | - $context->registerEventListener(OutOfOfficeScheduledEvent::class, OutOfOfficeListener::class); |
|
186 | + $context->registerEventListener(OutOfOfficeChangedEvent::class, OutOfOfficeListener::class); |
|
187 | + $context->registerEventListener(OutOfOfficeClearedEvent::class, OutOfOfficeListener::class); |
|
188 | + $context->registerEventListener(OutOfOfficeScheduledEvent::class, OutOfOfficeListener::class); |
|
189 | 189 | |
190 | - $context->registerEventListener(UserFirstTimeLoggedInEvent::class, UserEventsListener::class); |
|
191 | - $context->registerEventListener(UserIdAssignedEvent::class, UserEventsListener::class); |
|
192 | - $context->registerEventListener(BeforeUserIdUnassignedEvent::class, UserEventsListener::class); |
|
193 | - $context->registerEventListener(UserIdUnassignedEvent::class, UserEventsListener::class); |
|
194 | - $context->registerEventListener(BeforeUserDeletedEvent::class, UserEventsListener::class); |
|
195 | - $context->registerEventListener(UserDeletedEvent::class, UserEventsListener::class); |
|
196 | - $context->registerEventListener(UserCreatedEvent::class, UserEventsListener::class); |
|
197 | - $context->registerEventListener(UserChangedEvent::class, UserEventsListener::class); |
|
198 | - $context->registerEventListener(UserUpdatedEvent::class, UserEventsListener::class); |
|
190 | + $context->registerEventListener(UserFirstTimeLoggedInEvent::class, UserEventsListener::class); |
|
191 | + $context->registerEventListener(UserIdAssignedEvent::class, UserEventsListener::class); |
|
192 | + $context->registerEventListener(BeforeUserIdUnassignedEvent::class, UserEventsListener::class); |
|
193 | + $context->registerEventListener(UserIdUnassignedEvent::class, UserEventsListener::class); |
|
194 | + $context->registerEventListener(BeforeUserDeletedEvent::class, UserEventsListener::class); |
|
195 | + $context->registerEventListener(UserDeletedEvent::class, UserEventsListener::class); |
|
196 | + $context->registerEventListener(UserCreatedEvent::class, UserEventsListener::class); |
|
197 | + $context->registerEventListener(UserChangedEvent::class, UserEventsListener::class); |
|
198 | + $context->registerEventListener(UserUpdatedEvent::class, UserEventsListener::class); |
|
199 | 199 | |
200 | - $context->registerNotifierService(Notifier::class); |
|
200 | + $context->registerNotifierService(Notifier::class); |
|
201 | 201 | |
202 | - $context->registerCalendarProvider(CalendarProvider::class); |
|
203 | - $context->registerCalendarProvider(CachedSubscriptionProvider::class); |
|
202 | + $context->registerCalendarProvider(CalendarProvider::class); |
|
203 | + $context->registerCalendarProvider(CachedSubscriptionProvider::class); |
|
204 | 204 | |
205 | - $context->registerUserMigrator(CalendarMigrator::class); |
|
206 | - $context->registerUserMigrator(ContactsMigrator::class); |
|
205 | + $context->registerUserMigrator(CalendarMigrator::class); |
|
206 | + $context->registerUserMigrator(ContactsMigrator::class); |
|
207 | 207 | |
208 | - $context->registerSetupCheck(NeedsSystemAddressBookSync::class); |
|
209 | - $context->registerSetupCheck(WebdavEndpoint::class); |
|
208 | + $context->registerSetupCheck(NeedsSystemAddressBookSync::class); |
|
209 | + $context->registerSetupCheck(WebdavEndpoint::class); |
|
210 | 210 | |
211 | - // register admin settings form and listener(s) |
|
212 | - $context->registerDeclarativeSettings(SystemAddressBookSettings::class); |
|
213 | - $context->registerEventListener(DeclarativeSettingsGetValueEvent::class, DavAdminSettingsListener::class); |
|
214 | - $context->registerEventListener(DeclarativeSettingsSetValueEvent::class, DavAdminSettingsListener::class); |
|
211 | + // register admin settings form and listener(s) |
|
212 | + $context->registerDeclarativeSettings(SystemAddressBookSettings::class); |
|
213 | + $context->registerEventListener(DeclarativeSettingsGetValueEvent::class, DavAdminSettingsListener::class); |
|
214 | + $context->registerEventListener(DeclarativeSettingsSetValueEvent::class, DavAdminSettingsListener::class); |
|
215 | 215 | |
216 | - } |
|
216 | + } |
|
217 | 217 | |
218 | - public function boot(IBootContext $context): void { |
|
219 | - // Load all dav apps |
|
220 | - \OC_App::loadApps(['dav']); |
|
218 | + public function boot(IBootContext $context): void { |
|
219 | + // Load all dav apps |
|
220 | + \OC_App::loadApps(['dav']); |
|
221 | 221 | |
222 | - $context->injectFn($this->registerContactsManager(...)); |
|
223 | - $context->injectFn($this->registerCalendarManager(...)); |
|
224 | - $context->injectFn($this->registerCalendarReminders(...)); |
|
225 | - } |
|
222 | + $context->injectFn($this->registerContactsManager(...)); |
|
223 | + $context->injectFn($this->registerCalendarManager(...)); |
|
224 | + $context->injectFn($this->registerCalendarReminders(...)); |
|
225 | + } |
|
226 | 226 | |
227 | - public function registerContactsManager(IContactsManager $cm, IAppContainer $container): void { |
|
228 | - $cm->register(function () use ($container, $cm): void { |
|
229 | - $user = Server::get(IUserSession::class)->getUser(); |
|
230 | - if (!is_null($user)) { |
|
231 | - $this->setupContactsProvider($cm, $container, $user->getUID()); |
|
232 | - } else { |
|
233 | - $this->setupSystemContactsProvider($cm, $container); |
|
234 | - } |
|
235 | - }); |
|
236 | - } |
|
227 | + public function registerContactsManager(IContactsManager $cm, IAppContainer $container): void { |
|
228 | + $cm->register(function () use ($container, $cm): void { |
|
229 | + $user = Server::get(IUserSession::class)->getUser(); |
|
230 | + if (!is_null($user)) { |
|
231 | + $this->setupContactsProvider($cm, $container, $user->getUID()); |
|
232 | + } else { |
|
233 | + $this->setupSystemContactsProvider($cm, $container); |
|
234 | + } |
|
235 | + }); |
|
236 | + } |
|
237 | 237 | |
238 | - private function setupContactsProvider(IContactsManager $contactsManager, |
|
239 | - IAppContainer $container, |
|
240 | - string $userID): void { |
|
241 | - /** @var ContactsManager $cm */ |
|
242 | - $cm = $container->query(ContactsManager::class); |
|
243 | - $urlGenerator = $container->getServer()->getURLGenerator(); |
|
244 | - $cm->setupContactsProvider($contactsManager, $userID, $urlGenerator); |
|
245 | - } |
|
238 | + private function setupContactsProvider(IContactsManager $contactsManager, |
|
239 | + IAppContainer $container, |
|
240 | + string $userID): void { |
|
241 | + /** @var ContactsManager $cm */ |
|
242 | + $cm = $container->query(ContactsManager::class); |
|
243 | + $urlGenerator = $container->getServer()->getURLGenerator(); |
|
244 | + $cm->setupContactsProvider($contactsManager, $userID, $urlGenerator); |
|
245 | + } |
|
246 | 246 | |
247 | - private function setupSystemContactsProvider(IContactsManager $contactsManager, IAppContainer $container): void { |
|
248 | - /** @var ContactsManager $cm */ |
|
249 | - $cm = $container->query(ContactsManager::class); |
|
250 | - $urlGenerator = $container->getServer()->getURLGenerator(); |
|
251 | - $cm->setupSystemContactsProvider($contactsManager, null, $urlGenerator); |
|
252 | - } |
|
247 | + private function setupSystemContactsProvider(IContactsManager $contactsManager, IAppContainer $container): void { |
|
248 | + /** @var ContactsManager $cm */ |
|
249 | + $cm = $container->query(ContactsManager::class); |
|
250 | + $urlGenerator = $container->getServer()->getURLGenerator(); |
|
251 | + $cm->setupSystemContactsProvider($contactsManager, null, $urlGenerator); |
|
252 | + } |
|
253 | 253 | |
254 | - public function registerCalendarManager(ICalendarManager $calendarManager, |
|
255 | - IAppContainer $container): void { |
|
256 | - $calendarManager->register(function () use ($container, $calendarManager): void { |
|
257 | - $user = Server::get(IUserSession::class)->getUser(); |
|
258 | - if ($user !== null) { |
|
259 | - $this->setupCalendarProvider($calendarManager, $container, $user->getUID()); |
|
260 | - } |
|
261 | - }); |
|
262 | - } |
|
254 | + public function registerCalendarManager(ICalendarManager $calendarManager, |
|
255 | + IAppContainer $container): void { |
|
256 | + $calendarManager->register(function () use ($container, $calendarManager): void { |
|
257 | + $user = Server::get(IUserSession::class)->getUser(); |
|
258 | + if ($user !== null) { |
|
259 | + $this->setupCalendarProvider($calendarManager, $container, $user->getUID()); |
|
260 | + } |
|
261 | + }); |
|
262 | + } |
|
263 | 263 | |
264 | - private function setupCalendarProvider(ICalendarManager $calendarManager, |
|
265 | - IAppContainer $container, |
|
266 | - $userId) { |
|
267 | - $cm = $container->query(CalendarManager::class); |
|
268 | - $cm->setupCalendarProvider($calendarManager, $userId); |
|
269 | - } |
|
264 | + private function setupCalendarProvider(ICalendarManager $calendarManager, |
|
265 | + IAppContainer $container, |
|
266 | + $userId) { |
|
267 | + $cm = $container->query(CalendarManager::class); |
|
268 | + $cm->setupCalendarProvider($calendarManager, $userId); |
|
269 | + } |
|
270 | 270 | |
271 | - public function registerCalendarReminders(NotificationProviderManager $manager, |
|
272 | - LoggerInterface $logger): void { |
|
273 | - try { |
|
274 | - $manager->registerProvider(AudioProvider::class); |
|
275 | - $manager->registerProvider(EmailProvider::class); |
|
276 | - $manager->registerProvider(PushProvider::class); |
|
277 | - } catch (Throwable $ex) { |
|
278 | - $logger->error($ex->getMessage(), ['exception' => $ex]); |
|
279 | - } |
|
280 | - } |
|
271 | + public function registerCalendarReminders(NotificationProviderManager $manager, |
|
272 | + LoggerInterface $logger): void { |
|
273 | + try { |
|
274 | + $manager->registerProvider(AudioProvider::class); |
|
275 | + $manager->registerProvider(EmailProvider::class); |
|
276 | + $manager->registerProvider(PushProvider::class); |
|
277 | + } catch (Throwable $ex) { |
|
278 | + $logger->error($ex->getMessage(), ['exception' => $ex]); |
|
279 | + } |
|
280 | + } |
|
281 | 281 | } |
@@ -110,7 +110,7 @@ discard block |
||
110 | 110 | |
111 | 111 | public function register(IRegistrationContext $context): void { |
112 | 112 | $context->registerServiceAlias('CardDAVSyncService', SyncService::class); |
113 | - $context->registerService(AppCalendarPlugin::class, function (ContainerInterface $c) { |
|
113 | + $context->registerService(AppCalendarPlugin::class, function(ContainerInterface $c) { |
|
114 | 114 | return new AppCalendarPlugin( |
115 | 115 | $c->get(ICalendarManager::class), |
116 | 116 | $c->get(LoggerInterface::class) |
@@ -225,7 +225,7 @@ discard block |
||
225 | 225 | } |
226 | 226 | |
227 | 227 | public function registerContactsManager(IContactsManager $cm, IAppContainer $container): void { |
228 | - $cm->register(function () use ($container, $cm): void { |
|
228 | + $cm->register(function() use ($container, $cm): void { |
|
229 | 229 | $user = Server::get(IUserSession::class)->getUser(); |
230 | 230 | if (!is_null($user)) { |
231 | 231 | $this->setupContactsProvider($cm, $container, $user->getUID()); |
@@ -253,7 +253,7 @@ discard block |
||
253 | 253 | |
254 | 254 | public function registerCalendarManager(ICalendarManager $calendarManager, |
255 | 255 | IAppContainer $container): void { |
256 | - $calendarManager->register(function () use ($container, $calendarManager): void { |
|
256 | + $calendarManager->register(function() use ($container, $calendarManager): void { |
|
257 | 257 | $user = Server::get(IUserSession::class)->getUser(); |
258 | 258 | if ($user !== null) { |
259 | 259 | $this->setupCalendarProvider($calendarManager, $container, $user->getUID()); |
@@ -72,212 +72,212 @@ |
||
72 | 72 | use Throwable; |
73 | 73 | |
74 | 74 | class Repair implements IOutput { |
75 | - /** @var IRepairStep[] */ |
|
76 | - private array $repairSteps = []; |
|
75 | + /** @var IRepairStep[] */ |
|
76 | + private array $repairSteps = []; |
|
77 | 77 | |
78 | - private string $currentStep; |
|
78 | + private string $currentStep; |
|
79 | 79 | |
80 | - public function __construct( |
|
81 | - private IEventDispatcher $dispatcher, |
|
82 | - private LoggerInterface $logger, |
|
83 | - ) { |
|
84 | - } |
|
80 | + public function __construct( |
|
81 | + private IEventDispatcher $dispatcher, |
|
82 | + private LoggerInterface $logger, |
|
83 | + ) { |
|
84 | + } |
|
85 | 85 | |
86 | - /** @param IRepairStep[] $repairSteps */ |
|
87 | - public function setRepairSteps(array $repairSteps): void { |
|
88 | - $this->repairSteps = $repairSteps; |
|
89 | - } |
|
86 | + /** @param IRepairStep[] $repairSteps */ |
|
87 | + public function setRepairSteps(array $repairSteps): void { |
|
88 | + $this->repairSteps = $repairSteps; |
|
89 | + } |
|
90 | 90 | |
91 | - /** |
|
92 | - * Run a series of repair steps for common problems |
|
93 | - */ |
|
94 | - public function run() { |
|
95 | - if (count($this->repairSteps) === 0) { |
|
96 | - $this->dispatcher->dispatchTyped(new RepairInfoEvent('No repair steps available')); |
|
91 | + /** |
|
92 | + * Run a series of repair steps for common problems |
|
93 | + */ |
|
94 | + public function run() { |
|
95 | + if (count($this->repairSteps) === 0) { |
|
96 | + $this->dispatcher->dispatchTyped(new RepairInfoEvent('No repair steps available')); |
|
97 | 97 | |
98 | - return; |
|
99 | - } |
|
100 | - // run each repair step |
|
101 | - foreach ($this->repairSteps as $step) { |
|
102 | - $this->currentStep = $step->getName(); |
|
103 | - $this->dispatcher->dispatchTyped(new RepairStepEvent($this->currentStep)); |
|
104 | - try { |
|
105 | - $step->run($this); |
|
106 | - } catch (\Exception $e) { |
|
107 | - $this->logger->error('Exception while executing repair step ' . $step->getName(), ['exception' => $e]); |
|
108 | - $this->dispatcher->dispatchTyped(new RepairErrorEvent($e->getMessage())); |
|
109 | - } |
|
110 | - } |
|
98 | + return; |
|
99 | + } |
|
100 | + // run each repair step |
|
101 | + foreach ($this->repairSteps as $step) { |
|
102 | + $this->currentStep = $step->getName(); |
|
103 | + $this->dispatcher->dispatchTyped(new RepairStepEvent($this->currentStep)); |
|
104 | + try { |
|
105 | + $step->run($this); |
|
106 | + } catch (\Exception $e) { |
|
107 | + $this->logger->error('Exception while executing repair step ' . $step->getName(), ['exception' => $e]); |
|
108 | + $this->dispatcher->dispatchTyped(new RepairErrorEvent($e->getMessage())); |
|
109 | + } |
|
110 | + } |
|
111 | 111 | |
112 | - $this->repairSteps = []; |
|
113 | - } |
|
112 | + $this->repairSteps = []; |
|
113 | + } |
|
114 | 114 | |
115 | - /** |
|
116 | - * Add repair step |
|
117 | - * |
|
118 | - * @param IRepairStep|string $repairStep repair step |
|
119 | - * @throws \Exception |
|
120 | - */ |
|
121 | - public function addStep($repairStep) { |
|
122 | - if (is_string($repairStep)) { |
|
123 | - try { |
|
124 | - $s = \OC::$server->get($repairStep); |
|
125 | - } catch (QueryException $e) { |
|
126 | - if (class_exists($repairStep)) { |
|
127 | - try { |
|
128 | - // Last resort: hope there are no constructor arguments |
|
129 | - $s = new $repairStep(); |
|
130 | - } catch (Throwable $inner) { |
|
131 | - // Well, it was worth a try |
|
132 | - throw new \Exception("Repair step '$repairStep' can't be instantiated: " . $e->getMessage(), 0, $e); |
|
133 | - } |
|
134 | - } else { |
|
135 | - throw new \Exception("Repair step '$repairStep' is unknown", 0, $e); |
|
136 | - } |
|
137 | - } |
|
115 | + /** |
|
116 | + * Add repair step |
|
117 | + * |
|
118 | + * @param IRepairStep|string $repairStep repair step |
|
119 | + * @throws \Exception |
|
120 | + */ |
|
121 | + public function addStep($repairStep) { |
|
122 | + if (is_string($repairStep)) { |
|
123 | + try { |
|
124 | + $s = \OC::$server->get($repairStep); |
|
125 | + } catch (QueryException $e) { |
|
126 | + if (class_exists($repairStep)) { |
|
127 | + try { |
|
128 | + // Last resort: hope there are no constructor arguments |
|
129 | + $s = new $repairStep(); |
|
130 | + } catch (Throwable $inner) { |
|
131 | + // Well, it was worth a try |
|
132 | + throw new \Exception("Repair step '$repairStep' can't be instantiated: " . $e->getMessage(), 0, $e); |
|
133 | + } |
|
134 | + } else { |
|
135 | + throw new \Exception("Repair step '$repairStep' is unknown", 0, $e); |
|
136 | + } |
|
137 | + } |
|
138 | 138 | |
139 | - if ($s instanceof IRepairStep) { |
|
140 | - $this->repairSteps[] = $s; |
|
141 | - } else { |
|
142 | - throw new \Exception("Repair step '$repairStep' is not of type \\OCP\\Migration\\IRepairStep"); |
|
143 | - } |
|
144 | - } else { |
|
145 | - $this->repairSteps[] = $repairStep; |
|
146 | - } |
|
147 | - } |
|
139 | + if ($s instanceof IRepairStep) { |
|
140 | + $this->repairSteps[] = $s; |
|
141 | + } else { |
|
142 | + throw new \Exception("Repair step '$repairStep' is not of type \\OCP\\Migration\\IRepairStep"); |
|
143 | + } |
|
144 | + } else { |
|
145 | + $this->repairSteps[] = $repairStep; |
|
146 | + } |
|
147 | + } |
|
148 | 148 | |
149 | - /** |
|
150 | - * Returns the default repair steps to be run on the |
|
151 | - * command line or after an upgrade. |
|
152 | - * |
|
153 | - * @return IRepairStep[] |
|
154 | - */ |
|
155 | - public static function getRepairSteps(): array { |
|
156 | - return [ |
|
157 | - new Collation(\OC::$server->getConfig(), \OC::$server->get(LoggerInterface::class), \OC::$server->getDatabaseConnection(), false), |
|
158 | - new CleanTags(\OC::$server->getDatabaseConnection(), \OC::$server->getUserManager()), |
|
159 | - new RepairInvalidShares(\OC::$server->getConfig(), \OC::$server->getDatabaseConnection()), |
|
160 | - new MoveUpdaterStepFile(\OC::$server->getConfig()), |
|
161 | - new MoveAvatars( |
|
162 | - \OC::$server->getJobList(), |
|
163 | - \OC::$server->getConfig() |
|
164 | - ), |
|
165 | - new CleanPreviews( |
|
166 | - \OC::$server->getJobList(), |
|
167 | - \OC::$server->getUserManager(), |
|
168 | - \OC::$server->getConfig() |
|
169 | - ), |
|
170 | - \OC::$server->get(MigrateOauthTables::class), |
|
171 | - new UpdateLanguageCodes(\OC::$server->getDatabaseConnection(), \OC::$server->getConfig()), |
|
172 | - new AddLogRotateJob(\OC::$server->getJobList()), |
|
173 | - new ClearFrontendCaches(\OC::$server->getMemCacheFactory(), \OCP\Server::get(JSCombiner::class)), |
|
174 | - \OCP\Server::get(ClearGeneratedAvatarCache::class), |
|
175 | - new AddPreviewBackgroundCleanupJob(\OC::$server->getJobList()), |
|
176 | - new AddCleanupUpdaterBackupsJob(\OC::$server->getJobList()), |
|
177 | - new CleanupCardDAVPhotoCache(\OC::$server->getConfig(), \OCP\Server::get(IAppDataFactory::class), \OC::$server->get(LoggerInterface::class)), |
|
178 | - new AddClenupLoginFlowV2BackgroundJob(\OC::$server->getJobList()), |
|
179 | - new RemoveLinkShares(\OC::$server->getDatabaseConnection(), \OC::$server->getConfig(), \OC::$server->getGroupManager(), \OC::$server->get(INotificationManager::class), \OCP\Server::get(ITimeFactory::class)), |
|
180 | - new ClearCollectionsAccessCache(\OC::$server->getConfig(), \OCP\Server::get(IManager::class)), |
|
181 | - \OCP\Server::get(ResetGeneratedAvatarFlag::class), |
|
182 | - \OCP\Server::get(EncryptionLegacyCipher::class), |
|
183 | - \OCP\Server::get(EncryptionMigration::class), |
|
184 | - \OCP\Server::get(ShippedDashboardEnable::class), |
|
185 | - \OCP\Server::get(AddBruteForceCleanupJob::class), |
|
186 | - \OCP\Server::get(AddCheckForUserCertificatesJob::class), |
|
187 | - \OCP\Server::get(RepairDavShares::class), |
|
188 | - \OCP\Server::get(LookupServerSendCheck::class), |
|
189 | - \OCP\Server::get(AddTokenCleanupJob::class), |
|
190 | - \OCP\Server::get(CleanUpAbandonedApps::class), |
|
191 | - \OCP\Server::get(AddMissingSecretJob::class), |
|
192 | - \OCP\Server::get(AddRemoveOldTasksBackgroundJob::class), |
|
193 | - \OCP\Server::get(AddMetadataGenerationJob::class), |
|
194 | - \OCP\Server::get(AddAppConfigLazyMigration::class), |
|
195 | - \OCP\Server::get(RepairLogoDimension::class), |
|
196 | - \OCP\Server::get(RemoveLegacyDatadirFile::class), |
|
197 | - \OCP\Server::get(AddCleanupDeletedUsersBackgroundJob::class), |
|
198 | - \OCP\Server::get(SanitizeAccountProperties::class), |
|
199 | - ]; |
|
200 | - } |
|
149 | + /** |
|
150 | + * Returns the default repair steps to be run on the |
|
151 | + * command line or after an upgrade. |
|
152 | + * |
|
153 | + * @return IRepairStep[] |
|
154 | + */ |
|
155 | + public static function getRepairSteps(): array { |
|
156 | + return [ |
|
157 | + new Collation(\OC::$server->getConfig(), \OC::$server->get(LoggerInterface::class), \OC::$server->getDatabaseConnection(), false), |
|
158 | + new CleanTags(\OC::$server->getDatabaseConnection(), \OC::$server->getUserManager()), |
|
159 | + new RepairInvalidShares(\OC::$server->getConfig(), \OC::$server->getDatabaseConnection()), |
|
160 | + new MoveUpdaterStepFile(\OC::$server->getConfig()), |
|
161 | + new MoveAvatars( |
|
162 | + \OC::$server->getJobList(), |
|
163 | + \OC::$server->getConfig() |
|
164 | + ), |
|
165 | + new CleanPreviews( |
|
166 | + \OC::$server->getJobList(), |
|
167 | + \OC::$server->getUserManager(), |
|
168 | + \OC::$server->getConfig() |
|
169 | + ), |
|
170 | + \OC::$server->get(MigrateOauthTables::class), |
|
171 | + new UpdateLanguageCodes(\OC::$server->getDatabaseConnection(), \OC::$server->getConfig()), |
|
172 | + new AddLogRotateJob(\OC::$server->getJobList()), |
|
173 | + new ClearFrontendCaches(\OC::$server->getMemCacheFactory(), \OCP\Server::get(JSCombiner::class)), |
|
174 | + \OCP\Server::get(ClearGeneratedAvatarCache::class), |
|
175 | + new AddPreviewBackgroundCleanupJob(\OC::$server->getJobList()), |
|
176 | + new AddCleanupUpdaterBackupsJob(\OC::$server->getJobList()), |
|
177 | + new CleanupCardDAVPhotoCache(\OC::$server->getConfig(), \OCP\Server::get(IAppDataFactory::class), \OC::$server->get(LoggerInterface::class)), |
|
178 | + new AddClenupLoginFlowV2BackgroundJob(\OC::$server->getJobList()), |
|
179 | + new RemoveLinkShares(\OC::$server->getDatabaseConnection(), \OC::$server->getConfig(), \OC::$server->getGroupManager(), \OC::$server->get(INotificationManager::class), \OCP\Server::get(ITimeFactory::class)), |
|
180 | + new ClearCollectionsAccessCache(\OC::$server->getConfig(), \OCP\Server::get(IManager::class)), |
|
181 | + \OCP\Server::get(ResetGeneratedAvatarFlag::class), |
|
182 | + \OCP\Server::get(EncryptionLegacyCipher::class), |
|
183 | + \OCP\Server::get(EncryptionMigration::class), |
|
184 | + \OCP\Server::get(ShippedDashboardEnable::class), |
|
185 | + \OCP\Server::get(AddBruteForceCleanupJob::class), |
|
186 | + \OCP\Server::get(AddCheckForUserCertificatesJob::class), |
|
187 | + \OCP\Server::get(RepairDavShares::class), |
|
188 | + \OCP\Server::get(LookupServerSendCheck::class), |
|
189 | + \OCP\Server::get(AddTokenCleanupJob::class), |
|
190 | + \OCP\Server::get(CleanUpAbandonedApps::class), |
|
191 | + \OCP\Server::get(AddMissingSecretJob::class), |
|
192 | + \OCP\Server::get(AddRemoveOldTasksBackgroundJob::class), |
|
193 | + \OCP\Server::get(AddMetadataGenerationJob::class), |
|
194 | + \OCP\Server::get(AddAppConfigLazyMigration::class), |
|
195 | + \OCP\Server::get(RepairLogoDimension::class), |
|
196 | + \OCP\Server::get(RemoveLegacyDatadirFile::class), |
|
197 | + \OCP\Server::get(AddCleanupDeletedUsersBackgroundJob::class), |
|
198 | + \OCP\Server::get(SanitizeAccountProperties::class), |
|
199 | + ]; |
|
200 | + } |
|
201 | 201 | |
202 | - /** |
|
203 | - * Returns expensive repair steps to be run on the |
|
204 | - * command line with a special option. |
|
205 | - * |
|
206 | - * @return IRepairStep[] |
|
207 | - */ |
|
208 | - public static function getExpensiveRepairSteps() { |
|
209 | - return [ |
|
210 | - new OldGroupMembershipShares(\OC::$server->getDatabaseConnection(), \OC::$server->getGroupManager()), |
|
211 | - new RemoveBrokenProperties(\OCP\Server::get(IDBConnection::class)), |
|
212 | - new RepairMimeTypes( |
|
213 | - \OCP\Server::get(IConfig::class), |
|
214 | - \OCP\Server::get(IAppConfig::class), |
|
215 | - \OCP\Server::get(IDBConnection::class) |
|
216 | - ), |
|
217 | - \OCP\Server::get(DeleteSchedulingObjects::class), |
|
218 | - ]; |
|
219 | - } |
|
202 | + /** |
|
203 | + * Returns expensive repair steps to be run on the |
|
204 | + * command line with a special option. |
|
205 | + * |
|
206 | + * @return IRepairStep[] |
|
207 | + */ |
|
208 | + public static function getExpensiveRepairSteps() { |
|
209 | + return [ |
|
210 | + new OldGroupMembershipShares(\OC::$server->getDatabaseConnection(), \OC::$server->getGroupManager()), |
|
211 | + new RemoveBrokenProperties(\OCP\Server::get(IDBConnection::class)), |
|
212 | + new RepairMimeTypes( |
|
213 | + \OCP\Server::get(IConfig::class), |
|
214 | + \OCP\Server::get(IAppConfig::class), |
|
215 | + \OCP\Server::get(IDBConnection::class) |
|
216 | + ), |
|
217 | + \OCP\Server::get(DeleteSchedulingObjects::class), |
|
218 | + ]; |
|
219 | + } |
|
220 | 220 | |
221 | - /** |
|
222 | - * Returns the repair steps to be run before an |
|
223 | - * upgrade. |
|
224 | - * |
|
225 | - * @return IRepairStep[] |
|
226 | - */ |
|
227 | - public static function getBeforeUpgradeRepairSteps() { |
|
228 | - /** @var ConnectionAdapter $connectionAdapter */ |
|
229 | - $connectionAdapter = \OC::$server->get(ConnectionAdapter::class); |
|
230 | - $config = \OC::$server->getConfig(); |
|
231 | - $steps = [ |
|
232 | - new Collation(\OC::$server->getConfig(), \OC::$server->get(LoggerInterface::class), $connectionAdapter, true), |
|
233 | - new SaveAccountsTableData($connectionAdapter, $config), |
|
234 | - new DropAccountTermsTable($connectionAdapter), |
|
235 | - ]; |
|
221 | + /** |
|
222 | + * Returns the repair steps to be run before an |
|
223 | + * upgrade. |
|
224 | + * |
|
225 | + * @return IRepairStep[] |
|
226 | + */ |
|
227 | + public static function getBeforeUpgradeRepairSteps() { |
|
228 | + /** @var ConnectionAdapter $connectionAdapter */ |
|
229 | + $connectionAdapter = \OC::$server->get(ConnectionAdapter::class); |
|
230 | + $config = \OC::$server->getConfig(); |
|
231 | + $steps = [ |
|
232 | + new Collation(\OC::$server->getConfig(), \OC::$server->get(LoggerInterface::class), $connectionAdapter, true), |
|
233 | + new SaveAccountsTableData($connectionAdapter, $config), |
|
234 | + new DropAccountTermsTable($connectionAdapter), |
|
235 | + ]; |
|
236 | 236 | |
237 | - return $steps; |
|
238 | - } |
|
237 | + return $steps; |
|
238 | + } |
|
239 | 239 | |
240 | - public function debug(string $message): void { |
|
241 | - } |
|
240 | + public function debug(string $message): void { |
|
241 | + } |
|
242 | 242 | |
243 | - /** |
|
244 | - * @param string $message |
|
245 | - */ |
|
246 | - public function info($message) { |
|
247 | - // for now just emit as we did in the past |
|
248 | - $this->dispatcher->dispatchTyped(new RepairInfoEvent($message)); |
|
249 | - } |
|
243 | + /** |
|
244 | + * @param string $message |
|
245 | + */ |
|
246 | + public function info($message) { |
|
247 | + // for now just emit as we did in the past |
|
248 | + $this->dispatcher->dispatchTyped(new RepairInfoEvent($message)); |
|
249 | + } |
|
250 | 250 | |
251 | - /** |
|
252 | - * @param string $message |
|
253 | - */ |
|
254 | - public function warning($message) { |
|
255 | - // for now just emit as we did in the past |
|
256 | - $this->dispatcher->dispatchTyped(new RepairWarningEvent($message)); |
|
257 | - } |
|
251 | + /** |
|
252 | + * @param string $message |
|
253 | + */ |
|
254 | + public function warning($message) { |
|
255 | + // for now just emit as we did in the past |
|
256 | + $this->dispatcher->dispatchTyped(new RepairWarningEvent($message)); |
|
257 | + } |
|
258 | 258 | |
259 | - /** |
|
260 | - * @param int $max |
|
261 | - */ |
|
262 | - public function startProgress($max = 0) { |
|
263 | - // for now just emit as we did in the past |
|
264 | - $this->dispatcher->dispatchTyped(new RepairStartEvent($max, $this->currentStep)); |
|
265 | - } |
|
259 | + /** |
|
260 | + * @param int $max |
|
261 | + */ |
|
262 | + public function startProgress($max = 0) { |
|
263 | + // for now just emit as we did in the past |
|
264 | + $this->dispatcher->dispatchTyped(new RepairStartEvent($max, $this->currentStep)); |
|
265 | + } |
|
266 | 266 | |
267 | - /** |
|
268 | - * @param int $step number of step to advance |
|
269 | - * @param string $description |
|
270 | - */ |
|
271 | - public function advance($step = 1, $description = '') { |
|
272 | - // for now just emit as we did in the past |
|
273 | - $this->dispatcher->dispatchTyped(new RepairAdvanceEvent($step, $description)); |
|
274 | - } |
|
267 | + /** |
|
268 | + * @param int $step number of step to advance |
|
269 | + * @param string $description |
|
270 | + */ |
|
271 | + public function advance($step = 1, $description = '') { |
|
272 | + // for now just emit as we did in the past |
|
273 | + $this->dispatcher->dispatchTyped(new RepairAdvanceEvent($step, $description)); |
|
274 | + } |
|
275 | 275 | |
276 | - /** |
|
277 | - * @param int $max |
|
278 | - */ |
|
279 | - public function finishProgress() { |
|
280 | - // for now just emit as we did in the past |
|
281 | - $this->dispatcher->dispatchTyped(new RepairFinishEvent()); |
|
282 | - } |
|
276 | + /** |
|
277 | + * @param int $max |
|
278 | + */ |
|
279 | + public function finishProgress() { |
|
280 | + // for now just emit as we did in the past |
|
281 | + $this->dispatcher->dispatchTyped(new RepairFinishEvent()); |
|
282 | + } |
|
283 | 283 | } |
@@ -28,61 +28,61 @@ |
||
28 | 28 | * photo could be returned for this vcard. These invalid files are removed by this migration step. |
29 | 29 | */ |
30 | 30 | class CleanupCardDAVPhotoCache implements IRepairStep { |
31 | - public function __construct( |
|
32 | - private IConfig $config, |
|
33 | - private IAppDataFactory $appDataFactory, |
|
34 | - private LoggerInterface $logger, |
|
35 | - ) { |
|
36 | - } |
|
31 | + public function __construct( |
|
32 | + private IConfig $config, |
|
33 | + private IAppDataFactory $appDataFactory, |
|
34 | + private LoggerInterface $logger, |
|
35 | + ) { |
|
36 | + } |
|
37 | 37 | |
38 | - public function getName(): string { |
|
39 | - return 'Cleanup invalid photocache files for carddav'; |
|
40 | - } |
|
38 | + public function getName(): string { |
|
39 | + return 'Cleanup invalid photocache files for carddav'; |
|
40 | + } |
|
41 | 41 | |
42 | - private function repair(IOutput $output): void { |
|
43 | - $photoCacheAppData = $this->appDataFactory->get('dav-photocache'); |
|
42 | + private function repair(IOutput $output): void { |
|
43 | + $photoCacheAppData = $this->appDataFactory->get('dav-photocache'); |
|
44 | 44 | |
45 | - try { |
|
46 | - $folders = $photoCacheAppData->getDirectoryListing(); |
|
47 | - } catch (NotFoundException $e) { |
|
48 | - return; |
|
49 | - } catch (RuntimeException $e) { |
|
50 | - $this->logger->error('Failed to fetch directory listing in CleanupCardDAVPhotoCache', ['exception' => $e]); |
|
51 | - return; |
|
52 | - } |
|
45 | + try { |
|
46 | + $folders = $photoCacheAppData->getDirectoryListing(); |
|
47 | + } catch (NotFoundException $e) { |
|
48 | + return; |
|
49 | + } catch (RuntimeException $e) { |
|
50 | + $this->logger->error('Failed to fetch directory listing in CleanupCardDAVPhotoCache', ['exception' => $e]); |
|
51 | + return; |
|
52 | + } |
|
53 | 53 | |
54 | - $folders = array_filter($folders, function (ISimpleFolder $folder) { |
|
55 | - return $folder->fileExists('photo.'); |
|
56 | - }); |
|
54 | + $folders = array_filter($folders, function (ISimpleFolder $folder) { |
|
55 | + return $folder->fileExists('photo.'); |
|
56 | + }); |
|
57 | 57 | |
58 | - if (empty($folders)) { |
|
59 | - return; |
|
60 | - } |
|
58 | + if (empty($folders)) { |
|
59 | + return; |
|
60 | + } |
|
61 | 61 | |
62 | - $output->info('Delete ' . count($folders) . ' "photo." files'); |
|
62 | + $output->info('Delete ' . count($folders) . ' "photo." files'); |
|
63 | 63 | |
64 | - foreach ($folders as $folder) { |
|
65 | - try { |
|
66 | - /** @var ISimpleFolder $folder */ |
|
67 | - $folder->getFile('photo.')->delete(); |
|
68 | - } catch (\Exception $e) { |
|
69 | - $this->logger->error($e->getMessage(), ['exception' => $e]); |
|
70 | - $output->warning('Could not delete file "dav-photocache/' . $folder->getName() . '/photo."'); |
|
71 | - } |
|
72 | - } |
|
73 | - } |
|
64 | + foreach ($folders as $folder) { |
|
65 | + try { |
|
66 | + /** @var ISimpleFolder $folder */ |
|
67 | + $folder->getFile('photo.')->delete(); |
|
68 | + } catch (\Exception $e) { |
|
69 | + $this->logger->error($e->getMessage(), ['exception' => $e]); |
|
70 | + $output->warning('Could not delete file "dav-photocache/' . $folder->getName() . '/photo."'); |
|
71 | + } |
|
72 | + } |
|
73 | + } |
|
74 | 74 | |
75 | - private function shouldRun(): bool { |
|
76 | - return version_compare( |
|
77 | - $this->config->getSystemValueString('version', '0.0.0.0'), |
|
78 | - '16.0.0.0', |
|
79 | - '<=' |
|
80 | - ); |
|
81 | - } |
|
75 | + private function shouldRun(): bool { |
|
76 | + return version_compare( |
|
77 | + $this->config->getSystemValueString('version', '0.0.0.0'), |
|
78 | + '16.0.0.0', |
|
79 | + '<=' |
|
80 | + ); |
|
81 | + } |
|
82 | 82 | |
83 | - public function run(IOutput $output): void { |
|
84 | - if ($this->shouldRun()) { |
|
85 | - $this->repair($output); |
|
86 | - } |
|
87 | - } |
|
83 | + public function run(IOutput $output): void { |
|
84 | + if ($this->shouldRun()) { |
|
85 | + $this->repair($output); |
|
86 | + } |
|
87 | + } |
|
88 | 88 | } |