D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
forge
/
hms.dentostock.com
/
app
/
Repositories
/
Filename :
IpdTimelineRepository.php
back
Copy
<?php namespace App\Repositories; use App\Models\IpdTimeline; use Illuminate\Support\Facades\Auth; use Symfony\Component\HttpKernel\Exception\UnprocessableEntityHttpException; /** * Class IpdTimelineRepository * * @version September 12, 2020, 7:18 am UTC */ class IpdTimelineRepository extends BaseRepository { protected $fieldSearchable = [ 'ipd_patient_department_id', 'title', 'date', 'description', 'visible_to_person', ]; public function getFieldsSearchable() { return $this->fieldSearchable; } public function model() { return IpdTimeline::class; } public function getTimeLines($ipdPatientDepartmentId) { if (Auth::user()->hasRole('Admin')) { return IpdTimeline::where('ipd_patient_department_id', $ipdPatientDepartmentId)->get(); } return IpdTimeline::where('ipd_patient_department_id', $ipdPatientDepartmentId)->visible()->get(); } public function store($input) { try { $input['visible_to_person'] = isset($input['visible_to_person']) ? 1 : 0; $ipdTimeline = $this->create($input); if (isset($input['attachment']) && ! empty($input['attachment'])) { $ipdTimeline->addMedia($input['attachment'])->toMediaCollection(IpdTimeline::IPD_TIMELINE_PATH, config('app.media_disc')); } } catch (\Exception $e) { throw new UnprocessableEntityHttpException($e->getMessage()); } } public function updateIpdTimeline($input, $ipdTimelineId) { try { $input['visible_to_person'] = isset($input['visible_to_person']) ? 1 : 0; $ipdTimeline = $this->update($input, $ipdTimelineId); if (isset($input['attachment']) && ! empty($input['attachment'])) { if ($ipdTimeline->media->first() != null) { $ipdTimeline->deleteMedia($ipdTimeline->media->first()->id); } $ipdTimeline->addMedia($input['attachment'])->toMediaCollection(IpdTimeline::IPD_TIMELINE_PATH, config('app.media_disc')); } if ($input['avatar_remove'] == 1 && isset($input['avatar_remove']) && ! empty($input['avatar_remove'])) { removeFile($ipdTimeline, IpdTimeline::IPD_TIMELINE_PATH); } } catch (\Exception $e) { throw new UnprocessableEntityHttpException($e->getMessage()); } } public function deleteIpdTimeline($ipdTimelineId) { try { $ipdTimeline = $this->find($ipdTimelineId); if ($ipdTimeline->media->first() != null) { $ipdTimeline->deleteMedia($ipdTimeline->media->first()->id); } $this->delete($ipdTimelineId); } catch (\Exception $e) { throw new UnprocessableEntityHttpException($e->getMessage()); } } }