phpvms/app/Exceptions/Handler.php

172 lines
5.2 KiB
PHP
Raw Normal View History

2017-06-09 02:28:26 +08:00
<?php
namespace App\Exceptions;
use Exception;
use Illuminate\Auth\AuthenticationException;
2018-02-21 12:33:09 +08:00
use Illuminate\Database\Eloquent\ModelNotFoundException;
2017-06-09 02:28:26 +08:00
use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
2018-02-21 12:33:09 +08:00
use Illuminate\Validation\ValidationException;
use Log;
2018-02-23 00:14:12 +08:00
use Symfony\Component\HttpKernel\Exception\HttpException;
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
2017-06-09 02:28:26 +08:00
/**
* Class Handler
*/
2017-06-09 02:28:26 +08:00
class Handler extends ExceptionHandler
{
/**
* A list of the exception types that should not be reported.
*/
protected $dontReport = [
\Illuminate\Auth\AuthenticationException::class,
\Illuminate\Auth\Access\AuthorizationException::class,
\Symfony\Component\HttpKernel\Exception\HttpException::class,
\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.
2018-08-27 00:40:04 +08:00
*
* @param \Exception $exception
*
* @throws Exception
2018-08-27 00:40:04 +08:00
*
* @return void
2017-06-09 02:28:26 +08:00
*/
public function report(Exception $exception)
{
parent::report($exception);
}
2018-02-23 00:14:12 +08:00
/**
* Create an error message
2018-08-27 00:40:04 +08:00
*
2018-02-23 00:14:12 +08:00
* @param $status_code
* @param $message
2018-08-27 00:40:04 +08:00
*
2018-02-23 00:14:12 +08:00
* @return array
*/
protected function createError($status_code, $message)
{
return [
'error' => [
'status' => $status_code,
2018-02-23 00:14:12 +08:00
'message' => $message,
2018-08-27 00:40:04 +08:00
],
2018-02-23 00:14:12 +08:00
];
}
2017-06-09 02:28:26 +08:00
/**
* Render an exception into an HTTP response.
*
2018-08-27 00:40:04 +08:00
* @param \Illuminate\Http\Request $request
* @param \Exception $exception
*
2018-02-23 00:14:12 +08:00
* @return mixed
2017-06-09 02:28:26 +08:00
*/
public function render($request, Exception $exception)
{
if ($request->is('api/*')) {
2018-02-23 00:14:12 +08:00
$headers = [];
2018-02-23 00:14:12 +08:00
Log::error('API Error', $exception->getTrace());
if ($exception instanceof ModelNotFoundException ||
2018-02-23 00:14:12 +08:00
$exception instanceof NotFoundHttpException) {
$error = $this->createError(404, $exception->getMessage());
}
2018-08-27 00:40:04 +08:00
// Custom exceptions should be extending HttpException
2018-02-23 00:14:12 +08:00
elseif ($exception instanceof HttpException) {
$error = $this->createError(
$exception->getStatusCode(),
$exception->getMessage()
);
2018-02-23 00:14:12 +08:00
$headers = $exception->getHeaders();
}
2018-08-27 00:40:04 +08:00
// Create the detailed errors from the validation errors
elseif ($exception instanceof ValidationException) {
$error_messages = [];
2018-02-23 00:14:12 +08:00
$errors = $exception->errors();
foreach ($errors as $field => $error) {
$error_messages[] = implode(', ', $error);
}
2018-02-23 00:14:12 +08:00
$message = implode(', ', $error_messages);
$error = $this->createError(400, $message);
$error['error']['errors'] = $errors;
2018-02-23 00:14:12 +08:00
Log::error('Validation errors', $errors);
2018-08-27 00:40:04 +08:00
} else {
2018-02-23 00:14:12 +08:00
$error = $this->createError(400, $exception->getMessage());
}
2018-08-27 00:40:04 +08:00
// Only add trace if in dev
if (config('app.env') === 'dev') {
$error['error']['trace'] = $exception->getTrace()[0];
}
2018-01-25 04:14:47 +08:00
2018-02-23 00:14:12 +08:00
return response()->json($error, $error['error']['status'], $headers);
}
if ($exception instanceof HttpException
&& $exception->getStatusCode() === 403) {
return redirect()->guest('login');
}
2017-06-09 02:28:26 +08:00
return parent::render($request, $exception);
}
/**
* Convert an authentication exception into an unauthenticated response.
*
2018-08-27 00:40:04 +08:00
* @param \Illuminate\Http\Request $request
* @param \Illuminate\Auth\AuthenticationException $exception
*
2017-06-09 02:28:26 +08:00
* @return \Illuminate\Http\Response
*/
protected function unauthenticated($request, AuthenticationException $exception)
{
if ($request->expectsJson() || $request->is('api/*')) {
$error = $this->createError(401, 'Unauthenticated');
return response()->json($error, 401);
2017-06-09 02:28:26 +08:00
}
return redirect()->guest('login');
}
2017-08-23 22:23:48 +08:00
/**
* Render the given HttpException.
2018-08-27 00:40:04 +08:00
*
* @param HttpException $e
2018-08-27 00:40:04 +08:00
*
* @return \Illuminate\Http\Response|\Symfony\Component\HttpFoundation\Response
2017-08-23 22:23:48 +08:00
*/
protected function renderHttpException(HttpException $e)
2017-08-23 22:23:48 +08:00
{
$status = $e->getStatusCode();
view()->replaceNamespace('errors', [
resource_path('views/layouts/'.config('phpvms.skin').'/errors'),
2017-08-23 22:23:48 +08:00
resource_path('views/errors'),
__DIR__.'/views',
2017-08-23 22:23:48 +08:00
]);
if (view()->exists("errors::{$status}")) {
2018-08-27 00:40:04 +08:00
//if (view()->exists('layouts' . config('phpvms.skin') .'.errors.' .$status)) {
return response()->view("errors::{$status}", [
'exception' => $e,
'SKIN_NAME' => config('phpvms.skin'),
], $status, $e->getHeaders());
2017-08-23 22:23:48 +08:00
}
2018-08-20 22:20:03 +08:00
return $this->convertExceptionToResponse($e);
2017-08-23 22:23:48 +08:00
}
2017-06-09 02:28:26 +08:00
}