]> git.immae.eu Git - github/wallabag/wallabag.git/blame - src/Wallabag/CoreBundle/Command/InstallCommand.php
Merge pull request #1648 from lologhi/patch-1
[github/wallabag/wallabag.git] / src / Wallabag / CoreBundle / Command / InstallCommand.php
CommitLineData
2e45e7be
J
1<?php
2
3namespace Wallabag\CoreBundle\Command;
4
5use Symfony\Bundle\FrameworkBundle\Command\ContainerAwareCommand;
619cc453
JB
6use Symfony\Component\Console\Helper\Table;
7use Symfony\Component\Console\Input\ArrayInput;
2e45e7be 8use Symfony\Component\Console\Input\InputInterface;
0bf99bb1 9use Symfony\Component\Console\Input\InputOption;
0bf99bb1 10use Symfony\Component\Console\Output\NullOutput;
619cc453 11use Symfony\Component\Console\Output\OutputInterface;
78507d28 12use Symfony\Component\Console\Question\ConfirmationQuestion;
619cc453 13use Symfony\Component\Console\Question\Question;
4d85d7e9 14use Wallabag\CoreBundle\Entity\Config;
d6ba77e8 15use Craue\ConfigBundle\Entity\Setting;
2e45e7be
J
16
17class InstallCommand extends ContainerAwareCommand
18{
0bf99bb1
J
19 /**
20 * @var InputInterface
21 */
22 protected $defaultInput;
23
24 /**
25 * @var OutputInterface
26 */
27 protected $defaultOutput;
28
2e45e7be
J
29 protected function configure()
30 {
31 $this
32 ->setName('wallabag:install')
33 ->setDescription('Wallabag installer.')
0bf99bb1
J
34 ->addOption(
35 'reset',
36 null,
37 InputOption::VALUE_NONE,
38 'Reset current database'
39 )
2e45e7be
J
40 ;
41 }
42
43 protected function execute(InputInterface $input, OutputInterface $output)
44 {
0bf99bb1
J
45 $this->defaultInput = $input;
46 $this->defaultOutput = $output;
47
48 $output->writeln('<info>Installing Wallabag...</info>');
2e45e7be
J
49 $output->writeln('');
50
51 $this
0bf99bb1
J
52 ->checkRequirements()
53 ->setupDatabase()
54 ->setupAdmin()
55 ->setupAsset()
2e45e7be
J
56 ;
57
58 $output->writeln('<info>Wallabag has been successfully installed.</info>');
c7f622d3 59 $output->writeln('<comment>Just execute `php bin/console server:run` for using wallabag: http://localhost:8000</comment>');
2e45e7be
J
60 }
61
0bf99bb1 62 protected function checkRequirements()
2e45e7be 63 {
0bf99bb1 64 $this->defaultOutput->writeln('<info><comment>Step 1 of 4.</comment> Checking system requirements.</info>');
2e45e7be
J
65
66 $fulfilled = true;
67
0bf99bb1 68 $label = '<comment>PCRE</comment>';
2e45e7be 69 if (extension_loaded('pcre')) {
0bf99bb1
J
70 $status = '<info>OK!</info>';
71 $help = '';
2e45e7be
J
72 } else {
73 $fulfilled = false;
0bf99bb1
J
74 $status = '<error>ERROR!</error>';
75 $help = 'You should enabled PCRE extension';
2e45e7be 76 }
0bf99bb1 77 $rows[] = array($label, $status, $help);
2e45e7be 78
0bf99bb1 79 $label = '<comment>DOM</comment>';
2e45e7be 80 if (extension_loaded('DOM')) {
0bf99bb1
J
81 $status = '<info>OK!</info>';
82 $help = '';
2e45e7be
J
83 } else {
84 $fulfilled = false;
0bf99bb1
J
85 $status = '<error>ERROR!</error>';
86 $help = 'You should enabled DOM extension';
2e45e7be 87 }
0bf99bb1
J
88 $rows[] = array($label, $status, $help);
89
78507d28
JB
90 $table = new Table($this->defaultOutput);
91 $table
0bf99bb1
J
92 ->setHeaders(array('Checked', 'Status', 'Recommendation'))
93 ->setRows($rows)
78507d28 94 ->render();
2e45e7be
J
95
96 if (!$fulfilled) {
0bf99bb1 97 throw new \RuntimeException('Some system requirements are not fulfilled. Please check output messages and fix them.');
2e45e7be
J
98 }
99
8a493541
JB
100 $this->defaultOutput->writeln('<info>Success! Your system can run Wallabag properly.</info>');
101
0bf99bb1 102 $this->defaultOutput->writeln('');
2e45e7be
J
103
104 return $this;
105 }
106
0bf99bb1 107 protected function setupDatabase()
2e45e7be 108 {
0bf99bb1 109 $this->defaultOutput->writeln('<info><comment>Step 2 of 4.</comment> Setting up database.</info>');
2e45e7be 110
0bf99bb1
J
111 // user want to reset everything? Don't care about what is already here
112 if (true === $this->defaultInput->getOption('reset')) {
d5027625 113 $this->defaultOutput->writeln('Droping database, creating database and schema, clearing the cache');
2e45e7be 114
0bf99bb1
J
115 $this
116 ->runCommand('doctrine:database:drop', array('--force' => true))
117 ->runCommand('doctrine:database:create')
118 ->runCommand('doctrine:schema:create')
d5027625 119 ->runCommand('cache:clear')
0bf99bb1 120 ;
2e45e7be 121
d5027625
JB
122 $this->defaultOutput->writeln('');
123
0bf99bb1
J
124 return $this;
125 }
2e45e7be 126
0bf99bb1
J
127 if (!$this->isDatabasePresent()) {
128 $this->defaultOutput->writeln('Creating database and schema, clearing the cache');
2e45e7be 129
0bf99bb1
J
130 $this
131 ->runCommand('doctrine:database:create')
132 ->runCommand('doctrine:schema:create')
133 ->runCommand('cache:clear')
134 ;
2e45e7be 135
d5027625
JB
136 $this->defaultOutput->writeln('');
137
0bf99bb1
J
138 return $this;
139 }
2e45e7be 140
78507d28
JB
141 $questionHelper = $this->getHelper('question');
142 $question = new ConfirmationQuestion('It appears that your database already exists. Would you like to reset it? (y/N)', false);
2e45e7be 143
78507d28 144 if ($questionHelper->ask($this->defaultInput, $this->defaultOutput, $question)) {
0bf99bb1 145 $this->defaultOutput->writeln('Droping database, creating database and schema');
2e45e7be 146
0bf99bb1
J
147 $this
148 ->runCommand('doctrine:database:drop', array('--force' => true))
149 ->runCommand('doctrine:database:create')
150 ->runCommand('doctrine:schema:create')
151 ;
152 } elseif ($this->isSchemaPresent()) {
78507d28
JB
153 $question = new ConfirmationQuestion('Seems like your database contains schema. Do you want to reset it? (y/N)', false);
154 if ($questionHelper->ask($this->defaultInput, $this->defaultOutput, $question)) {
0bf99bb1 155 $this->defaultOutput->writeln('Droping schema and creating schema');
2e45e7be 156
0bf99bb1
J
157 $this
158 ->runCommand('doctrine:schema:drop', array('--force' => true))
159 ->runCommand('doctrine:schema:create')
160 ;
161 }
2e45e7be 162 } else {
0bf99bb1
J
163 $this->defaultOutput->writeln('Creating schema');
164
165 $this
166 ->runCommand('doctrine:schema:create')
167 ;
2e45e7be
J
168 }
169
0bf99bb1
J
170 $this->defaultOutput->writeln('Clearing the cache');
171 $this->runCommand('cache:clear');
172
0bf99bb1
J
173 $this->defaultOutput->writeln('');
174
175 return $this;
2e45e7be
J
176 }
177
0bf99bb1 178 protected function setupAdmin()
2e45e7be 179 {
0bf99bb1
J
180 $this->defaultOutput->writeln('<info><comment>Step 3 of 4.</comment> Administration setup.</info>');
181
78507d28
JB
182 $questionHelper = $this->getHelperSet()->get('question');
183 $question = new ConfirmationQuestion('Would you like to create a new user ? (y/N)', false);
0bf99bb1 184
78507d28 185 if (!$questionHelper->ask($this->defaultInput, $this->defaultOutput, $question)) {
0bf99bb1
J
186 return $this;
187 }
188
2e45e7be
J
189 $em = $this->getContainer()->get('doctrine.orm.entity_manager');
190
ec3ce598
NL
191 $userManager = $this->getContainer()->get('fos_user.user_manager');
192 $user = $userManager->createUser();
78507d28
JB
193
194 $question = new Question('Username (default: wallabag) :', 'wallabag');
195 $user->setUsername($questionHelper->ask($this->defaultInput, $this->defaultOutput, $question));
196
197 $question = new Question('Password (default: wallabag) :', 'wallabag');
198 $user->setPlainPassword($questionHelper->ask($this->defaultInput, $this->defaultOutput, $question));
199
200 $question = new Question('Email:', '');
201 $user->setEmail($questionHelper->ask($this->defaultInput, $this->defaultOutput, $question));
202
a1691859 203 $user->setEnabled(true);
2e45e7be
J
204
205 $em->persist($user);
206
0bd2cb1e 207 $config = new Config($user);
bc789687
JB
208 $config->setTheme($this->getContainer()->getParameter('wallabag_core.theme'));
209 $config->setItemsPerPage($this->getContainer()->getParameter('wallabag_core.items_on_page'));
210 $config->setRssLimit($this->getContainer()->getParameter('wallabag_core.rss_limit'));
211 $config->setLanguage($this->getContainer()->getParameter('wallabag_core.language'));
2e45e7be 212
4d85d7e9 213 $em->persist($config);
0bf99bb1 214
d6ba77e8
JB
215 // cleanup before insert new stuff
216 $em->createQuery('DELETE FROM CraueConfigBundle:Setting')->execute();
217
218 $settings = [
219 [
220 'name' => 'download_pictures',
221 'value' => '1',
222 'section' => 'entry',
223 ],
224 [
225 'name' => 'carrot',
226 'value' => '1',
227 'section' => 'entry',
228 ],
229 [
230 'name' => 'share_diaspora',
231 'value' => '1',
232 'section' => 'entry',
233 ],
234 [
235 'name' => 'diaspora_url',
236 'value' => 'http://diasporapod.com',
237 'section' => 'entry',
238 ],
239 [
240 'name' => 'share_shaarli',
241 'value' => '1',
242 'section' => 'entry',
243 ],
244 [
245 'name' => 'shaarli_url',
246 'value' => 'http://myshaarli.com',
247 'section' => 'entry',
248 ],
249 [
250 'name' => 'share_mail',
251 'value' => '1',
252 'section' => 'entry',
253 ],
254 [
255 'name' => 'share_twitter',
256 'value' => '1',
257 'section' => 'entry',
258 ],
259 [
260 'name' => 'export_epub',
261 'value' => '1',
262 'section' => 'export',
263 ],
264 [
265 'name' => 'export_mobi',
266 'value' => '1',
267 'section' => 'export',
268 ],
269 [
270 'name' => 'export_pdf',
271 'value' => '1',
272 'section' => 'export',
273 ],
a74a6ca2
JB
274 [
275 'name' => 'export_csv',
276 'value' => '1',
277 'section' => 'export',
278 ],
279 [
280 'name' => 'export_json',
281 'value' => '1',
282 'section' => 'export',
283 ],
284 [
285 'name' => 'export_txt',
286 'value' => '1',
287 'section' => 'export',
288 ],
289 [
290 'name' => 'export_xml',
291 'value' => '1',
292 'section' => 'export',
293 ],
d6ba77e8
JB
294 [
295 'name' => 'pocket_consumer_key',
1c7d6664 296 'value' => null,
d6ba77e8
JB
297 'section' => 'import',
298 ],
299 [
300 'name' => 'show_printlink',
301 'value' => '1',
302 'section' => 'entry',
303 ],
304 [
305 'name' => 'wallabag_support_url',
306 'value' => 'https://www.wallabag.org/pages/support.html',
307 'section' => 'misc',
308 ],
309 [
310 'name' => 'wallabag_url',
311 'value' => 'http://v2.wallabag.org',
312 'section' => 'misc',
313 ],
314 ];
315
316 foreach ($settings as $setting) {
317 $newSetting = new Setting();
318 $newSetting->setName($setting['name']);
319 $newSetting->setValue($setting['value']);
320 $newSetting->setSection($setting['section']);
321 $em->persist($newSetting);
322 }
323
0bf99bb1
J
324 $em->flush();
325
326 $this->defaultOutput->writeln('');
327
328 return $this;
2e45e7be
J
329 }
330
0bf99bb1 331 protected function setupAsset()
2e45e7be 332 {
0bf99bb1
J
333 $this->defaultOutput->writeln('<info><comment>Step 4 of 4.</comment> Installing assets.</info>');
334
2e45e7be 335 $this
0bf99bb1
J
336 ->runCommand('assets:install')
337 ->runCommand('assetic:dump')
2e45e7be
J
338 ;
339
0bf99bb1
J
340 $this->defaultOutput->writeln('');
341
342 return $this;
343 }
344
345 /**
4346a860 346 * Run a command.
0bf99bb1
J
347 *
348 * @param string $command
349 * @param array $parameters Parameters to this command (usually 'force' => true)
350 */
351 protected function runCommand($command, $parameters = array())
352 {
353 $parameters = array_merge(
354 array('command' => $command),
355 $parameters,
356 array(
357 '--no-debug' => true,
358 '--env' => $this->defaultInput->getOption('env') ?: 'dev',
359 )
360 );
361
362 if ($this->defaultInput->getOption('no-interaction')) {
363 $parameters = array_merge($parameters, array('--no-interaction' => true));
364 }
365
366 $this->getApplication()->setAutoExit(false);
367 $exitCode = $this->getApplication()->run(new ArrayInput($parameters), new NullOutput());
368
369 if (0 !== $exitCode) {
370 $this->getApplication()->setAutoExit(true);
371
372 $errorMessage = sprintf('The command "%s" terminated with an error code: %u.', $command, $exitCode);
373 $this->defaultOutput->writeln("<error>$errorMessage</error>");
374 $exception = new \Exception($errorMessage, $exitCode);
375
376 throw $exception;
377 }
378
379 // PDO does not always close the connection after Doctrine commands.
380 // See https://github.com/symfony/symfony/issues/11750.
381 $this->getContainer()->get('doctrine')->getManager()->getConnection()->close();
382
2e45e7be
J
383 return $this;
384 }
0bf99bb1
J
385
386 /**
4346a860 387 * Check if the database already exists.
0bf99bb1 388 *
4346a860 389 * @return bool
0bf99bb1
J
390 */
391 private function isDatabasePresent()
392 {
af43bd37
JB
393 $connection = $this->getContainer()->get('doctrine')->getManager()->getConnection();
394 $databaseName = $connection->getDatabase();
0bf99bb1
J
395
396 try {
af43bd37 397 $schemaManager = $connection->getSchemaManager();
0bf99bb1 398 } catch (\Exception $exception) {
54a2241e 399 // mysql & sqlite
0bf99bb1
J
400 if (false !== strpos($exception->getMessage(), sprintf("Unknown database '%s'", $databaseName))) {
401 return false;
402 }
403
54a2241e
JB
404 // pgsql
405 if (false !== strpos($exception->getMessage(), sprintf('database "%s" does not exist', $databaseName))) {
406 return false;
407 }
408
0bf99bb1
J
409 throw $exception;
410 }
411
732c2ad8
J
412 // custom verification for sqlite, since `getListDatabasesSQL` doesn't work for sqlite
413 if ('sqlite' == $schemaManager->getDatabasePlatform()->getName()) {
414 $params = $this->getContainer()->get('doctrine.dbal.default_connection')->getParams();
415
416 if (isset($params['path']) && file_exists($params['path'])) {
417 return true;
418 }
419
420 return false;
421 }
422
0bf99bb1
J
423 return in_array($databaseName, $schemaManager->listDatabases());
424 }
425
426 /**
164bd801 427 * Check if the schema is already created.
4346a860 428 * If we found at least oen table, it means the schema exists.
0bf99bb1 429 *
4346a860 430 * @return bool
0bf99bb1
J
431 */
432 private function isSchemaPresent()
433 {
434 $schemaManager = $this->getContainer()->get('doctrine')->getManager()->getConnection()->getSchemaManager();
435
164bd801 436 return count($schemaManager->listTableNames()) > 0 ? true : false;
0bf99bb1 437 }
2e45e7be 438}