初始化
This commit is contained in:
50
app/exception/ApiHandler.php
Normal file
50
app/exception/ApiHandler.php
Normal file
@@ -0,0 +1,50 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is part of webman.
|
||||
*
|
||||
* Licensed under The MIT License
|
||||
* For full copyright and license information, please see the MIT-LICENSE.txt
|
||||
* Redistributions of files must retain the above copyright notice.
|
||||
*
|
||||
* @author walkor<walkor@workerman.net>
|
||||
* @copyright walkor<walkor@workerman.net>
|
||||
* @link http://www.workerman.net/
|
||||
* @license http://www.opensource.org/licenses/mit-license.php MIT License
|
||||
*/
|
||||
|
||||
namespace app\exception;
|
||||
|
||||
use Respect\Validation\Exceptions\NestedValidationException;
|
||||
use Respect\Validation\Exceptions\ValidationException;
|
||||
use Throwable;
|
||||
use Tinywan\Jwt\Exception\JwtTokenException;
|
||||
use Tinywan\Jwt\Exception\JwtTokenExpiredException;
|
||||
use Webman\Exception\ExceptionHandler;
|
||||
use Webman\Http\Request;
|
||||
use Webman\Http\Response;
|
||||
|
||||
/**
|
||||
* Class Handler
|
||||
* @package support\exception
|
||||
*/
|
||||
class ApiHandler extends ExceptionHandler
|
||||
{
|
||||
public $dontReport = [
|
||||
NestedValidationException::class,
|
||||
ValidationException::class,
|
||||
];
|
||||
|
||||
public function render(Request $request, Throwable $exception): Response
|
||||
{
|
||||
if ($exception instanceof JwtTokenExpiredException || $exception instanceof JwtTokenException) {
|
||||
return json([
|
||||
'code' => 401,
|
||||
'msg' => $exception->getMessage()
|
||||
]);
|
||||
}
|
||||
return json([
|
||||
'code' => $exception->getCode(),
|
||||
'msg' => $exception->getMessage()
|
||||
]);
|
||||
}
|
||||
}
|
||||
6
app/exception/GameException.php
Normal file
6
app/exception/GameException.php
Normal file
@@ -0,0 +1,6 @@
|
||||
<?php
|
||||
namespace app\exception;
|
||||
|
||||
class GameException extends \Exception
|
||||
{
|
||||
}
|
||||
6
app/exception/PlayerCheckException.php
Normal file
6
app/exception/PlayerCheckException.php
Normal file
@@ -0,0 +1,6 @@
|
||||
<?php
|
||||
namespace app\exception;
|
||||
|
||||
class PlayerCheckException extends \Exception
|
||||
{
|
||||
}
|
||||
7
app/exception/PromoterCheckException.php
Normal file
7
app/exception/PromoterCheckException.php
Normal file
@@ -0,0 +1,7 @@
|
||||
<?php
|
||||
|
||||
namespace app\exception;
|
||||
|
||||
class PromoterCheckException extends \Exception
|
||||
{
|
||||
}
|
||||
Reference in New Issue
Block a user