Passed
Push — master ( 94214e...f603ad )
by Andrés
58s
created

SelfUpdateTask::execute()   B

Complexity

Conditions 4
Paths 4

Size

Total Lines 26
Code Lines 15

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 15
CRAP Score 4

Importance

Changes 0
Metric Value
c 0
b 0
f 0
dl 0
loc 26
ccs 15
cts 15
cp 1
rs 8.5806
cc 4
eloc 15
nc 4
nop 0
crap 4
1
<?php
2
/*
3
 * This file is part of the Magallanes package.
4
 *
5
 * (c) Andrés Montañez <[email protected]>
6
 *
7
 * For the full copyright and license information, please view the LICENSE
8
 * file that was distributed with this source code.
9
 */
10
11
namespace Mage\Task\BuiltIn\Composer;
12
13
use Mage\Task\Exception\SkipException;
14
use Symfony\Component\Process\Process;
15
use Mage\Task\AbstractTask;
16
use DateTime;
17
18
/**
19
 * Composer Task - Self update
20
 *
21
 * @author Yanick Witschi <https://github.com/Toflar>
22
 */
23
class SelfUpdateTask extends AbstractTask
24
{
25 31
    public function getName()
26
    {
27 31
        return 'composer/self-update';
28
    }
29
30 1
    public function getDescription()
31
    {
32 1
        return '[Composer] Self Update';
33
    }
34
35 5
    public function execute()
36
    {
37 5
        $options = $this->getOptions();
38 5
        $cmdVersion = sprintf('%s --version', $options['path']);
39
        /** @var Process $process */
40 5
        $process = $this->runtime->runCommand(trim($cmdVersion));
41 5
        if (!$process->isSuccessful()) {
42 1
            return false;
43
        }
44
45 4
        $buildDate = $this->getBuildDate($process->getOutput());
46 4
        if (!$buildDate instanceof DateTime) {
47 1
            return false;
48
        }
49
50 3
        $compareDate = $this->getCompareDate();
51 3
        if ($buildDate >= $compareDate) {
52 2
            throw new SkipException();
53
        }
54
55 1
        $cmdUpdate = sprintf('%s self-update', $options['path']);
56
        /** @var Process $process */
57 1
        $process = $this->runtime->runCommand(trim($cmdUpdate));
58
59 1
        return $process->isSuccessful();
60
    }
61
62 4
    protected function getBuildDate($output)
63
    {
64 4
        $buildDate = null;
65 4
        $output = explode(PHP_EOL, $output);
66 4
        foreach ($output as $row) {
67 4
            if (strpos($row, 'Composer version ') === 0) {
68 4
                $buildDate = DateTime::createFromFormat('Y-m-d H:i:s', substr(trim($row), -19));
69 4
            }
70 4
        }
71
72 4
        return $buildDate;
73
    }
74
75 3
    protected function getCompareDate()
76
    {
77 3
        $options = $this->getOptions();
78 3
        $compareDate = new DateTime();
79 3
        $compareDate->modify(sprintf('now -%d days', $options['days']));
80 3
        return $compareDate;
81
    }
82
83 5 View Code Duplication
    protected function getOptions()
0 ignored issues
show
Duplication introduced by
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...
84
    {
85 5
        $options = array_merge(
86 5
            ['path' => 'composer', 'days' => 60],
87 5
            $this->runtime->getMergedOption('composer'),
88 5
            $this->options
89 5
        );
90
91 5
        return $options;
92
    }
93
}
94