1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
/** |
4
|
|
|
* GpsLab component. |
5
|
|
|
* |
6
|
|
|
* @author Peter Gribanov <[email protected]> |
7
|
|
|
* @copyright Copyright (c) 2011, Peter Gribanov |
8
|
|
|
* @license http://opensource.org/licenses/MIT |
9
|
|
|
*/ |
10
|
|
|
|
11
|
|
|
namespace GpsLab\Component\Command\Handler\Locator; |
12
|
|
|
|
13
|
|
|
use GpsLab\Component\Command\Command; |
14
|
|
|
use Symfony\Component\DependencyInjection\ContainerAwareInterface; |
15
|
|
|
use Symfony\Component\DependencyInjection\ContainerAwareTrait; |
16
|
|
|
use Symfony\Component\DependencyInjection\ContainerInterface; |
17
|
|
|
|
18
|
|
|
class SymfonyContainerCommandHandlerLocator implements CommandHandlerLocator, ContainerAwareInterface |
19
|
|
|
{ |
20
|
|
|
use ContainerAwareTrait; |
21
|
|
|
|
22
|
|
|
/** |
23
|
|
|
* @var array |
24
|
|
|
*/ |
25
|
|
|
private $command_handler_ids = []; |
26
|
|
|
|
27
|
|
|
/** |
28
|
|
|
* @param Command $command |
29
|
|
|
* |
30
|
|
|
* @return callable|null |
31
|
|
|
*/ |
32
|
5 |
|
public function findHandler(Command $command) |
33
|
|
|
{ |
34
|
5 |
|
return $this->lazyLoad(get_class($command)); |
35
|
|
|
} |
36
|
|
|
|
37
|
|
|
/** |
38
|
|
|
* @param string $command_name |
39
|
|
|
* @param string $service |
40
|
|
|
* @param string $method |
41
|
|
|
*/ |
42
|
5 |
|
public function registerService($command_name, $service, $method = '__invoke') |
43
|
|
|
{ |
44
|
5 |
|
$this->command_handler_ids[$command_name] = [$service, $method]; |
45
|
5 |
|
} |
46
|
|
|
|
47
|
|
|
/** |
48
|
|
|
* @param $command_name |
49
|
|
|
* |
50
|
|
|
* @return callable |
51
|
|
|
*/ |
52
|
5 |
|
private function lazyLoad($command_name) |
53
|
|
|
{ |
54
|
5 |
|
if ($this->container instanceof ContainerInterface && isset($this->command_handler_ids[$command_name])) { |
55
|
4 |
|
list($service, $method) = $this->command_handler_ids[$command_name]; |
56
|
4 |
|
$handler = $this->container->get($service); |
57
|
|
|
|
58
|
4 |
|
if (is_callable($handler)) { |
59
|
1 |
|
return $handler; |
60
|
3 |
|
} elseif (is_callable([$handler, $method])) { |
61
|
1 |
|
return [$handler, $method]; |
62
|
|
|
} |
63
|
2 |
|
} |
64
|
|
|
|
65
|
3 |
|
return null; |
66
|
|
|
} |
67
|
|
|
} |
68
|
|
|
|