1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 00:11:35 +02:00
invoiceninja/app/Exceptions/Handler.php

191 lines
6.1 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;
2017-11-14 09:58:08 +01:00
use Illuminate\Auth\AuthenticationException;
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 Illuminate\Session\TokenMismatchException;
2017-01-30 20:40:43 +01:00
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 = [
TokenMismatchException::class,
2017-12-11 15:42:14 +01:00
ModelNotFoundException::class,
//AuthorizationException::class,
//HttpException::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)
{
if (! $this->shouldReport($e)) {
return false;
}
2017-12-29 13:26:23 +01:00
if (! class_exists('Utils')) {
return parent::report($e);
}
2017-09-06 15:45:32 +02:00
if (Crawler::isCrawler()) {
return false;
}
2016-04-11 10:33:25 +02:00
// don't show these errors in the logs
if ($e instanceof NotFoundHttpException) {
2017-03-21 10:18:36 +01:00
// The logo can take a few seconds to get synced between servers
// TODO: remove once we're using cloud storage for logos
if (Utils::isNinja() && strpos(request()->url(), '/logo/') !== false) {
return false;
}
2017-06-14 20:18:55 +02:00
// Log 404s to a separate file
2017-08-16 09:28:40 +02:00
$errorStr = date('Y-m-d h:i:s') . ' ' . $e->getMessage() . ' URL:' . request()->url() . "\n" . json_encode(Utils::prepareErrorData('PHP')) . "\n\n";
2017-07-16 13:12:42 +02:00
@file_put_contents(storage_path('logs/not-found.log'), $errorStr, FILE_APPEND);
2017-06-14 20:18:55 +02:00
return false;
} elseif ($e instanceof HttpResponseException) {
2016-04-11 10:33:25 +02:00
return false;
}
if (! Utils::isTravis()) {
2015-09-25 11:57:40 +02:00
Utils::logError(Utils::getErrorString($e));
2017-08-16 09:28:40 +02:00
$stacktrace = date('Y-m-d h:i:s') . ' ' . $e->getMessage() . ': ' . $e->getTraceAsString() . "\n\n";
2017-06-05 16:46:31 +02:00
@file_put_contents(storage_path('logs/stacktrace.log'), $stacktrace, FILE_APPEND);
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
}
2017-12-29 13:26:23 +01:00
if (! class_exists('Utils')) {
return parent::render($request, $e);
}
if ($e instanceof TokenMismatchException) {
2017-03-21 09:13:48 +01:00
if (! in_array($request->path(), ['get_started', 'save_sidebar_state'])) {
// 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)
2018-01-07 11:49:50 +01:00
&& ! ($e instanceof \Illuminate\Validation\ValidationException)
2017-01-30 20:40:43 +01:00
&& ! ($e instanceof ValidationException)) {
2015-04-28 22:13:52 +02:00
$data = [
'error' => get_class($e),
'hideHeader' => true,
];
2017-02-19 13:26:59 +01:00
return response()->view('error', $data, 500);
2015-04-28 22:13:52 +02:00
} else {
return parent::render($request, $e);
}
2017-01-30 17:05:31 +01:00
}
2017-11-14 09:58:08 +01:00
/**
* 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);
}
$guard = array_get($exception->guards(), 0);
switch ($guard) {
case 'client':
$url = '/client/login';
break;
default:
$url = '/login';
break;
}
return redirect()->guest($url);
}
2015-03-12 01:44:39 +01:00
}