lasthourcloud/app/Notifications/Container/ContainerRestarted.php

65 lines
1.7 KiB
PHP
Raw Permalink Normal View History

2023-09-14 10:45:50 +00:00
<?php
namespace App\Notifications\Container;
use App\Models\Server;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Notifications\Messages\MailMessage;
use Illuminate\Notifications\Notification;
class ContainerRestarted extends Notification implements ShouldQueue
{
use Queueable;
2023-09-18 13:04:50 +00:00
public $tries = 1;
2023-09-14 10:45:50 +00:00
2024-07-25 20:04:05 +00:00
public function __construct(public string $name, public Server $server, public ?string $url = null)
{
}
2023-09-14 10:45:50 +00:00
public function via(object $notifiable): array
{
return setNotificationChannels($notifiable, 'status_changes');
}
public function toMail(): MailMessage
{
2024-07-25 20:04:05 +00:00
$mail = new MailMessage();
2024-07-25 20:50:18 +00:00
$mail->subject("Last Hour Cloud: A resource ({$this->name}) has been restarted automatically on {$this->server->name}");
2023-09-14 10:45:50 +00:00
$mail->view('emails.container-restarted', [
'containerName' => $this->name,
'serverName' => $this->server->name,
'url' => $this->url,
2023-09-14 10:45:50 +00:00
]);
2024-06-10 20:43:34 +00:00
2023-09-14 10:45:50 +00:00
return $mail;
}
public function toDiscord(): string
{
2024-07-25 20:50:18 +00:00
$message = "Last Hour Cloud: A resource ({$this->name}) has been restarted automatically on {$this->server->name}";
2023-09-14 10:45:50 +00:00
return $message;
}
2024-06-10 20:43:34 +00:00
2023-09-14 10:45:50 +00:00
public function toTelegram(): array
{
2024-07-25 20:50:18 +00:00
$message = "Last Hour Cloud: A resource ({$this->name}) has been restarted automatically on {$this->server->name}";
2023-09-14 10:45:50 +00:00
$payload = [
2024-06-10 20:43:34 +00:00
'message' => $message,
2023-09-14 10:45:50 +00:00
];
if ($this->url) {
$payload['buttons'] = [
[
[
2024-07-25 20:50:18 +00:00
"text" => "Check Proxy in Last Hour Cloud",
2024-07-25 20:04:05 +00:00
"url" => $this->url
]
]
2023-09-14 10:45:50 +00:00
];
2024-06-10 20:43:34 +00:00
}
2023-09-14 10:45:50 +00:00
return $payload;
}
}