D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
forge
/
hms.dentostock.com
/
app
/
Repositories
/
Filename :
PatientCaseRepository.php
back
Copy
<?php namespace App\Repositories; use App\Models\CaseHandler; use App\Models\Doctor; use App\Models\Notification; use App\Models\Patient; use App\Models\PatientCase; use App\Models\Receptionist; use Exception; use Symfony\Component\HttpKernel\Exception\UnprocessableEntityHttpException; /** * Class PatientCaseRepository * * @version February 19, 2020, 4:48 am UTC */ class PatientCaseRepository extends BaseRepository { protected $fieldSearchable = [ 'case_id', 'patient_id', 'phone', 'doctor_id', ]; public function getFieldsSearchable() { return $this->fieldSearchable; } public function model() { return PatientCase::class; } public function getPatients() { $patients = Patient::with('patientUser')->get()->where('patientUser.status', '=', 1)->pluck('patientUser.full_name', 'id')->sort(); return $patients; } public function getDoctors() { $doctors = Doctor::with('doctorUser')->get()->where('doctorUser.status', '=', 1)->pluck('doctorUser.full_name', 'id')->sort(); return $doctors; } public function store($input) { try { $input['case_id'] = mb_strtoupper(PatientCase::generateUniqueCaseId()); $patientCase = PatientCase::create($input); return true; } catch (Exception $e) { return new UnprocessableEntityHttpException($e->getMessage()); } } public function createNotification($input) { try { $patient = Patient::with('patientUser')->where('id', $input['patient_id'])->first(); $doctor = Doctor::with('doctorUser')->where('id', $input['doctor_id'])->first(); $receptionists = Receptionist::pluck('user_id', 'id')->toArray(); $caseHandeler = CaseHandler::pluck('user_id', 'id')->toArray(); $userIds = [ $doctor->user_id => Notification::NOTIFICATION_FOR[Notification::DOCTOR], $patient->user_id => Notification::NOTIFICATION_FOR[Notification::PATIENT], ]; foreach ($receptionists as $key => $userId) { $userIds[$userId] = Notification::NOTIFICATION_FOR[Notification::RECEPTIONIST]; } foreach ($caseHandeler as $key => $userId) { $userIds[$userId] = Notification::NOTIFICATION_FOR[Notification::CASE_HANDLER]; } $users = getAllNotificationUser($userIds); foreach ($users as $key => $notification) { if ($notification == Notification::NOTIFICATION_FOR[Notification::PATIENT]) { $title = $patient->patientUser->full_name.' your case has been created.'; } else { $title = $patient->patientUser->full_name.' case has been created.'; } addNotification([ Notification::NOTIFICATION_TYPE['Cases'], $key, $notification, $title, ]); } } catch (Exception $e) { throw new UnprocessableEntityHttpException($e->getMessage()); } } }