| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- <?php
- namespace App\Notifications;
- use Illuminate\Bus\Queueable;
- use Illuminate\Contracts\Queue\ShouldQueue;
- use Illuminate\Notifications\Messages\MailMessage;
- use Illuminate\Notifications\Notification;
- class NodeOffline extends Notification implements ShouldQueue
- {
- use Queueable;
- private $data;
- public function __construct($data)
- {
- $this->data = $data;
- }
- public function via($notifiable)
- {
- return sysConfig('node_offline_notification');
- }
- public function toMail($notifiable)
- {
- return (new MailMessage)
- ->subject(trans('notification.node_offline'))
- ->markdown('mail.simpleMarkdown', ['title' => trans('notification.node_offline_content'), 'content' => $this->markdownMessage(), 'url' => route('admin.node.index')]);
- }
- private function markdownMessage()
- {
- $content = '';
- foreach ($this->data as $node) {
- $content .= "- {$node['name']} {$node['host']}\r\n";
- }
- return $content;
- }
- public function toCustom($notifiable)
- {
- return [
- 'title' => trans('notification.node_offline'),
- 'content' => $this->markdownMessage(),
- ];
- }
- public function toBark($notifiable)
- {
- return [
- 'title' => trans('notification.node_offline'),
- 'content' => $this->stringMessage(),
- ];
- }
- private function stringMessage()
- {
- $content = '';
- foreach ($this->data as $node) {
- $content .= "{$node['name']} {$node['host']}| ";
- }
- return $content;
- }
- }
|