You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Application.php 8.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2016, ownCloud, Inc.
  4. * @copyright Copyright (c) 2016 Joas Schilling <coding@schilljs.com>
  5. *
  6. * @author Christoph Wurst <christoph@winzerhof-wurst.at>
  7. * @author Joas Schilling <coding@schilljs.com>
  8. * @author John Molakvoæ <skjnldsv@protonmail.com>
  9. * @author Julius Härtl <jus@bitgrid.net>
  10. * @author Lukas Reschke <lukas@statuscode.ch>
  11. * @author Mario Danic <mario@lovelyhq.com>
  12. * @author Morris Jobke <hey@morrisjobke.de>
  13. * @author Robin Appelman <robin@icewind.nl>
  14. * @author Roeland Jago Douma <roeland@famdouma.nl>
  15. * @author Thomas Citharel <nextcloud@tcit.fr>
  16. * @author Victor Dubiniuk <dubiniuk@owncloud.com>
  17. *
  18. * @license AGPL-3.0
  19. *
  20. * This code is free software: you can redistribute it and/or modify
  21. * it under the terms of the GNU Affero General Public License, version 3,
  22. * as published by the Free Software Foundation.
  23. *
  24. * This program is distributed in the hope that it will be useful,
  25. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  26. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  27. * GNU Affero General Public License for more details.
  28. *
  29. * You should have received a copy of the GNU Affero General Public License, version 3,
  30. * along with this program. If not, see <http://www.gnu.org/licenses/>
  31. *
  32. */
  33. namespace OC\Core;
  34. use OC\Authentication\Events\RemoteWipeFinished;
  35. use OC\Authentication\Events\RemoteWipeStarted;
  36. use OC\Authentication\Listeners\RemoteWipeActivityListener;
  37. use OC\Authentication\Listeners\RemoteWipeEmailListener;
  38. use OC\Authentication\Listeners\RemoteWipeNotificationsListener;
  39. use OC\Authentication\Listeners\UserDeletedFilesCleanupListener;
  40. use OC\Authentication\Listeners\UserDeletedStoreCleanupListener;
  41. use OC\Authentication\Listeners\UserDeletedTokenCleanupListener;
  42. use OC\Authentication\Listeners\UserDeletedWebAuthnCleanupListener;
  43. use OC\Authentication\Notifications\Notifier as AuthenticationNotifier;
  44. use OC\Core\Listener\BeforeTemplateRenderedListener;
  45. use OC\Core\Notification\CoreNotifier;
  46. use OC\TagManager;
  47. use OCP\AppFramework\App;
  48. use OCP\AppFramework\Http\Events\BeforeLoginTemplateRenderedEvent;
  49. use OCP\AppFramework\Http\Events\BeforeTemplateRenderedEvent;
  50. use OCP\DB\Events\AddMissingIndicesEvent;
  51. use OCP\DB\Events\AddMissingPrimaryKeyEvent;
  52. use OCP\EventDispatcher\IEventDispatcher;
  53. use OCP\User\Events\BeforeUserDeletedEvent;
  54. use OCP\User\Events\UserDeletedEvent;
  55. use OCP\Util;
  56. /**
  57. * Class Application
  58. *
  59. * @package OC\Core
  60. */
  61. class Application extends App {
  62. public function __construct() {
  63. parent::__construct('core');
  64. $container = $this->getContainer();
  65. $container->registerService('defaultMailAddress', function () {
  66. return Util::getDefaultEmailAddress('lostpassword-noreply');
  67. });
  68. $server = $container->getServer();
  69. /** @var IEventDispatcher $eventDispatcher */
  70. $eventDispatcher = $server->get(IEventDispatcher::class);
  71. $notificationManager = $server->getNotificationManager();
  72. $notificationManager->registerNotifierService(CoreNotifier::class);
  73. $notificationManager->registerNotifierService(AuthenticationNotifier::class);
  74. $eventDispatcher->addListener(AddMissingIndicesEvent::class, function (AddMissingIndicesEvent $event) {
  75. $event->addMissingIndex(
  76. 'share',
  77. 'share_with_index',
  78. ['share_with']
  79. );
  80. $event->addMissingIndex(
  81. 'share',
  82. 'parent_index',
  83. ['parent']
  84. );
  85. $event->addMissingIndex(
  86. 'share',
  87. 'owner_index',
  88. ['uid_owner']
  89. );
  90. $event->addMissingIndex(
  91. 'share',
  92. 'initiator_index',
  93. ['uid_initiator']
  94. );
  95. $event->addMissingIndex(
  96. 'filecache',
  97. 'fs_mtime',
  98. ['mtime']
  99. );
  100. $event->addMissingIndex(
  101. 'filecache',
  102. 'fs_size',
  103. ['size']
  104. );
  105. $event->addMissingIndex(
  106. 'filecache',
  107. 'fs_id_storage_size',
  108. ['fileid', 'storage', 'size']
  109. );
  110. $event->addMissingIndex(
  111. 'filecache',
  112. 'fs_storage_path_prefix',
  113. ['storage', 'path'],
  114. ['lengths' => [null, 64]]
  115. );
  116. $event->addMissingIndex(
  117. 'filecache',
  118. 'fs_parent',
  119. ['parent']
  120. );
  121. $event->addMissingIndex(
  122. 'filecache',
  123. 'fs_name_hash',
  124. ['name']
  125. );
  126. $event->addMissingIndex(
  127. 'twofactor_providers',
  128. 'twofactor_providers_uid',
  129. ['uid']
  130. );
  131. $event->addMissingUniqueIndex(
  132. 'login_flow_v2',
  133. 'poll_token',
  134. ['poll_token'],
  135. [],
  136. true
  137. );
  138. $event->addMissingUniqueIndex(
  139. 'login_flow_v2',
  140. 'login_token',
  141. ['login_token'],
  142. [],
  143. true
  144. );
  145. $event->addMissingIndex(
  146. 'login_flow_v2',
  147. 'timestamp',
  148. ['timestamp'],
  149. [],
  150. true
  151. );
  152. $event->addMissingIndex(
  153. 'whats_new',
  154. 'version',
  155. ['version'],
  156. [],
  157. true
  158. );
  159. $event->addMissingIndex(
  160. 'cards',
  161. 'cards_abiduri',
  162. ['addressbookid', 'uri'],
  163. [],
  164. true
  165. );
  166. $event->addMissingIndex(
  167. 'cards_properties',
  168. 'cards_prop_abid',
  169. ['addressbookid'],
  170. [],
  171. true
  172. );
  173. $event->addMissingIndex(
  174. 'calendarobjects_props',
  175. 'calendarobject_calid_index',
  176. ['calendarid', 'calendartype']
  177. );
  178. $event->addMissingIndex(
  179. 'schedulingobjects',
  180. 'schedulobj_principuri_index',
  181. ['principaluri']
  182. );
  183. $event->addMissingIndex(
  184. 'properties',
  185. 'properties_path_index',
  186. ['userid', 'propertypath']
  187. );
  188. $event->addMissingIndex(
  189. 'properties',
  190. 'properties_pathonly_index',
  191. ['propertypath']
  192. );
  193. $event->addMissingIndex(
  194. 'jobs',
  195. 'job_lastcheck_reserved',
  196. ['last_checked', 'reserved_at']
  197. );
  198. $event->addMissingIndex(
  199. 'direct_edit',
  200. 'direct_edit_timestamp',
  201. ['timestamp']
  202. );
  203. $event->addMissingIndex(
  204. 'preferences',
  205. 'preferences_app_key',
  206. ['appid', 'configkey']
  207. );
  208. $event->addMissingIndex(
  209. 'mounts',
  210. 'mounts_class_index',
  211. ['mount_provider_class']
  212. );
  213. $event->addMissingIndex(
  214. 'mounts',
  215. 'mounts_user_root_path_index',
  216. ['user_id', 'root_id', 'mount_point'],
  217. ['lengths' => [null, null, 128]]
  218. );
  219. $event->addMissingIndex(
  220. 'systemtag_object_mapping',
  221. 'systag_by_tagid',
  222. ['systemtagid', 'objecttype']
  223. );
  224. });
  225. $eventDispatcher->addListener(AddMissingPrimaryKeyEvent::class, function (AddMissingPrimaryKeyEvent $event) {
  226. $event->addMissingPrimaryKey(
  227. 'federated_reshares',
  228. 'federated_res_pk',
  229. ['share_id'],
  230. 'share_id_index'
  231. );
  232. $event->addMissingPrimaryKey(
  233. 'systemtag_object_mapping',
  234. 'som_pk',
  235. ['objecttype', 'objectid', 'systemtagid'],
  236. 'mapping'
  237. );
  238. $event->addMissingPrimaryKey(
  239. 'comments_read_markers',
  240. 'crm_pk',
  241. ['user_id', 'object_type', 'object_id'],
  242. 'comments_marker_index'
  243. );
  244. $event->addMissingPrimaryKey(
  245. 'collres_resources',
  246. 'crr_pk',
  247. ['collection_id', 'resource_type', 'resource_id'],
  248. 'collres_unique_res'
  249. );
  250. $event->addMissingPrimaryKey(
  251. 'collres_accesscache',
  252. 'cra_pk',
  253. ['user_id', 'collection_id', 'resource_type', 'resource_id'],
  254. 'collres_unique_user'
  255. );
  256. $event->addMissingPrimaryKey(
  257. 'filecache_extended',
  258. 'fce_pk',
  259. ['fileid'],
  260. 'fce_fileid_idx'
  261. );
  262. });
  263. $eventDispatcher->addServiceListener(BeforeTemplateRenderedEvent::class, BeforeTemplateRenderedListener::class);
  264. $eventDispatcher->addServiceListener(BeforeLoginTemplateRenderedEvent::class, BeforeTemplateRenderedListener::class);
  265. $eventDispatcher->addServiceListener(RemoteWipeStarted::class, RemoteWipeActivityListener::class);
  266. $eventDispatcher->addServiceListener(RemoteWipeStarted::class, RemoteWipeNotificationsListener::class);
  267. $eventDispatcher->addServiceListener(RemoteWipeStarted::class, RemoteWipeEmailListener::class);
  268. $eventDispatcher->addServiceListener(RemoteWipeFinished::class, RemoteWipeActivityListener::class);
  269. $eventDispatcher->addServiceListener(RemoteWipeFinished::class, RemoteWipeNotificationsListener::class);
  270. $eventDispatcher->addServiceListener(RemoteWipeFinished::class, RemoteWipeEmailListener::class);
  271. $eventDispatcher->addServiceListener(UserDeletedEvent::class, UserDeletedStoreCleanupListener::class);
  272. $eventDispatcher->addServiceListener(UserDeletedEvent::class, UserDeletedTokenCleanupListener::class);
  273. $eventDispatcher->addServiceListener(BeforeUserDeletedEvent::class, UserDeletedFilesCleanupListener::class);
  274. $eventDispatcher->addServiceListener(UserDeletedEvent::class, UserDeletedFilesCleanupListener::class);
  275. $eventDispatcher->addServiceListener(UserDeletedEvent::class, UserDeletedWebAuthnCleanupListener::class);
  276. // Tags
  277. $eventDispatcher->addServiceListener(UserDeletedEvent::class, TagManager::class);
  278. }
  279. }