first commit

This commit is contained in:
liu
2026-07-13 15:23:29 +08:00
commit 50885a98c8
473 changed files with 33772 additions and 0 deletions
+101
View File
@@ -0,0 +1,101 @@
<?php
namespace App\Exceptions;
use Illuminate\Auth\AuthenticationException;
use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
use Illuminate\Http\JsonResponse;
use Illuminate\Validation\ValidationException;
use Laravel\Sanctum\Exceptions\MissingAbilityException;
use Modules\Common\Enum\ShowType;
use Modules\Common\Trait\RequestJson;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
use Throwable;
class ExceptionsHandler extends ExceptionHandler
{
use RequestJson;
/**
* A list of the exception types that are not reported.
* 未报告的异常类型列表
*
* @var array
*/
protected $dontReport = [];
/**
* Register the exception handling callbacks for the application.
*/
public function render($request, Throwable $e): JsonResponse|Response
{
$exceptionHandlers = [
HttpResponseException::class => function (HttpResponseException $e) {
return response()->json($e->toArray(), $e->getCode());
},
MissingAbilityException::class => function ($e) {
return $this->notification(
'No Permission',
__('system.error.no_permission'),
ShowType::WARN_NOTIFICATION
);
},
AuthenticationException::class => function ($e) {
return response()->json([
'msg' => __('user.not_login'),
'success' => false
], 401);
},
NotFoundHttpException::class => function ($e) {
return $this->notification(
'Route Not Exist',
__('system.error.route_not_exist'),
ShowType::WARN_NOTIFICATION
);
},
ValidationException::class => function (ValidationException $e) {
return response()->json([
'msg' => $e->validator->errors()->first(),
'showType' => ShowType::WARN_MESSAGE->value,
'success' => false,
]);
},
];
foreach ($exceptionHandlers as $exceptionType => $handler) {
if ($e instanceof $exceptionType) {
$response = $handler($e);
break;
}
}
if (!isset($response)) {
$debug = config('app.debug');
$data = [
'msg' => $e->getMessage(),
'showType' => ShowType::ERROR_MESSAGE->value,
'success' => false,
];
if ($debug) {
$data += [
'file' => $e->getFile(),
'line' => $e->getLine(),
'trace' => $e->getTrace(),
'code' => $e->getCode(),
];
}
$response = response()->json($data);
}
$response->headers->set('Access-Control-Allow-Origin', '*');
$response->headers->set('Access-Control-Allow-Credentials', 'true');
$response->headers->set('Access-Control-Max-Age', 1800);
$response->headers->set('Access-Control-Allow-Methods', 'GET, POST, PUT, DELETE, OPTIONS');
$response->headers->set('Access-Control-Allow-Headers', 'Content-Type, Authorization, X-Requested-With, User-Language');
return $response;
}
}
+54
View File
@@ -0,0 +1,54 @@
<?php
namespace App\Exceptions;
use Modules\Common\Enum\ShowType;
use RuntimeException;
class HttpResponseException extends RuntimeException
{
/**
* 响应消息
*/
private string $msg;
/**
* 响应类型
*/
private ShowType $showType;
/**
* 响应数据
*/
private array $data;
/**
* 响应状态
*/
private bool $success;
public function __construct(array $data, int $code = 200)
{
$this->msg = $data['msg'] ?? '';
$this->success = $data['success'] ?? true;
if (empty($data['showType']) && $this->success) {
$this->showType = ShowType::SUCCESS_MESSAGE;
} elseif (empty($data['showType']) && ! $this->success) {
$this->showType = ShowType::ERROR_MESSAGE;
} else {
$this->showType = ShowType::from($data['showType']);
}
$this->data = $data['data'] ?? [];
parent::__construct($data['msg'] ?? '', $code);
}
public function toArray(): array
{
return [
'data' => $this->data,
'success' => $this->success,
'msg' => $this->msg,
'showType' => $this->showType->value,
];
}
}
+10
View File
@@ -0,0 +1,10 @@
<?php
namespace App\Exceptions;
use RuntimeException;
class RepositoryException extends RuntimeException
{
}