Completed
Push — master ( 8397c3...f2704a )
by Derek Stephen
01:27
created

BootyCommand   A

Complexity

Total Complexity 7

Size/Duplication

Total Lines 63
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 4

Test Coverage

Coverage 56%

Importance

Changes 0
Metric Value
wmc 7
lcom 1
cbo 4
dl 0
loc 63
ccs 14
cts 25
cp 0.56
rs 10
c 0
b 0
f 0

4 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 7 1
A configure() 0 5 1
A execute() 0 19 3
A handleAssetFolders() 0 6 2
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
47 1
        foreach ($this->packages as $packageName) {
48 1
            $package = new $packageName();
49
50
            if ($package instanceof AssetRegistrationInterface) {
51
                $output->writeln('Adding assets from ' . $packageName . '..');
52
                $paths = $package->getAssetFolders();
53
                $this->handleAssetFolders($paths);
54
            }
55
        }
56
57
        $output->writeln('Deploying assets to ' . $this->destination);
58
        $this->booty->deployAssets();
59
60
        return 0;
61
    }
62
63
    /**
64
     * @param array $paths
65
     */
66
    private function handleAssetFolders(array $paths): void
67
    {
68
        foreach ($paths as $key => $path) {
69
            $this->booty->addAssetsFolder($key, $path);
70
        }
71
    }
72
}
73