Completed
Push — master ( 6054f8...3b037a )
by Matthias
24:24
created

Current::getEnvironment()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 17
Code Lines 12

Duplication

Lines 17
Ratio 100 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
c 1
b 0
f 1
dl 17
loc 17
rs 9.4285
cc 1
eloc 12
nc 1
nop 0
1
<?php
2
3
namespace Cauditor\Runners;
4
5
use Cauditor\Analyzers\AnalyzerInterface;
6
use Cauditor\Config;
7
use Cauditor\Api;
8
use Cauditor\Exception;
9
use MatthiasMullie\CI\Factory as CIFactory;
10
11
/**
12
 * @author Matthias Mullie <[email protected]>
13
 * @copyright Copyright (c) 2016, Matthias Mullie. All rights reserved.
14
 * @license LICENSE MIT
15
 */
16
class Current implements RunnerInterface
17
{
18
    /**
19
     * @var Config
20
     */
21
    protected $config;
22
23
    /**
24
     * @var Api
25
     */
26
    protected $api;
27
28
    /**
29
     * @var AnalyzerInterface
30
     */
31
    protected $analyzer;
32
33
    /**
34
     * @param Config $config
35
     * @param Api $api
36
     * @param AnalyzerInterface $analyzer
37
     */
38
    public function __construct(Config $config, Api $api, AnalyzerInterface $analyzer)
39
    {
40
        $this->config = $config;
41
        $this->api = $api;
42
        $this->analyzer = $analyzer;
43
    }
44
45
    /**
46
     * @throws Exception
47
     */
48
    public function execute()
49
    {
50
        $metrics = $this->analyzer->execute();
51
52
        $data = array('metrics' => $metrics) + $this->getEnvironment();
53
54
        // submit to cauditor (note that branch can be empty for PRs)
55
        $uri = "/api/v1/{$data['slug']}/{$data['branch']}/{$data['commit']}";
56
        $uri = preg_replace('/(?<!:)\/+/', '/', $uri);
57
58
        $this->api->put($uri, $data);
59
60
        echo "Submitted metrics for {$data['commit']} @ {$data['slug']} {$data['branch']}\n";
61
    }
62
63
    /**
64
     * @return array
65
     */
66 View Code Duplication
    protected function getEnvironment()
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...
67
    {
68
        // get build data from CI
69
        $factory = new CIFactory();
70
        $environment = $factory->getCurrent();
71
72
        return array(
73
            'repo' => $environment->getRepo(),
74
            'slug' => $environment->getSlug(),
75
            'branch' => $environment->getBranch(),
76
            'pull-request' => $environment->getPullRequest(),
77
            'commit' => $environment->getCommit(),
78
            'previous-commit' => $environment->getPreviousCommit(),
79
            'author-email' => $environment->getAuthorEmail(),
80
            'timestamp' => $environment->getTimestamp(),
81
        );
82
    }
83
}
84