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 2 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
160 changes: 160 additions & 0 deletions src/Kunstmaan/GeneratorBundle/Command/InstallCommand.php
@@ -0,0 +1,160 @@
<?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\Output\NullOutput;
use Symfony\Component\Console\Style\SymfonyStyle;
use Symfony\Component\Console\Input\InputArgument;
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\Process\Exception\RuntimeException;
use Symfony\Component\DependencyInjection\ContainerInterface;
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
*/
class InstallCommand extends Command
{
/**
* @var int
*/
private $commandSteps = 0;

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

/**
* @param string $rootDir
*/
public function __construct(string $rootDir)
acrobat marked this conversation as resolved.
Show resolved Hide resolved
{
$this->rootDir = $rootDir;

parent::__construct();
}

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

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());

$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);

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

$input->setOption('demosite', $demositeOption);
$input->setOption('bundle-name', strtr($namespace, ['\\Bundle\\' => '', '\\' => '']));

$dir = $input->getOption('dir') ?: dirname($this->rootDir) . '/src';
acrobat marked this conversation as resolved.
Show resolved Hide resolved
$input->setOption('dir', $dir);

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

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

$this
->executeCommand($output,'kuma:generate:bundle', [
'--namespace' => $input->getOption('namespace'),
'--dir' => $input->getOption('dir'),
'--bundle-name' => $input->getOption('bundle-name'),
])
->executeCommand($output,'kuma:generate:default-site', $demositeOptions)
->executeCommand($output,'doctrine:database:create')
->executeCommand($output,'doctrine:schema:drop', ['--force' => true])
->executeCommand($output,'doctrine:schema:create')
->executeCommand($output,'doctrine:fixtures:load')
->executeCommand($output,'kuma:generate:admin-tests', [
'--namespace' => $input->getOption('namespace')
])
;
}

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

$this->commandSteps++;
try {
$updateInput = new ArrayInput($options);
$updateInput->setInteractive(false);
$this->getApplication()->find($command)->run($updateInput, new NullOutput());
$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.root_dir%']
acrobat marked this conversation as resolved.
Show resolved Hide resolved
tags:
- { name: console.command }