| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- <?php
- namespace App\Exceptions;
- use App\Notification\DingDingRobot;
- use App\Notification\TelegramBot;
- use Exception;
- use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
- use Illuminate\Support\Facades\Config;
- use Illuminate\Support\Facades\Log;
- use Illuminate\Support\Facades\Request;
- class Handler extends ExceptionHandler
- {
- /**
- * A list of the exception types that are not reported.
- *
- * @var array
- */
- protected $dontReport = [
- //
- ];
- /**
- * A list of the inputs that are never flashed for validation exceptions.
- *
- * @var array
- */
- protected $dontFlash = [
- 'password',
- 'password_confirmation',
- ];
- /**
- * Report or log an exception.
- *
- * @param \Exception $exception
- * @return void
- */
- public function report(Exception $exception)
- {
- if (false&&$this->shouldReport($exception)) {
- Log::info('Exception Happen', [
- 'error'=>$exception->getMessage(),
- 'url' => Request::url(),
- 'params' => Request::all(),
- 'trace' => $exception->getTraceAsString()
- ]);
- $env = env('APP_ENV');
- TelegramBot::getDefault()->sendProgramNotify("api",
- $exception->getMessage() . "\n" .
- '#### url:' . Request::getRequestUri() . "\n" .
- '#### params:' . json_encode(Request::all()) . "\n" .
- '#### ' . $exception->getTraceAsString() . "\n"
- );
- }
- parent::report($exception);
- }
- /**
- * Render an exception into an HTTP response.
- *
- * @param \Illuminate\Http\Request $request
- * @param \Exception $exception
- * @return \Illuminate\Http\Response
- */
- public function render($request, Exception $exception)
- {
- // if (Config::get('app.debug') === false) {
- // if ($request->ajax()) {
- // $message = $exception->getMessage();
- // $line = $exception->getLine();
- // $file = $exception->getFile();
- // $code = $exception->getCode();
- // return response()->json(['code' => 500, 'msg' => '请求发生错误!', 'data' => [
- // 'code' => $code,
- // 'line' => $line,
- // 'file' => $file,
- // 'message' => $message,
- // ]]);
- // } else {
- // return response()->view('base.404');
- // }
- // }
- return parent::render($request, $exception);
- }
- }
|