2023-09-14 10:45:50 +00:00
< ? php
namespace App\Notifications\Server ;
use App\Models\Server ;
2023-10-09 09:00:18 +00:00
use App\Notifications\Channels\DiscordChannel ;
use App\Notifications\Channels\EmailChannel ;
use App\Notifications\Channels\TelegramChannel ;
2023-09-14 10:45:50 +00:00
use Illuminate\Bus\Queueable ;
use Illuminate\Contracts\Queue\ShouldQueue ;
use Illuminate\Notifications\Messages\MailMessage ;
use Illuminate\Notifications\Notification ;
class Unreachable extends Notification implements ShouldQueue
{
use Queueable ;
public $tries = 1 ;
2024-06-10 20:43:34 +00:00
2023-09-14 10:45:50 +00:00
public function __construct ( public Server $server )
{
}
public function via ( object $notifiable ) : array
{
2023-10-09 09:00:18 +00:00
$channels = [];
$isEmailEnabled = isEmailEnabled ( $notifiable );
$isDiscordEnabled = data_get ( $notifiable , 'discord_enabled' );
$isTelegramEnabled = data_get ( $notifiable , 'telegram_enabled' );
if ( $isDiscordEnabled ) {
$channels [] = DiscordChannel :: class ;
}
2024-06-10 20:43:34 +00:00
if ( $isEmailEnabled ) {
2023-10-09 09:00:18 +00:00
$channels [] = EmailChannel :: class ;
}
if ( $isTelegramEnabled ) {
$channels [] = TelegramChannel :: class ;
}
2024-06-10 20:43:34 +00:00
2023-10-09 09:00:18 +00:00
return $channels ;
2023-09-14 10:45:50 +00:00
}
public function toMail () : MailMessage
{
$mail = new MailMessage ();
2023-12-15 09:01:14 +00:00
$mail -> subject ( " Coolify: Your server ( { $this -> server -> name } ) is unreachable. " );
2023-09-14 10:45:50 +00:00
$mail -> view ( 'emails.server-lost-connection' , [
'name' => $this -> server -> name ,
]);
2024-06-10 20:43:34 +00:00
2023-09-14 10:45:50 +00:00
return $mail ;
}
public function toDiscord () : string
{
2024-01-17 13:02:54 +00:00
$message = " Coolify: Your server ' { $this -> server -> name } ' is unreachable. All automations & integrations are turned off! Please check your server! IMPORTANT: We automatically try to revive your server and turn on all automations & integrations. " ;
2024-06-10 20:43:34 +00:00
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
{
return [
2024-06-10 20:43:34 +00:00
'message' => " Coolify: Your server ' { $this -> server -> name } ' is unreachable. All automations & integrations are turned off! Please check your server! IMPORTANT: We automatically try to revive your server and turn on all automations & integrations. " ,
2023-09-14 10:45:50 +00:00
];
}
}