|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
namespace Kunstmaan\GeneratorBundle\Command; |
|
4
|
|
|
|
|
5
|
|
|
use Kunstmaan\GeneratorBundle\Helper\CommandAssistant; |
|
6
|
|
|
use Sensio\Bundle\GeneratorBundle\Command\GeneratorCommand; |
|
7
|
|
|
use Symfony\Component\Console\Input\ArrayInput; |
|
8
|
|
|
use Symfony\Component\Console\Input\InputOption; |
|
9
|
|
|
use Symfony\Component\Console\Question\Question; |
|
10
|
|
|
use Symfony\Component\Console\Style\SymfonyStyle; |
|
11
|
|
|
use Symfony\Component\Console\Input\InputInterface; |
|
12
|
|
|
use Symfony\Component\Console\Input\InputDefinition; |
|
13
|
|
|
use Symfony\Component\Console\Output\OutputInterface; |
|
14
|
|
|
use Sensio\Bundle\GeneratorBundle\Command\Validators; |
|
15
|
|
|
use Symfony\Component\HttpKernel\Kernel; |
|
16
|
|
|
use Symfony\Component\Process\Exception\RuntimeException; |
|
17
|
|
|
use Sensio\Bundle\GeneratorBundle\Command\Helper\QuestionHelper; |
|
18
|
|
|
|
|
19
|
|
|
/** |
|
20
|
|
|
* Kunstmaan installer |
|
21
|
|
|
*/ |
|
22
|
|
|
final class InstallCommand extends GeneratorCommand |
|
23
|
|
|
{ |
|
24
|
|
|
/** |
|
25
|
|
|
* @var int |
|
26
|
|
|
*/ |
|
27
|
|
|
private $commandSteps = 0; |
|
28
|
|
|
|
|
29
|
|
|
/** @var CommandAssistant */ |
|
30
|
|
|
private $assistant; |
|
31
|
|
|
|
|
32
|
|
|
/** @var string */ |
|
33
|
|
|
private $projectDir; |
|
34
|
|
|
|
|
35
|
|
|
/** @var bool */ |
|
36
|
|
|
private $shouldStop = false; |
|
37
|
|
|
|
|
38
|
|
|
/** |
|
39
|
|
|
* @param string $rootDir |
|
|
|
|
|
|
40
|
|
|
*/ |
|
41
|
|
|
public function __construct(string $projectDir) |
|
42
|
|
|
{ |
|
43
|
|
|
$this->projectDir = $projectDir; |
|
44
|
|
|
|
|
45
|
|
|
parent::__construct(); |
|
46
|
|
|
} |
|
47
|
|
|
|
|
48
|
|
|
protected function configure() |
|
49
|
|
|
{ |
|
50
|
|
|
$this |
|
51
|
|
|
->setName('kuma:install') |
|
52
|
|
|
->setDescription('KunstmaanCMS installer.') |
|
53
|
|
|
->setDefinition( |
|
54
|
|
|
new InputDefinition( |
|
55
|
|
|
[ |
|
56
|
|
|
new InputOption('db-installed', '', InputOption::VALUE_NONE, 'Acknowledge that you have setup your database"'), |
|
57
|
|
|
new InputOption('demosite', '', InputOption::VALUE_REQUIRED, 'Do you want to create a "demosite"'), |
|
58
|
|
|
new InputOption('create-tests', '', InputOption::VALUE_REQUIRED, 'Do you want to create tests for you pages/pageparts'), |
|
59
|
|
|
new InputOption('namespace', '', InputOption::VALUE_OPTIONAL, 'The namespace of the bundle to create (only for SF3)'), |
|
60
|
|
|
new InputOption('dir', '', InputOption::VALUE_OPTIONAL, 'The directory where to create the bundle (only for SF3)'), |
|
61
|
|
|
new InputOption('bundle-name', '', InputOption::VALUE_OPTIONAL, 'The optional bundle name (only for SF3)'), |
|
62
|
|
|
] |
|
63
|
|
|
) |
|
64
|
|
|
); |
|
65
|
|
|
} |
|
66
|
|
|
|
|
67
|
|
View Code Duplication |
private function initAssistant($input, $output) |
|
|
|
|
|
|
68
|
|
|
{ |
|
69
|
|
|
if (is_null($this->assistant)) { |
|
70
|
|
|
$this->assistant = new CommandAssistant(); |
|
71
|
|
|
$this->assistant->setQuestionHelper($this->getQuestionHelper()); |
|
72
|
|
|
$this->assistant->setKernel($this->getApplication()->getKernel()); |
|
|
|
|
|
|
73
|
|
|
} |
|
74
|
|
|
$this->assistant->setOutput($output); |
|
75
|
|
|
$this->assistant->setInput($input); |
|
76
|
|
|
} |
|
77
|
|
|
|
|
78
|
|
|
protected function interact(InputInterface $input, OutputInterface $output) |
|
79
|
|
|
{ |
|
80
|
|
|
$this->initAssistant($input, $output); |
|
81
|
|
|
|
|
82
|
|
|
$questionHelper = new QuestionHelper(); |
|
83
|
|
|
|
|
84
|
|
|
$outputStyle = new SymfonyStyle($input, $output); |
|
85
|
|
|
$outputStyle->writeln('<info>Installing KunstmaanCms...</info>'); |
|
86
|
|
|
$outputStyle->writeln($this->getKunstmaanLogo()); |
|
87
|
|
|
|
|
88
|
|
|
if (Kernel::VERSION_ID >= 40000 && null === $input->getOption('db-installed')) { |
|
89
|
|
|
$this->shouldStop = !$this->assistant->askConfirmation('We need access to your database. Are the database credentials setup properly? (y/n)', 'y'); |
|
90
|
|
|
if ($this->shouldStop) { |
|
91
|
|
|
return; |
|
92
|
|
|
} |
|
93
|
|
|
} |
|
94
|
|
|
|
|
95
|
|
|
// Only ask namespace for Symfony 3 |
|
96
|
|
|
if (Kernel::VERSION_ID < 40000 && null === $input->getOption('namespace')) { |
|
97
|
|
|
$question = new Question( |
|
98
|
|
|
$questionHelper->getQuestion('Bundle namespace', $input->getOption('namespace')), |
|
99
|
|
|
$input->getOption('namespace') |
|
100
|
|
|
); |
|
101
|
|
|
$question->setValidator([Validators::class, 'validateBundleNamespace']); |
|
102
|
|
|
$namespace = $questionHelper->ask($input, $output, $question); |
|
103
|
|
|
$input->setOption('namespace', $namespace); |
|
104
|
|
|
$input->setOption('bundle-name', strtr($namespace, ['\\Bundle\\' => '', '\\' => ''])); |
|
105
|
|
|
|
|
106
|
|
|
$dir = $input->getOption('dir') ?: $this->projectDir . '/src'; |
|
107
|
|
|
$input->setOption('dir', $dir); |
|
108
|
|
|
} |
|
109
|
|
|
|
|
110
|
|
View Code Duplication |
if (null === $input->getOption('demosite')) { |
|
|
|
|
|
|
111
|
|
|
$demoSiteOption = $this->assistant->askConfirmation('Do you want to create a "demosite"? (y/n)', 'n'); |
|
112
|
|
|
$input->setOption('demosite', $demoSiteOption === true ? 'Yes' : 'No'); |
|
113
|
|
|
} |
|
114
|
|
|
|
|
115
|
|
View Code Duplication |
if (null === $input->getOption('create-tests')) { |
|
|
|
|
|
|
116
|
|
|
$createTests = $this->assistant->askConfirmation('Do you want to create tests for you pages/pageparts? (y/n)', 'n', '?', false); |
|
117
|
|
|
$input->setOption('create-tests', $createTests === true ? 'Yes' : 'No'); |
|
118
|
|
|
} |
|
119
|
|
|
|
|
120
|
|
|
$output->writeln('<info>Installation start</info>'); |
|
121
|
|
|
} |
|
122
|
|
|
|
|
123
|
|
|
protected function execute(InputInterface $input, OutputInterface $output) |
|
124
|
|
|
{ |
|
125
|
|
|
if ($this->shouldStop) { |
|
126
|
|
|
return; |
|
127
|
|
|
} |
|
128
|
|
|
|
|
129
|
|
|
$this->initAssistant($input, $output); |
|
130
|
|
|
|
|
131
|
|
|
$defaultSiteOptions = []; |
|
132
|
|
|
if ($input->getOption('demosite') === 'Yes') { |
|
133
|
|
|
$defaultSiteOptions['--demosite'] = true; |
|
134
|
|
|
} |
|
135
|
|
|
|
|
136
|
|
|
if (Kernel::VERSION_ID < 40000) { |
|
137
|
|
|
$defaultSiteOptions = ['--namespace' => $input->getOption('namespace')]; |
|
138
|
|
|
|
|
139
|
|
|
$this->executeCommand($output, 'kuma:generate:bundle', [ |
|
140
|
|
|
'--namespace' => $input->getOption('namespace'), |
|
141
|
|
|
'--dir' => $input->getOption('dir'), |
|
142
|
|
|
'--bundle-name' => $input->getOption('bundle-name'), |
|
143
|
|
|
]); |
|
144
|
|
|
} |
|
145
|
|
|
|
|
146
|
|
|
$this |
|
147
|
|
|
->executeCommand($output, 'kuma:generate:config') |
|
148
|
|
|
->executeCommand($output, 'kuma:generate:default-site', $defaultSiteOptions) |
|
149
|
|
|
->executeCommand($output, 'doctrine:database:create') |
|
150
|
|
|
->executeCommand($output, 'doctrine:schema:drop', ['--force' => true]) |
|
151
|
|
|
->executeCommand($output, 'doctrine:schema:create') |
|
152
|
|
|
->executeCommand($output, 'doctrine:fixtures:load') |
|
153
|
|
|
->executeCommand($output, 'assets:install') |
|
154
|
|
|
; |
|
155
|
|
|
|
|
156
|
|
|
if ($input->getOption('create-tests') === 'Yes') { |
|
157
|
|
|
$adminTestOptions = []; |
|
158
|
|
|
if (Kernel::VERSION_ID < 40000) { |
|
159
|
|
|
$adminTestOptions = ['--namespace' => $input->getOption('namespace')]; |
|
160
|
|
|
} |
|
161
|
|
|
|
|
162
|
|
|
$this->executeCommand($output, 'kuma:generate:admin-tests', $adminTestOptions); |
|
163
|
|
|
} |
|
164
|
|
|
|
|
165
|
|
|
$this->assistant->writeSection('Installation done. Enjoy your KunstmaanCMS', 'bg=green;fg=black'); |
|
166
|
|
|
$this->assistant->writeSection('PRO TIP: If you like to use the default frontend setup, run the buildUI.sh script or run the commands separate to compile the frontend assets. ', 'bg=blue;fg=white'); |
|
167
|
|
|
} |
|
168
|
|
|
|
|
169
|
|
|
protected function executeCommand(OutputInterface $output, $command, array $options = []) |
|
170
|
|
|
{ |
|
171
|
|
|
$options = array_merge( |
|
172
|
|
|
[ |
|
173
|
|
|
'--no-debug' => true, |
|
174
|
|
|
], |
|
175
|
|
|
$options |
|
176
|
|
|
); |
|
177
|
|
|
|
|
178
|
|
|
++$this->commandSteps; |
|
179
|
|
|
|
|
180
|
|
|
try { |
|
181
|
|
|
$updateInput = new ArrayInput($options); |
|
182
|
|
|
$updateInput->setInteractive(true); |
|
183
|
|
|
$this->getApplication()->find($command)->run($updateInput, $output); |
|
184
|
|
|
$output->writeln(sprintf('<info>Step %d: "%s" - [OK]</info>', $this->commandSteps, $command)); |
|
185
|
|
|
} catch (RuntimeException $exception) { |
|
186
|
|
|
$output->writeln(sprintf('<error>Step %d: "%s" - [FAILED]</error>', $this->commandSteps, $command)); |
|
187
|
|
|
} catch (\Throwable $e) { |
|
188
|
|
|
$output->writeln(sprintf('<error>Step %d: "%s" - [FAILED]</error>', $this->commandSteps, $command)); |
|
189
|
|
|
} |
|
190
|
|
|
|
|
191
|
|
|
return $this; |
|
192
|
|
|
} |
|
193
|
|
|
|
|
194
|
|
|
protected function getKunstmaanLogo() |
|
195
|
|
|
{ |
|
196
|
|
|
return ' |
|
197
|
|
|
/$$ /$$ /$$ /$$$$$$ |
|
198
|
|
|
| $$ /$$/ | $$ /$$__ $$ |
|
199
|
|
|
| $$ /$$/ /$$ /$$ /$$$$$$$ /$$$$$$$ /$$$$$$ /$$$$$$/$$$$ /$$$$$$ /$$$$$$ /$$$$$$$ | $$ \__/ /$$$$$$/$$$$ /$$$$$$$ |
|
200
|
|
|
| $$$$$/ | $$ | $$| $$__ $$ /$$_____/|_ $$_/ | $$_ $$_ $$ |____ $$ |____ $$| $$__ $$| $$ | $$_ $$_ $$ /$$_____/ |
|
201
|
|
|
| $$ $$ | $$ | $$| $$ \ $$| $$$$$$ | $$ | $$ \ $$ \ $$ /$$$$$$$ /$$$$$$$| $$ \ $$| $$ | $$ \ $$ \ $$| $$$$$$ |
|
202
|
|
|
| $$\ $$ | $$ | $$| $$ | $$ \____ $$ | $$ /$$| $$ | $$ | $$ /$$__ $$ /$$__ $$| $$ | $$| $$ $$| $$ | $$ | $$ \____ $$ |
|
203
|
|
|
| $$ \ $$| $$$$$$/| $$ | $$ /$$$$$$$/ | $$$$/| $$ | $$ | $$| $$$$$$$| $$$$$$$| $$ | $$| $$$$$$/| $$ | $$ | $$ /$$$$$$$/ |
|
204
|
|
|
|__/ \__/ \______/ |__/ |__/|_______/ \___/ |__/ |__/ |__/ \_______/ \_______/|__/ |__/ \______/ |__/ |__/ |__/|_______/ |
|
205
|
|
|
'; |
|
206
|
|
|
} |
|
207
|
|
|
|
|
208
|
|
|
protected function createGenerator() |
|
209
|
|
|
{ |
|
210
|
|
|
// we don't need generator here |
|
211
|
|
|
} |
|
212
|
|
|
} |
|
213
|
|
|
|
This check looks for PHPDoc comments describing methods or function parameters that do not exist on the corresponding method or function.
Consider the following example. The parameter
$italyis not defined by the methodfinale(...).The most likely cause is that the parameter was removed, but the annotation was not.