1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace Liip\MonitorBundle\Helper; |
4
|
|
|
|
5
|
|
|
use ArrayObject; |
6
|
|
|
use ZendDiagnostics\Check\CheckInterface; |
7
|
|
|
use ZendDiagnostics\Result\Collection as ResultsCollection; |
8
|
|
|
use ZendDiagnostics\Result\ResultInterface; |
9
|
|
|
use ZendDiagnostics\Runner\Reporter\ReporterInterface; |
10
|
|
|
|
11
|
|
|
abstract class AbstractMailReporter implements ReporterInterface |
12
|
|
|
{ |
13
|
|
|
/** |
14
|
|
|
* @var array|string |
15
|
|
|
*/ |
16
|
|
|
protected $recipients; |
17
|
|
|
/** |
18
|
|
|
* @var string |
19
|
|
|
*/ |
20
|
|
|
protected $subject; |
21
|
|
|
/** |
22
|
|
|
* @var string |
23
|
|
|
*/ |
24
|
|
|
protected $sender; |
25
|
|
|
/** |
26
|
|
|
* @var bool |
27
|
|
|
*/ |
28
|
|
|
protected $sendOnWarning; |
29
|
|
|
|
30
|
|
|
/** |
31
|
|
|
* @param string|array $recipients |
32
|
|
|
* @param string $sender |
33
|
|
|
* @param string $subject |
34
|
|
|
* @param bool $sendOnWarning |
35
|
|
|
*/ |
36
|
|
|
public function __construct($recipients, $sender, $subject, $sendOnWarning = true) |
37
|
|
|
{ |
38
|
|
|
$this->recipients = $recipients; |
39
|
|
|
$this->sender = $sender; |
40
|
|
|
$this->subject = $subject; |
41
|
|
|
$this->sendOnWarning = $sendOnWarning; |
42
|
|
|
} |
43
|
|
|
|
44
|
|
|
/** |
45
|
|
|
* {@inheritdoc} |
46
|
|
|
*/ |
47
|
|
|
public function onStart(ArrayObject $checks, $runnerConfig) |
48
|
|
|
{ |
49
|
|
|
} |
50
|
|
|
|
51
|
|
|
/** |
52
|
|
|
* {@inheritdoc} |
53
|
|
|
*/ |
54
|
|
|
public function onBeforeRun(CheckInterface $check, $checkAlias = null) |
55
|
|
|
{ |
56
|
|
|
} |
57
|
|
|
|
58
|
|
|
/** |
59
|
|
|
* {@inheritdoc} |
60
|
|
|
*/ |
61
|
|
|
public function onAfterRun(CheckInterface $check, ResultInterface $result, $checkAlias = null) |
62
|
|
|
{ |
63
|
|
|
} |
64
|
|
|
|
65
|
|
|
/** |
66
|
|
|
* {@inheritdoc} |
67
|
|
|
*/ |
68
|
|
|
public function onStop(ResultsCollection $results) |
69
|
|
|
{ |
70
|
|
|
} |
71
|
|
|
|
72
|
|
|
/** |
73
|
|
|
* {@inheritdoc} |
74
|
|
|
*/ |
75
|
|
|
public function onFinish(ResultsCollection $results) |
76
|
|
|
{ |
77
|
|
|
if ($results->getUnknownCount() > 0) { |
78
|
|
|
$this->sendEmail($results); |
79
|
|
|
|
80
|
|
|
return; |
81
|
|
|
} |
82
|
|
|
|
83
|
|
|
if ($results->getWarningCount() > 0 && $this->sendOnWarning) { |
84
|
|
|
$this->sendEmail($results); |
85
|
|
|
|
86
|
|
|
return; |
87
|
|
|
} |
88
|
|
|
|
89
|
|
|
if ($results->getFailureCount() > 0) { |
90
|
|
|
$this->sendEmail($results); |
91
|
|
|
|
92
|
|
|
return; |
93
|
|
|
} |
94
|
|
|
} |
95
|
|
|
|
96
|
|
|
abstract protected function sendEmail(ResultsCollection $results); |
97
|
|
|
} |
98
|
|
|
|