Some checks failed
Build & Push Monica Image to Gitea Registry / build-and-push (push) Failing after 9s
67 lines
1.9 KiB
PHP
67 lines
1.9 KiB
PHP
<?php
|
|
|
|
namespace App\Services\Contact\Reminder;
|
|
|
|
use App\Services\BaseService;
|
|
use App\Models\Contact\Contact;
|
|
use Illuminate\Validation\Rule;
|
|
use App\Models\Contact\Reminder;
|
|
|
|
class CreateReminder extends BaseService
|
|
{
|
|
/**
|
|
* Get the validation rules that apply to the service.
|
|
*
|
|
* @return array
|
|
*/
|
|
public function rules()
|
|
{
|
|
return [
|
|
'account_id' => 'required|integer|exists:accounts,id',
|
|
'contact_id' => 'required|integer|exists:contacts,id',
|
|
'initial_date' => 'required|date_format:Y-m-d',
|
|
'frequency_type' => [
|
|
'required',
|
|
Rule::in(Reminder::$frequencyTypes),
|
|
],
|
|
'frequency_number' => 'required|integer',
|
|
'title' => 'required|string|max:100000',
|
|
'description' => 'nullable|max:1000000',
|
|
'delible' => 'nullable|boolean',
|
|
];
|
|
}
|
|
|
|
/**
|
|
* Create a reminder.
|
|
*
|
|
* @param array $data
|
|
* @return Reminder
|
|
*/
|
|
public function execute(array $data): Reminder
|
|
{
|
|
$this->validate($data);
|
|
|
|
$contact = Contact::where('account_id', $data['account_id'])
|
|
->findOrFail($data['contact_id']);
|
|
|
|
$contact->throwInactive();
|
|
|
|
$reminder = Reminder::create([
|
|
'account_id' => $data['account_id'],
|
|
'contact_id' => $data['contact_id'],
|
|
'title' => $data['title'],
|
|
'description' => $this->nullOrValue($data, 'description'),
|
|
'initial_date' => $data['initial_date'],
|
|
'frequency_type' => $data['frequency_type'],
|
|
'frequency_number' => $data['frequency_number'],
|
|
'delible' => (isset($data['delible']) ? $data['delible'] : true),
|
|
]);
|
|
|
|
foreach ($contact->account->users as $user) {
|
|
$reminder->schedule($user);
|
|
}
|
|
|
|
return $reminder;
|
|
}
|
|
}
|