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.

FileLoader::getHosts()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 0
Metric Value
eloc 1
nc 1
nop 0
dl 0
loc 3
c 0
b 0
f 0
cc 1
rs 10
ccs 2
cts 2
cp 1
crap 1
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)) {
0 ignored issues
show
introduced by
The condition is_array($data) is always true.
Loading history...
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