2017-06-09 02:28:26 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Exceptions;
|
|
|
|
|
2017-12-24 01:17:29 +08:00
|
|
|
use Log;
|
2017-06-09 02:28:26 +08:00
|
|
|
use Exception;
|
|
|
|
use Illuminate\Auth\AuthenticationException;
|
|
|
|
use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
|
|
|
|
|
|
|
|
class Handler extends ExceptionHandler
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* A list of the exception types that should not be reported.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $dontReport = [
|
|
|
|
\Illuminate\Auth\AuthenticationException::class,
|
|
|
|
\Illuminate\Auth\Access\AuthorizationException::class,
|
|
|
|
\Symfony\Component\HttpKernel\Exception\HttpException::class,
|
2017-12-24 01:17:29 +08:00
|
|
|
#\Illuminate\Database\Eloquent\ModelNotFoundException::class,
|
2017-06-09 02:28:26 +08:00
|
|
|
\Illuminate\Session\TokenMismatchException::class,
|
|
|
|
\Illuminate\Validation\ValidationException::class,
|
|
|
|
];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Report or log an exception.
|
|
|
|
*
|
|
|
|
* This is a great spot to send exceptions to Sentry, Bugsnag, etc.
|
|
|
|
*
|
|
|
|
* @param \Exception $exception
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function report(Exception $exception)
|
|
|
|
{
|
|
|
|
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)
|
|
|
|
{
|
2017-06-21 00:49:44 +08:00
|
|
|
if ($exception instanceof \Symfony\Component\HttpKernel\Exception\HttpException
|
|
|
|
&& $exception->getStatusCode() == 403) {
|
|
|
|
return redirect()->guest('login');
|
|
|
|
}
|
|
|
|
|
2017-12-30 23:03:45 +08:00
|
|
|
if($request->is('api/*')) {
|
|
|
|
$status = 400;
|
|
|
|
$http_code = $exception->getCode();
|
|
|
|
if ($this->isHttpException($exception)) {
|
|
|
|
$status = $exception->getStatusCode();
|
|
|
|
$http_code = $exception->getStatusCode();
|
|
|
|
}
|
|
|
|
|
|
|
|
return response()->json([
|
|
|
|
'error' => [
|
|
|
|
'code' => $exception->getCode() ,
|
|
|
|
'http_code' => $http_code,
|
|
|
|
'message' => $exception->getMessage()
|
|
|
|
]
|
|
|
|
], $status);
|
|
|
|
}
|
|
|
|
|
2017-06-09 02:28:26 +08:00
|
|
|
return parent::render($request, $exception);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Convert an authentication exception into an unauthenticated response.
|
|
|
|
*
|
|
|
|
* @param \Illuminate\Http\Request $request
|
|
|
|
* @param \Illuminate\Auth\AuthenticationException $exception
|
|
|
|
* @return \Illuminate\Http\Response
|
|
|
|
*/
|
|
|
|
protected function unauthenticated($request, AuthenticationException $exception)
|
|
|
|
{
|
|
|
|
if ($request->expectsJson()) {
|
|
|
|
return response()->json(['error' => 'Unauthenticated.'], 401);
|
|
|
|
}
|
|
|
|
|
|
|
|
return redirect()->guest('login');
|
|
|
|
}
|
2017-08-23 22:23:48 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Render the given HttpException.
|
|
|
|
*/
|
|
|
|
protected function renderHttpException(\Symfony\Component\HttpKernel\Exception\HttpException $e)
|
|
|
|
{
|
|
|
|
$status = $e->getStatusCode();
|
|
|
|
view()->replaceNamespace('errors', [
|
|
|
|
resource_path('views/layouts/' . config('phpvms.skin') . '/errors'),
|
|
|
|
resource_path('views/errors'),
|
|
|
|
__DIR__ . '/views',
|
|
|
|
]);
|
|
|
|
|
2017-12-24 01:17:29 +08:00
|
|
|
Log::info('error status '. $status);
|
|
|
|
|
2017-08-23 22:23:48 +08:00
|
|
|
if (view()->exists("errors::{$status}")) {
|
2017-12-24 01:17:29 +08:00
|
|
|
#if (view()->exists('layouts' . config('phpvms.skin') .'.errors.' .$status)) {
|
2017-08-23 22:23:48 +08:00
|
|
|
return response()->view("errors::{$status}", ['exception' => $e], $status, $e->getHeaders());
|
|
|
|
} else {
|
|
|
|
return $this->convertExceptionToResponse($e);
|
|
|
|
}
|
|
|
|
}
|
2017-06-09 02:28:26 +08:00
|
|
|
}
|