|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
namespace ProtoneMedia\ApiHealth\Notifications; |
|
4
|
|
|
|
|
5
|
|
|
use Illuminate\Notifications\Messages\MailMessage; |
|
6
|
|
|
use Illuminate\Notifications\Messages\SlackMessage; |
|
7
|
|
|
use Illuminate\Notifications\Notification; |
|
8
|
|
|
use Illuminate\Support\Carbon; |
|
9
|
|
|
use ProtoneMedia\ApiHealth\Checkers\Checker; |
|
10
|
|
|
use ProtoneMedia\ApiHealth\Checkers\CheckerHasFailed as CheckerHasFailedException; |
|
11
|
|
|
|
|
12
|
|
|
class CheckerHasFailed extends Notification |
|
13
|
|
|
{ |
|
14
|
|
|
public $checker; |
|
15
|
|
|
public $exception; |
|
16
|
|
|
public $failedData; |
|
17
|
|
|
|
|
18
|
|
|
public function __construct(Checker $checker, CheckerHasFailedException $exception, array $failedData) |
|
19
|
|
|
{ |
|
20
|
|
|
$this->checker = $checker; |
|
21
|
|
|
$this->exception = $exception; |
|
22
|
|
|
$this->failedData = $failedData; |
|
23
|
|
|
} |
|
24
|
|
|
|
|
25
|
|
|
/** |
|
26
|
|
|
* Get the notification's channels from the configuration file. |
|
27
|
|
|
* |
|
28
|
|
|
* @return array|string |
|
29
|
|
|
*/ |
|
30
|
|
|
public function via(): array |
|
31
|
|
|
{ |
|
32
|
|
|
return config('api-health.notifications.via'); |
|
33
|
|
|
} |
|
34
|
|
|
|
|
35
|
|
|
/** |
|
36
|
|
|
* Returns an array of all relevant data for the notification. |
|
37
|
|
|
* |
|
38
|
|
|
* @return array |
|
39
|
|
|
*/ |
|
40
|
|
|
protected function data(): array |
|
41
|
|
|
{ |
|
42
|
|
|
return [ |
|
43
|
|
|
'application_name' => config('app.name') ?: 'Your application', |
|
44
|
|
|
'checker_type' => get_class($this->checker), |
|
45
|
|
|
'failure_count' => count($this->failedData['failed_at']), |
|
46
|
|
|
'failed_at' => Carbon::createFromTimestamp($this->failedData['failed_at'][0]), |
|
47
|
|
|
'exception_message' => $this->exception->getMessage(), |
|
48
|
|
|
]; |
|
49
|
|
|
} |
|
50
|
|
|
|
|
51
|
|
|
/** |
|
52
|
|
|
* Build the mail representation of the notification. |
|
53
|
|
|
* |
|
54
|
|
|
* @return \Illuminate\Notifications\Messages\MailMessage |
|
55
|
|
|
*/ |
|
56
|
|
|
public function toMail(): MailMessage |
|
57
|
|
|
{ |
|
58
|
|
|
$replace = $this->data(); |
|
59
|
|
|
|
|
60
|
|
|
return (new MailMessage) |
|
61
|
|
|
->error() |
|
62
|
|
|
->subject(trans('api-health::notifications.checker_failed_subject', $replace)) |
|
|
|
|
|
|
63
|
|
|
->line(trans('api-health::notifications.checker_failed_type', $replace)) |
|
64
|
|
|
->line(trans('api-health::notifications.checker_failed_at', $replace)) |
|
65
|
|
|
->line(trans('api-health::notifications.checker_failed_exception', $replace)); |
|
66
|
|
|
} |
|
67
|
|
|
|
|
68
|
|
|
/** |
|
69
|
|
|
* Build the Slack representation of the notification. |
|
70
|
|
|
* |
|
71
|
|
|
* @return \Illuminate\Notifications\Messages\SlackMessage |
|
72
|
|
|
*/ |
|
73
|
|
|
public function toSlack(): SlackMessage |
|
74
|
|
|
{ |
|
75
|
|
|
$replace = $this->data(); |
|
76
|
|
|
|
|
77
|
|
|
return (new SlackMessage) |
|
78
|
|
|
->error() |
|
79
|
|
|
->from(config('api-health.notifications.slack.username'), config('api-health.notifications.slack.icon')) |
|
80
|
|
|
->to(config('api-health.notifications.slack.channel')) |
|
81
|
|
|
->content(implode(PHP_EOL, [ |
|
82
|
|
|
trans('api-health::notifications.checker_failed_type', $replace), |
|
83
|
|
|
trans('api-health::notifications.checker_failed_at', $replace), |
|
84
|
|
|
trans('api-health::notifications.checker_failed_exception', $replace), |
|
85
|
|
|
])); |
|
86
|
|
|
} |
|
87
|
|
|
} |
|
88
|
|
|
|