Application.php 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  1. <?php
  2. declare(strict_types=1);
  3. /**
  4. * @copyright Copyright (c) 2016, ownCloud, Inc.
  5. *
  6. * @author Christoph Wurst <christoph@winzerhof-wurst.at>
  7. * @author Daniel Kesselberg <mail@danielkesselberg.de>
  8. * @author Joas Schilling <coding@schilljs.com>
  9. * @author John Molakvoæ <skjnldsv@protonmail.com>
  10. * @author Julius Härtl <jus@bitgrid.net>
  11. * @author Morris Jobke <hey@morrisjobke.de>
  12. * @author Robin Appelman <robin@icewind.nl>
  13. * @author Roeland Jago Douma <roeland@famdouma.nl>
  14. * @author Tobias Kaminsky <tobias@kaminsky.me>
  15. * @author Vincent Petry <vincent@nextcloud.com>
  16. *
  17. * @license AGPL-3.0
  18. *
  19. * This code is free software: you can redistribute it and/or modify
  20. * it under the terms of the GNU Affero General Public License, version 3,
  21. * as published by the Free Software Foundation.
  22. *
  23. * This program is distributed in the hope that it will be useful,
  24. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  25. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  26. * GNU Affero General Public License for more details.
  27. *
  28. * You should have received a copy of the GNU Affero General Public License, version 3,
  29. * along with this program. If not, see <http://www.gnu.org/licenses/>
  30. *
  31. */
  32. namespace OCA\Files\AppInfo;
  33. use Closure;
  34. use OC\Search\Provider\File;
  35. use OCA\Files\Capabilities;
  36. use OCA\Files\Collaboration\Resources\Listener;
  37. use OCA\Files\Collaboration\Resources\ResourceProvider;
  38. use OCA\Files\Controller\ApiController;
  39. use OCA\Files\DirectEditingCapabilities;
  40. use OCA\Files\Event\LoadSidebar;
  41. use OCA\Files\Listener\LoadSidebarListener;
  42. use OCA\Files\Listener\RenderReferenceEventListener;
  43. use OCA\Files\Listener\SyncLivePhotosListener;
  44. use OCA\Files\Notification\Notifier;
  45. use OCA\Files\Search\FilesSearchProvider;
  46. use OCA\Files\Service\TagService;
  47. use OCA\Files\Service\UserConfig;
  48. use OCA\Files\Service\ViewConfig;
  49. use OCA\Files_Trashbin\Events\BeforeNodeRestoredEvent;
  50. use OCP\Activity\IManager as IActivityManager;
  51. use OCP\AppFramework\App;
  52. use OCP\AppFramework\Bootstrap\IBootContext;
  53. use OCP\AppFramework\Bootstrap\IBootstrap;
  54. use OCP\AppFramework\Bootstrap\IRegistrationContext;
  55. use OCP\Collaboration\Reference\RenderReferenceEvent;
  56. use OCP\Collaboration\Resources\IProviderManager;
  57. use OCP\EventDispatcher\IEventDispatcher;
  58. use OCP\Files\Cache\CacheEntryRemovedEvent;
  59. use OCP\Files\Events\Node\BeforeNodeDeletedEvent;
  60. use OCP\Files\Events\Node\BeforeNodeRenamedEvent;
  61. use OCP\IConfig;
  62. use OCP\IPreview;
  63. use OCP\IRequest;
  64. use OCP\ISearch;
  65. use OCP\IServerContainer;
  66. use OCP\ITagManager;
  67. use OCP\IUserSession;
  68. use OCP\Share\IManager as IShareManager;
  69. use OCP\Util;
  70. use Psr\Container\ContainerInterface;
  71. class Application extends App implements IBootstrap {
  72. public const APP_ID = 'files';
  73. public function __construct(array $urlParams = []) {
  74. parent::__construct(self::APP_ID, $urlParams);
  75. }
  76. public function register(IRegistrationContext $context): void {
  77. /**
  78. * Controllers
  79. */
  80. $context->registerService('APIController', function (ContainerInterface $c) {
  81. /** @var IServerContainer $server */
  82. $server = $c->get(IServerContainer::class);
  83. return new ApiController(
  84. $c->get('AppName'),
  85. $c->get(IRequest::class),
  86. $c->get(IUserSession::class),
  87. $c->get(TagService::class),
  88. $c->get(IPreview::class),
  89. $c->get(IShareManager::class),
  90. $c->get(IConfig::class),
  91. $server->getUserFolder(),
  92. $c->get(UserConfig::class),
  93. $c->get(ViewConfig::class),
  94. );
  95. });
  96. /**
  97. * Services
  98. */
  99. $context->registerService(TagService::class, function (ContainerInterface $c) {
  100. /** @var IServerContainer $server */
  101. $server = $c->get(IServerContainer::class);
  102. return new TagService(
  103. $c->get(IUserSession::class),
  104. $c->get(IActivityManager::class),
  105. $c->get(ITagManager::class)->load(self::APP_ID),
  106. $server->getUserFolder(),
  107. $c->get(IEventDispatcher::class),
  108. );
  109. });
  110. /*
  111. * Register capabilities
  112. */
  113. $context->registerCapability(Capabilities::class);
  114. $context->registerCapability(DirectEditingCapabilities::class);
  115. $context->registerEventListener(LoadSidebar::class, LoadSidebarListener::class);
  116. $context->registerEventListener(RenderReferenceEvent::class, RenderReferenceEventListener::class);
  117. $context->registerEventListener(BeforeNodeRenamedEvent::class, SyncLivePhotosListener::class);
  118. $context->registerEventListener(BeforeNodeDeletedEvent::class, SyncLivePhotosListener::class);
  119. $context->registerEventListener(BeforeNodeRestoredEvent::class, SyncLivePhotosListener::class);
  120. $context->registerEventListener(CacheEntryRemovedEvent::class, SyncLivePhotosListener::class);
  121. $context->registerSearchProvider(FilesSearchProvider::class);
  122. $context->registerNotifierService(Notifier::class);
  123. }
  124. public function boot(IBootContext $context): void {
  125. $context->injectFn(Closure::fromCallable([$this, 'registerCollaboration']));
  126. $context->injectFn([Listener::class, 'register']);
  127. $context->injectFn(Closure::fromCallable([$this, 'registerSearchProvider']));
  128. $this->registerTemplates();
  129. $this->registerHooks();
  130. }
  131. private function registerCollaboration(IProviderManager $providerManager): void {
  132. $providerManager->registerResourceProvider(ResourceProvider::class);
  133. }
  134. private function registerSearchProvider(ISearch $search): void {
  135. $search->registerProvider(File::class, ['apps' => ['files']]);
  136. }
  137. private function registerTemplates(): void {
  138. $templateManager = \OC_Helper::getFileTemplateManager();
  139. $templateManager->registerTemplate('application/vnd.oasis.opendocument.presentation', 'core/templates/filetemplates/template.odp');
  140. $templateManager->registerTemplate('application/vnd.oasis.opendocument.text', 'core/templates/filetemplates/template.odt');
  141. $templateManager->registerTemplate('application/vnd.oasis.opendocument.spreadsheet', 'core/templates/filetemplates/template.ods');
  142. }
  143. private function registerHooks(): void {
  144. Util::connectHook('\OCP\Config', 'js', '\OCA\Files\App', 'extendJsConfig');
  145. }
  146. }