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

ChangeClientOwnerHandler   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 29
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 5

Importance

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

2 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 5 1
A handle() 0 17 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\ClientRepository;
17
use OAuth2Framework\Component\Core\Client\Event\ClientOwnerChangedEvent;
18
use SimpleBus\SymfonyBridge\Bus\EventBus;
19
20
class ChangeClientOwnerHandler
21
{
22
    private $clientRepository;
23
    private $eventBus;
24
25
    public function __construct(ClientRepository $clientRepository, EventBus $eventBus)
26
    {
27
        $this->clientRepository = $clientRepository;
28
        $this->eventBus = $eventBus;
29
    }
30
31
    public function handle(ChangeClientOwner $command): void
32
    {
33
        $client = $this->clientRepository->find($command->getClientId());
34
        if (!$client) {
35
            throw new \InvalidArgumentException(\sprintf('The client with ID "%s" does not exist.', $command->getClientId()->getValue()));
36
        }
37
38
        $client->setOwnerId(
39
            $command->getOwnerId()
40
        );
41
        $this->clientRepository->save($client);
42
        $event = new ClientOwnerChangedEvent(
43
            $command->getClientId(),
44
            $command->getOwnerId()
45
        );
46
        $this->eventBus->handle($event);
47
    }
48
}
49