2023-06-19 12:31:42 +00:00
|
|
|
<?php
|
|
|
|
|
2023-07-28 08:55:26 +00:00
|
|
|
namespace App\Notifications\Application;
|
2023-06-19 12:31:42 +00:00
|
|
|
|
|
|
|
use App\Models\Application;
|
2023-06-19 13:43:53 +00:00
|
|
|
use App\Models\ApplicationPreview;
|
2023-06-19 12:31:42 +00: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 08:55:26 +00:00
|
|
|
class DeploymentFailed extends Notification implements ShouldQueue
|
2023-06-19 12:31:42 +00:00
|
|
|
{
|
|
|
|
use Queueable;
|
2023-08-08 09:51:36 +00:00
|
|
|
|
2023-09-18 13:19:27 +00:00
|
|
|
public $tries = 1;
|
2023-06-19 12:31:42 +00:00
|
|
|
public Application $application;
|
2023-09-01 13:52:18 +00:00
|
|
|
public ?ApplicationPreview $preview = null;
|
2023-06-19 13:24:04 +00:00
|
|
|
|
2023-09-15 13:34:25 +00:00
|
|
|
public string $deployment_uuid;
|
2023-06-19 13:34:39 +00:00
|
|
|
public string $application_name;
|
2023-06-19 12:31:42 +00:00
|
|
|
public string $project_uuid;
|
|
|
|
public string $environment_name;
|
2023-09-15 13:34:25 +00:00
|
|
|
|
|
|
|
public ?string $deployment_url = null;
|
2023-09-01 13:52:18 +00:00
|
|
|
public ?string $fqdn = null;
|
2023-06-19 12:31:42 +00:00
|
|
|
|
2023-09-01 13:52:18 +00:00
|
|
|
public function __construct(Application $application, string $deployment_uuid, ?ApplicationPreview $preview = null)
|
2023-06-19 12:31:42 +00:00
|
|
|
{
|
|
|
|
$this->application = $application;
|
|
|
|
$this->deployment_uuid = $deployment_uuid;
|
2023-06-19 13:43:53 +00:00
|
|
|
$this->preview = $preview;
|
2023-06-19 13:24:04 +00:00
|
|
|
$this->application_name = data_get($application, 'name');
|
2023-06-19 12:31:42 +00: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();
|
|
|
|
}
|
2024-01-29 07:49:05 +00:00
|
|
|
$this->deployment_url = base_url() . "/project/{$this->project_uuid}/" . urlencode($this->environment_name) . "/application/{$this->application->uuid}/deployment/{$this->deployment_uuid}";
|
2023-06-19 12:31:42 +00:00
|
|
|
}
|
2023-08-08 09:51:36 +00:00
|
|
|
|
2023-06-19 12:31:42 +00:00
|
|
|
public function via(object $notifiable): array
|
|
|
|
{
|
2023-09-06 12:31:38 +00:00
|
|
|
return setNotificationChannels($notifiable, 'deployments');
|
2023-06-19 12:31:42 +00:00
|
|
|
}
|
2023-08-08 09:51:36 +00:00
|
|
|
|
2023-06-21 08:48:43 +00:00
|
|
|
public function toMail(): MailMessage
|
2023-06-19 12:31:42 +00:00
|
|
|
{
|
|
|
|
$mail = new MailMessage();
|
2023-06-21 08:48:43 +00:00
|
|
|
$pull_request_id = data_get($this->preview, 'pull_request_id', 0);
|
|
|
|
$fqdn = $this->fqdn;
|
|
|
|
if ($pull_request_id === 0) {
|
2023-10-10 11:10:43 +00:00
|
|
|
$mail->subject('Coolify: Deployment failed of ' . $this->application_name . '.');
|
2023-06-21 08:48:43 +00:00
|
|
|
} else {
|
|
|
|
$fqdn = $this->preview->fqdn;
|
2023-10-10 11:10:43 +00:00
|
|
|
$mail->subject('Coolify: Deployment failed of pull request #' . $this->preview->pull_request_id . ' of ' . $this->application_name . '.');
|
2023-06-21 08:48:43 +00:00
|
|
|
}
|
2023-07-28 08:55:26 +00:00
|
|
|
$mail->view('emails.application-deployment-failed', [
|
2023-06-19 12:31:42 +00:00
|
|
|
'name' => $this->application_name,
|
2023-06-21 08:48:43 +00:00
|
|
|
'fqdn' => $fqdn,
|
|
|
|
'deployment_url' => $this->deployment_url,
|
2023-06-20 13:25:45 +00:00
|
|
|
'pull_request_id' => data_get($this->preview, 'pull_request_id', 0),
|
2023-06-19 12:31:42 +00:00
|
|
|
]);
|
|
|
|
return $mail;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function toDiscord(): string
|
|
|
|
{
|
2023-06-19 13:43:53 +00:00
|
|
|
if ($this->preview) {
|
2024-04-29 11:33:28 +00:00
|
|
|
$message = 'Coolify: Pull request #' . $this->preview->pull_request_id . ' of ' . $this->application_name . ' (' . $this->preview->fqdn . ') deployment failed: ';
|
2023-06-21 08:48:43 +00:00
|
|
|
$message .= '[View Deployment Logs](' . $this->deployment_url . ')';
|
|
|
|
} else {
|
2024-04-29 11:33:28 +00:00
|
|
|
$message = 'Coolify: Deployment failed of ' . $this->application_name . ' (' . $this->fqdn . '): ';
|
2023-06-21 08:48:43 +00:00
|
|
|
$message .= '[View Deployment Logs](' . $this->deployment_url . ')';
|
2023-06-19 13:34:39 +00:00
|
|
|
}
|
|
|
|
return $message;
|
2023-06-19 12:31:42 +00:00
|
|
|
}
|
2023-09-06 12:31:38 +00:00
|
|
|
public function toTelegram(): array
|
|
|
|
{
|
|
|
|
if ($this->preview) {
|
2024-04-29 11:33:28 +00:00
|
|
|
$message = 'Coolify: Pull request #' . $this->preview->pull_request_id . ' of ' . $this->application_name . ' (' . $this->preview->fqdn . ') deployment failed: ';
|
2023-09-06 12:31:38 +00:00
|
|
|
} else {
|
2024-04-29 11:33:28 +00:00
|
|
|
$message = 'Coolify: Deployment failed of ' . $this->application_name . ' (' . $this->fqdn . '): ';
|
2023-09-06 12:31:38 +00:00
|
|
|
}
|
2023-11-08 13:37:01 +00:00
|
|
|
$buttons[] = [
|
|
|
|
"text" => "Deployment logs",
|
|
|
|
"url" => $this->deployment_url
|
|
|
|
];
|
2023-09-06 12:31:38 +00:00
|
|
|
return [
|
|
|
|
"message" => $message,
|
|
|
|
"buttons" => [
|
2023-11-08 13:37:01 +00:00
|
|
|
...$buttons
|
2023-09-06 12:31:38 +00:00
|
|
|
],
|
|
|
|
];
|
|
|
|
}
|
2023-08-08 09:51:36 +00:00
|
|
|
}
|