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
Pull Request — master (#57)
by TJ
03:15
created

HoneybadgerClient::makeClient()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 12

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
nc 1
nop 0
dl 0
loc 12
rs 9.8666
c 0
b 0
f 0
1
<?php
2
3
namespace Honeybadger;
4
5
use Exception;
6
use GuzzleHttp\Client;
7
use Honeybadger\Exceptions\ServiceException;
8
use Symfony\Component\HttpFoundation\Response;
9
use Honeybadger\Exceptions\ServiceExceptionFactory;
10
11
class HoneybadgerClient
12
{
13
    /**
14
     * @var \Honeybadger\Config
15
     */
16
    protected $config;
17
18
    /**
19
     * @var \GuzzleHttp\Client
20
     */
21
    protected $client;
22
23
    /**
24
     * @param  \Honeybadger\Config  $config
25
     * @param  \GuzzleHttp\Client  $client
26
     */
27
    public function __construct(Config $config, Client $client = null)
28
    {
29
        $this->config = $config;
30
        $this->client = $client ?? $this->makeClient();
31
    }
32
33
    /**
34
     * @param  array  $notification
35
     * @return void
36
     *
37
     * @throws \Honeybadger\Exceptions\ServiceException
38
     */
39
    public function notification($notification) : void
40
    {
41
        try {
42
            $response = $this->client->post(
43
                'notices',
44
                ['body' => json_encode($notification)]
45
            );
46
        } catch (Exception $e) {
47
            throw ServiceException::generic();
48
        }
49
50
        if ($response->getStatusCode() !== Response::HTTP_CREATED) {
51
            throw (new ServiceExceptionFactory($response))->make();
52
        }
53
    }
54
55
    /**
56
     * @param  string  $key
57
     * @return void
58
     *
59
     * @throws \Honeybadger\Exceptions\ServiceException
60
     */
61
    public function checkin(string $key) : void
62
    {
63
        try {
64
            $response = $this->client->head(sprintf('check_in/%s', $key));
65
        } catch (Exception $e) {
66
            throw ServiceException::generic();
67
        }
68
69
        if ($response->getStatusCode() !== Response::HTTP_OK) {
70
            throw (new ServiceExceptionFactory($response))->make();
71
        }
72
    }
73
74
    /**
75
     * @return \GuzzleHttp\Client
76
     */
77
    private function makeClient() : Client
78
    {
79
        return new Client([
80
            'base_uri' => Honeybadger::API_URL,
81
            'http_errors' => false,
82
            'headers' => [
83
                'X-API-Key' => $this->config['api_key'],
84
                'Accept' => 'application/json',
85
                'Content-Type' => 'application/json',
86
            ],
87
            'timeout' => $this->config['client']['timeout'],
88
            'proxy' => $this->config['client']['proxy'],
89
        ]);
90
    }
91
}
92