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.
Completed
Pull Request — master (#68)
by Marc
08:42
created

ChronosApiClient::addingJob()   C

Complexity

Conditions 7
Paths 7

Size

Total Lines 25
Code Lines 12

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 11
CRAP Score 7.0283

Importance

Changes 0
Metric Value
dl 0
loc 25
ccs 11
cts 12
cp 0.9167
rs 6.7272
c 0
b 0
f 0
cc 7
eloc 12
nc 7
nop 1
crap 7.0283
1
<?php
2
/**
3
 * @package: chapi
4
 *
5
 * @author:  msiebeneicher
6
 * @since:   2015-07-28
7
 *
8
 */
9
10
11
namespace Chapi\Component\RemoteClients;
12
13
14
use Chapi\Component\RemoteClients\ApiClientInterface;
15
use Chapi\Component\Http\HttpClientInterface;
16
use Chapi\Entity\Chronos\ChronosJobEntity;
17
use Chapi\Entity\JobEntityInterface;
18
use Chapi\Exception\ApiClientException;
19
use Chapi\Exception\HttpConnectionException;
20
use Symfony\Component\Config\Definition\Exception\Exception;
21
22
class ChronosApiClient implements ApiClientInterface
23
{
24
    /**
25
     * @var HttpClientInterface
26
     */
27
    private $oHttpClient;
28
29
    /**
30
     * @param HttpClientInterface $oHttpClient
31
     */
32 21
    public function __construct(
33
        HttpClientInterface $oHttpClient
34
    )
35
    {
36 21
        $this->oHttpClient = $oHttpClient;
37 21
    }
38
39
    /**
40
     * @inheritdoc
41
     * @link: https://mesos.github.io/chronos/docs/api.html#listing-jobs
42
     */
43 2
    public function listingJobs()
44
    {
45 2
        return $this->sendGetJsonRequest('/scheduler/jobs');
46
    }
47
48
    /**
49
     * @param JobEntityInterface $oJobEntity
50
     * @return bool
51
     * @throws ApiClientException
52
     */
53 10
    public function addingJob(JobEntityInterface $oJobEntity)
54
    {
55 10
        $_sTargetUrl = '';
56
57 10
        if (!$oJobEntity instanceof ChronosJobEntity)
58
        {
59
            throw new \RuntimeException('Expected ChronosJobEntity.');
60
        }
61
62 10
        if (!empty($oJobEntity->schedule) && empty($oJobEntity->parents))
63
        {
64 4
            $_sTargetUrl = '/scheduler/iso8601';
65 6
        } elseif (empty($oJobEntity->schedule) && !empty($oJobEntity->parents))
66
        {
67 4
            $_sTargetUrl = '/scheduler/dependency';
68
        }
69
70 10
        if (empty($_sTargetUrl))
71
        {
72 2
            throw new ApiClientException('No scheduler or dependency found. Can\'t get right target url.');
73
        }
74
75 8
        $_oResponse = $this->oHttpClient->postJsonData($_sTargetUrl, $oJobEntity);
76 8
        return ($_oResponse->getStatusCode() == 204);
77
    }
78
79
    /**
80
     * @param JobEntityInterface|ChronosJobEntity $oJobEntity
81
     * @return bool
82
     * @throws ApiClientException
83
     */
84 5
    public function updatingJob(JobEntityInterface $oJobEntity)
85
    {
86 5
        return $this->addingJob($oJobEntity);
87
    }
88
89
    /**
90
     * @param string $sJobName
91
     * @return bool
92
     */
93 2
    public function removeJob($sJobName)
94
    {
95 2
        $_oResponse = $this->oHttpClient->delete('/scheduler/job/' . $sJobName);
96 2
        return ($_oResponse->getStatusCode() == 204);
97
    }
98
99
    /**
100
     * @inheritdoc
101
     */
102 2
    public function getJobStats($sJobName)
103
    {
104 2
        return $this->sendGetJsonRequest('/scheduler/job/stat/' . $sJobName);
105
    }
106
107
    /**
108
     * @param string $sUrl
109
     * @return array
110
     */
111 4
    private function sendGetJsonRequest($sUrl)
112
    {
113 4
        $_oResponse = $this->oHttpClient->get($sUrl);
114 4
        if (200 == $_oResponse->getStatusCode())
115
        {
116 2
            return $_oResponse->json();
117
        }
118
119 2
        return [];
120
    }
121
122
    /**
123
     * Returns true if the client can be connected to.
124
     * @return bool
125
     */
126 5 View Code Duplication
    public function ping()
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...
127
    {
128
        try {
129 5
            $this->oHttpClient->get('/scheduler/jobs');
130 4
        } catch (HttpConnectionException $e)
131
        {
132
            if (
133 4
                $e->getCode() == HttpConnectionException::ERROR_CODE_REQUEST_EXCEPTION ||
134 4
                $e->getCode() == HttpConnectionException::ERROR_CODE_CONNECT_EXCEPTION
135
            )
136
            {
137 2
                return false;
138
            }
139
        }
140
141 3
        return true;
142
    }
143
}