Completed
Push — master ( 51ebcf...8397c3 )
by Derek Stephen
01:32
created

BootyCommand::configure()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 4
CRAP Score 1

Importance

Changes 0
Metric Value
dl 0
loc 5
ccs 4
cts 4
cp 1
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
crap 1
1
<?php
2
3
namespace Del\Booty;
4
5
use Composer\Autoload\ClassLoader;
6
use Symfony\Component\Console\Command\Command;
7
use Symfony\Component\Console\Input\InputInterface;
8
use Symfony\Component\Console\Output\OutputInterface;
9
10
class BootyCommand extends Command
11
{
12
    /** @var array */
13
    private $packages;
14
15
    /** @var AssetManager $booty */
16
    private $booty;
17
18
    /** @var ClassLoader $composer */
19
    private $composer;
20
21
    /** @var string $destination */
22
    private $destination = 'public/';
23
24 1
    public function __construct(string $name = null, array $packages, ClassLoader $composer)
25
    {
26 1
        parent::__construct($name);
27 1
        $this->packages = $packages;
28 1
        $this->booty = new AssetManager();
29 1
        $this->composer = $composer;
30 1
    }
31
32 1
    protected function configure()
33
    {
34 1
        parent::configure();
35 1
        $this->setName('deploy');
36 1
    }
37
38
    /**
39
     * @param InputInterface $input
40
     * @param OutputInterface $output
41
     * @return int|void|null
42
     */
43 1
    public function execute(InputInterface $input, OutputInterface $output)
44
    {
45 1
        $this->booty->setDestinationFolder($this->destination);
46 1
        foreach ($this->packages as $package) {
47 1
            $moduleName = str_replace('Package', '', $package);
48 1
            $explosion = explode('\\', $moduleName);
49 1
            $moduleName = end($explosion);
50 1
            $file = realpath($this->composer->findFile($package));
51 1
            $folder = dirname($file);
52 1
            $folder = substr($folder, -4) == '/src' ? substr($folder, 0, -4) : $folder;
53
54 1
            if (file_exists($folder . '/data/assets')) {
55 1
                $output->writeln('Adding assets from ' . $moduleName . ' module..');
56 1
                $this->booty->addAssetsFolder($moduleName, $folder . '/data/assets');
57
            }
58
        }
59 1
        $output->writeln('Deploying assets to ' . $this->destination);
60 1
        $this->booty->deployAssets();
61
62
        return 0;
63
    }
64
}