coolify/app/Notifications/Server/ForceDisabled.php

67 lines
2.1 KiB
PHP
Raw Normal View History

2024-02-25 23:34:01 +01:00
<?php
namespace App\Notifications\Server;
use App\Models\Server;
use App\Notifications\Channels\DiscordChannel;
use App\Notifications\Channels\EmailChannel;
use App\Notifications\Channels\TelegramChannel;
2024-06-10 22:43:34 +02:00
use Illuminate\Bus\Queueable;
2024-02-25 23:34:01 +01:00
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Notifications\Messages\MailMessage;
use Illuminate\Notifications\Notification;
class ForceDisabled extends Notification implements ShouldQueue
2024-02-25 23:34:01 +01:00
{
use Queueable;
public $tries = 1;
2024-06-10 22:43:34 +02:00
2024-06-19 08:59:46 +02:00
public function __construct(public Server $server) {}
2024-02-25 23:34:01 +01:00
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;
}
2024-06-10 22:43:34 +02:00
2024-02-25 23:34:01 +01:00
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', [
2024-02-25 23:34:01 +01:00
'name' => $this->server->name,
]);
2024-06-10 22:43:34 +02:00
2024-02-25 23:34:01 +01:00
return $mail;
}
public function toDiscord(): string
{
$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/subsciprtions).";
2024-06-10 22:43:34 +02:00
2024-02-25 23:34:01 +01:00
return $message;
}
2024-06-10 22:43:34 +02:00
2024-02-25 23:34:01 +01:00
public function toTelegram(): array
{
return [
2024-06-10 22:43:34 +02:00
'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/subsciprtions).",
2024-02-25 23:34:01 +01:00
];
}
}