2024-02-25 22:34:01 +00:00
< ? php
namespace App\Notifications\Server ;
use App\Models\Server ;
2024-11-26 09:19:05 +00:00
use App\Notifications\CustomEmailNotification ;
2024-10-01 19:38:12 +00:00
use App\Notifications\Dto\DiscordMessage ;
2024-12-11 14:54:11 +00:00
use App\Notifications\Dto\PushoverMessage ;
2024-12-09 16:00:07 +00:00
use App\Notifications\Dto\SlackMessage ;
2024-02-25 22:34:01 +00:00
use Illuminate\Notifications\Messages\MailMessage ;
2024-11-26 09:19:05 +00:00
class ForceDisabled extends CustomEmailNotification
2024-02-25 22:34:01 +00:00
{
2024-11-12 21:37:55 +00:00
public function __construct ( public Server $server )
{
2024-11-22 10:16:01 +00:00
$this -> onQueue ( 'high' );
2024-11-12 21:37:55 +00:00
}
2024-02-25 22:34:01 +00:00
public function via ( object $notifiable ) : array
{
2024-12-09 16:00:07 +00:00
return $notifiable -> getEnabledChannels ( 'server_force_disabled' );
2024-02-25 22:34:01 +00:00
}
public function toMail () : MailMessage
{
2024-07-24 19:11:12 +00:00
$mail = new MailMessage ;
2024-02-25 22:34:01 +00:00
$mail -> subject ( " Coolify: Server ( { $this -> server -> name } ) disabled because it is not paid! " );
2024-02-26 09:25:21 +00:00
$mail -> view ( 'emails.server-force-disabled' , [
2024-02-25 22:34:01 +00:00
'name' => $this -> server -> name ,
]);
2024-06-10 20:43:34 +00:00
2024-02-25 22:34:01 +00:00
return $mail ;
}
2024-10-01 19:38:12 +00:00
public function toDiscord () : DiscordMessage
2024-02-25 22:34:01 +00:00
{
2024-10-01 19:38:12 +00:00
$message = new DiscordMessage (
2024-10-21 20:40:43 +00:00
title : ':cross_mark: Server disabled' ,
description : " Server ( { $this -> server -> name } ) disabled because it is not paid! " ,
2024-10-01 19:38:12 +00:00
color : DiscordMessage :: errorColor (),
);
2024-10-21 20:40:43 +00:00
$message -> addField ( 'Please update your subscription to enable the server again!' , '[Link](https://app.coolify.io/subscriptions)' );
2024-06-10 20:43:34 +00:00
2024-02-25 22:34:01 +00:00
return $message ;
}
2024-06-10 20:43:34 +00:00
2024-02-25 22:34:01 +00:00
public function toTelegram () : array
{
return [
2024-09-23 08:46:19 +00:00
'message' => " Coolify: Server ( { $this -> server -> name } ) disabled because it is not paid! \n All automations and integrations are stopped. \n Please update your subscription to enable the server again [here](https://app.coolify.io/subscriptions). " ,
2024-02-25 22:34:01 +00:00
];
}
2024-11-12 21:37:55 +00:00
2024-12-11 14:54:11 +00:00
public function toPushover () : PushoverMessage
{
return new PushoverMessage (
title : 'Server disabled' ,
level : 'error' ,
message : " Server ( { $this -> server -> name } ) disabled because it is not paid! \n All automations and integrations are stopped.<br/>Please update your subscription to enable the server again [here](https://app.coolify.io/subscriptions). " ,
);
}
2024-11-12 21:37:55 +00:00
public function toSlack () : SlackMessage
{
2024-12-09 16:00:07 +00:00
$title = 'Server disabled' ;
2024-11-12 21:37:55 +00:00
$description = " Server ( { $this -> server -> name } ) disabled because it is not paid! \n " ;
$description .= " All automations and integrations are stopped. \n \n " ;
2024-12-09 16:00:07 +00:00
$description .= 'Please update your subscription to enable the server again: https://app.coolify.io/subscriptions' ;
2024-11-12 21:37:55 +00:00
return new SlackMessage (
title : $title ,
description : $description ,
color : SlackMessage :: errorColor ()
);
}
2024-02-25 22:34:01 +00:00
}