coolify/app/Notifications/Server/ForceDisabled.php

91 lines
2.9 KiB
PHP
Raw Normal View History

2024-02-25 22:34:01 +00: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-11-12 21:37:55 +00:00
use App\Notifications\Channels\SlackChannel;
use App\Notifications\Dto\SlackMessage;
use App\Notifications\CustomEmailNotification;
use App\Notifications\Dto\DiscordMessage;
2024-02-25 22:34:01 +00:00
use Illuminate\Notifications\Messages\MailMessage;
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)
{
$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
{
$channels = [];
$isEmailEnabled = isEmailEnabled($notifiable);
$isDiscordEnabled = data_get($notifiable, 'discord_enabled');
$isTelegramEnabled = data_get($notifiable, 'telegram_enabled');
2024-11-12 21:37:55 +00:00
$isSlackEnabled = data_get($notifiable, 'slack_enabled');
2024-02-25 22:34:01 +00:00
if ($isDiscordEnabled) {
$channels[] = DiscordChannel::class;
}
if ($isEmailEnabled) {
$channels[] = EmailChannel::class;
}
if ($isTelegramEnabled) {
$channels[] = TelegramChannel::class;
}
2024-11-12 21:37:55 +00:00
if ($isSlackEnabled) {
$channels[] = SlackChannel::class;
}
2024-06-10 20:43:34 +00:00
2024-02-25 22:34:01 +00:00
return $channels;
}
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!");
$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;
}
public function toDiscord(): DiscordMessage
2024-02-25 22:34:01 +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!",
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 [
'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).",
2024-02-25 22:34:01 +00:00
];
}
2024-11-12 21:37:55 +00:00
public function toSlack(): SlackMessage
{
$title = "Server disabled";
$description = "Server ({$this->server->name}) disabled because it is not paid!\n";
$description .= "All automations and integrations are stopped.\n\n";
$description .= "Please update your subscription to enable the server again: https://app.coolify.io/subscriptions";
return new SlackMessage(
title: $title,
description: $description,
color: SlackMessage::errorColor()
);
}
2024-02-25 22:34:01 +00:00
}