matab-panel/app/Filament/Resources/SurgeryAppointmentResource/Pages/CreateSurgeryAppointment.php

91 lines
3.2 KiB
PHP

<?php
declare(strict_types=1);
namespace App\Filament\Resources\SurgeryAppointmentResource\Pages;
use App\Filament\Resources\SurgeryAppointmentResource;
use Filament\Notifications\Notification;
use Filament\Resources\Pages\CreateRecord;
use Filament\Support\Enums\Width;
use Illuminate\Support\Facades\Http;
use Illuminate\Support\Facades\Log;
use Morilog\Jalali\Jalalian;
class CreateSurgeryAppointment extends CreateRecord
{
protected static string $resource = SurgeryAppointmentResource::class;
protected Width|string|null $maxContentWidth = Width::SevenExtraLarge;
protected function mutateFormDataBeforeCreate(array $data): array
{
$dateStr = $data['surgery_date_date'] ?? '';
$timeStr = $data['surgery_date_time'] ?? '09:00';
$data['surgery_date'] = \Carbon\Carbon::parse($dateStr . ' ' . $timeStr);
unset($data['surgery_date_date'], $data['surgery_date_time']);
return $data;
}
protected function afterCreate(): void
{
$record = $this->record;
$patient = $record->patient;
$surgeryDateTime = $record->getRawOriginal('surgery_date')
? \Carbon\Carbon::parse($record->getRawOriginal('surgery_date'))
: \Carbon\Carbon::parse($record->surgery_date);
$jalaliDate = Jalalian::fromCarbon($surgeryDateTime)->format('Y/m/d');
try {
$response = Http::timeout(30)
->withHeader('X-API-Key', \App\Models\OsurgInitial::val('sms_api_key', config('sms.api_key')))
->asJson()
->post(\App\Models\OsurgInitial::val('sms_api_url', config('sms.api_url')) . '/surgery-reminder', [
'phoneNumber' => $patient->hand_phone ?? '',
'patientName' => $patient->full_name,
'surgeryDate' => $jalaliDate,
'appointmentId' => $record->id,
'patientId' => $patient->id,
'surgeryDateFull' => $surgeryDateTime->toDateTimeString(),
]);
if (! ($response->json('success') ?? false)) {
Notification::make()
->title(__('patients.actions.appointment_saved'))
->body(__('patients.actions.api_failed') . ': ' . ($response->json('message') ?? ''))
->warning()
->send();
return;
}
} catch (\Throwable $e) {
Log::warning('Surgery appointment API failed', [
'appointment_id' => $record->id,
'patient_id' => $patient->id,
'error' => $e->getMessage(),
]);
Notification::make()
->title(__('patients.actions.appointment_saved'))
->body(__('patients.actions.api_failed') . ': ' . $e->getMessage())
->warning()
->send();
return;
}
Notification::make()
->title(__('patients.actions.appointment_saved'))
->body(__('patients.actions.sms_sent'))
->success()
->send();
}
protected function getFormActions(): array
{
return [];
}
}