forked from hechoendrupal/drupal-console
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDownloadCommand.php
More file actions
243 lines (216 loc) · 7.31 KB
/
DownloadCommand.php
File metadata and controls
243 lines (216 loc) · 7.31 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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
<?php
/**
* @file
* Contains \Drupal\Console\Command\Module\DownloadCommand.
*/
namespace Drupal\Console\Command\Module;
use Drupal\Console\Command\Shared\CommandTrait;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Component\Console\Command\Command;
use Drupal\Console\Command\Shared\ProjectDownloadTrait;
use Drupal\Console\Style\DrupalStyle;
use Drupal\Console\Utils\DrupalApi;
use GuzzleHttp\Client;
use Drupal\Console\Extension\Manager;
use Drupal\Console\Utils\Validator;
use Drupal\Console\Utils\Site;
use Drupal\Console\Utils\ConfigurationManager;
use Drupal\Console\Utils\ShellProcess;
class DownloadCommand extends Command
{
use CommandTrait;
use ProjectDownloadTrait;
/** @var DrupalApi */
protected $drupalApi;
/** @var Client */
protected $httpClient;
/**
* @var string
*/
protected $appRoot;
/** @var Manager */
protected $extensionManager;
/** @var Validator */
protected $validator;
/** @var ConfigurationManager */
protected $configurationManager;
/** @var ShellProcess */
protected $shellProcess;
/**
* @var string
*/
protected $root;
/**
* DownloadCommand constructor.
* @param DrupalApi $drupalApi
* @param Client $httpClient
* @param $appRoot
* @param Manager $extensionManager
* @param Validator $validator
* @param Site $site
* @param ConfigurationManager $configurationManager
* @param ShellProcess $shellProcess
* @param $root
*/
public function __construct(
DrupalApi $drupalApi,
Client $httpClient,
$appRoot,
Manager $extensionManager,
Validator $validator,
Site $site,
ConfigurationManager $configurationManager,
ShellProcess $shellProcess,
$root
) {
$this->drupalApi = $drupalApi;
$this->httpClient = $httpClient;
$this->appRoot = $appRoot;
$this->extensionManager = $extensionManager;
$this->validator = $validator;
$this->site = $site;
$this->configurationManager = $configurationManager;
$this->shellProcess = $shellProcess;
$this->root = $root;
parent::__construct();
}
protected function configure()
{
$this
->setName('module:download')
->setDescription($this->trans('commands.module.download.description'))
->addArgument(
'module',
InputArgument::IS_ARRAY,
$this->trans('commands.module.download.arguments.module')
)
->addOption(
'path',
null,
InputOption::VALUE_OPTIONAL,
$this->trans('commands.module.download.options.path')
)
->addOption(
'latest',
'',
InputOption::VALUE_NONE,
$this->trans('commands.module.download.options.latest')
)
->addOption(
'composer',
'',
InputOption::VALUE_NONE,
$this->trans('commands.module.install.options.composer')
)
->addOption(
'unstable',
'',
InputOption::VALUE_NONE,
$this->trans('commands.module.install.options.unstable')
);
}
/**
* {@inheritdoc}
*/
protected function interact(InputInterface $input, OutputInterface $output)
{
$io = new DrupalStyle($input, $output);
$composer = $input->getOption('composer');
$module = $input->getArgument('module');
if (!$module) {
$module = $this->modulesQuestion($io);
$input->setArgument('module', $module);
}
if (!$composer) {
$path = $input->getOption('path');
if (!$path) {
$path = $io->ask(
$this->trans('commands.module.download.questions.path'),
'modules/contrib'
);
$input->setOption('path', $path);
}
}
}
/**
* {@inheritdoc}
*/
protected function execute(InputInterface $input, OutputInterface $output)
{
$io = new DrupalStyle($input, $output);
$modules = $input->getArgument('module');
$latest = $input->getOption('latest');
$path = $input->getOption('path');
$composer = $input->getOption('composer');
$unstable = true;
if ($composer) {
foreach ($modules as $module) {
if (!$latest) {
$versions = $this->drupalApi
->getPackagistModuleReleases($module, 10, $unstable);
if (!$versions) {
$io->error(
sprintf(
$this->trans(
'commands.module.download.messages.no-releases'
),
$module
)
);
return 1;
} else {
$version = $io->choice(
sprintf(
$this->trans(
'commands.site.new.questions.composer-release'),
$module
),
$versions
);
}
} else {
$versions = $this->drupalApi
->getPackagistModuleReleases($module, 10, $unstable);
if (!$versions) {
$io->error(
sprintf(
$this->trans(
'commands.module.download.messages.no-releases'
),
$module
)
);
return 1;
} else {
$version = current(
$this->drupalApi
->getPackagistModuleReleases($module, 1, $unstable)
);
}
}
// Register composer repository
$command = "composer config repositories.drupal composer https://packagist.drupal-composer.org";
$this->shellProcess->exec($command, $this->root);
$command = sprintf(
'composer require drupal/%s:%s --prefer-dist --optimize-autoloader --sort-packages --update-no-dev',
$module,
$version
);
if ($this->shellProcess->exec($command, $this->root)) {
$io->success(
sprintf(
$this->trans('commands.module.download.messages.composer'),
$module
)
);
}
}
} else {
$this->downloadModules($io, $modules, $latest, $path);
}
return true;
}
}