Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[GeneratorBundle] Kuma install command #1836

Merged
merged 5 commits into from Mar 22, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 8 additions & 0 deletions docs/installation/index.md
Expand Up @@ -39,6 +39,14 @@ At this point refreshing the page for your repository on GitHub will show you yo

> Please note that the [.gitignore](https://github.com/Kunstmaan/KunstmaanBundlesStandardEdition/blob/master/.gitignore#L4) file of the KunstmaanBundlesStandardEdition prevents committing your parameters.yml file into git. Depending on your needs, you could change this by removing that line from yout .gitignore file.

## Fast installation

```
bin/console kuma:install
```

Use above command to install kuma site or follow below steps.

## Generating a bundle

First, you should generate a bundle for your website specific code.
Expand Down
178 changes: 178 additions & 0 deletions src/Kunstmaan/GeneratorBundle/Command/InstallCommand.php
@@ -0,0 +1,178 @@
<?php

namespace Kunstmaan\GeneratorBundle\Command;

use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\ArrayInput;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Question\Question;
use Symfony\Component\Console\Style\SymfonyStyle;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\InputDefinition;
use Symfony\Component\Console\Output\OutputInterface;
use Sensio\Bundle\GeneratorBundle\Command\Validators;
use Symfony\Component\Console\Question\ChoiceQuestion;
use Symfony\Component\HttpKernel\Kernel;
use Symfony\Component\Process\Exception\RuntimeException;
use Sensio\Bundle\GeneratorBundle\Command\Helper\QuestionHelper;
use Symfony\Component\Debug\Exception\ContextErrorException;

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Add class docblock.

/**
* Kunstmaan installer
*/
final class InstallCommand extends Command
{
/**
* @var int
*/
private $commandSteps = 0;

/** @var string */
private $projectDir;

/**
* @param string $rootDir
*/
public function __construct(string $projectDir)
{
$this->projectDir = $projectDir;

parent::__construct();
}

protected function configure()
{
$this
->setName('kuma:install')
->setDescription('KunstmaanCMS installer.')
->setDefinition(
new InputDefinition(
[
new InputOption('demosite', '', InputOption::VALUE_REQUIRED, 'Do you want to create a "demosite"'),
new InputOption('create-tests', '', InputOption::VALUE_REQUIRED, 'Do you want to create tests for you pages/pageparts'),
new InputOption('namespace', '', InputOption::VALUE_OPTIONAL, 'The namespace of the bundle to create (only for SF3)'),
new InputOption('dir', '', InputOption::VALUE_OPTIONAL, 'The directory where to create the bundle (only for SF3)'),
new InputOption('bundle-name', '', InputOption::VALUE_OPTIONAL, 'The optional bundle name (only for SF3)'),
]
)
);
}

protected function interact(InputInterface $input, OutputInterface $output)
{
$questionHelper = new QuestionHelper();

$outputStyle = new SymfonyStyle($input, $output);
$outputStyle->writeln('<info>Installing KunstmaanCms...</info>');
$outputStyle->writeln($this->getKunstmaanLogo());

// Only ask namespace for Symfony 3
if (Kernel::VERSION_ID < 40000) {
$question = new Question(
$questionHelper->getQuestion('Bundle namespace', $input->getOption('namespace')),
$input->getOption('namespace')
);
$question->setValidator([Validators::class, 'validateBundleNamespace']);
$namespace = $questionHelper->ask($input, $output, $question);
$input->setOption('namespace', $namespace);
$input->setOption('bundle-name', strtr($namespace, ['\\Bundle\\' => '', '\\' => '']));

$dir = $input->getOption('dir') ?: $this->projectDir . '/src';
$input->setOption('dir', $dir);
}

$question = new ChoiceQuestion(
'Do you want to create a "demosite"',
['No (default)', 'Yes'],
0
);
$question->setErrorMessage('Option "%s" is invalid.');
$demoSiteOption = $questionHelper->ask($input, $output, $question);
$input->setOption('demosite', $demoSiteOption);

$question = new ChoiceQuestion(
'Do you want to create tests for you pages/pageparts?',
['No (default)', 'Yes'],
0
);
$question->setErrorMessage('Option "%s" is invalid.');
$createTests = $questionHelper->ask($input, $output, $question);
$input->setOption('create-tests', $createTests);

$output->writeln('<info>Installation start</info>');
}

protected function execute(InputInterface $input, OutputInterface $output)
{
$defaultSiteOptions = [];
if ($input->getOption('demosite') === 'Yes') {
$defaultSiteOptions['--demosite'] = true;
}

if (Kernel::VERSION_ID < 40000) {
$defaultSiteOptions = ['--namespace' => $input->getOption('namespace')];

$this->executeCommand($output, 'kuma:generate:bundle', [
'--namespace' => $input->getOption('namespace'),
'--dir' => $input->getOption('dir'),
'--bundle-name' => $input->getOption('bundle-name'),
]);
}

$this
->executeCommand($output, 'kuma:generate:default-site', $defaultSiteOptions)
->executeCommand($output, 'doctrine:database:create')
->executeCommand($output, 'doctrine:schema:drop', ['--force' => true])
->executeCommand($output, 'doctrine:schema:create')
->executeCommand($output, 'doctrine:fixtures:load')
;

if ($input->getOption('create-tests') === 'Yes') {
$adminTestOptions = [];
if (Kernel::VERSION_ID < 40000) {
$adminTestOptions = ['--namespace' => $input->getOption('namespace')];
}

$this->executeCommand($output, 'kuma:generate:admin-tests', $adminTestOptions);
}
}

protected function executeCommand(OutputInterface $output, $command, array $options = [])
{
$options = array_merge(
[
'--no-debug' => true,
],
$options
);

++$this->commandSteps;

try {
$updateInput = new ArrayInput($options);
$updateInput->setInteractive(true);
$this->getApplication()->find($command)->run($updateInput, $output);
$output->writeln(sprintf('<info>Step %d: "%s" - [OK]</info>', $this->commandSteps, $command));
} catch (RuntimeException $exception) {
$output->writeln(sprintf('<error>Step %d: "%s" - [FAILED]</error>', $this->commandSteps, $command));
} catch (ContextErrorException $e) {
$output->writeln(sprintf('<error>Step %d: "%s" - [FAILED]</error>', $this->commandSteps, $command));
}

return $this;
}

protected function getKunstmaanLogo()
{
return '
/$$ /$$ /$$ /$$$$$$
| $$ /$$/ | $$ /$$__ $$
| $$ /$$/ /$$ /$$ /$$$$$$$ /$$$$$$$ /$$$$$$ /$$$$$$/$$$$ /$$$$$$ /$$$$$$ /$$$$$$$ | $$ \__/ /$$$$$$/$$$$ /$$$$$$$
| $$$$$/ | $$ | $$| $$__ $$ /$$_____/|_ $$_/ | $$_ $$_ $$ |____ $$ |____ $$| $$__ $$| $$ | $$_ $$_ $$ /$$_____/
| $$ $$ | $$ | $$| $$ \ $$| $$$$$$ | $$ | $$ \ $$ \ $$ /$$$$$$$ /$$$$$$$| $$ \ $$| $$ | $$ \ $$ \ $$| $$$$$$
| $$\ $$ | $$ | $$| $$ | $$ \____ $$ | $$ /$$| $$ | $$ | $$ /$$__ $$ /$$__ $$| $$ | $$| $$ $$| $$ | $$ | $$ \____ $$
| $$ \ $$| $$$$$$/| $$ | $$ /$$$$$$$/ | $$$$/| $$ | $$ | $$| $$$$$$$| $$$$$$$| $$ | $$| $$$$$$/| $$ | $$ | $$ /$$$$$$$/
|__/ \__/ \______/ |__/ |__/|_______/ \___/ |__/ |__/ |__/ \_______/ \_______/|__/ |__/ \______/ |__/ |__/ |__/|_______/
';
}
}
4 changes: 4 additions & 0 deletions src/Kunstmaan/GeneratorBundle/Resources/config/services.yml
Expand Up @@ -47,3 +47,7 @@ services:
tags:
- { name: console.command }

Kunstmaan\GeneratorBundle\Command\InstallCommand:
arguments: ['%kernel.project_dir%']
tags:
- { name: console.command }