forked from broadway/broadway
-
Notifications
You must be signed in to change notification settings - Fork 1
/
CommandLogger.php
74 lines (64 loc) · 2.02 KB
/
CommandLogger.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
<?php
/*
* This file is part of the broadway/broadway package.
*
* (c) Qandidate.com <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Broadway\Auditing;
use Exception;
use Psr\Log\LoggerInterface;
/**
* Logs whether commands where executed successfully or whether they failed.
*
* This object can be registered as an event listener.
*/
class CommandLogger
{
private $logger;
private $commandSerializer;
public function __construct(LoggerInterface $logger, CommandSerializerInterface $commandSerializer)
{
$this->logger = $logger;
$this->commandSerializer = $commandSerializer;
}
/**
* @param mixed $command Command that was executed successfully
*/
public function onCommandHandlingSuccess($command)
{
$messageData = array(
'status' => 'success',
'command' => $this->getCommandData($command)
);
$this->logger->info(json_encode($messageData));
}
/**
* @param mixed $command Command that errored
* @param Exception $exception Exception that occured during the execution of the command
*/
public function onCommandHandlingFailure($command, Exception $exception)
{
$messageData = array(
'status' => 'failure',
'command' => $this->getCommandData($command),
'exception' => array(
'message' => $exception->getMessage(),
'file' => $exception->getFile(),
'class' => get_class($exception),
'line' => $exception->getLine(),
'code' => $exception->getCode()
)
);
$this->logger->info(json_encode($messageData));
}
private function getCommandData($command)
{
return array(
'class' => get_class($command),
'data' => $this->commandSerializer->serialize($command),
);
}
}