Failed Conditions
Push — master ( c6baf0...a3629e )
by Florent
16:19
created

CreateClientHandler   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 33
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 5

Importance

Changes 0
Metric Value
wmc 3
lcom 1
cbo 5
dl 0
loc 33
rs 10
c 0
b 0
f 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 5 1
A handle() 0 21 2
1
<?php
2
3
declare(strict_types=1);
4
5
/*
6
 * The MIT License (MIT)
7
 *
8
 * Copyright (c) 2014-2018 Spomky-Labs
9
 *
10
 * This software may be modified and distributed under the terms
11
 * of the MIT license.  See the LICENSE file for details.
12
 */
13
14
namespace OAuth2Framework\Component\Core\Client\Command;
15
16
use OAuth2Framework\Component\Core\Client\Client;
17
use OAuth2Framework\Component\Core\Client\ClientRepository;
18
use OAuth2Framework\Component\Core\Client\Event\ClientCreatedEvent;
19
use SimpleBus\SymfonyBridge\Bus\EventBus;
20
21
class CreateClientHandler
22
{
23
    private $clientRepository;
24
    private $eventBus;
25
26
    public function __construct(ClientRepository $clientRepository, EventBus $eventBus)
27
    {
28
        $this->clientRepository = $clientRepository;
29
        $this->eventBus = $eventBus;
30
    }
31
32
    public function handle(CreateClient $command): void
33
    {
34
        $client = $this->clientRepository->find($command->getClientId());
35
        if ($client) {
36
            throw new \InvalidArgumentException(\sprintf('The client with ID "%s" already exist.', $command->getClientId()->getValue()));
37
        }
38
39
        $client = new Client(
40
            $command->getClientId(),
41
            $command->getParameter(),
42
            false,
43
            $command->getOwnerId()
44
        );
45
        $this->clientRepository->save($client);
46
        $event = new ClientCreatedEvent(
47
            $command->getClientId(),
48
            $command->getParameter(),
49
            $command->getOwnerId()
50
        );
51
        $this->eventBus->handle($event);
52
    }
53
}
54