-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathEventDispatcherApplicationProcessor.php
55 lines (47 loc) · 1.72 KB
/
EventDispatcherApplicationProcessor.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<?php
namespace Mbunge\PhpAttributes\Example\PhpLeagueEvent;
use Mbunge\PhpAttributes\Example\ApplicationController;
use Mbunge\PhpAttributes\Example\ApplicationProcessor;
use Mbunge\PhpAttributes\Example\PhpLeagueEvent\Event\HandleInputEvent;
use Mbunge\PhpAttributes\Example\PhpLeagueEvent\Event\HandleOutputEvent;
use Mbunge\PhpAttributes\Example\PhpLeagueEvent\Event\InitApplicationEvent;
use Psr\EventDispatcher\EventDispatcherInterface;
/**
* The processor dispatches events
*
* Class EventDispatcherApplicationFacade
* @copyright Marco Bunge <[email protected]>
* @package Mbunge\PhpAttributes\Example\PhpLeagueEvent;
*/
class EventDispatcherApplicationProcessor implements ApplicationProcessor
{
public function __construct(
private EventDispatcherInterface $eventDispatcher,
private ApplicationController $controller
)
{
}
/**
* @param ApplicationController $application
*/
public function init(ApplicationController $application): void
{
$this->eventDispatcher->dispatch(new InitApplicationEvent($application));
}
/**
* 1. delegates input to input event
* 2. execute controller with input from input event
* 3. delegate controller output to output event
* @param object $input
* @return object
*/
public function process(object $input): object
{
/** @var HandleInputEvent $inputEvent */
$inputEvent = $this->eventDispatcher->dispatch(new HandleInputEvent($input));
$output = $this->controller->execute($inputEvent->input);
/** @var HandleOutputEvent $outputEvent */
$outputEvent = $this->eventDispatcher->dispatch(new HandleOutputEvent($output));
return $outputEvent->output;
}
}