GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Passed
Push — master ( 5524c9...fd35b4 )
by Anton
02:09
created

FileLoader::load()   B

Complexity

Conditions 11
Paths 8

Size

Total Lines 46

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 21
CRAP Score 11.0795

Importance

Changes 0
Metric Value
cc 11
nc 8
nop 1
dl 0
loc 46
ccs 21
cts 23
cp 0.913
crap 11.0795
rs 7.3166
c 0
b 0
f 0

How to fix   Complexity   

Long Method

Small methods make your code easier to understand, in particular if combined with a good name. Besides, if your method is small, finding a good name is usually much easier.

For example, if you find yourself adding comments to a method's body, this is usually a good sign to extract the commented part to a new method, and use the comment as a starting point when coming up with a good name for this new method.

Commonly applied refactorings include:

1
<?php
2
/* (c) Anton Medvedev <[email protected]>
3
 *
4
 * For the full copyright and license information, please view the LICENSE
5
 * file that was distributed with this source code.
6
 */
7
8
namespace Deployer\Host;
9
10
use Deployer\Exception\Exception;
11
use Symfony\Component\Yaml\Yaml;
12
13
class FileLoader
14
{
15
    /**
16
     * @var Host[]
17
     */
18
    private $hosts = [];
19
    /**
20
     * @param array $datain
21
     * @return array $dataexp
22
     */
23 1
    public function expandOnLoad($datain)
24
    {
25 1
        $dataout = [];
26 1
        foreach ($datain as $hostname => $config) {
27 1
            if (preg_match('/\[(.+?)\]/', $hostname)) {
28 1
                foreach (Range::expand([$hostname]) as $splithost) {
29 1
                    $dataout["$splithost"] = $config;
30
                }
31
            } else {
32 1
                $dataout["$hostname"] = $config;
33
            }
34
        }
35
36 1
        return $dataout;
37
    }
38
    /**
39
     * @param string $file
40
     * @return $this
41
     * @throws Exception
42
     */
43 1
    public function load($file)
44
    {
45 1
        if (!file_exists($file) || !is_readable($file)) {
46
            throw new Exception("File `$file` doesn't exists or isn't readable.");
47
        }
48
49 1
        $data = Yaml::parse(file_get_contents($file));
50 1
        $data = $this->expandOnLoad($data);
51
52 1
        if (!is_array($data)) {
53
            throw new Exception("Hosts file `$file` should contains array of hosts.");
54
        }
55
56 1
        foreach ($data as $hostname => $config) {
57 1
            if (preg_match('/^\./', $hostname)) {
58 1
                continue;
59
            }
60
61 1
            if (isset($config['local'])) {
62 1
                $host = new Localhost($hostname);
63
            } else {
64 1
                $host = new Host($hostname);
65
                $methods = [
66 1
                    'sshOptions' => 'setSshOptions',
67
                    'sshFlags' => 'setSshFlags',
68
                ];
69
70 1
                foreach (array_keys($methods) as $method) {
71 1
                    if (isset($config[$method])) {
72 1
                        $set = $methods[$method];
73 1
                        $host->$set($config[$method]);
74
                    }
75
                }
76
            }
77
78 1
            if (is_array($config)) {
79 1
                foreach ($config as $name => $value) {
80 1
                    $host->set($name, $value);
81
                }
82
            }
83
84 1
            $this->hosts[$hostname] = $host;
85
        }
86
87 1
        return $this;
88
    }
89
90
    /**
91
     * @return Host[]
92
     */
93 1
    public function getHosts()
94
    {
95 1
        return $this->hosts;
96
    }
97
}
98