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 (#20)
by Cees-Jan
08:04
created

AddWebHookHandler   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 45
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 6

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 2
lcom 1
cbo 6
dl 0
loc 45
ccs 18
cts 18
cp 1
rs 10
c 0
b 0
f 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 5 1
A handle() 0 18 1
1
<?php declare(strict_types=1);
2
3
namespace ApiClients\Client\Github\CommandBus\Handler\Repository;
4
5
use ApiClients\Client\Github\CommandBus\Command\Repository\AddWebHookCommand;
6
use ApiClients\Client\Github\Resource\WebHookInterface;
7
use ApiClients\Foundation\Hydrator\Hydrator;
8
use ApiClients\Foundation\Transport\Service\RequestService;
9
use ApiClients\Middleware\Json\JsonStream;
10
use React\Promise\PromiseInterface;
11
use RingCentral\Psr7\Request;
12
13
final class AddWebHookHandler
14
{
15
    /**
16
     * @var RequestService
17
     */
18
    private $requestService;
19
20
    /**
21
     * @var Hydrator
22
     */
23
    private $hydrator;
24
25
    /**
26
     * @param RequestService $requestService
27
     * @param Hydrator       $hydrator
28
     */
29 1
    public function __construct(RequestService $requestService, Hydrator $hydrator)
30
    {
31 1
        $this->requestService = $requestService;
32 1
        $this->hydrator = $hydrator;
33 1
    }
34
35
    /**
36
     * @param  AddWebHookCommand $command
37
     * @return PromiseInterface
38
     */
39 1
    public function handle(AddWebHookCommand $command): PromiseInterface
40
    {
41 1
        return $this->requestService->request(
42 1
            new Request(
43 1
                'POST',
44 1
                'repos/' . $command->getRepository() . '/hooks',
45 1
                [],
46 1
                new JsonStream([
47 1
                    'name'   => $command->getName(),
48 1
                    'config' => $command->getConfig(),
49 1
                    'events' => $command->getEvents(),
50 1
                    'active' => $command->isActive(),
51
                ])
52
            )
53 1
        )->then(function ($label) {
54 1
            return $this->hydrator->hydrate(WebHookInterface::HYDRATE_CLASS, $label->getBody()->getParsedContents());
55 1
        });
56
    }
57
}
58