停车场管理系统
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.
 
 

174 lines
5.2 KiB

<?php
namespace App\Http\Controllers\Admin;
use App\Exceptions\CustomException;
use App\Models\ParkingLicensePlate;
use App\Services\ApiResponseService;
use App\Services\ParkingLicensePlateService;
use Exception;
use Illuminate\Http\JsonResponse;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Validator;
use Illuminate\Validation\ValidationException;
class ParkingLicensePlateController extends BaseController
{
/**
* @var ApiResponseService
*/
protected ApiResponseService $responseService;
/**
* @var ParkingLicensePlateService
*/
protected ParkingLicensePlateService $LicensePlateService;
/**
* 构造函数
* @param ApiResponseService $responseService
* @param ParkingLicensePlateService $LicensePlateService
*/
public function __construct(
ApiResponseService $responseService,
ParkingLicensePlateService $LicensePlateService,
) {
$this->responseService = $responseService;
$this->LicensePlateService = $LicensePlateService;
}
/**
* Display a listing of the resource.
*/
public function index(Request $request): JsonResponse
{
try {
$query = ParkingLicensePlate::query();
// 车位类型搜索
$space_type_id = $request->input('space_type_id');
$query->where('space_type_id', '=', $space_type_id);
// 分页
$page = $request->input('page', 1);
$perPage = $request->input('per_page', 10);
$total = $query->count();
$items = $query->latest()->forPage($page, $perPage)->get();
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()
);
}
}
/**
* Store a newly created resource in storage.
*/
public function store(Request $request)
{
try {
$this->saveValidator($request->all());
$this->LicensePlateService->createModel($request->all());
return $this->responseService->success(
null,
__('admin.save_succeeded')
);
} catch (ValidationException|CustomException $e) {
throw $e;
} catch (Exception $e) {
return $this->responseService->systemError(
__('exception.license_plate.create_failed') . ':' . $e->getMessage(
)
);
}
}
/**
* @param array $data
* @param int $id
* @return void
* @throws ValidationException
*/
protected function saveValidator(array $data, int $id = 0): void
{
$rules = [
'number' => 'required',
];
$messages = [
'number.required' => __(
'validation.license_plate.n_empty'
)
];
if ($id) {
$this->validateId($id, ParkingLicensePlate::class);
} else {
$rules['space_type_id'] = 'required';
$messages['space_type_id.required'] = __('validation.license_plate.type_empty');
}
$validator = Validator::make($data, $rules, $messages);
if ($validator->fails()) {
throw new ValidationException($validator);
}
}
/**
* @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->LicensePlateService->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(
__('exception.license_plate.update_failed') . ':' . $e->getMessage(
)
);
}
}
/**
* @param string $id
* @return JsonResponse
* @throws CustomException
* @throws ValidationException
*/
public function destroy(string $id): JsonResponse
{
try {
$this->validateId($id, ParkingLicensePlate::class);
$this->LicensePlateService->deleteModel($id);
return $this->responseService->success(
null,
__('admin.delete_succeeded')
);
} catch (ValidationException|CustomException $e) {
throw $e;
} catch (Exception $e) {
return $this->responseService->systemError(
__('exception.license_plate.destroy_failed') . ':'
. $e->getMessage()
);
}
}
}