|
|
|
@ -3,15 +3,20 @@ |
|
|
|
namespace App\Http\Controllers\Admin; |
|
|
|
|
|
|
|
use App\Exceptions\CustomException; |
|
|
|
use App\Exports\ParkingLicensePlateImportTemplateExport; |
|
|
|
use App\Imports\ParkingLicensePlateImport; |
|
|
|
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\Storage; |
|
|
|
use Illuminate\Support\Facades\Validator; |
|
|
|
use Illuminate\Validation\ValidationException; |
|
|
|
use Maatwebsite\Excel\Facades\Excel; |
|
|
|
use Psr\SimpleCache\InvalidArgumentException; |
|
|
|
use Symfony\Component\HttpFoundation\BinaryFileResponse; |
|
|
|
|
|
|
|
class ParkingLicensePlateController extends BaseController |
|
|
|
{ |
|
|
|
@ -174,6 +179,95 @@ class ParkingLicensePlateController extends BaseController |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @param $id |
|
|
|
* @return JsonResponse |
|
|
|
* @throws CustomException |
|
|
|
* @throws ValidationException |
|
|
|
*/ |
|
|
|
public function clear($id): JsonResponse |
|
|
|
{ |
|
|
|
try { |
|
|
|
$this->validateId($id, ParkingLicensePlate::class); |
|
|
|
$this->LicensePlateService->clearModel($id); |
|
|
|
return $this->responseService->success( |
|
|
|
null, |
|
|
|
__('controller.license_plate.clear_success') |
|
|
|
); |
|
|
|
} catch (ValidationException|CustomException $e) { |
|
|
|
throw $e; |
|
|
|
} catch (Exception $e) { |
|
|
|
return $this->responseService->systemError( |
|
|
|
__('exception.license_plate.clear_failed') . ':' |
|
|
|
. $e->getMessage() |
|
|
|
); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @return BinaryFileResponse |
|
|
|
*/ |
|
|
|
public function importTemplate(): BinaryFileResponse |
|
|
|
{ |
|
|
|
return Excel::download( |
|
|
|
new ParkingLicensePlateImportTemplateExport(), |
|
|
|
__('exports.license_plate.import_template') . time() .'.xlsx' |
|
|
|
); |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @param Request $request |
|
|
|
* @return JsonResponse |
|
|
|
* @throws ValidationException |
|
|
|
*/ |
|
|
|
public function import(Request $request): JsonResponse |
|
|
|
{ |
|
|
|
try { |
|
|
|
// 1. 验证上传的文件 |
|
|
|
$request->validate([ |
|
|
|
'file' => 'required|mimes:xlsx,xls,csv|max:2048' // 限制文件类型和大小 |
|
|
|
]); |
|
|
|
$validator = Validator::make($request->all(), [ |
|
|
|
'file' => 'required|mimes:xlsx,xls,csv|max:2048' |
|
|
|
], [ |
|
|
|
'file.required' => __('validation.admin_list_vip.file_empty'), |
|
|
|
'file.mimes' => __('validation.admin_list_vip.file_mimes'), |
|
|
|
'file.max' => __('validation.admin_list_vip.file_max'), |
|
|
|
]); |
|
|
|
if ($validator->fails()) { |
|
|
|
throw new ValidationException($validator); |
|
|
|
} |
|
|
|
|
|
|
|
// 2. 获取上传的文件 |
|
|
|
$file = $request->file('file'); |
|
|
|
|
|
|
|
// 3. 正确的做法:先存储文件,再获取绝对路径进行导入 |
|
|
|
// 将文件存储到 storage/app/imports 目录下 |
|
|
|
$path = $file->store('imports'); |
|
|
|
|
|
|
|
// 4. 执行导入(使用存储后的绝对路径) |
|
|
|
// storage_path('app') 获取 storage/app 的绝对路径 |
|
|
|
Excel::import( |
|
|
|
new ParkingLicensePlateImport(), |
|
|
|
storage_path('app/' . $path) |
|
|
|
); |
|
|
|
|
|
|
|
// 5. (可选)导入完成后删除临时文件 |
|
|
|
Storage::delete($path); |
|
|
|
|
|
|
|
return $this->responseService->success( |
|
|
|
__('controller.import.success') |
|
|
|
); |
|
|
|
} catch (ValidationException $e) { |
|
|
|
throw $e; |
|
|
|
} catch (Exception $e) { |
|
|
|
return $this->responseService->systemError( |
|
|
|
__('exception.admin_vip_list.import_failed') . ':' |
|
|
|
. $e->getMessage() |
|
|
|
); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @return JsonResponse |
|
|
|
* @throws InvalidArgumentException |
|
|
|
|