@@ -26,17 +26,17 @@ |
||
26 | 26 | */ |
27 | 27 | final class QueryHandlerProviderPass extends HandlerProviderPass |
28 | 28 | { |
29 | - public const DEFAULT_SERVICE_ID = QueryHandlerProvider::class; |
|
30 | - public const DEFAULT_HANDLER_TAG = 'query_dispatcher.handler'; |
|
31 | - public const DEFAULT_MESSAGE_PROPERTY = 'query'; |
|
32 | - public const DEFAULT_PROVIDER_CLASS = QueryHandlerProvider::class; |
|
29 | + public const DEFAULT_SERVICE_ID = QueryHandlerProvider::class; |
|
30 | + public const DEFAULT_HANDLER_TAG = 'query_dispatcher.handler'; |
|
31 | + public const DEFAULT_MESSAGE_PROPERTY = 'query'; |
|
32 | + public const DEFAULT_PROVIDER_CLASS = QueryHandlerProvider::class; |
|
33 | 33 | |
34 | - public function __construct( |
|
35 | - string $serviceId = self::DEFAULT_SERVICE_ID, |
|
36 | - string $handlerTag = self::DEFAULT_HANDLER_TAG, |
|
37 | - string $messageProperty = self::DEFAULT_MESSAGE_PROPERTY, |
|
38 | - string $providerClass = self::DEFAULT_PROVIDER_CLASS |
|
39 | - ) { |
|
40 | - parent::__construct($serviceId, $handlerTag, $messageProperty, $providerClass); |
|
41 | - } |
|
34 | + public function __construct( |
|
35 | + string $serviceId = self::DEFAULT_SERVICE_ID, |
|
36 | + string $handlerTag = self::DEFAULT_HANDLER_TAG, |
|
37 | + string $messageProperty = self::DEFAULT_MESSAGE_PROPERTY, |
|
38 | + string $providerClass = self::DEFAULT_PROVIDER_CLASS |
|
39 | + ) { |
|
40 | + parent::__construct($serviceId, $handlerTag, $messageProperty, $providerClass); |
|
41 | + } |
|
42 | 42 | } |
@@ -26,17 +26,17 @@ |
||
26 | 26 | */ |
27 | 27 | final class CommandHandlerProviderPass extends HandlerProviderPass |
28 | 28 | { |
29 | - public const DEFAULT_SERVICE_ID = CommandHandlerProvider::class; |
|
30 | - public const DEFAULT_HANDLER_TAG = 'command_dispatcher.handler'; |
|
31 | - public const DEFAULT_MESSAGE_PROPERTY = 'command'; |
|
32 | - public const DEFAULT_PROVIDER_CLASS = CommandHandlerProvider::class; |
|
29 | + public const DEFAULT_SERVICE_ID = CommandHandlerProvider::class; |
|
30 | + public const DEFAULT_HANDLER_TAG = 'command_dispatcher.handler'; |
|
31 | + public const DEFAULT_MESSAGE_PROPERTY = 'command'; |
|
32 | + public const DEFAULT_PROVIDER_CLASS = CommandHandlerProvider::class; |
|
33 | 33 | |
34 | - public function __construct( |
|
35 | - string $serviceId = self::DEFAULT_SERVICE_ID, |
|
36 | - string $handlerTag = self::DEFAULT_HANDLER_TAG, |
|
37 | - string $messageProperty = self::DEFAULT_MESSAGE_PROPERTY, |
|
38 | - string $providerClass = self::DEFAULT_PROVIDER_CLASS |
|
39 | - ) { |
|
40 | - parent::__construct($serviceId, $handlerTag, $messageProperty, $providerClass); |
|
41 | - } |
|
34 | + public function __construct( |
|
35 | + string $serviceId = self::DEFAULT_SERVICE_ID, |
|
36 | + string $handlerTag = self::DEFAULT_HANDLER_TAG, |
|
37 | + string $messageProperty = self::DEFAULT_MESSAGE_PROPERTY, |
|
38 | + string $providerClass = self::DEFAULT_PROVIDER_CLASS |
|
39 | + ) { |
|
40 | + parent::__construct($serviceId, $handlerTag, $messageProperty, $providerClass); |
|
41 | + } |
|
42 | 42 | } |
@@ -69,7 +69,7 @@ discard block |
||
69 | 69 | */ |
70 | 70 | public function process(ContainerBuilder $container): void |
71 | 71 | { |
72 | - [ $mapping, $refMap ] = $this->collectHandlers($container); |
|
72 | + [$mapping, $refMap] = $this->collectHandlers($container); |
|
73 | 73 | |
74 | 74 | $container |
75 | 75 | ->register($this->serviceId, $this->providerClass) |
@@ -118,6 +118,6 @@ discard block |
||
118 | 118 | $refMap[$id] = new TypedReference($id, $class); |
119 | 119 | } |
120 | 120 | |
121 | - return [ $mapping, $refMap ]; |
|
121 | + return [$mapping, $refMap]; |
|
122 | 122 | } |
123 | 123 | } |
@@ -27,70 +27,70 @@ |
||
27 | 27 | */ |
28 | 28 | class HandlerProviderPass implements CompilerPassInterface |
29 | 29 | { |
30 | - public const DEFAULT_SERVICE_ID = HandlerProvider::class; |
|
31 | - public const DEFAULT_HANDLER_TAG = 'message_dispatcher.handler'; |
|
32 | - public const DEFAULT_MESSAGE_PROPERTY = 'message'; |
|
33 | - public const DEFAULT_PROVIDER_CLASS = ContainerHandlerProvider::class; |
|
34 | - |
|
35 | - public function __construct( |
|
36 | - private string $serviceId = self::DEFAULT_SERVICE_ID, |
|
37 | - private string $handlerTag = self::DEFAULT_HANDLER_TAG, |
|
38 | - private string $messageProperty = self::DEFAULT_MESSAGE_PROPERTY, |
|
39 | - private string $providerClass = self::DEFAULT_PROVIDER_CLASS |
|
40 | - ) { |
|
41 | - } |
|
42 | - |
|
43 | - /** |
|
44 | - * @inheritdoc |
|
45 | - */ |
|
46 | - public function process(ContainerBuilder $container): void |
|
47 | - { |
|
48 | - [ $mapping, $refMap ] = $this->collectHandlers($container); |
|
49 | - |
|
50 | - $container |
|
51 | - ->register($this->serviceId, $this->providerClass) |
|
52 | - ->setArguments([ |
|
53 | - ServiceLocatorTagPass::register($container, $refMap), |
|
54 | - $mapping |
|
55 | - ]); |
|
56 | - } |
|
57 | - |
|
58 | - /** |
|
59 | - * @return array{0: array<string, string>, 1: array<string, TypedReference>} |
|
60 | - */ |
|
61 | - private function collectHandlers(ContainerBuilder $container): array |
|
62 | - { |
|
63 | - $handlers = $container->findTaggedServiceIds($this->handlerTag, true); |
|
64 | - $messageProperty = $this->messageProperty; |
|
65 | - $mapping = []; |
|
66 | - $refMap = []; |
|
67 | - |
|
68 | - foreach ($handlers as $id => $tags) { |
|
69 | - assert(is_string($id)); |
|
70 | - |
|
71 | - $command = $tags[0][$messageProperty] |
|
72 | - ?? throw new InvalidArgumentException( |
|
73 | - "The `$messageProperty` property is required for service `$id`." |
|
74 | - ); |
|
75 | - |
|
76 | - assert(is_string($command)); |
|
77 | - |
|
78 | - if (isset($mapping[$command])) { |
|
79 | - throw new LogicException( |
|
80 | - "The command `$command` already has an handler: `{$mapping[$command]}`." |
|
81 | - ); |
|
82 | - } |
|
83 | - |
|
84 | - $class = $container->getDefinition($id)->getClass(); |
|
85 | - |
|
86 | - if (!$class) { |
|
87 | - throw new LogicException("Unable to get class of service `$id`."); |
|
88 | - } |
|
89 | - |
|
90 | - $mapping[$command] = $id; |
|
91 | - $refMap[$id] = new TypedReference($id, $class); |
|
92 | - } |
|
93 | - |
|
94 | - return [ $mapping, $refMap ]; |
|
95 | - } |
|
30 | + public const DEFAULT_SERVICE_ID = HandlerProvider::class; |
|
31 | + public const DEFAULT_HANDLER_TAG = 'message_dispatcher.handler'; |
|
32 | + public const DEFAULT_MESSAGE_PROPERTY = 'message'; |
|
33 | + public const DEFAULT_PROVIDER_CLASS = ContainerHandlerProvider::class; |
|
34 | + |
|
35 | + public function __construct( |
|
36 | + private string $serviceId = self::DEFAULT_SERVICE_ID, |
|
37 | + private string $handlerTag = self::DEFAULT_HANDLER_TAG, |
|
38 | + private string $messageProperty = self::DEFAULT_MESSAGE_PROPERTY, |
|
39 | + private string $providerClass = self::DEFAULT_PROVIDER_CLASS |
|
40 | + ) { |
|
41 | + } |
|
42 | + |
|
43 | + /** |
|
44 | + * @inheritdoc |
|
45 | + */ |
|
46 | + public function process(ContainerBuilder $container): void |
|
47 | + { |
|
48 | + [ $mapping, $refMap ] = $this->collectHandlers($container); |
|
49 | + |
|
50 | + $container |
|
51 | + ->register($this->serviceId, $this->providerClass) |
|
52 | + ->setArguments([ |
|
53 | + ServiceLocatorTagPass::register($container, $refMap), |
|
54 | + $mapping |
|
55 | + ]); |
|
56 | + } |
|
57 | + |
|
58 | + /** |
|
59 | + * @return array{0: array<string, string>, 1: array<string, TypedReference>} |
|
60 | + */ |
|
61 | + private function collectHandlers(ContainerBuilder $container): array |
|
62 | + { |
|
63 | + $handlers = $container->findTaggedServiceIds($this->handlerTag, true); |
|
64 | + $messageProperty = $this->messageProperty; |
|
65 | + $mapping = []; |
|
66 | + $refMap = []; |
|
67 | + |
|
68 | + foreach ($handlers as $id => $tags) { |
|
69 | + assert(is_string($id)); |
|
70 | + |
|
71 | + $command = $tags[0][$messageProperty] |
|
72 | + ?? throw new InvalidArgumentException( |
|
73 | + "The `$messageProperty` property is required for service `$id`." |
|
74 | + ); |
|
75 | + |
|
76 | + assert(is_string($command)); |
|
77 | + |
|
78 | + if (isset($mapping[$command])) { |
|
79 | + throw new LogicException( |
|
80 | + "The command `$command` already has an handler: `{$mapping[$command]}`." |
|
81 | + ); |
|
82 | + } |
|
83 | + |
|
84 | + $class = $container->getDefinition($id)->getClass(); |
|
85 | + |
|
86 | + if (!$class) { |
|
87 | + throw new LogicException("Unable to get class of service `$id`."); |
|
88 | + } |
|
89 | + |
|
90 | + $mapping[$command] = $id; |
|
91 | + $refMap[$id] = new TypedReference($id, $class); |
|
92 | + } |
|
93 | + |
|
94 | + return [ $mapping, $refMap ]; |
|
95 | + } |
|
96 | 96 | } |
@@ -16,13 +16,13 @@ |
||
16 | 16 | */ |
17 | 17 | class SimpleDispatcher implements Dispatcher |
18 | 18 | { |
19 | - public function __construct( |
|
20 | - private HandlerProvider $handlerProvider |
|
21 | - ) { |
|
22 | - } |
|
19 | + public function __construct( |
|
20 | + private HandlerProvider $handlerProvider |
|
21 | + ) { |
|
22 | + } |
|
23 | 23 | |
24 | - public function dispatch(object $message) |
|
25 | - { |
|
26 | - return $this->handlerProvider->getHandlerForMessage($message)($message); |
|
27 | - } |
|
24 | + public function dispatch(object $message) |
|
25 | + { |
|
26 | + return $this->handlerProvider->getHandlerForMessage($message)($message); |
|
27 | + } |
|
28 | 28 | } |
@@ -16,32 +16,32 @@ |
||
16 | 16 | */ |
17 | 17 | class AssertingDispatcher implements Dispatcher |
18 | 18 | { |
19 | - /** |
|
20 | - * @var callable |
|
21 | - */ |
|
22 | - private $assertion; |
|
19 | + /** |
|
20 | + * @var callable |
|
21 | + */ |
|
22 | + private $assertion; |
|
23 | 23 | |
24 | - /** |
|
25 | - * @param callable $assertion |
|
26 | - * A callable that should throw an exception if the message shouldn't be dispatched. |
|
27 | - */ |
|
28 | - public function __construct( |
|
29 | - private Dispatcher $dispatcher, |
|
30 | - callable $assertion |
|
31 | - ) { |
|
32 | - $this->dispatcher = $dispatcher; |
|
33 | - $this->assertion = $assertion; |
|
34 | - } |
|
24 | + /** |
|
25 | + * @param callable $assertion |
|
26 | + * A callable that should throw an exception if the message shouldn't be dispatched. |
|
27 | + */ |
|
28 | + public function __construct( |
|
29 | + private Dispatcher $dispatcher, |
|
30 | + callable $assertion |
|
31 | + ) { |
|
32 | + $this->dispatcher = $dispatcher; |
|
33 | + $this->assertion = $assertion; |
|
34 | + } |
|
35 | 35 | |
36 | - /** |
|
37 | - * @param object $message |
|
38 | - * |
|
39 | - * @return mixed |
|
40 | - */ |
|
41 | - public function dispatch(object $message) |
|
42 | - { |
|
43 | - ($this->assertion)($message); |
|
36 | + /** |
|
37 | + * @param object $message |
|
38 | + * |
|
39 | + * @return mixed |
|
40 | + */ |
|
41 | + public function dispatch(object $message) |
|
42 | + { |
|
43 | + ($this->assertion)($message); |
|
44 | 44 | |
45 | - return $this->dispatcher->dispatch($message); |
|
46 | - } |
|
45 | + return $this->dispatcher->dispatch($message); |
|
46 | + } |
|
47 | 47 | } |
@@ -16,19 +16,19 @@ |
||
16 | 16 | */ |
17 | 17 | final class RestrictedDispatcherWithVoter implements RestrictedDispatcher |
18 | 18 | { |
19 | - public function __construct( |
|
20 | - private Dispatcher $innerDispatcher, |
|
21 | - private Voter $voter, |
|
22 | - ) { |
|
23 | - } |
|
19 | + public function __construct( |
|
20 | + private Dispatcher $innerDispatcher, |
|
21 | + private Voter $voter, |
|
22 | + ) { |
|
23 | + } |
|
24 | 24 | |
25 | - /** |
|
26 | - * @throws PermissionNotGranted |
|
27 | - */ |
|
28 | - public function dispatch(object $message, Context $context): mixed |
|
29 | - { |
|
30 | - $this->voter->isGranted($message, $context) or throw new PermissionNotGranted($message, $context); |
|
25 | + /** |
|
26 | + * @throws PermissionNotGranted |
|
27 | + */ |
|
28 | + public function dispatch(object $message, Context $context): mixed |
|
29 | + { |
|
30 | + $this->voter->isGranted($message, $context) or throw new PermissionNotGranted($message, $context); |
|
31 | 31 | |
32 | - return $this->innerDispatcher->dispatch($message); |
|
33 | - } |
|
32 | + return $this->innerDispatcher->dispatch($message); |
|
33 | + } |
|
34 | 34 | } |
@@ -19,13 +19,13 @@ |
||
19 | 19 | */ |
20 | 20 | class NotInContext extends LogicException implements Exception |
21 | 21 | { |
22 | - /** |
|
23 | - * @param class-string $class |
|
24 | - */ |
|
25 | - public function __construct( |
|
26 | - public string $class, |
|
27 | - ?Throwable $previous = null |
|
28 | - ) { |
|
29 | - parent::__construct("Unable to find object matching: $class", 0, $previous); |
|
30 | - } |
|
22 | + /** |
|
23 | + * @param class-string $class |
|
24 | + */ |
|
25 | + public function __construct( |
|
26 | + public string $class, |
|
27 | + ?Throwable $previous = null |
|
28 | + ) { |
|
29 | + parent::__construct("Unable to find object matching: $class", 0, $previous); |
|
30 | + } |
|
31 | 31 | } |
@@ -13,8 +13,8 @@ |
||
13 | 13 | |
14 | 14 | interface RestrictedDispatcher |
15 | 15 | { |
16 | - /** |
|
17 | - * @throws PermissionNotGranted |
|
18 | - */ |
|
19 | - public function dispatch(object $message, Context $context): mixed; |
|
16 | + /** |
|
17 | + * @throws PermissionNotGranted |
|
18 | + */ |
|
19 | + public function dispatch(object $message, Context $context): mixed; |
|
20 | 20 | } |
@@ -15,14 +15,14 @@ |
||
15 | 15 | |
16 | 16 | class PermissionNotGranted extends \Exception implements Exception |
17 | 17 | { |
18 | - /** |
|
19 | - * @param Context $context |
|
20 | - */ |
|
21 | - public function __construct( |
|
22 | - public object $dispatched_message, |
|
23 | - public Context $context, |
|
24 | - ?Throwable $previous = null |
|
25 | - ) { |
|
26 | - parent::__construct("Permission not granted for message: " . $dispatched_message::class, 0, $previous); |
|
27 | - } |
|
18 | + /** |
|
19 | + * @param Context $context |
|
20 | + */ |
|
21 | + public function __construct( |
|
22 | + public object $dispatched_message, |
|
23 | + public Context $context, |
|
24 | + ?Throwable $previous = null |
|
25 | + ) { |
|
26 | + parent::__construct("Permission not granted for message: " . $dispatched_message::class, 0, $previous); |
|
27 | + } |
|
28 | 28 | } |
@@ -23,6 +23,6 @@ |
||
23 | 23 | public Context $context, |
24 | 24 | ?Throwable $previous = null |
25 | 25 | ) { |
26 | - parent::__construct("Permission not granted for message: " . $dispatched_message::class, 0, $previous); |
|
26 | + parent::__construct("Permission not granted for message: ".$dispatched_message::class, 0, $previous); |
|
27 | 27 | } |
28 | 28 | } |