forked from nextcloud/server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRollout.php
More file actions
139 lines (123 loc) · 4.01 KB
/
Rollout.php
File metadata and controls
139 lines (123 loc) · 4.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<?php
/**
* @copyright Copyright (c) 2021, Felix Stupp <felix.stupp+github@banananet.work>
*
* @author Felix Stupp <felix.stupp+github@banananet.work>
*
* @license AGPL-3.0
*
* This code is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License, version 3,
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License, version 3,
* along with this program. If not, see <http://www.gnu.org/licenses/>
*
*/
namespace OC\Core\Command\App;
use OC\Installer;
use OCP\App\AppPathNotFoundException;
use OCP\App\IAppManager;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Output\OutputInterface;
class Rollout extends Command {
/** @var IAppManager */
protected $appManager;
/** @var int */
protected $exitCode = 0;
/**
* @param IAppManager $appManager
*/
public function __construct(IAppManager $appManager) {
parent::__construct();
$this->appManager = $appManager;
}
protected function configure(): void {
$this
->setName('app:rollout')
->setDescription('rollout list of apps which should be either installed and enabled or disabled or removed')
->addArgument(
'app-ids',
InputArgument::REQUIRED | InputArgument::IS_ARRAY,
'list of apps; names with suffix "+" or no known suffix will be installed/enabled, while names with suffix "-" will be disabled, if required'
)
->addOption(
'force',
'f',
InputOption::VALUE_NONE,
'install apps regardless of the Nextcloud version requirement'
)
;
}
protected function execute(InputInterface $input, OutputInterface $output): int {
$appIds = $input->getArgument('app-ids');
$forceEnable = (bool) $input->getOption('force');
foreach ($appIds as $appIdMarked) {
$appId = substr($appIdMarked, 0, -1);
$marker = substr($appIdMarked, 1);
if ($marker == "+") {
$this->enableApp($appId, $forceEnable, $output);
} elseif ($marker == "-") {
$this->disableApp($appId, $output);
} else {
// ignore marker as no known found
$this->enableApp($appIdMarked, $forceEnable, $output);
}
}
return $this->exitCode;
}
/**
* @param string $appId
* @param OutputInterface $output
*/
private function disableApp(string $appId, OutputInterface $output) {
if ($this->appManager->isInstalled($appId) === false) {
$output->writeln('No such app enabled: ' . $appId);
return;
}
try {
$this->appManager->disableApp($appId);
$appVersion = $this->appManager->getAppVersion($appId);
$output->writeln($appId . ' ' . $appVersion . ' disabled');
} catch (\Exception $e) {
$output->writeln($e->getMessage());
$this->exitCode = 1;
}
}
/**
* @param string $appId
* @param bool $forceEnable
* @param OutputInterface $output
*/
private function enableApp(string $appId, bool $forceEnable, OutputInterface $output): void {
if ($this->appManager->isInstalled($appId)) {
$output->writeln($appId . ' already enabled');
return;
}
try {
/** @var Installer $installer */
$installer = \OC::$server->query(Installer::class);
if (false === $installer->isDownloaded($appId)) {
$installer->downloadApp($appId);
}
$installer->installApp($appId, $forceEnable);
$appVersion = $this->appManager->getAppVersion($appId);
$this->appManager->enableApp($appId, $forceEnable);
$output->writeln($appId . ' ' . $appVersion . ' enabled');
} catch (AppPathNotFoundException $e) {
$output->writeln($appId . ' not found');
$this->exitCode = 1;
} catch (\Exception $e) {
$output->writeln($e->getMessage());
$this->exitCode = 1;
}
}
}