wallabag/src/Wallabag/CoreBundle/Command/InstallCommand.php

426 lines
14 KiB
PHP
Raw Normal View History

<?php
namespace Wallabag\CoreBundle\Command;
2022-08-28 00:01:46 +00:00
use Doctrine\DBAL\Connection;
2022-08-28 14:59:43 +00:00
use Doctrine\DBAL\Exception\DriverException;
2022-08-28 00:01:46 +00:00
use Doctrine\ORM\EntityManagerInterface;
use FOS\UserBundle\Event\UserEvent;
use FOS\UserBundle\FOSUserEvents;
2022-08-28 00:01:46 +00:00
use FOS\UserBundle\Model\UserManagerInterface;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\ArrayInput;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Output\BufferedOutput;
use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Component\Console\Question\Question;
2017-07-28 22:30:22 +00:00
use Symfony\Component\Console\Style\SymfonyStyle;
2022-08-28 00:01:46 +00:00
use Symfony\Component\EventDispatcher\EventDispatcherInterface;
use Wallabag\CoreBundle\Entity\IgnoreOriginInstanceRule;
2019-08-08 13:19:53 +00:00
use Wallabag\CoreBundle\Entity\InternalSetting;
2022-11-23 14:51:33 +00:00
use Wallabag\UserBundle\Entity\User;
class InstallCommand extends Command
{
private InputInterface $defaultInput;
private SymfonyStyle $io;
private array $functionExists = [
'curl_exec',
'curl_multi_init',
2016-02-23 15:41:38 +00:00
];
2022-09-03 00:17:36 +00:00
private bool $runOtherCommands = true;
private EntityManagerInterface $entityManager;
private EventDispatcherInterface $dispatcher;
private UserManagerInterface $userManager;
private string $databaseDriver;
private string $databaseName;
private array $defaultSettings;
private array $defaultIgnoreOriginInstanceRules;
public function __construct(EntityManagerInterface $entityManager, EventDispatcherInterface $dispatcher, UserManagerInterface $userManager, string $databaseDriver, string $databaseName, array $defaultSettings, array $defaultIgnoreOriginInstanceRules)
{
$this->entityManager = $entityManager;
$this->dispatcher = $dispatcher;
$this->userManager = $userManager;
$this->databaseDriver = $databaseDriver;
$this->databaseName = $databaseName;
$this->defaultSettings = $defaultSettings;
$this->defaultIgnoreOriginInstanceRules = $defaultIgnoreOriginInstanceRules;
parent::__construct();
}
2022-09-03 00:17:36 +00:00
public function disableRunOtherCommands(): void
{
$this->runOtherCommands = false;
}
protected function configure()
{
$this
->setName('wallabag:install')
2016-10-22 12:05:59 +00:00
->setDescription('wallabag installer.')
->addOption(
'reset',
null,
InputOption::VALUE_NONE,
'Reset current database'
)
;
}
protected function execute(InputInterface $input, OutputInterface $output)
{
$this->defaultInput = $input;
2017-07-28 22:30:22 +00:00
$this->io = new SymfonyStyle($input, $output);
2019-07-10 07:59:07 +00:00
$this->io->title('wallabag installer');
$this
->checkRequirements()
->setupDatabase()
->setupAdmin()
->setupConfig()
;
2019-07-10 07:59:07 +00:00
$this->io->success('wallabag has been successfully installed.');
$this->io->success('You can now configure your web server, see https://doc.wallabag.org');
2022-11-23 14:51:33 +00:00
return 0;
}
private function checkRequirements()
{
2017-11-04 20:23:18 +00:00
$this->io->section('Step 1 of 4: Checking system requirements.');
2017-07-28 22:30:22 +00:00
$rows = [];
// testing if database driver exists
$fulfilled = true;
$label = '<comment>PDO Driver (%s)</comment>';
$status = '<info>OK!</info>';
$help = '';
if (!\extension_loaded($this->databaseDriver)) {
$fulfilled = false;
$status = '<error>ERROR!</error>';
$help = 'Database driver "' . $this->databaseDriver . '" is not installed.';
}
$rows[] = [sprintf($label, $this->databaseDriver), $status, $help];
// testing if connection to the database can be etablished
$label = '<comment>Database connection</comment>';
$status = '<info>OK!</info>';
$help = '';
$conn = $this->entityManager->getConnection();
try {
$conn->connect();
} catch (\Exception $e) {
if (false === strpos($e->getMessage(), 'Unknown database')
&& false === strpos($e->getMessage(), 'database "' . $this->databaseName . '" does not exist')) {
$fulfilled = false;
$status = '<error>ERROR!</error>';
2017-07-01 07:52:38 +00:00
$help = 'Can\'t connect to the database: ' . $e->getMessage();
}
}
2016-03-27 18:35:56 +00:00
$rows[] = [$label, $status, $help];
// check MySQL & PostgreSQL version
$label = '<comment>Database version</comment>';
$status = '<info>OK!</info>';
$help = '';
// now check if MySQL isn't too old to handle utf8mb4
if ($conn->isConnected() && 'mysql' === $conn->getDatabasePlatform()->getName()) {
$version = $conn->query('select version()')->fetchOne();
$minimalVersion = '5.5.4';
if (false === version_compare($version, $minimalVersion, '>')) {
$fulfilled = false;
$status = '<error>ERROR!</error>';
2017-07-01 07:52:38 +00:00
$help = 'Your MySQL version (' . $version . ') is too old, consider upgrading (' . $minimalVersion . '+).';
}
}
// testing if PostgreSQL > 9.1
if ($conn->isConnected() && 'postgresql' === $conn->getDatabasePlatform()->getName()) {
// return version should be like "PostgreSQL 9.5.4 on x86_64-apple-darwin15.6.0, compiled by Apple LLVM version 8.0.0 (clang-800.0.38), 64-bit"
$version = $conn->query('SELECT version();')->fetchOne();
preg_match('/PostgreSQL ([0-9\.]+)/i', $version, $matches);
if (isset($matches[1]) & version_compare($matches[1], '9.2.0', '<')) {
$fulfilled = false;
$status = '<error>ERROR!</error>';
2017-07-01 07:52:38 +00:00
$help = 'PostgreSQL should be greater than 9.1 (actual version: ' . $matches[1] . ')';
}
}
$rows[] = [$label, $status, $help];
foreach ($this->functionExists as $functionRequired) {
2017-07-01 07:52:38 +00:00
$label = '<comment>' . $functionRequired . '</comment>';
$status = '<info>OK!</info>';
$help = '';
if (!\function_exists($functionRequired)) {
2016-02-23 15:41:38 +00:00
$fulfilled = false;
$status = '<error>ERROR!</error>';
2017-07-01 07:52:38 +00:00
$help = 'You need the ' . $functionRequired . ' function activated';
2016-02-23 15:41:38 +00:00
}
2016-03-27 18:35:56 +00:00
$rows[] = [$label, $status, $help];
}
2017-07-28 22:30:22 +00:00
$this->io->table(['Checked', 'Status', 'Recommendation'], $rows);
if (!$fulfilled) {
throw new \RuntimeException('Some system requirements are not fulfilled. Please check output messages and fix them.');
}
2017-07-28 22:30:22 +00:00
$this->io->success('Success! Your system can run wallabag properly.');
return $this;
}
private function setupDatabase()
{
2017-11-04 20:23:18 +00:00
$this->io->section('Step 2 of 4: Setting up database.');
// user want to reset everything? Don't care about what is already here
if (true === $this->defaultInput->getOption('reset')) {
2017-07-28 22:30:22 +00:00
$this->io->text('Dropping database, creating database and schema, clearing the cache');
$this
2016-03-27 18:35:56 +00:00
->runCommand('doctrine:database:drop', ['--force' => true])
->runCommand('doctrine:database:create')
2017-11-04 20:23:18 +00:00
->runCommand('doctrine:migrations:migrate', ['--no-interaction' => true])
->runCommand('cache:clear')
;
2017-07-28 22:30:22 +00:00
$this->io->newLine();
return $this;
}
if (!$this->isDatabasePresent()) {
2017-07-28 22:30:22 +00:00
$this->io->text('Creating database and schema, clearing the cache');
$this
->runCommand('doctrine:database:create')
2017-11-04 20:23:18 +00:00
->runCommand('doctrine:migrations:migrate', ['--no-interaction' => true])
->runCommand('cache:clear')
;
2017-07-28 22:30:22 +00:00
$this->io->newLine();
return $this;
}
2017-07-28 22:30:22 +00:00
if ($this->io->confirm('It appears that your database already exists. Would you like to reset it?', false)) {
$this->io->text('Dropping database, creating database and schema...');
$this
2016-03-27 18:35:56 +00:00
->runCommand('doctrine:database:drop', ['--force' => true])
->runCommand('doctrine:database:create')
2017-11-04 20:23:18 +00:00
->runCommand('doctrine:migrations:migrate', ['--no-interaction' => true])
;
} elseif ($this->isSchemaPresent()) {
2017-07-28 22:30:22 +00:00
if ($this->io->confirm('Seems like your database contains schema. Do you want to reset it?', false)) {
$this->io->text('Dropping schema and creating schema...');
$this
2016-03-27 18:35:56 +00:00
->runCommand('doctrine:schema:drop', ['--force' => true])
2017-11-04 20:23:18 +00:00
->runCommand('doctrine:migrations:migrate', ['--no-interaction' => true])
;
}
} else {
2017-07-28 22:30:22 +00:00
$this->io->text('Creating schema...');
$this
2017-11-04 20:23:18 +00:00
->runCommand('doctrine:migrations:migrate', ['--no-interaction' => true])
;
}
2017-07-28 22:30:22 +00:00
$this->io->text('Clearing the cache...');
$this->runCommand('cache:clear');
2017-07-28 22:30:22 +00:00
$this->io->newLine();
$this->io->text('<info>Database successfully setup.</info>');
return $this;
}
private function setupAdmin()
{
2017-11-04 20:23:18 +00:00
$this->io->section('Step 3 of 4: Administration setup.');
2017-07-28 22:30:22 +00:00
if (!$this->io->confirm('Would you like to create a new admin user (recommended)?', true)) {
return $this;
}
$user = $this->userManager->createUser();
2022-11-23 14:51:33 +00:00
\assert($user instanceof User);
2015-11-06 22:39:19 +00:00
2017-07-28 22:30:22 +00:00
$user->setUsername($this->io->ask('Username', 'wallabag'));
2015-11-06 22:39:19 +00:00
2017-07-28 22:30:22 +00:00
$question = new Question('Password', 'wallabag');
$question->setHidden(true);
$user->setPlainPassword($this->io->askQuestion($question));
2015-11-06 22:39:19 +00:00
2019-04-25 12:12:56 +00:00
$user->setEmail($this->io->ask('Email', 'wallabag@wallabag.io'));
2015-11-06 22:39:19 +00:00
2015-08-18 09:08:45 +00:00
$user->setEnabled(true);
$user->addRole('ROLE_SUPER_ADMIN');
$this->entityManager->persist($user);
// dispatch a created event so the associated config will be created
$this->dispatcher->dispatch(new UserEvent($user), FOSUserEvents::USER_CREATED);
2017-07-28 22:30:22 +00:00
$this->io->text('<info>Administration successfully setup.</info>');
return $this;
}
private function setupConfig()
{
2017-11-04 20:23:18 +00:00
$this->io->section('Step 4 of 4: Config setup.');
// cleanup before insert new stuff
$this->entityManager->createQuery('DELETE FROM Wallabag\CoreBundle\Entity\InternalSetting')->execute();
$this->entityManager->createQuery('DELETE FROM Wallabag\CoreBundle\Entity\IgnoreOriginInstanceRule')->execute();
foreach ($this->defaultSettings as $setting) {
2019-08-08 13:19:53 +00:00
$newSetting = new InternalSetting();
$newSetting->setName($setting['name']);
$newSetting->setValue($setting['value']);
$newSetting->setSection($setting['section']);
$this->entityManager->persist($newSetting);
}
foreach ($this->defaultIgnoreOriginInstanceRules as $ignore_origin_instance_rule) {
$newIgnoreOriginInstanceRule = new IgnoreOriginInstanceRule();
$newIgnoreOriginInstanceRule->setRule($ignore_origin_instance_rule['rule']);
$this->entityManager->persist($newIgnoreOriginInstanceRule);
}
$this->entityManager->flush();
2017-07-28 22:30:22 +00:00
$this->io->text('<info>Config successfully setup.</info>');
return $this;
}
/**
2015-05-30 11:52:26 +00:00
* Run a command.
*
* @param string $command
* @param array $parameters Parameters to this command (usually 'force' => true)
*/
private function runCommand($command, $parameters = [])
{
2022-09-03 00:17:36 +00:00
if (!$this->runOtherCommands) {
return $this;
}
$parameters = array_merge(
2016-03-27 18:35:56 +00:00
['command' => $command],
$parameters,
2016-03-27 18:35:56 +00:00
[
'--no-debug' => true,
'--env' => $this->defaultInput->getOption('env') ?: 'dev',
2016-03-27 18:35:56 +00:00
]
);
if ($this->defaultInput->getOption('no-interaction')) {
2016-03-27 18:35:56 +00:00
$parameters = array_merge($parameters, ['--no-interaction' => true]);
}
$this->getApplication()->setAutoExit(false);
$output = new BufferedOutput();
$exitCode = $this->getApplication()->run(new ArrayInput($parameters), $output);
// PDO does not always close the connection after Doctrine commands.
// See https://github.com/symfony/symfony/issues/11750.
$this->entityManager->getConnection()->close();
if (0 !== $exitCode) {
$this->getApplication()->setAutoExit(true);
throw new \RuntimeException('The command "' . $command . "\" generates some errors: \n\n" . $output->fetch());
}
return $this;
}
/**
2015-05-30 11:52:26 +00:00
* Check if the database already exists.
*
2015-05-30 11:52:26 +00:00
* @return bool
*/
private function isDatabasePresent()
{
$connection = $this->entityManager->getConnection();
$databaseName = $connection->getDatabase();
try {
$schemaManager = $connection->getSchemaManager();
} catch (\Exception $exception) {
// mysql & sqlite
if (false !== strpos($exception->getMessage(), sprintf("Unknown database '%s'", $databaseName))) {
return false;
}
// pgsql
if (false !== strpos($exception->getMessage(), sprintf('database "%s" does not exist', $databaseName))) {
return false;
}
throw $exception;
}
// custom verification for sqlite, since `getListDatabasesSQL` doesn't work for sqlite
if ('sqlite' === $schemaManager->getDatabasePlatform()->getName()) {
$params = $connection->getParams();
if (isset($params['path']) && file_exists($params['path'])) {
return true;
}
return false;
}
try {
return \in_array($databaseName, $schemaManager->listDatabases(), true);
2022-08-28 14:59:43 +00:00
} catch (DriverException $e) {
// it means we weren't able to get database list, assume the database doesn't exist
return false;
}
}
/**
2015-03-28 10:29:19 +00:00
* Check if the schema is already created.
2015-05-30 11:52:26 +00:00
* If we found at least oen table, it means the schema exists.
*
2015-05-30 11:52:26 +00:00
* @return bool
*/
private function isSchemaPresent()
{
$schemaManager = $this->entityManager->getConnection()->getSchemaManager();
return \count($schemaManager->listTableNames()) > 0 ? true : false;
}
}