Files
aso/Modules/Linksehat/Http/Controllers/Api/AppointmentController.php
2023-07-03 11:39:08 +07:00

123 lines
3.8 KiB
PHP

<?php
namespace Modules\Linksehat\Http\Controllers\Api;
use App\Helpers\Helper;
use App\Models\Appointment;
use App\Models\AppointmentParticipant;
use App\Models\Person;
use App\Models\PractitionerRole;
use Illuminate\Contracts\Support\Renderable;
use Illuminate\Http\Request;
use Illuminate\Routing\Controller;
use Illuminate\Support\Facades\Gate;
use Modules\Linksehat\Transformers\Appointment\AppointmentDetailResource;
use Symfony\Component\HttpFoundation\Response;
class AppointmentController extends Controller
{
/**
* Display a listing of the resource.
* @return Renderable
*/
public function index()
{
return view('linksehat::index');
}
/**
* Store a newly created resource in storage.
* @param Request $request
* @return Renderable
*/
public function store(Request $request)
{
$appointmentData = $request->only([
'appointment_type',
'organization_id',
'speciality_id',
]);
$appointmentData = array_merge($appointmentData, [
'start_time' => $request->date . ' ' . $request->time
]);
$appointment = Appointment::query()->create($appointmentData);
if ($request->has('doctor_id')) {
$practitionerRole = PractitionerRole::query()->find($request->doctor_id);
$practitionerRole->appointmentParticipantables()->create([
'appointment_id' => $appointment->id,
'type' => 'doctor',
]);
}
if ($request->has('patient_id')) {
$person = Person::query()->find($request->patient_id);
$person->appointmentParticipantables()->create([
'appointment_id' => $appointment->id,
'type' => 'patient',
]);
}
return Helper::responseJson($appointment, Response::HTTP_CREATED, 'Data appointment berhasil di buat');
}
/**
* Show the specified resource.
* @param int $id
* @return Renderable
*/
public function show($id)
{
$appointment = Appointment::query()->with(['appointmentParticipants', 'organization'])->find($id);
return Helper::responseJson(new AppointmentDetailResource($appointment));
}
/**
* Update the specified resource in storage.
* @param Request $request
* @param int $id
* @return Renderable
*/
public function update(Request $request, Appointment $appointment)
{
$idPatient = AppointmentParticipant::query()->where('appointment_id', $appointment->id)->where('participantable_type', Person::class)->first();
$patient = Person::query()->select(['owner_user_id'])->find($idPatient->participantable_id);
if (Gate::forUser(auth()->user())->allows('update-appointment', $patient)) {
$appointmentData = [
'start_time' => $request->date . ' ' . $request->time
];
$appointment->update($appointmentData);
$appointment->appointmentParticipants()->updateOrCreate(
[
'appointment_id' => $appointment->id,
'type' => 'patient',
'participantable_type' => Person::class,
],
[
'participantable_id' => $request->patient_id,
]
);
return Helper::responseJson(data: $appointment->with(['appointmentParticipants'])->get(), message: 'Data berhasil di update');
} elseif (Gate::forUser(auth()->user())->denies('update-appointment', $patient)) {
abort(Response::HTTP_FORBIDDEN, 'Tidak bisa update karena bukan pemilik!');
}
}
/**
* Remove the specified resource from storage.
* @param int $id
* @return Renderable
*/
public function destroy($id)
{
//
}
}