停车场管理系统
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

308 lines
9.7 KiB

<?php
namespace App\Http\Controllers\Admin;
use App\Exceptions\CustomException;
use App\Models\Parking;
use App\Models\ParkingChannel;
use App\Models\ParkingGuardBooth;
use App\Services\AdminTranslationService;
use App\Services\ApiResponseService;
use App\Services\ParkingChannelService;
use Exception;
use Illuminate\Http\JsonResponse;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Validator;
use Illuminate\Validation\ValidationException;
class ParkingChannelController extends BaseController
{
protected string $menuUri = 'channelManagement';
/**
* @var ParkingChannelService
*/
protected ParkingChannelService $service;
/**
* 构造函数
* @param ApiResponseService $responseService
* @param ParkingChannelService $service
*/
public function __construct(
ApiResponseService $responseService,
ParkingChannelService $service
) {
parent::__construct($responseService);
$this->service = $service;
}
/**
* @param Request $request
* @return JsonResponse
*/
public function index(Request $request): JsonResponse
{
try {
$query = ParkingChannel::query();
if ($request->has('type')) {
$type = $request->input('type');
if ($type) {
$query->where('type', $type);
}
}
if ($request->has('name')) {
$name = $request->input('name');
if ($name) {
$query->where('name', 'like', "%{$name}%");
}
}
if ($request->has('create_start_time')
&& $request->has(
'create_end_time'
)
) {
$create_start_time = $request->input('create_start_time');
$create_end_time = $request->input('create_end_time');
if ($create_start_time && $create_end_time) {
$query->whereBetween('created_at', [
$create_start_time . ' 00:00:00',
$create_end_time . ' 23:59:59'
]);
}
}
// 分页
$page = $request->input('page', 1);
$perPage = $request->input('per_page', 10);
$typeArr = ParkingChannelService::getType();
$positionArr = ParkingChannelService::getPosition();
$total = $query->count();
$items = $query->latest()->forPage($page, $perPage)->get()->each(
function ($item) use ($typeArr, $positionArr) {
$item['name']
= AdminTranslationService::getTranslationTypeName(
$item['id'],
6,
$item['name']
);
$item['type_str'] = $typeArr[$item['type']];
$item['position_str'] = $positionArr[$item['position']];
$item['guard_booth'] = ParkingGuardBooth::getName($item['guard_booth_id']);
$item['parking'] = Parking::getName($item['parking_id']);
return $item;
}
);
return $this->responseService->success([
'items' => $items,
'total' => $total,
'page' => $page,
'per_page' => $perPage,
'last_page' => ceil($total / $perPage),
]);
} catch (Exception $e) {
$m_prefix = __('exception.exception_handler.resource');
return $this->responseService->systemError(
$m_prefix . ':' . $e->getMessage()
);
}
}
/**
* 列表搜索数据
* @return JsonResponse
*/
public function search(): JsonResponse
{
try {
$data = [
'type_list' => get_select_data(ParkingChannelService::getType())
];
return $this->responseService->success($data);
} catch (Exception $e) {
$m_prefix = __('exception.exception_handler.resource');
return $this->responseService->systemError(
$m_prefix . ':' . $e->getMessage()
);
}
}
/**
* @return JsonResponse
*/
public function create(): JsonResponse
{
try {
$data = [
'type_list' => get_select_data(
ParkingChannelService::getType()
),
'position_list' => get_select_data(
ParkingChannelService::getPosition()
),
'parking_list' => Parking::getData(),
'guard_booth_list' => ParkingGuardBooth::getData()
];
return $this->responseService->success($data);
} catch (Exception $e) {
return $this->responseService->systemError(
__('exception.get_data_failed') . ':' . $e->getMessage()
);
}
}
/**
* @param Request $request
* @return JsonResponse
* @throws CustomException
* @throws ValidationException
*/
public function store(Request $request): JsonResponse
{
try {
$this->saveValidator($request->all());
$this->service->createModel($request->all());
return $this->responseService->success(
null,
__('admin.save_succeeded')
);
} catch (ValidationException|CustomException $e) {
throw $e;
} catch (Exception $e) {
return $this->responseService->systemError(
__('admin.operation_failed') . ':'
. $e->getMessage()
);
}
}
/**
* @param array $data
* @param int $id
* @return void
* @throws ValidationException
*/
protected function saveValidator(array $data, int $id = 0): void
{
$rules = [
'name' => 'required',
'type' => 'required',
'position' => 'required',
'parking_id' => 'required',
'guard_booth_id' => 'required'
];
$messages = [
'name.required' => __(
'validation.channel_management.n_empty'
),
'type.required' => __(
'validation.channel_management.t_empty'
),
'position.required' => __(
'validation.channel_management.po_empty'
),
'parking_id.required' => __(
'validation.channel_management.pa_empty'
),
'guard_booth_id.required' => __(
'validation.channel_management.g_empty'
)
];
if ($id) {
$this->validateId($id, ParkingChannel::class);
}
$validator = Validator::make($data, $rules, $messages);
if ($validator->fails()) {
throw new ValidationException($validator);
}
}
/**
* @param string $id
* @return JsonResponse
*/
public function edit(string $id): JsonResponse
{
try {
$this->validateId($id, ParkingChannel::class);
$data = [
'type_list' => get_select_data(
ParkingChannelService::$typeArr
),
'position_list' => get_select_data(
ParkingChannelService::$positionArr
),
'parking_list' => Parking::getData(),
'guard_booth_list' => ParkingGuardBooth::getData(),
'item' => ParkingChannel::query()->find($id)
];
$Translation = AdminTranslationService::getTranslation(
$data['item']['id'],
6
);
$data['item']['en_name'] = $Translation['en'] ?? '';
$data['item']['tw_name'] = $Translation['zh_tw'] ?? '';
return $this->responseService->success($data);
} catch (Exception $e) {
return $this->responseService->systemError(
__('exception.get_data_failed') . ':' . $e->getMessage()
);
}
}
/**
* @param Request $request
* @param string $id
* @return JsonResponse
* @throws CustomException
* @throws ValidationException
*/
public function update(Request $request, string $id): JsonResponse
{
try {
$this->saveValidator($request->all(), $id);
$this->service->updateModel($request->all(), $id);
return $this->responseService->success(
null,
__('admin.update_succeeded')
);
} catch (ValidationException|CustomException $e) {
throw $e;
} catch (Exception $e) {
return $this->responseService->systemError(
__('admin.operation_failed') . ':'
. $e->getMessage()
);
}
}
/**
* @param string $id
* @return JsonResponse
* @throws CustomException
* @throws ValidationException
*/
public function destroy(string $id): JsonResponse
{
try {
$this->validateId($id, ParkingChannel::class);
$this->service->deleteModel($id);
return $this->responseService->success(
null,
__('admin.delete_succeeded')
);
} catch (ValidationException|CustomException $e) {
throw $e;
} catch (Exception $e) {
return $this->responseService->systemError(
__('exception.admin_floor.destroy_failed') . ':'
. $e->getMessage()
);
}
}
}