coolify/app/Http/Livewire/Help.php

55 lines
1.6 KiB
PHP
Raw Normal View History

2023-09-02 15:37:25 +02:00
<?php
namespace App\Http\Livewire;
use DanHarrin\LivewireRateLimiting\WithRateLimiting;
use Illuminate\Notifications\Messages\MailMessage;
use Livewire\Component;
use Route;
class Help extends Component
{
use WithRateLimiting;
public string $description;
public string $subject;
public ?string $path = null;
protected $rules = [
'description' => 'required|min:10',
'subject' => 'required|min:3'
];
public function mount()
{
2023-09-14 17:28:58 +02:00
$this->path = Route::current()?->uri() ?? null;
2023-09-02 15:37:25 +02:00
if (isDev()) {
$this->description = "I'm having trouble with {$this->path}";
$this->subject = "Help with {$this->path}";
}
}
public function submit()
{
try {
2023-09-14 18:49:15 +02:00
$this->rateLimit(1, 60);
2023-09-02 15:37:25 +02:00
$this->validate();
2023-09-12 14:53:54 +02:00
$subscriptionType = auth()->user()?->subscription?->type() ?? 'Free';
2023-09-02 15:37:25 +02:00
$debug = "Route: {$this->path}";
$mail = new MailMessage();
$mail->view(
'emails.help',
[
'description' => $this->description,
'debug' => $debug
]
);
$mail->subject("[HELP - {$subscriptionType}]: {$this->subject}");
2023-09-14 18:41:21 +02:00
send_user_an_email($mail, auth()->user()?->email, 'hi@coollabs.io');
2023-09-02 15:37:25 +02:00
$this->emit('success', 'Your message has been sent successfully. We will get in touch with you as soon as possible.');
2023-09-11 17:36:30 +02:00
} catch (\Throwable $e) {
return handleError($e, $this);
2023-09-02 15:37:25 +02:00
}
}
public function render()
{
return view('livewire.help')->layout('layouts.app');
}
}