Some checks failed
Build & Push Monica Image to Gitea Registry / build-and-push (push) Failing after 9s
107 lines
2.8 KiB
PHP
107 lines
2.8 KiB
PHP
<?php
|
|
|
|
namespace App\Jobs\Reminder;
|
|
|
|
use Illuminate\Bus\Queueable;
|
|
use App\Helpers\AccountHelper;
|
|
use App\Notifications\UserNotified;
|
|
use App\Notifications\UserReminded;
|
|
use App\Interfaces\MailNotification;
|
|
use App\Models\Contact\ReminderOutbox;
|
|
use Illuminate\Queue\SerializesModels;
|
|
use Illuminate\Queue\InteractsWithQueue;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
use Illuminate\Foundation\Bus\Dispatchable;
|
|
use Illuminate\Support\Facades\Notification;
|
|
|
|
class NotifyUserAboutReminder implements ShouldQueue
|
|
{
|
|
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
|
|
|
|
/**
|
|
* @var ReminderOutbox
|
|
*/
|
|
protected $reminderOutbox;
|
|
|
|
/**
|
|
* Create a new job instance.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct(ReminderOutbox $reminderOutbox)
|
|
{
|
|
$this->reminderOutbox = $reminderOutbox;
|
|
}
|
|
|
|
/**
|
|
* Execute the job.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function handle()
|
|
{
|
|
// prepare the notification to be sent
|
|
$message = $this->getMessage();
|
|
|
|
if (! is_null($message)) {
|
|
$this->sendNotification($message);
|
|
$this->scheduleNextReminder();
|
|
}
|
|
|
|
// delete the reminder outbox
|
|
$this->reminderOutbox->delete();
|
|
}
|
|
|
|
/**
|
|
* Send the notification to this user.
|
|
*
|
|
* @param MailNotification $message
|
|
* @return void
|
|
*/
|
|
private function sendNotification(MailNotification $message): void
|
|
{
|
|
if ($this->reminderOutbox->reminder->contact !== null) {
|
|
$account = $this->reminderOutbox->user->account;
|
|
$hasLimitations = AccountHelper::hasLimitations($account);
|
|
if (! $hasLimitations) {
|
|
Notification::send($this->reminderOutbox->user, $message);
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Schedule the next reminder for this user.
|
|
*
|
|
* @return void
|
|
*/
|
|
private function scheduleNextReminder(): void
|
|
{
|
|
/** @var \App\Models\Contact\Reminder */
|
|
$reminder = $this->reminderOutbox->reminder;
|
|
|
|
if ($reminder->frequency_type == 'one_time') {
|
|
$reminder->inactive = true;
|
|
$reminder->save();
|
|
} else {
|
|
$reminder->schedule($this->reminderOutbox->user);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Get message to send.
|
|
*
|
|
* @return MailNotification|null
|
|
*/
|
|
private function getMessage(): ?MailNotification
|
|
{
|
|
switch ($this->reminderOutbox->nature) {
|
|
case 'reminder':
|
|
return new UserReminded($this->reminderOutbox->reminder);
|
|
case 'notification':
|
|
return new UserNotified($this->reminderOutbox->reminder, $this->reminderOutbox->notification_number_days_before);
|
|
default:
|
|
return null;
|
|
}
|
|
}
|
|
}
|