77 lines
2.1 KiB
PHP
77 lines
2.1 KiB
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use CodeIgniter\Model;
|
|
|
|
class AppointmentModel extends Model
|
|
{
|
|
protected $table = 'appointments';
|
|
protected $primaryKey = 'id';
|
|
protected $useAutoIncrement = true;
|
|
protected $returnType = 'array';
|
|
protected $useSoftDeletes = false;
|
|
protected $protectFields = true;
|
|
protected $allowedFields = [
|
|
'patient_id',
|
|
'doctor_id',
|
|
'appointment_date',
|
|
'appointment_time',
|
|
'status'
|
|
];
|
|
|
|
protected bool $allowEmptyInserts = false;
|
|
protected bool $updateOnlyChanged = true;
|
|
|
|
protected array $casts = [];
|
|
protected array $castHandlers = [];
|
|
|
|
// Dates
|
|
protected $useTimestamps = false;
|
|
protected $dateFormat = 'datetime';
|
|
protected $createdField = 'created_at';
|
|
protected $updatedField = 'updated_at';
|
|
protected $deletedField = 'deleted_at';
|
|
|
|
// Validation
|
|
protected $validationRules = [];
|
|
protected $validationMessages = [];
|
|
protected $skipValidation = false;
|
|
protected $cleanValidationRules = true;
|
|
|
|
// Callbacks
|
|
protected $allowCallbacks = true;
|
|
protected $beforeInsert = ['setDefaultStatus'];
|
|
protected $afterInsert = [];
|
|
|
|
protected static array $validStatuses = ['pending', 'approved', 'rejected'];
|
|
|
|
public static function normalizeStatus(?string $status): string
|
|
{
|
|
$status = trim((string) $status);
|
|
|
|
if ($status === '' || ! in_array($status, self::$validStatuses, true)) {
|
|
return 'pending';
|
|
}
|
|
|
|
return $status;
|
|
}
|
|
|
|
protected function setDefaultStatus(array $eventData): array
|
|
{
|
|
if (! isset($eventData['data']['status']) || trim((string) $eventData['data']['status']) === '') {
|
|
$eventData['data']['status'] = 'pending';
|
|
} else {
|
|
$eventData['data']['status'] = self::normalizeStatus($eventData['data']['status']);
|
|
}
|
|
|
|
return $eventData;
|
|
}
|
|
protected $beforeUpdate = [];
|
|
protected $afterUpdate = [];
|
|
protected $beforeFind = [];
|
|
protected $afterFind = [];
|
|
protected $beforeDelete = [];
|
|
protected $afterDelete = [];
|
|
}
|