74 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			74 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Notifications\Server;
 | |
| 
 | |
| use App\Models\Server;
 | |
| use App\Notifications\Channels\DiscordChannel;
 | |
| use App\Notifications\Channels\EmailChannel;
 | |
| use App\Notifications\Channels\TelegramChannel;
 | |
| use App\Notifications\Dto\DiscordMessage;
 | |
| use Illuminate\Bus\Queueable;
 | |
| use Illuminate\Contracts\Queue\ShouldQueue;
 | |
| use Illuminate\Notifications\Messages\MailMessage;
 | |
| use Illuminate\Notifications\Notification;
 | |
| 
 | |
| class ForceDisabled extends Notification implements ShouldQueue
 | |
| {
 | |
|     use Queueable;
 | |
| 
 | |
|     public $tries = 1;
 | |
| 
 | |
|     public function __construct(public Server $server) {}
 | |
| 
 | |
|     public function via(object $notifiable): array
 | |
|     {
 | |
|         $channels = [];
 | |
|         $isEmailEnabled = isEmailEnabled($notifiable);
 | |
|         $isDiscordEnabled = data_get($notifiable, 'discord_enabled');
 | |
|         $isTelegramEnabled = data_get($notifiable, 'telegram_enabled');
 | |
| 
 | |
|         if ($isDiscordEnabled) {
 | |
|             $channels[] = DiscordChannel::class;
 | |
|         }
 | |
|         if ($isEmailEnabled) {
 | |
|             $channels[] = EmailChannel::class;
 | |
|         }
 | |
|         if ($isTelegramEnabled) {
 | |
|             $channels[] = TelegramChannel::class;
 | |
|         }
 | |
| 
 | |
|         return $channels;
 | |
|     }
 | |
| 
 | |
|     public function toMail(): MailMessage
 | |
|     {
 | |
|         $mail = new MailMessage;
 | |
|         $mail->subject("Coolify: Server ({$this->server->name}) disabled because it is not paid!");
 | |
|         $mail->view('emails.server-force-disabled', [
 | |
|             'name' => $this->server->name,
 | |
|         ]);
 | |
| 
 | |
|         return $mail;
 | |
|     }
 | |
| 
 | |
|     public function toDiscord(): DiscordMessage
 | |
|     {
 | |
|         $message = new DiscordMessage(
 | |
|             title: ':cross_mark: Server disabled',
 | |
|             description: "Server ({$this->server->name}) disabled because it is not paid!",
 | |
|             color: DiscordMessage::errorColor(),
 | |
|         );
 | |
| 
 | |
|         $message->addField('Please update your subscription to enable the server again!', '[Link](https://app.coolify.io/subscriptions)');
 | |
| 
 | |
|         return $message;
 | |
|     }
 | |
| 
 | |
|     public function toTelegram(): array
 | |
|     {
 | |
|         return [
 | |
|             'message' => "Coolify: Server ({$this->server->name}) disabled because it is not paid!\n All automations and integrations are stopped.\nPlease update your subscription to enable the server again [here](https://app.coolify.io/subscriptions).",
 | |
|         ];
 | |
|     }
 | |
| }
 | 
