Enable.php 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2016, ownCloud, Inc.
  4. *
  5. * @author Daniel Kesselberg <mail@danielkesselberg.de>
  6. * @author Joas Schilling <coding@schilljs.com>
  7. * @author John Molakvoæ <skjnldsv@protonmail.com>
  8. * @author Robin Appelman <robin@icewind.nl>
  9. * @author Sander Ruitenbeek <s.ruitenbeek@getgoing.nl>
  10. *
  11. * @license AGPL-3.0
  12. *
  13. * This code is free software: you can redistribute it and/or modify
  14. * it under the terms of the GNU Affero General Public License, version 3,
  15. * as published by the Free Software Foundation.
  16. *
  17. * This program is distributed in the hope that it will be useful,
  18. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  19. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  20. * GNU Affero General Public License for more details.
  21. *
  22. * You should have received a copy of the GNU Affero General Public License, version 3,
  23. * along with this program. If not, see <http://www.gnu.org/licenses/>
  24. *
  25. */
  26. namespace OC\Core\Command\App;
  27. use OC\Installer;
  28. use OCP\App\AppPathNotFoundException;
  29. use OCP\App\IAppManager;
  30. use OCP\IGroup;
  31. use OCP\IGroupManager;
  32. use Stecman\Component\Symfony\Console\BashCompletion\Completion\CompletionAwareInterface;
  33. use Stecman\Component\Symfony\Console\BashCompletion\CompletionContext;
  34. use Symfony\Component\Console\Command\Command;
  35. use Symfony\Component\Console\Input\InputArgument;
  36. use Symfony\Component\Console\Input\InputInterface;
  37. use Symfony\Component\Console\Input\InputOption;
  38. use Symfony\Component\Console\Output\OutputInterface;
  39. class Enable extends Command implements CompletionAwareInterface {
  40. protected IAppManager $appManager;
  41. protected IGroupManager $groupManager;
  42. protected int $exitCode = 0;
  43. public function __construct(IAppManager $appManager, IGroupManager $groupManager) {
  44. parent::__construct();
  45. $this->appManager = $appManager;
  46. $this->groupManager = $groupManager;
  47. }
  48. protected function configure(): void {
  49. $this
  50. ->setName('app:enable')
  51. ->setDescription('enable an app')
  52. ->addArgument(
  53. 'app-id',
  54. InputArgument::REQUIRED | InputArgument::IS_ARRAY,
  55. 'enable the specified app'
  56. )
  57. ->addOption(
  58. 'groups',
  59. 'g',
  60. InputOption::VALUE_REQUIRED | InputOption::VALUE_IS_ARRAY,
  61. 'enable the app only for a list of groups'
  62. )
  63. ->addOption(
  64. 'force',
  65. 'f',
  66. InputOption::VALUE_NONE,
  67. 'enable the app regardless of the Nextcloud version requirement'
  68. );
  69. }
  70. protected function execute(InputInterface $input, OutputInterface $output): int {
  71. $appIds = $input->getArgument('app-id');
  72. $groups = $this->resolveGroupIds($input->getOption('groups'));
  73. $forceEnable = (bool) $input->getOption('force');
  74. foreach ($appIds as $appId) {
  75. $this->enableApp($appId, $groups, $forceEnable, $output);
  76. }
  77. return $this->exitCode;
  78. }
  79. /**
  80. * @param string $appId
  81. * @param array $groupIds
  82. * @param bool $forceEnable
  83. * @param OutputInterface $output
  84. */
  85. private function enableApp(string $appId, array $groupIds, bool $forceEnable, OutputInterface $output): void {
  86. $groupNames = array_map(function (IGroup $group) {
  87. return $group->getDisplayName();
  88. }, $groupIds);
  89. if ($this->appManager->isInstalled($appId) && $groupIds === []) {
  90. $output->writeln($appId . ' already enabled');
  91. return;
  92. }
  93. try {
  94. /** @var Installer $installer */
  95. $installer = \OC::$server->query(Installer::class);
  96. if (false === $installer->isDownloaded($appId)) {
  97. $installer->downloadApp($appId);
  98. }
  99. $installer->installApp($appId, $forceEnable);
  100. $appVersion = \OC_App::getAppVersion($appId);
  101. if ($groupIds === []) {
  102. $this->appManager->enableApp($appId, $forceEnable);
  103. $output->writeln($appId . ' ' . $appVersion . ' enabled');
  104. } else {
  105. $this->appManager->enableAppForGroups($appId, $groupIds, $forceEnable);
  106. $output->writeln($appId . ' ' . $appVersion . ' enabled for groups: ' . implode(', ', $groupNames));
  107. }
  108. } catch (AppPathNotFoundException $e) {
  109. $output->writeln($appId . ' not found');
  110. $this->exitCode = 1;
  111. } catch (\Exception $e) {
  112. $output->writeln($e->getMessage());
  113. $this->exitCode = 1;
  114. }
  115. }
  116. /**
  117. * @param array $groupIds
  118. * @return array
  119. */
  120. private function resolveGroupIds(array $groupIds): array {
  121. $groups = [];
  122. foreach ($groupIds as $groupId) {
  123. $group = $this->groupManager->get($groupId);
  124. if ($group instanceof IGroup) {
  125. $groups[] = $group;
  126. }
  127. }
  128. return $groups;
  129. }
  130. /**
  131. * @param string $optionName
  132. * @param CompletionContext $context
  133. * @return string[]
  134. */
  135. public function completeOptionValues($optionName, CompletionContext $context) {
  136. if ($optionName === 'groups') {
  137. return array_map(function (IGroup $group) {
  138. return $group->getGID();
  139. }, $this->groupManager->search($context->getCurrentWord()));
  140. }
  141. return [];
  142. }
  143. /**
  144. * @param string $argumentName
  145. * @param CompletionContext $context
  146. * @return string[]
  147. */
  148. public function completeArgumentValues($argumentName, CompletionContext $context) {
  149. if ($argumentName === 'app-id') {
  150. $allApps = \OC_App::getAllApps();
  151. return array_diff($allApps, \OC_App::getEnabledApps(true, true));
  152. }
  153. return [];
  154. }
  155. }