Save workspace changes

This commit is contained in:
2026-04-18 17:02:56 +02:00
parent f02ea9a711
commit 87d60af5a9
4220 changed files with 1388603 additions and 1554 deletions

View File

@@ -0,0 +1,49 @@
<?php
declare(strict_types=1);
namespace App\Mail;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Mail\Mailable;
use Illuminate\Mail\Mailables\Content;
use Illuminate\Mail\Mailables\Envelope;
use Illuminate\Queue\SerializesModels;
class EmailChangeVerificationCodeMail extends Mailable implements ShouldQueue
{
use Queueable, SerializesModels;
public int $tries = 3;
public function __construct(
public readonly string $code,
public readonly int $expiresInMinutes,
) {
$this->onQueue('mail');
}
public function envelope(): Envelope
{
return new Envelope(
subject: 'Skinbase email change verification code',
);
}
public function content(): Content
{
return new Content(
view: 'emails.email-change-verification-code',
with: [
'code' => $this->code,
'expiresInMinutes' => $this->expiresInMinutes,
],
);
}
public function attachments(): array
{
return [];
}
}

View File

@@ -0,0 +1,47 @@
<?php
declare(strict_types=1);
namespace App\Mail;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Mail\Mailable;
use Illuminate\Mail\Mailables\Content;
use Illuminate\Mail\Mailables\Envelope;
use Illuminate\Queue\SerializesModels;
class EmailChangedSecurityAlertMail extends Mailable implements ShouldQueue
{
use Queueable, SerializesModels;
public int $tries = 3;
public function __construct(public readonly string $newEmail)
{
$this->onQueue('mail');
}
public function envelope(): Envelope
{
return new Envelope(
subject: 'Your Skinbase email address was changed',
);
}
public function content(): Content
{
return new Content(
view: 'emails.email-changed-security-alert',
with: [
'newEmail' => $this->newEmail,
'supportEmail' => (string) config('mail.from.address', 'support@skinbase.org'),
],
);
}
public function attachments(): array
{
return [];
}
}

View File

@@ -0,0 +1,62 @@
<?php
namespace App\Mail;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Mail\Mailable;
use Illuminate\Mail\Mailables\Content;
use Illuminate\Mail\Mailables\Envelope;
use Illuminate\Queue\SerializesModels;
use Illuminate\Support\Facades\Log;
class RegistrationVerificationMail extends Mailable implements ShouldQueue
{
use Queueable, SerializesModels;
public int $tries = 3;
public int $timeout = 30;
public array $backoff = [60, 300, 900];
public function __construct(public readonly string $token)
{
$this->onQueue('mail');
}
public function envelope(): Envelope
{
return new Envelope(
subject: 'Verify your Skinbase email',
);
}
public function content(): Content
{
$appUrl = rtrim((string) config('app.url', 'http://localhost'), '/');
return new Content(
view: 'emails.registration-verification',
with: [
'verificationUrl' => url('/verify/'.$this->token),
'expiresInHours' => max(1, (int) config('registration.verify_token_ttl_hours', 24)),
'supportUrl' => $appUrl . '/support',
],
);
}
public function attachments(): array
{
return [];
}
public function failed(\Throwable $exception): void
{
Log::warning('registration verification mail job failed', [
'token_prefix' => substr($this->token, 0, 12),
'message' => $exception->getMessage(),
'class' => get_class($exception),
]);
}
}

View File

@@ -0,0 +1,43 @@
<?php
namespace App\Mail;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Mail\Mailable;
use Illuminate\Queue\SerializesModels;
use App\Models\StaffApplication;
class StaffApplicationReceived extends Mailable implements ShouldQueue
{
use Queueable, SerializesModels;
public StaffApplication $application;
/**
* Create a new message instance.
*/
public function __construct(StaffApplication $application)
{
$this->application = $application;
}
/**
* Build the message.
*/
public function build()
{
$topicLabel = match ($this->application->topic ?? 'apply') {
'apply' => 'Application',
'bug' => 'Bug Report',
'contact' => 'Contact',
default => 'Message',
};
return $this->subject("New {$topicLabel}: " . ($this->application->name ?? 'Unnamed'))
->from(config('mail.from.address'), config('mail.from.name'))
->view('emails.staff_application_received')
->text('emails.staff_application_received_plain')
->with(['application' => $this->application, 'topicLabel' => $topicLabel]);
}
}