coolify/app/Notifications/Application/DeploymentSuccess.php

122 lines
4.3 KiB
PHP
Raw Normal View History

2023-06-19 14:31:42 +02:00
<?php
2023-07-28 10:55:26 +02:00
namespace App\Notifications\Application;
2023-06-19 14:31:42 +02:00
use App\Models\Application;
2023-06-19 15:43:53 +02:00
use App\Models\ApplicationPreview;
2023-06-19 14:31:42 +02:00
use App\Notifications\Channels\DiscordChannel;
use App\Notifications\Channels\EmailChannel;
2023-06-19 14:31:42 +02:00
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Notifications\Messages\MailMessage;
use Illuminate\Notifications\Notification;
use Illuminate\Support\Str;
2023-07-28 10:55:26 +02:00
class DeploymentSuccess extends Notification implements ShouldQueue
2023-06-19 14:31:42 +02:00
{
use Queueable;
2023-09-08 16:53:19 +02:00
public $tries = 5;
2023-06-19 14:31:42 +02:00
public Application $application;
public string $deployment_uuid;
2023-06-19 15:43:53 +02:00
public ApplicationPreview|null $preview = null;
2023-06-19 15:24:04 +02:00
2023-06-19 15:34:39 +02:00
public string $application_name;
2023-06-19 14:31:42 +02:00
public string|null $deployment_url = null;
public string $project_uuid;
public string $environment_name;
2023-07-28 12:51:26 +02:00
public string|null $fqdn;
2023-06-19 14:31:42 +02:00
2023-06-19 15:43:53 +02:00
public function __construct(Application $application, string $deployment_uuid, ApplicationPreview|null $preview = null)
2023-06-19 14:31:42 +02:00
{
$this->application = $application;
$this->deployment_uuid = $deployment_uuid;
2023-06-19 15:43:53 +02:00
$this->preview = $preview;
2023-06-19 15:24:04 +02:00
$this->application_name = data_get($application, 'name');
2023-06-19 14:31:42 +02:00
$this->project_uuid = data_get($application, 'environment.project.uuid');
$this->environment_name = data_get($application, 'environment.name');
$this->fqdn = data_get($application, 'fqdn');
if (Str::of($this->fqdn)->explode(',')->count() > 1) {
$this->fqdn = Str::of($this->fqdn)->explode(',')->first();
}
$this->deployment_url = base_url() . "/project/{$this->project_uuid}/{$this->environment_name}/application/{$this->application->uuid}/deployment/{$this->deployment_uuid}";
2023-06-19 14:31:42 +02:00
}
2023-06-19 14:31:42 +02:00
public function via(object $notifiable): array
{
2023-09-06 14:31:38 +02:00
return setNotificationChannels($notifiable, 'deployments');
2023-06-19 14:31:42 +02:00
}
2023-06-21 10:48:43 +02:00
public function toMail(): MailMessage
2023-06-19 14:31:42 +02:00
{
$mail = new MailMessage();
2023-06-20 15:25:45 +02:00
$pull_request_id = data_get($this->preview, 'pull_request_id', 0);
2023-06-21 10:48:43 +02:00
$fqdn = $this->fqdn;
2023-06-20 15:25:45 +02:00
if ($pull_request_id === 0) {
2023-09-14 12:45:50 +02:00
$mail->subject("✅ New version is deployed of {$this->application_name}");
2023-06-20 15:25:45 +02:00
} else {
2023-06-21 10:48:43 +02:00
$fqdn = $this->preview->fqdn;
2023-06-20 15:25:45 +02:00
$mail->subject("✅ Pull request #{$pull_request_id} of {$this->application_name} deployed successfully");
}
2023-07-28 10:55:26 +02:00
$mail->view('emails.application-deployment-success', [
2023-06-19 14:31:42 +02:00
'name' => $this->application_name,
2023-06-21 10:48:43 +02:00
'fqdn' => $fqdn,
'deployment_url' => $this->deployment_url,
2023-06-20 15:25:45 +02:00
'pull_request_id' => $pull_request_id,
2023-06-19 14:31:42 +02:00
]);
return $mail;
}
public function toDiscord(): string
{
2023-06-19 15:43:53 +02:00
if ($this->preview) {
$message = '✅ New PR' . $this->preview->pull_request_id . ' version successfully deployed of ' . $this->application_name . '
';
2023-06-21 12:06:35 +02:00
if ($this->preview->fqdn) {
$message .= '[Open Application](' . $this->preview->fqdn . ') | ';
2023-06-21 12:06:35 +02:00
}
$message .= '[Deployment logs](' . $this->deployment_url . ')';
2023-06-19 15:34:39 +02:00
} else {
$message = '✅ New version successfully deployed of ' . $this->application_name . '
';
2023-06-21 12:06:35 +02:00
if ($this->fqdn) {
$message .= '[Open Application](' . $this->fqdn . ') | ';
2023-06-21 12:06:35 +02:00
}
$message .= '[Deployment logs](' . $this->deployment_url . ')';
2023-06-19 15:34:39 +02:00
}
return $message;
2023-06-19 14:31:42 +02:00
}
2023-09-06 14:31:38 +02:00
public function toTelegram(): array
{
if ($this->preview) {
$message = '✅ New PR' . $this->preview->pull_request_id . ' version successfully deployed of ' . $this->application_name . '';
if ($this->preview->fqdn) {
$buttons[] = [
"text" => "Open Application",
"url" => $this->preview->fqdn
];
}
} else {
$message = '✅ New version successfully deployed of ' . $this->application_name . '';
if ($this->fqdn) {
$buttons[] = [
"text" => "Open Application",
"url" => $this->fqdn
];
}
}
$buttons[] = [
"text" => "Deployment logs",
"url" => $this->deployment_url
];
return [
"message" => $message,
"buttons" => [
...$buttons
],
];
}
}