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.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304
  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. 'twofactor_providers',
  123. 'twofactor_providers_uid',
  124. ['uid']
  125. );
  126. $event->addMissingUniqueIndex(
  127. 'login_flow_v2',
  128. 'poll_token',
  129. ['poll_token'],
  130. [],
  131. true
  132. );
  133. $event->addMissingUniqueIndex(
  134. 'login_flow_v2',
  135. 'login_token',
  136. ['login_token'],
  137. [],
  138. true
  139. );
  140. $event->addMissingIndex(
  141. 'login_flow_v2',
  142. 'timestamp',
  143. ['timestamp'],
  144. [],
  145. true
  146. );
  147. $event->addMissingIndex(
  148. 'whats_new',
  149. 'version',
  150. ['version'],
  151. [],
  152. true
  153. );
  154. $event->addMissingIndex(
  155. 'cards',
  156. 'cards_abiduri',
  157. ['addressbookid', 'uri'],
  158. [],
  159. true
  160. );
  161. $event->addMissingIndex(
  162. 'cards_properties',
  163. 'cards_prop_abid',
  164. ['addressbookid'],
  165. [],
  166. true
  167. );
  168. $event->addMissingIndex(
  169. 'calendarobjects_props',
  170. 'calendarobject_calid_index',
  171. ['calendarid', 'calendartype']
  172. );
  173. $event->addMissingIndex(
  174. 'schedulingobjects',
  175. 'schedulobj_principuri_index',
  176. ['principaluri']
  177. );
  178. $event->addMissingIndex(
  179. 'properties',
  180. 'properties_path_index',
  181. ['userid', 'propertypath']
  182. );
  183. $event->addMissingIndex(
  184. 'properties',
  185. 'properties_pathonly_index',
  186. ['propertypath']
  187. );
  188. $event->addMissingIndex(
  189. 'jobs',
  190. 'job_lastcheck_reserved',
  191. ['last_checked', 'reserved_at']
  192. );
  193. $event->addMissingIndex(
  194. 'direct_edit',
  195. 'direct_edit_timestamp',
  196. ['timestamp']
  197. );
  198. $event->addMissingIndex(
  199. 'preferences',
  200. 'preferences_app_key',
  201. ['appid', 'configkey']
  202. );
  203. $event->addMissingIndex(
  204. 'mounts',
  205. 'mounts_class_index',
  206. ['mount_provider_class']
  207. );
  208. $event->addMissingIndex(
  209. 'mounts',
  210. 'mounts_user_root_path_index',
  211. ['user_id', 'root_id', 'mount_point'],
  212. ['lengths' => [null, null, 128]]
  213. );
  214. $event->addMissingIndex(
  215. 'systemtag_object_mapping',
  216. 'systag_by_tagid',
  217. ['systemtagid', 'objecttype']
  218. );
  219. });
  220. $eventDispatcher->addListener(AddMissingPrimaryKeyEvent::class, function (AddMissingPrimaryKeyEvent $event) {
  221. $event->addMissingPrimaryKey(
  222. 'federated_reshares',
  223. 'federated_res_pk',
  224. ['share_id'],
  225. 'share_id_index'
  226. );
  227. $event->addMissingPrimaryKey(
  228. 'systemtag_object_mapping',
  229. 'som_pk',
  230. ['objecttype', 'objectid', 'systemtagid'],
  231. 'mapping'
  232. );
  233. $event->addMissingPrimaryKey(
  234. 'comments_read_markers',
  235. 'crm_pk',
  236. ['user_id', 'object_type', 'object_id'],
  237. 'comments_marker_index'
  238. );
  239. $event->addMissingPrimaryKey(
  240. 'collres_resources',
  241. 'crr_pk',
  242. ['collection_id', 'resource_type', 'resource_id'],
  243. 'collres_unique_res'
  244. );
  245. $event->addMissingPrimaryKey(
  246. 'collres_accesscache',
  247. 'cra_pk',
  248. ['user_id', 'collection_id', 'resource_type', 'resource_id'],
  249. 'collres_unique_user'
  250. );
  251. $event->addMissingPrimaryKey(
  252. 'filecache_extended',
  253. 'fce_pk',
  254. ['fileid'],
  255. 'fce_fileid_idx'
  256. );
  257. });
  258. $eventDispatcher->addServiceListener(BeforeTemplateRenderedEvent::class, BeforeTemplateRenderedListener::class);
  259. $eventDispatcher->addServiceListener(BeforeLoginTemplateRenderedEvent::class, BeforeTemplateRenderedListener::class);
  260. $eventDispatcher->addServiceListener(RemoteWipeStarted::class, RemoteWipeActivityListener::class);
  261. $eventDispatcher->addServiceListener(RemoteWipeStarted::class, RemoteWipeNotificationsListener::class);
  262. $eventDispatcher->addServiceListener(RemoteWipeStarted::class, RemoteWipeEmailListener::class);
  263. $eventDispatcher->addServiceListener(RemoteWipeFinished::class, RemoteWipeActivityListener::class);
  264. $eventDispatcher->addServiceListener(RemoteWipeFinished::class, RemoteWipeNotificationsListener::class);
  265. $eventDispatcher->addServiceListener(RemoteWipeFinished::class, RemoteWipeEmailListener::class);
  266. $eventDispatcher->addServiceListener(UserDeletedEvent::class, UserDeletedStoreCleanupListener::class);
  267. $eventDispatcher->addServiceListener(UserDeletedEvent::class, UserDeletedTokenCleanupListener::class);
  268. $eventDispatcher->addServiceListener(BeforeUserDeletedEvent::class, UserDeletedFilesCleanupListener::class);
  269. $eventDispatcher->addServiceListener(UserDeletedEvent::class, UserDeletedFilesCleanupListener::class);
  270. $eventDispatcher->addServiceListener(UserDeletedEvent::class, UserDeletedWebAuthnCleanupListener::class);
  271. // Tags
  272. $eventDispatcher->addServiceListener(UserDeletedEvent::class, TagManager::class);
  273. }
  274. }