Application.php 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  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\LoadAdditionalScriptsEvent;
  41. use OCA\Files\Event\LoadSidebar;
  42. use OCA\Files\Listener\LegacyLoadAdditionalScriptsAdapter;
  43. use OCA\Files\Listener\LoadSidebarListener;
  44. use OCA\Files\Listener\RenderReferenceEventListener;
  45. use OCA\Files\Notification\Notifier;
  46. use OCA\Files\Search\FilesSearchProvider;
  47. use OCA\Files\Service\TagService;
  48. use OCA\Files\Service\UserConfig;
  49. use OCP\Activity\IManager as IActivityManager;
  50. use OCP\AppFramework\App;
  51. use OCP\AppFramework\Bootstrap\IBootContext;
  52. use OCP\AppFramework\Bootstrap\IBootstrap;
  53. use OCP\AppFramework\Bootstrap\IRegistrationContext;
  54. use OCP\Collaboration\Reference\RenderReferenceEvent;
  55. use OCP\Collaboration\Resources\IProviderManager;
  56. use OCP\IConfig;
  57. use OCP\IL10N;
  58. use OCP\IPreview;
  59. use OCP\ISearch;
  60. use OCP\IRequest;
  61. use OCP\IServerContainer;
  62. use OCP\ITagManager;
  63. use OCP\IUserSession;
  64. use OCP\Share\IManager as IShareManager;
  65. use OCP\Util;
  66. use Psr\Container\ContainerInterface;
  67. class Application extends App implements IBootstrap {
  68. public const APP_ID = 'files';
  69. public function __construct(array $urlParams = []) {
  70. parent::__construct(self::APP_ID, $urlParams);
  71. }
  72. public function register(IRegistrationContext $context): void {
  73. /**
  74. * Controllers
  75. */
  76. $context->registerService('APIController', function (ContainerInterface $c) {
  77. /** @var IServerContainer $server */
  78. $server = $c->get(IServerContainer::class);
  79. return new ApiController(
  80. $c->get('AppName'),
  81. $c->get(IRequest::class),
  82. $c->get(IUserSession::class),
  83. $c->get(TagService::class),
  84. $c->get(IPreview::class),
  85. $c->get(IShareManager::class),
  86. $c->get(IConfig::class),
  87. $server->getUserFolder(),
  88. $c->get(UserConfig::class),
  89. );
  90. });
  91. /**
  92. * Services
  93. */
  94. $context->registerService(TagService::class, function (ContainerInterface $c) {
  95. /** @var IServerContainer $server */
  96. $server = $c->get(IServerContainer::class);
  97. return new TagService(
  98. $c->get(IUserSession::class),
  99. $c->get(IActivityManager::class),
  100. $c->get(ITagManager::class)->load(self::APP_ID),
  101. $server->getUserFolder(),
  102. $server->getEventDispatcher()
  103. );
  104. });
  105. /*
  106. * Register capabilities
  107. */
  108. $context->registerCapability(Capabilities::class);
  109. $context->registerCapability(DirectEditingCapabilities::class);
  110. $context->registerEventListener(LoadAdditionalScriptsEvent::class, LegacyLoadAdditionalScriptsAdapter::class);
  111. $context->registerEventListener(LoadSidebar::class, LoadSidebarListener::class);
  112. $context->registerEventListener(RenderReferenceEvent::class, RenderReferenceEventListener::class);
  113. $context->registerSearchProvider(FilesSearchProvider::class);
  114. $context->registerNotifierService(Notifier::class);
  115. }
  116. public function boot(IBootContext $context): void {
  117. $context->injectFn(Closure::fromCallable([$this, 'registerCollaboration']));
  118. $context->injectFn([Listener::class, 'register']);
  119. $context->injectFn(Closure::fromCallable([$this, 'registerSearchProvider']));
  120. $this->registerTemplates();
  121. $context->injectFn(Closure::fromCallable([$this, 'registerNavigation']));
  122. $this->registerHooks();
  123. }
  124. private function registerCollaboration(IProviderManager $providerManager): void {
  125. $providerManager->registerResourceProvider(ResourceProvider::class);
  126. }
  127. private function registerSearchProvider(ISearch $search): void {
  128. $search->registerProvider(File::class, ['apps' => ['files']]);
  129. }
  130. private function registerTemplates(): void {
  131. $templateManager = \OC_Helper::getFileTemplateManager();
  132. $templateManager->registerTemplate('application/vnd.oasis.opendocument.presentation', 'core/templates/filetemplates/template.odp');
  133. $templateManager->registerTemplate('application/vnd.oasis.opendocument.text', 'core/templates/filetemplates/template.odt');
  134. $templateManager->registerTemplate('application/vnd.oasis.opendocument.spreadsheet', 'core/templates/filetemplates/template.ods');
  135. }
  136. private function registerNavigation(IL10N $l10n): void {
  137. \OCA\Files\App::getNavigationManager()->add(function () use ($l10n) {
  138. return [
  139. 'id' => 'files',
  140. 'appname' => 'files',
  141. 'script' => 'list.php',
  142. 'order' => 0,
  143. 'name' => $l10n->t('All files')
  144. ];
  145. });
  146. \OCA\Files\App::getNavigationManager()->add(function () use ($l10n) {
  147. return [
  148. 'id' => 'recent',
  149. 'appname' => 'files',
  150. 'script' => 'recentlist.php',
  151. 'order' => 2,
  152. 'name' => $l10n->t('Recent')
  153. ];
  154. });
  155. \OCA\Files\App::getNavigationManager()->add(function () use ($l10n) {
  156. return [
  157. 'id' => 'favorites',
  158. 'appname' => 'files',
  159. 'script' => 'simplelist.php',
  160. 'order' => 5,
  161. 'name' => $l10n->t('Favorites'),
  162. ];
  163. });
  164. }
  165. private function registerHooks(): void {
  166. Util::connectHook('\OCP\Config', 'js', '\OCA\Files\App', 'extendJsConfig');
  167. }
  168. }