Enable.php 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2016, ownCloud, Inc.
  4. *
  5. * @author Joas Schilling <coding@schilljs.com>
  6. * @author Lukas Reschke <lukas@statuscode.ch>
  7. * @author Morris Jobke <hey@morrisjobke.de>
  8. * @author Robin Appelman <robin@icewind.nl>
  9. * @author Vincent Petry <pvince81@owncloud.com>
  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. /** @var IAppManager */
  41. protected $appManager;
  42. /** @var IGroupManager */
  43. protected $groupManager;
  44. /** @var int */
  45. protected $exitCode = 0;
  46. /**
  47. * @param IAppManager $appManager
  48. * @param IGroupManager $groupManager
  49. */
  50. public function __construct(IAppManager $appManager, IGroupManager $groupManager) {
  51. parent::__construct();
  52. $this->appManager = $appManager;
  53. $this->groupManager = $groupManager;
  54. }
  55. protected function configure(): void {
  56. $this
  57. ->setName('app:enable')
  58. ->setDescription('enable an app')
  59. ->addArgument(
  60. 'app-id',
  61. InputArgument::REQUIRED | InputArgument::IS_ARRAY,
  62. 'enable the specified app'
  63. )
  64. ->addOption(
  65. 'groups',
  66. 'g',
  67. InputOption::VALUE_REQUIRED | InputOption::VALUE_IS_ARRAY,
  68. 'enable the app only for a list of groups'
  69. );
  70. }
  71. protected function execute(InputInterface $input, OutputInterface $output) {
  72. $appIds = $input->getArgument('app-id');
  73. $groups = $this->resolveGroupIds($input->getOption('groups'));
  74. foreach ($appIds as $appId) {
  75. $this->enableApp($appId, $groups, $output);
  76. }
  77. return $this->exitCode;
  78. }
  79. /**
  80. * @param string $appId
  81. * @param array $groupIds
  82. * @param OutputInterface $output
  83. */
  84. private function enableApp(string $appId, array $groupIds, OutputInterface $output): void {
  85. $groupNames = array_map(function (IGroup $group) {
  86. return $group->getDisplayName();
  87. }, $groupIds);
  88. try {
  89. /** @var Installer $installer */
  90. $installer = \OC::$server->query(Installer::class);
  91. if (false === $installer->isDownloaded($appId)) {
  92. $installer->downloadApp($appId);
  93. }
  94. $installer->installApp($appId);
  95. if ($groupIds === []) {
  96. $this->appManager->enableApp($appId);
  97. $output->writeln($appId . ' enabled');
  98. } else {
  99. $this->appManager->enableAppForGroups($appId, $groupIds);
  100. $output->writeln($appId . ' enabled for groups: ' . implode(', ', $groupNames));
  101. }
  102. } catch (AppPathNotFoundException $e) {
  103. $output->writeln($appId . ' not found');
  104. $this->exitCode = 1;
  105. } catch (\Exception $e) {
  106. $output->writeln($e->getMessage());
  107. $this->exitCode = 1;
  108. }
  109. }
  110. /**
  111. * @param array $groupIds
  112. * @return array
  113. */
  114. private function resolveGroupIds(array $groupIds): array {
  115. $groups = [];
  116. foreach ($groupIds as $groupId) {
  117. $group = $this->groupManager->get($groupId);
  118. if ($group instanceof IGroup) {
  119. $groups[] = $group;
  120. }
  121. }
  122. return $groups;
  123. }
  124. /**
  125. * @param string $optionName
  126. * @param CompletionContext $context
  127. * @return string[]
  128. */
  129. public function completeOptionValues($optionName, CompletionContext $context) {
  130. if ($optionName === 'groups') {
  131. return array_map(function (IGroup $group) {
  132. return $group->getGID();
  133. }, $this->groupManager->search($context->getCurrentWord()));
  134. }
  135. return [];
  136. }
  137. /**
  138. * @param string $argumentName
  139. * @param CompletionContext $context
  140. * @return string[]
  141. */
  142. public function completeArgumentValues($argumentName, CompletionContext $context) {
  143. if ($argumentName === 'app-id') {
  144. $allApps = \OC_App::getAllApps();
  145. return array_diff($allApps, \OC_App::getEnabledApps(true, true));
  146. }
  147. return [];
  148. }
  149. }