Completed
Push — master ( aba493...5356ed )
by Ruud
315:38 queued 305:00
created

Command/GenerateDefaultPagePartsCommand.php (1 issue)

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
3
namespace Kunstmaan\GeneratorBundle\Command;
4
5
use Kunstmaan\GeneratorBundle\Generator\DefaultPagePartGenerator;
6
use Symfony\Component\Console\Input\InputOption;
7
8
/**
9
 * Generates the default pageparts
10
 */
11
class GenerateDefaultPagePartsCommand extends KunstmaanGenerateCommand
12
{
13
    /**
14
     * @var BundleInterface
15
     */
16
    private $bundle;
17
18
    /**
19
     * @var string
20
     */
21
    private $prefix;
22
23
    /**
24
     * @var array
25
     */
26
    private $sections;
27
28
    /**
29
     * @var bool
30
     */
31
    private $behatTest;
32
33
    /**
34
     * @see Command
35
     */
36
    protected function configure()
37
    {
38
        $this->setDescription('Generates default pageparts')
39
            ->setHelp(<<<'EOT'
40
The <info>kuma:generate:default-pageparts</info> command generates the default pageparts and adds the pageparts configuration.
41
42
<info>php bin/console kuma:generate:default-pageparts</info>
43
EOT
44
            )
45
            ->addOption('namespace', '', InputOption::VALUE_OPTIONAL, 'The namespace to generate the default pageparts in')
46
            ->addOption('prefix', '', InputOption::VALUE_OPTIONAL, 'The prefix to be used in the table name of the generated entity')
47
            ->addOption('contexts', '', InputOption::VALUE_OPTIONAL, 'The contexts were we need to allow the pageparts (separated multiple sections with a comma)')
48
            ->setName('kuma:generate:default-pageparts');
49
    }
50
51
    /**
52
     * {@inheritdoc}
53
     */
54
    protected function getWelcomeText()
55
    {
56
        return 'Welcome to the Kunstmaan default pageparts generator';
57
    }
58
59
    /**
60
     * {@inheritdoc}
61
     */
62
    protected function doExecute()
63
    {
64
        $this->assistant->writeSection('Default PageParts generation');
65
66
        $pagepartNames = array(
67
            'AbstractPagePart',
68
            'AudioPagePart',
69
            'ButtonPagePart',
70
            'DownloadPagePart',
71
            'HeaderPagePart',
72
            'ImagePagePart',
73
            'IntroTextPagePart',
74
            'LinePagePart',
75
            'LinkPagePart',
76
            'RawHtmlPagePart',
77
            'TextPagePart',
78
            'TocPagePart',
79
            'ToTopPagePart',
80
            'VideoPagePart',
81
        );
82
83
        foreach ($pagepartNames as $pagepartName) {
84
            $this->createGenerator()->generate($this->bundle, $pagepartName, $this->prefix, $this->sections, $this->behatTest);
85
        }
86
87
        $this->assistant->writeSection('PageParts successfully created', 'bg=green;fg=black');
88
        $this->assistant->writeLine(array(
89
                'Make sure you update your database first before you test the pagepart:',
90
                '    Directly update your database:          <comment>bin/console doctrine:schema:update --force</comment>',
91
                '    Create a Doctrine migration and run it: <comment>bin/console doctrine:migrations:diff && bin/console doctrine:migrations:migrate</comment>', )
92
        );
93
    }
94
95
    /**
96
     * {@inheritdoc}
97
     */
98
    protected function doInteract()
99
    {
100
        if (!$this->isBundleAvailable('KunstmaanPagePartBundle')) {
101
            $this->assistant->writeError('KunstmaanPagePartBundle not found', true);
102
        }
103
104
        $this->assistant->writeLine(array("This command helps you to generate a new pagepart.\n"));
105
106
        /**
107
         * Ask for which bundle we need to create the pagepart
108
         */
109
        $bundleNamespace = $this->assistant->getOptionOrDefault('namespace', null);
110
        $this->bundle = $this->askForBundleName('pagepart', $bundleNamespace);
111
112
        /*
113
         * Ask the database table prefix
114
         */
115
        $this->prefix = $this->askForPrefix(null, $this->bundle->getNamespace());
116
117
        /**
118
         * Ask for which page sections we should enable this pagepart
119
         */
120
        $contexts = $this->assistant->getOptionOrDefault('contexts', null);
121
        if ($contexts) {
122
            $contexts = explode(',', $contexts);
123
            array_walk($contexts, 'trim');
124
125
            $this->sections = array();
126
            $allSections = $this->getAvailableSections($this->bundle);
127
            foreach ($allSections as $section) {
128
                if (in_array($section['context'], $contexts)) {
129
                    $this->sections[] = $section['file'];
130
                }
131
            }
132
        } else {
133
            $question = 'In which page section configuration file(s) do you want to add the pageparts (multiple possible, separated by comma)';
134
            $this->sections = $this->askForSections($question, $this->bundle, true);
135
        }
136
137
        /*
138
         * Check that we can create behat tests for the default pagepart
139
         */
140
        $this->behatTest = (count($this->sections) > 0 && $this->canGenerateBehatTests($this->bundle));
141
    }
142
143
    /**
144
     * Get the generator.
145
     *
146
     * @return DefaultPagePartGenerator
147
     */
148 View Code Duplication
    protected function createGenerator()
0 ignored issues
show
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
149
    {
150
        $filesystem = $this->getContainer()->get('filesystem');
151
        $registry = $this->getContainer()->get('doctrine');
152
153
        return new DefaultPagePartGenerator($filesystem, $registry, '/pagepart', $this->assistant, $this->getContainer());
154
    }
155
}
156