-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathManager.php
82 lines (71 loc) · 1.76 KB
/
Manager.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<?php
namespace Namshi\Notificator;
use Namshi\Notificator\Notification\Handler\HandlerInterface;
use Psr\Log\LoggerInterface;
/**
* This class is responsible for dispatching a notification to the various
* handlers attached to an event.
*/
class Manager implements ManagerInterface
{
/**
* @var array
*/
protected $handlers = array();
/**
* @var \Psr\Log\LoggerInterface
*/
protected $logger;
/**
* Constructor.
*
* @param array $handlers
*/
public function __construct(array $handlers = array(), LoggerInterface $logger = null)
{
$this->handlers = $handlers;
$this->logger = $logger;
}
/**
* @inheritDoc
*/
public function trigger(NotificationInterface $notification)
{
foreach ($this->getHandlers() as $handler) {
if ($handler->shouldHandle($notification)) {
if ($logger = $this->getLogger()) {
$logger->info(sprintf('notification handler "%s" processed message', get_class($handler)));
}
if (false === $handler->handle($notification)) {
return true;
}
}
}
return true;
}
/**
* Returns all the handlers associated to this manager.
*
* @return array
*/
public function getHandlers()
{
return $this->handlers;
}
/**
* Adds an handler to this manager.
*
* @param HandlerInterface $handler
*/
public function addHandler(HandlerInterface $handler)
{
$this->handlers[] = $handler;
}
/**
* @return \Psr\Log\LoggerInterface
*/
public function getLogger()
{
return $this->logger;
}
}