初始化

This commit is contained in:
2026-03-02 13:44:38 +08:00
commit 05b785083c
677 changed files with 58662 additions and 0 deletions

View 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()
]);
}
}

View File

@@ -0,0 +1,6 @@
<?php
namespace app\exception;
class GameException extends \Exception
{
}

View File

@@ -0,0 +1,6 @@
<?php
namespace app\exception;
class PlayerCheckException extends \Exception
{
}

View File

@@ -0,0 +1,7 @@
<?php
namespace app\exception;
class PromoterCheckException extends \Exception
{
}