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

137 lines
4.2 KiB
PHP
Raw Normal View History

2017-01-30 20:40:43 +01:00
<?php
namespace App\Exceptions;
2015-03-12 01:44:39 +01:00
use Crawler;
2017-01-30 20:40:43 +01:00
use Exception;
2016-04-11 10:33:25 +02:00
use Illuminate\Auth\Access\AuthorizationException;
use Illuminate\Database\Eloquent\ModelNotFoundException;
2017-01-30 20:40:43 +01:00
use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
use Illuminate\Foundation\Validation\ValidationException;
use Illuminate\Http\Exception\HttpResponseException;
use Illuminate\Support\Facades\Response;
use Redirect;
2016-04-11 10:33:25 +02:00
use Symfony\Component\HttpKernel\Exception\HttpException;
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
2017-01-30 20:40:43 +01:00
use Utils;
/**
2017-01-30 20:40:43 +01:00
* Class Handler.
*/
class Handler extends ExceptionHandler
{
2017-01-30 17:05:31 +01:00
/**
* A list of the exception types that should not be reported.
*
* @var array
*/
protected $dontReport = [
2016-04-11 10:33:25 +02:00
AuthorizationException::class,
HttpException::class,
ModelNotFoundException::class,
ValidationException::class,
2017-01-30 17:05:31 +01:00
];
2015-03-12 01:44:39 +01:00
/**
* Report or log an exception.
*
* This is a great spot to send exceptions to Sentry, Bugsnag, etc.
*
2017-01-30 20:40:43 +01:00
* @param \Exception $e
*
* @return bool|void
*/
2017-01-30 17:05:31 +01:00
public function report(Exception $e)
{
2016-04-11 10:33:25 +02:00
// don't show these errors in the logs
if ($e instanceof NotFoundHttpException) {
if (Crawler::isCrawler()) {
return false;
}
} elseif ($e instanceof HttpResponseException) {
2016-04-11 10:33:25 +02:00
return false;
}
2016-07-21 14:35:23 +02:00
if (Utils::isNinja() && ! Utils::isTravis()) {
2015-09-25 11:57:40 +02:00
Utils::logError(Utils::getErrorString($e));
2017-01-30 20:40:43 +01:00
2015-09-25 11:57:40 +02:00
return false;
} else {
return parent::report($e);
}
}
2015-03-12 01:44:39 +01:00
2017-01-30 17:05:31 +01:00
/**
* Render an exception into an HTTP response.
*
2017-01-30 20:40:43 +01:00
* @param \Illuminate\Http\Request $request
* @param \Exception $e
*
2017-01-30 17:05:31 +01:00
* @return \Illuminate\Http\Response
*/
public function render($request, Exception $e)
{
2016-11-05 02:32:06 +01:00
if ($e instanceof ModelNotFoundException) {
return Redirect::to('/');
2017-01-30 17:05:31 +01:00
}
if ($e instanceof \Illuminate\Session\TokenMismatchException) {
// prevent loop since the page auto-submits
if ($request->path() != 'get_started') {
// https://gist.github.com/jrmadsen67/bd0f9ad0ef1ed6bb594e
return redirect()
2016-07-21 14:35:23 +02:00
->back()
->withInput($request->except('password', '_token'))
->with([
2017-01-30 20:40:43 +01:00
'warning' => trans('texts.token_expired'),
2016-07-21 14:35:23 +02:00
]);
}
2015-06-16 21:35:35 +02:00
}
2015-10-20 19:12:34 +02:00
2017-01-30 17:05:31 +01:00
if ($this->isHttpException($e)) {
switch ($e->getStatusCode()) {
// not found
case 404:
2017-01-30 17:05:31 +01:00
if ($request->header('X-Ninja-Token') != '') {
//API request which has hit a route which does not exist
2017-01-30 20:40:43 +01:00
$error['error'] = ['message' => 'Route does not exist'];
$error = json_encode($error, JSON_PRETTY_PRINT);
$headers = Utils::getApiHeaders();
return response()->make($error, 404, $headers);
}
break;
// internal error
case '500':
2017-01-30 17:05:31 +01:00
if ($request->header('X-Ninja-Token') != '') {
//API request which produces 500 error
2017-01-30 20:40:43 +01:00
$error['error'] = ['message' => 'Internal Server Error'];
$error = json_encode($error, JSON_PRETTY_PRINT);
$headers = Utils::getApiHeaders();
return response()->make($error, 500, $headers);
}
break;
}
}
2015-09-29 07:23:30 +02:00
// In production, except for maintenance mode, we'll show a custom error screen
2016-04-18 19:17:02 +02:00
if (Utils::isNinjaProd()
2017-01-30 20:40:43 +01:00
&& ! Utils::isDownForMaintenance()
&& ! ($e instanceof HttpResponseException)
&& ! ($e instanceof ValidationException)) {
2015-04-28 22:13:52 +02:00
$data = [
'error' => get_class($e),
'hideHeader' => true,
];
2015-04-28 22:13:52 +02:00
return response()->view('error', $data);
} else {
return parent::render($request, $e);
}
2017-01-30 17:05:31 +01:00
}
2015-03-12 01:44:39 +01:00
}