Application.php 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332
  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\AddMissingColumnsEvent;
  51. use OCP\DB\Events\AddMissingIndicesEvent;
  52. use OCP\DB\Events\AddMissingPrimaryKeyEvent;
  53. use OCP\DB\Types;
  54. use OCP\EventDispatcher\IEventDispatcher;
  55. use OCP\User\Events\BeforeUserDeletedEvent;
  56. use OCP\User\Events\UserDeletedEvent;
  57. use OCP\Util;
  58. /**
  59. * Class Application
  60. *
  61. * @package OC\Core
  62. */
  63. class Application extends App {
  64. public function __construct() {
  65. parent::__construct('core');
  66. $container = $this->getContainer();
  67. $container->registerService('defaultMailAddress', function () {
  68. return Util::getDefaultEmailAddress('lostpassword-noreply');
  69. });
  70. $server = $container->getServer();
  71. /** @var IEventDispatcher $eventDispatcher */
  72. $eventDispatcher = $server->get(IEventDispatcher::class);
  73. $notificationManager = $server->getNotificationManager();
  74. $notificationManager->registerNotifierService(CoreNotifier::class);
  75. $notificationManager->registerNotifierService(AuthenticationNotifier::class);
  76. $eventDispatcher->addListener(AddMissingIndicesEvent::class, function (AddMissingIndicesEvent $event) {
  77. $event->addMissingIndex(
  78. 'share',
  79. 'share_with_index',
  80. ['share_with']
  81. );
  82. $event->addMissingIndex(
  83. 'share',
  84. 'parent_index',
  85. ['parent']
  86. );
  87. $event->addMissingIndex(
  88. 'share',
  89. 'owner_index',
  90. ['uid_owner']
  91. );
  92. $event->addMissingIndex(
  93. 'share',
  94. 'initiator_index',
  95. ['uid_initiator']
  96. );
  97. $event->addMissingIndex(
  98. 'filecache',
  99. 'fs_mtime',
  100. ['mtime']
  101. );
  102. $event->addMissingIndex(
  103. 'filecache',
  104. 'fs_size',
  105. ['size']
  106. );
  107. $event->addMissingIndex(
  108. 'filecache',
  109. 'fs_id_storage_size',
  110. ['fileid', 'storage', 'size']
  111. );
  112. $event->addMissingIndex(
  113. 'filecache',
  114. 'fs_storage_path_prefix',
  115. ['storage', 'path'],
  116. ['lengths' => [null, 64]]
  117. );
  118. $event->addMissingIndex(
  119. 'filecache',
  120. 'fs_parent',
  121. ['parent']
  122. );
  123. $event->addMissingIndex(
  124. 'twofactor_providers',
  125. 'twofactor_providers_uid',
  126. ['uid']
  127. );
  128. $event->addMissingUniqueIndex(
  129. 'login_flow_v2',
  130. 'poll_token',
  131. ['poll_token'],
  132. [],
  133. true
  134. );
  135. $event->addMissingUniqueIndex(
  136. 'login_flow_v2',
  137. 'login_token',
  138. ['login_token'],
  139. [],
  140. true
  141. );
  142. $event->addMissingIndex(
  143. 'login_flow_v2',
  144. 'timestamp',
  145. ['timestamp'],
  146. [],
  147. true
  148. );
  149. $event->addMissingIndex(
  150. 'whats_new',
  151. 'version',
  152. ['version'],
  153. [],
  154. true
  155. );
  156. $event->addMissingIndex(
  157. 'cards',
  158. 'cards_abiduri',
  159. ['addressbookid', 'uri'],
  160. [],
  161. true
  162. );
  163. $event->addMissingIndex(
  164. 'cards',
  165. 'cards_abid',
  166. ['addressbookid'],
  167. [],
  168. true
  169. );
  170. $event->addMissingIndex(
  171. 'cards',
  172. 'cards_abiduri',
  173. ['addressbookid', 'uri'],
  174. [],
  175. true
  176. );
  177. $event->addMissingIndex(
  178. 'cards_properties',
  179. 'cards_prop_abid',
  180. ['addressbookid'],
  181. [],
  182. true
  183. );
  184. $event->addMissingIndex(
  185. 'calendarobjects_props',
  186. 'calendarobject_calid_index',
  187. ['calendarid', 'calendartype']
  188. );
  189. $event->addMissingIndex(
  190. 'schedulingobjects',
  191. 'schedulobj_principuri_index',
  192. ['principaluri']
  193. );
  194. $event->addMissingIndex(
  195. 'properties',
  196. 'properties_path_index',
  197. ['userid', 'propertypath']
  198. );
  199. $event->addMissingIndex(
  200. 'properties',
  201. 'properties_pathonly_index',
  202. ['propertypath']
  203. );
  204. $event->addMissingIndex(
  205. 'jobs',
  206. 'job_lastcheck_reserved',
  207. ['last_checked', 'reserved_at']
  208. );
  209. $event->addMissingIndex(
  210. 'direct_edit',
  211. 'direct_edit_timestamp',
  212. ['timestamp']
  213. );
  214. $event->addMissingIndex(
  215. 'preferences',
  216. 'preferences_app_key',
  217. ['appid', 'configkey']
  218. );
  219. $event->addMissingIndex(
  220. 'mounts',
  221. 'mounts_class_index',
  222. ['mount_provider_class']
  223. );
  224. $event->addMissingIndex(
  225. 'mounts',
  226. 'mounts_user_root_path_index',
  227. ['user_id', 'root_id', 'mount_point'],
  228. ['lengths' => [null, null, 128]]
  229. );
  230. $event->addMissingIndex(
  231. 'systemtag_object_mapping',
  232. 'systag_by_tagid',
  233. ['systemtagid', 'objecttype']
  234. );
  235. });
  236. $eventDispatcher->addListener(AddMissingPrimaryKeyEvent::class, function (AddMissingPrimaryKeyEvent $event) {
  237. $event->addMissingPrimaryKey(
  238. 'federated_reshares',
  239. 'federated_res_pk',
  240. ['share_id'],
  241. 'share_id_index'
  242. );
  243. $event->addMissingPrimaryKey(
  244. 'systemtag_object_mapping',
  245. 'som_pk',
  246. ['objecttype', 'objectid', 'systemtagid'],
  247. 'mapping'
  248. );
  249. $event->addMissingPrimaryKey(
  250. 'comments_read_markers',
  251. 'crm_pk',
  252. ['user_id', 'object_type', 'object_id'],
  253. 'comments_marker_index'
  254. );
  255. $event->addMissingPrimaryKey(
  256. 'collres_resources',
  257. 'crr_pk',
  258. ['collection_id', 'resource_type', 'resource_id'],
  259. 'collres_unique_res'
  260. );
  261. $event->addMissingPrimaryKey(
  262. 'collres_accesscache',
  263. 'cra_pk',
  264. ['user_id', 'collection_id', 'resource_type', 'resource_id'],
  265. 'collres_unique_user'
  266. );
  267. $event->addMissingPrimaryKey(
  268. 'filecache_extended',
  269. 'fce_pk',
  270. ['fileid'],
  271. 'fce_fileid_idx'
  272. );
  273. });
  274. $eventDispatcher->addListener(AddMissingColumnsEvent::class, function (AddMissingColumnsEvent $event) {
  275. $event->addMissingColumn(
  276. 'comments',
  277. 'reference_id',
  278. Types::STRING,
  279. [
  280. 'notnull' => false,
  281. 'length' => 64,
  282. ]
  283. );
  284. });
  285. $eventDispatcher->addServiceListener(BeforeTemplateRenderedEvent::class, BeforeTemplateRenderedListener::class);
  286. $eventDispatcher->addServiceListener(BeforeLoginTemplateRenderedEvent::class, BeforeTemplateRenderedListener::class);
  287. $eventDispatcher->addServiceListener(RemoteWipeStarted::class, RemoteWipeActivityListener::class);
  288. $eventDispatcher->addServiceListener(RemoteWipeStarted::class, RemoteWipeNotificationsListener::class);
  289. $eventDispatcher->addServiceListener(RemoteWipeStarted::class, RemoteWipeEmailListener::class);
  290. $eventDispatcher->addServiceListener(RemoteWipeFinished::class, RemoteWipeActivityListener::class);
  291. $eventDispatcher->addServiceListener(RemoteWipeFinished::class, RemoteWipeNotificationsListener::class);
  292. $eventDispatcher->addServiceListener(RemoteWipeFinished::class, RemoteWipeEmailListener::class);
  293. $eventDispatcher->addServiceListener(UserDeletedEvent::class, UserDeletedStoreCleanupListener::class);
  294. $eventDispatcher->addServiceListener(UserDeletedEvent::class, UserDeletedTokenCleanupListener::class);
  295. $eventDispatcher->addServiceListener(BeforeUserDeletedEvent::class, UserDeletedFilesCleanupListener::class);
  296. $eventDispatcher->addServiceListener(UserDeletedEvent::class, UserDeletedFilesCleanupListener::class);
  297. $eventDispatcher->addServiceListener(UserDeletedEvent::class, UserDeletedWebAuthnCleanupListener::class);
  298. // Tags
  299. $eventDispatcher->addServiceListener(UserDeletedEvent::class, TagManager::class);
  300. }
  301. }