415 lines
18 KiB
PHP
415 lines
18 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\V3;
|
|
|
|
use App\Exports\V2\RoadPatrol\OperatorCartableExport;
|
|
use App\Exports\V2\RoadPatrol\SupervisorCartableExport;
|
|
use App\Facades\DataTable\DataTableFacade;
|
|
use App\Facades\Sms\Sms;
|
|
use App\Http\Controllers\Controller;
|
|
use App\Http\Requests\V3\RoadPatrolProject\DeleteRequest;
|
|
use App\Http\Requests\V3\RoadPatrolProject\StoreRequest;
|
|
use App\Http\Traits\ApiResponse;
|
|
use App\Models\EdarateShahri;
|
|
use App\Models\InfoItem;
|
|
use App\Models\RoadItemsProject;
|
|
use App\Models\RoadObserved;
|
|
use App\Models\RoadPatrol;
|
|
use App\Services\NominatimService;
|
|
use Carbon\Carbon;
|
|
use Illuminate\Http\JsonResponse;
|
|
use Illuminate\Http\Request;
|
|
use Illuminate\Support\Facades\DB;
|
|
use Illuminate\Support\Facades\Gate;
|
|
use Illuminate\Support\Facades\Storage;
|
|
use Illuminate\Validation\ValidationException;
|
|
use Maatwebsite\Excel\Facades\Excel;
|
|
use Symfony\Component\HttpFoundation\BinaryFileResponse;
|
|
|
|
class RoadPatrolProjectController extends Controller
|
|
{
|
|
use ApiResponse;
|
|
|
|
public function supervisorIndex(Request $request): JsonResponse
|
|
{
|
|
$columns = array(
|
|
'id', 'start_lat', 'start_lon', 'end_lat', 'end_lon', 'operator_id',
|
|
'operator_name', 'officer_plaque', 'officer_phone_number', 'officer_name',
|
|
'supervisor_description', 'supervising_time', 'supervisor_name', 'status',
|
|
'status_fa', 'distance', 'province_id', 'province_fa', 'edare_id', 'edare_name',
|
|
'start_time', 'end_time','description', 'cmmsMachines.machine_code'
|
|
);
|
|
|
|
$allowedFilters = $columns;
|
|
$allowedSortings = $columns;
|
|
|
|
$user = auth()->user();
|
|
$query = null;
|
|
|
|
if ($user->hasPermissionTo('show-road-patrol-supervise-cartable')) {
|
|
$query = RoadPatrol::query()
|
|
->with(['rahdaran:id,name,code', 'cmmsMachines:id,machine_code,car_name,plak_number']);
|
|
}
|
|
elseif ($user->hasPermissionTo('show-road-patrol-supervise-cartable-province')) {
|
|
if (is_null($user->province_id)) {
|
|
return $this->errorResponse('استانی برای شما در سامانه ثبت نشده است!');
|
|
}
|
|
$query = RoadPatrol::query()
|
|
->with(['rahdaran:id,name,code', 'cmmsMachines:id,machine_code,car_name,plak_number'])
|
|
->where('province_id', '=', $user->province_id);
|
|
}
|
|
|
|
$data = DataTableFacade::run(
|
|
$query,
|
|
$request,
|
|
allowedFilters: $allowedFilters,
|
|
allowedSortings: $allowedSortings);
|
|
|
|
foreach ($data['data'] as $road_patrol) {
|
|
if (Gate::allows('gate-supervise-road-item', $road_patrol)) {
|
|
$road_patrol['can_supervise'] = 1;
|
|
} else {
|
|
$road_patrol['can_supervise'] = 0;
|
|
}
|
|
}
|
|
|
|
return response()->json($data);
|
|
}
|
|
|
|
public function delete(DeleteRequest $request, RoadPatrol $roadPatrol): JsonResponse
|
|
{
|
|
if ($request->type == 1) {
|
|
DB::transaction(function () use ($roadPatrol) {
|
|
$roadPatrol->observedItems()->delete();
|
|
$roadPatrol->delete();
|
|
});
|
|
} else {
|
|
DB::transaction(function () use ($roadPatrol) {
|
|
if ($roadPatrol->observedItems) {
|
|
foreach ($roadPatrol->observedItems as $index => $observed_item) {
|
|
if ($observed_item->roadItemProject) {
|
|
$road_item = $observed_item->roadItemProject;
|
|
|
|
if ($road_item->files()->exists()) {
|
|
Storage::delete('public/'. $road_item->files[0]->path);
|
|
Storage::delete('public/'. $road_item->files[1]->path);
|
|
$road_item->files()->delete();
|
|
}
|
|
|
|
$road_item->delete();
|
|
}
|
|
|
|
$observed_item->delete();
|
|
}
|
|
}
|
|
auth()->user()->addActivityComplete(1144);
|
|
|
|
$roadPatrol->delete();
|
|
});
|
|
}
|
|
|
|
return $this->successResponse();
|
|
}
|
|
|
|
public function supervisorCartableReport(Request $request): BinaryFileResponse
|
|
{
|
|
$name = 'گزارش از کارتابل ارزیابی گشت راهداری ' . verta()->now()->format('Y-m-d H:i') . '.xlsx';
|
|
return Excel::download(
|
|
new SupervisorCartableExport($request->id, $request->fromDate,
|
|
$request->toDate, $request->province_id, $request->edare_id
|
|
), $name
|
|
);
|
|
}
|
|
|
|
public function operatorIndex(Request $request): JsonResponse
|
|
{
|
|
$columns = array(
|
|
'id', 'start_lat', 'start_lon', 'end_lat', 'end_lon', 'officer_plaque',
|
|
'officer_phone_number', 'officer_name', 'supervisor_description', 'supervising_time',
|
|
'supervisor_name', 'status', 'status_fa', 'distance', 'start_time', 'end_time', 'cmmsMachines.machine_code'
|
|
);
|
|
|
|
$allowedFilters = $columns;
|
|
$allowedSortings = $columns;
|
|
|
|
$query = RoadPatrol::query()
|
|
->with(['rahdaran:id,name,code', 'cmmsMachines:id,machine_code,car_name,plak_number'])
|
|
->where('operator_id', '=', auth()->user()->id);
|
|
|
|
$data = DataTableFacade::run(
|
|
$query,
|
|
$request,
|
|
allowedFilters: $allowedFilters,
|
|
allowedSortings: $allowedSortings);
|
|
|
|
return response()->json($data);
|
|
}
|
|
|
|
public function store(StoreRequest $request, NominatimService $nominatimService)
|
|
{
|
|
$user = auth()->user();
|
|
|
|
if ($user->edarate_ostani_id || is_null($user->city_id)) {
|
|
return response()->json([
|
|
'message' => 'امکان ثبت فعالیت برای ادارات استانی وجود ندارد!'
|
|
], 400);
|
|
}
|
|
|
|
if (is_null($user->edarate_shahri_id)) {
|
|
return response()->json([
|
|
'message' => 'اداره شهری برای شما در سامانه ثبت نشده است!'
|
|
], 400);
|
|
}
|
|
|
|
$start_coordinates = explode(',', $request->start_point);
|
|
$end_coordinates = explode(',', $request->end_point);
|
|
|
|
$edare_id = $user->edarate_shahri_id ?? $user->edarate_ostani_id;
|
|
$edare_name = $user->edarate_shahri_id ? $user->edarate_shahri_name : $user->edarate_ostani_name;
|
|
|
|
$road_patrol = DB::transaction(function () use ($request, $start_coordinates,
|
|
$end_coordinates, $edare_id,
|
|
$edare_name, $nominatimService, $user) {
|
|
|
|
$road_patrol = RoadPatrol::query()->create([
|
|
'start_lat' => $start_coordinates[0],
|
|
'start_lon' => $start_coordinates[1],
|
|
'end_lat' => $end_coordinates[0],
|
|
'end_lon' => $end_coordinates[1],
|
|
'officer_name' => $request->officer_name,
|
|
'officer_phone_number' => $request->officer_phone_number,
|
|
'officer_plaque' => $request->officer_plaque,
|
|
'operator_id' => $user->id,
|
|
'operator_name' => $user->name,
|
|
'province_id' => $user->province_id,
|
|
'province_fa' => $user->province_fa,
|
|
'city_id' => $user->city_id,
|
|
'city_fa' => $user->city_fa,
|
|
'edare_id' => $edare_id,
|
|
'edare_name' => $edare_name,
|
|
'start_way_id' => $nominatimService->get_way_id_from_nominatim($start_coordinates[0], $start_coordinates[1]),
|
|
'end_way_id' => $nominatimService->get_way_id_from_nominatim($end_coordinates[0], $end_coordinates[1]),
|
|
'status' => 0,
|
|
'status_fa' => 'در حال بررسی',
|
|
'distance' => $request->distance,
|
|
'start_time' => $request->start_time,
|
|
'end_time' => $request->end_time,
|
|
'description' => $request->description ?? null,
|
|
]);
|
|
|
|
$road_patrol->rahdaran()->attach($request->rahdaran_id);
|
|
$road_patrol->cmmsMachines()->attach($request->machines_id);
|
|
|
|
if ($request->observed_items) {
|
|
foreach ($request->observed_items as $index => $item) {
|
|
$info_item = InfoItem::where('item', $item['item_id'])
|
|
->where('sub_item', $item['sub_item_id'])
|
|
->firstOrFail();
|
|
|
|
$item_start_coordinates = explode(',', $item['start_point']);
|
|
|
|
$observed_item = $road_patrol->observedItems()->create([
|
|
'item_id' => $info_item->item,
|
|
'item_name' => $info_item->item_str,
|
|
'sub_item_id' => $info_item->sub_item,
|
|
'sub_item_name' => $info_item->sub_item_str,
|
|
'local_name' => $item['local_name'],
|
|
'description' => $item['description'] ?? null,
|
|
'start_lat' => $item_start_coordinates[0],
|
|
'start_lon' => $item_start_coordinates[1],
|
|
]);
|
|
|
|
$item_end_coordinates = null;
|
|
if ($item['instant_action'] == 0) {
|
|
$observed_item->priority = $item['priority'];
|
|
$observed_item->priority_fa = $item['priority_fa'];
|
|
$observed_item->save();
|
|
} elseif ($item['instant_action'] == 1) {
|
|
if ($info_item->needs_end_point) {
|
|
if (!isset($item['end_point'])) {
|
|
throw ValidationException::withMessages([
|
|
"observed_items.$index.end_point" => __('validation.required', ['attribute' => 'end_point']),
|
|
]);
|
|
}
|
|
|
|
$item_end_coordinates = explode(',', $item['end_point']);
|
|
}
|
|
|
|
$before_image = null;
|
|
$after_image = null;
|
|
if ($info_item->needs_image) {
|
|
if (!isset($item['before_image'])) {
|
|
throw ValidationException::withMessages([
|
|
"observed_items.$index.before_image" => __('validation.required', ['attribute' => 'before_image']),
|
|
]);
|
|
}
|
|
if (!isset($item['after_image'])) {
|
|
throw ValidationException::withMessages([
|
|
"observed_items.$index.after_image" => __('validation.required', ['attribute' => 'after_image']),
|
|
]);
|
|
}
|
|
|
|
$before_image = $item['before_image'];
|
|
$after_image = $item['after_image'];
|
|
}
|
|
|
|
$start_time = Carbon::createFromFormat('Y-m-d H:i', $request->start_time);
|
|
$end_time = Carbon::createFromFormat('Y-m-d H:i', $request->end_time);
|
|
$activity_date = $start_time->average($end_time);
|
|
|
|
$attributes = [
|
|
'start_lat' => $item_start_coordinates[0],
|
|
'start_lng' => $item_start_coordinates[1],
|
|
'end_lat' => $item_end_coordinates ? $item_end_coordinates[0] : null,
|
|
'end_lng' => $item_end_coordinates ? $item_end_coordinates[1] : null,
|
|
'item' => $info_item->item,
|
|
'item_fa' => $info_item->item_str,
|
|
'sub_item' => $info_item->sub_item,
|
|
'sub_item_fa' => $info_item->sub_item_str,
|
|
'sub_item_data' => $item['amount'],
|
|
'province_id' => $user->province_id,
|
|
'province_fa' => $user->province_fa,
|
|
'city_id' => $user->city_id,
|
|
'city_fa' => $user->city_fa,
|
|
'user_name' => $user->name,
|
|
'start_way_id' => $nominatimService->get_way_id_from_nominatim($item_start_coordinates[0], $item_start_coordinates[1]),
|
|
'end_way_id' => $item_end_coordinates ? $nominatimService->get_way_id_from_nominatim($item_end_coordinates[0], $item_end_coordinates[1]) : null,
|
|
'unit_fa' => $info_item->sub_item_unit,
|
|
'created_at_fa' => verta(Carbon::now())->format('Y-m-d H:i:s'),
|
|
'info_id' => $info_item->id,
|
|
'status' => 0,
|
|
'status_fa' => 'در حال بررسی',
|
|
'edarat_id' => $user->edarate_shahri_id,
|
|
'edarat_type' => EdarateShahri::class,
|
|
'edarat_name' => $user->edarate_shahri_name,
|
|
'activity_date' => $activity_date->format('Y-m-d'),
|
|
'activity_time' => $activity_date->format('H:i:s'),
|
|
];
|
|
|
|
$road_item = RoadItemsProject::store($user, $attributes, $before_image, $after_image, $observed_item->id);
|
|
|
|
if ($road_item === -1) {
|
|
return response()->json([
|
|
'message' => 'اقدام مربوطه قبلا رسیدگی شده است.'
|
|
], 400);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
auth()->user()->addActivityComplete(1147);
|
|
|
|
Sms::sendSms($request->officer_phone_number,
|
|
"گشت راهداری با کد یکتای $road_patrol->id در تاریخ ".verta(\Carbon\Carbon::now())->format('Y-m-d H:i:s')." با شماره شما در سامانه RMS ثبت شد. \n لینک دریافت گزارش : \n https://rms.rmto.ir/v2/road_patrols/operator/report/$road_patrol->id"
|
|
);
|
|
return $road_patrol;
|
|
});
|
|
|
|
return $this->successResponse();
|
|
}
|
|
|
|
public function getReport(RoadPatrol $roadPatrol): JsonResponse
|
|
{
|
|
$data = [
|
|
'serial_no' => $roadPatrol->id,
|
|
'province_fa' => $roadPatrol->province_fa,
|
|
'edare_name' => $roadPatrol->edare_name,
|
|
'start_time' => $roadPatrol->start_time,
|
|
'end_time' => $roadPatrol->end_time,
|
|
'officer_name' => $roadPatrol->officer_name,
|
|
'officer_plaque' => $roadPatrol->officer_plaque,
|
|
'officer_phone_number' => $roadPatrol->officer_phone_number,
|
|
'created_at' => $roadPatrol->created_at
|
|
];
|
|
|
|
$observed_items = array();
|
|
if($roadPatrol->observedItems) {
|
|
foreach ($roadPatrol->observedItems as $index => $observed_item) {
|
|
$observed_items[] = [
|
|
'item' => $observed_item->item_name,
|
|
'sub_item' => $observed_item->sub_item_name,
|
|
'local_name' => $observed_item->local_name,
|
|
'description' => $observed_item->description,
|
|
'priority_fa' => $observed_item->priority_fa,
|
|
];
|
|
}
|
|
}
|
|
|
|
$data['observed_items'] = $observed_items;
|
|
return $this->successResponse($data);
|
|
}
|
|
|
|
public function getAllDataToMap(Request $request): JsonResponse
|
|
{
|
|
$date_from = $request->date_from ? $request->date_from .' 00:00:00' : Date('Y-m-d') .' 00:00:00';
|
|
$date_to = $request->date_to ? $request->date_to.' 23:59:59' : (new \DateTime('tomorrow'))->format('Y-m-d').' 23:59:59';
|
|
|
|
$data = RoadPatrol::query()->when($request->province_id, function ($query, $province) {
|
|
return $query->where('province_id', '=', $province);
|
|
})
|
|
->when($request->edare_id, function ($query, $edare_id) {
|
|
return $query->where('edare_id', '=', $edare_id);
|
|
})
|
|
->whereBetween('created_at', [
|
|
$date_from,
|
|
$date_to,
|
|
])
|
|
->select('id', 'start_lat', 'start_lon')
|
|
->get();
|
|
|
|
return $this->successResponse($data);
|
|
}
|
|
|
|
public function map(Request $request): JsonResponse
|
|
{
|
|
$province = $request->province_id;
|
|
$edare_shahri = $request->edare_shahri_id;
|
|
$status = $request->status;
|
|
$rms_status = $request->rms_status;
|
|
|
|
if ($request->date_from && $request->date_to) {
|
|
$date_from = $request->date_from.' 00:00:00';
|
|
$date_to = $request->date_to.' 23:59:59';
|
|
} else {
|
|
$date_from = Date('Y-m-d');
|
|
$date_to = new \DateTime('tomorrow');
|
|
$date_to = $date_to->format('Y-m-d');
|
|
}
|
|
|
|
$projects = RoadObserved::query()->select(['id', 'lng', 'lat','status'])
|
|
->whereBetween('created_at', [$date_from, $date_to])
|
|
->when($province, function ($query) use ($province) {
|
|
return $query->where('province_id', '=', $province);
|
|
})
|
|
->when($rms_status, function ($query) use ($rms_status) {
|
|
if ($rms_status == 2) {
|
|
return $query->where('rms_status', '<>', 0);
|
|
} else {
|
|
return $query->where('rms_status', '=', 0);
|
|
}
|
|
})
|
|
->when($edare_shahri, function ($query) use ($edare_shahri) {
|
|
return $query->where('edarate_shahri_id', '=', $edare_shahri);
|
|
})
|
|
->when($status, function ($query) use ($status) {
|
|
return $query->where('status', '=', $status);
|
|
})
|
|
->get();
|
|
return $this->successResponse($projects);
|
|
}
|
|
|
|
public function show(RoadPatrol $roadPatrol): JsonResponse
|
|
{
|
|
return $this->successResponse($roadPatrol);
|
|
}
|
|
|
|
public function operatorCartableReport(Request $request): BinaryFileResponse
|
|
{
|
|
$name = 'گزارش از کارتابل عملیات گشت راهداری ' . verta()->now()->format('Y-m-d H:i') . '.xlsx';
|
|
return Excel::download(
|
|
new OperatorCartableExport($request->id, $request->status, $request->officer_name, $request->fromDate, $request->toDate),
|
|
$name
|
|
);
|
|
}
|
|
}
|