Created installation script and installation command

This commit is contained in:
Alejandro Celaya 2016-08-14 09:09:23 +02:00
parent 2b2c0b7c13
commit cffa43a155
3 changed files with 72 additions and 0 deletions

11
bin/install Executable file
View File

@ -0,0 +1,11 @@
#!/usr/bin/env php
<?php
use Shlinkio\Shlink\CLI\Command\Install\InstallCommand;
use Symfony\Component\Console\Application;
require __DIR__ . '/../vendor/autoload.php';
$app = new Application();
$app->add(new InstallCommand());
$app->setDefaultCommand('shlink:install');
$app->run();

2
config/params/.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
*
!.gitignore

View File

@ -0,0 +1,59 @@
<?php
namespace Shlinkio\Shlink\CLI\Command\Install;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Helper\QuestionHelper;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Component\Console\Question\Question;
class InstallCommand extends Command
{
/**
* @var InputInterface
*/
private $input;
/**
* @var OutputInterface
*/
private $output;
public function configure()
{
$this->setName('shlink:install')
->setDescription('Installs Shlink');
}
public function execute(InputInterface $input, OutputInterface $output)
{
$this->input = $input;
$this->output = $output;
$params = [];
$output->writeln([
'<info>Welcome to Shlink!!</info>',
'This will guide you through the installation process.',
]);
$params['DB_NAME'] = $this->ask('Database name', 'shlink');
}
/**
* @param string $text
* @param string|null $default
* @return string
*/
protected function ask($text, $default = null)
{
/** @var QuestionHelper $questionHelper */
$questionHelper = $this->getHelper('question');
if (isset($default)) {
$text .= ' (defaults to ' . $default . ')';
}
return $questionHelper->ask($this->input, $this->output, new Question(
' <question>' . $text . ':</question> ',
$default
));
}
}