1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 00:41:34 +02:00
invoiceninja/app/Exceptions/Handler.php

126 lines
4.4 KiB
PHP
Raw Normal View History

2018-10-04 19:10:43 +02:00
<?php
2019-05-11 05:32:07 +02:00
/**
* Invoice Ninja (https://invoiceninja.com)
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
2019-05-11 05:32:07 +02:00
*
* @license https://opensource.org/licenses/AAL
*/
2018-10-04 19:10:43 +02:00
namespace App\Exceptions;
use Exception;
2019-10-03 02:17:29 +02:00
use Illuminate\Auth\Access\AuthorizationException;
use Illuminate\Auth\AuthenticationException;
2019-04-02 08:36:49 +02:00
use Illuminate\Database\Eloquent\ModelNotFoundException as ModelNotFoundException;
use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
use Illuminate\Http\Exceptions\ThrottleRequestsException;
2019-10-01 03:56:48 +02:00
use Illuminate\Support\Arr;
2019-10-10 03:01:38 +02:00
use Illuminate\Validation\ValidationException;
2019-04-23 08:19:45 +02:00
use Symfony\Component\Debug\Exception\FatalThrowableError;
2019-10-08 13:14:23 +02:00
use Symfony\Component\HttpKernel\Exception\MethodNotAllowedHttpException;
2019-10-10 03:01:38 +02:00
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
use Illuminate\Database\Eloquent\RelationNotFoundException;
2018-10-04 19:10:43 +02:00
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
2018-10-04 19:10:43 +02:00
* @return void
*/
public function report(Exception $exception)
{
2019-04-10 04:01:28 +02:00
if (app()->bound('sentry') && $this->shouldReport($exception)) {
app('sentry')->captureException($exception);
}
2019-04-02 08:36:49 +02:00
2019-04-10 04:01:28 +02:00
parent::report($exception);
2018-10-04 19:10:43 +02:00
}
/**
* Render an exception into an HTTP response.
*
* @param \Illuminate\Http\Request $request
* @param \Exception $exception
2018-10-04 19:10:43 +02:00
* @return \Illuminate\Http\Response
*/
2019-04-02 08:36:49 +02:00
2018-10-04 19:10:43 +02:00
public function render($request, Exception $exception)
{
if ($exception instanceof ModelNotFoundException && $request->expectsJson()) {
return response()->json(['message'=>$exception->getMessage()], 400);
} elseif ($exception instanceof ThrottleRequestsException && $request->expectsJson()) {
return response()->json(['message'=>'Too many requests'], 429);
} elseif ($exception instanceof FatalThrowableError && $request->expectsJson()) {
return response()->json(['message'=>'Fatal error'], 500);
} elseif ($exception instanceof AuthorizationException) {
return response()->json(['message'=>'You are not authorized to view or perform this action'], 401);
} elseif ($exception instanceof \Illuminate\Session\TokenMismatchException) {
2019-08-13 23:16:31 +02:00
return redirect()
->back()
2019-08-13 23:41:02 +02:00
->withInput($request->except('password', 'password_confirmation', '_token'))
2019-08-13 23:16:31 +02:00
->with([
'message' => ctrans('texts.token_expired'),
'message-type' => 'danger']);
} elseif ($exception instanceof NotFoundHttpException && $request->expectsJson()) {
return response()->json(['message'=>'Route does not exist'], 404);
} elseif ($exception instanceof MethodNotAllowedHttpException && $request->expectsJson()) {
return response()->json(['message'=>'Method not support for this route'], 404);
} elseif ($exception instanceof ValidationException && $request->expectsJson()) {
2019-10-10 03:01:38 +02:00
return response()->json(['message' => 'The given data was invalid.', 'errors' => $exception->validator->getMessageBag()], 422);
} elseif ($exception instanceof RelationNotFoundException && $request->expectsJson()) {
return response()->json(['message' => $exception->getMessage()], 400);
}
2019-08-13 23:41:02 +02:00
2018-10-04 19:10:43 +02:00
return parent::render($request, $exception);
}
2019-04-10 04:01:28 +02:00
protected function unauthenticated($request, AuthenticationException $exception)
{
if ($request->expectsJson()) {
return response()->json(['error' => 'Unauthenticated.'], 401);
}
2019-10-01 03:56:48 +02:00
$guard = Arr::get($exception->guards(), 0);
switch ($guard) {
case 'contact':
$login = 'client.login';
break;
case 'user':
$login = 'login';
break;
default:
$login = 'default';
break;
}
return redirect()->guest(route($login));
}
2018-10-04 19:10:43 +02:00
}