2015-12-06 18:58:49 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Pterodactyl\Exceptions;
|
|
|
|
|
2016-09-07 20:12:06 +00:00
|
|
|
use Log;
|
2015-12-06 18:58:49 +00:00
|
|
|
use Exception;
|
|
|
|
use DisplayException;
|
2016-09-03 21:09:00 +00:00
|
|
|
use Illuminate\Auth\AuthenticationException;
|
2015-12-06 18:58:49 +00:00
|
|
|
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 = [
|
2016-09-03 21:09:00 +00:00
|
|
|
\Illuminate\Auth\AuthenticationException::class,
|
|
|
|
\Illuminate\Auth\Access\AuthorizationException::class,
|
|
|
|
\Symfony\Component\HttpKernel\Exception\HttpException::class,
|
|
|
|
\Illuminate\Database\Eloquent\ModelNotFoundException::class,
|
|
|
|
\Illuminate\Session\TokenMismatchException::class,
|
|
|
|
\Illuminate\Validation\ValidationException::class,
|
2015-12-06 18:58:49 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Report or log an exception.
|
|
|
|
*
|
|
|
|
* This is a great spot to send exceptions to Sentry, Bugsnag, etc.
|
|
|
|
*
|
2017-03-19 23:36:50 +00:00
|
|
|
* @param \Exception $exception
|
2015-12-06 18:58:49 +00:00
|
|
|
* @return void
|
|
|
|
*/
|
2016-09-03 21:09:00 +00:00
|
|
|
public function report(Exception $exception)
|
2015-12-06 18:58:49 +00:00
|
|
|
{
|
2016-09-03 21:09:00 +00:00
|
|
|
return parent::report($exception);
|
2015-12-06 18:58:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Render an exception into an HTTP response.
|
|
|
|
*
|
|
|
|
* @param \Illuminate\Http\Request $request
|
2017-03-19 23:36:50 +00:00
|
|
|
* @param \Exception $exception
|
2015-12-06 18:58:49 +00:00
|
|
|
* @return \Illuminate\Http\Response
|
|
|
|
*/
|
2016-09-07 20:12:06 +00:00
|
|
|
public function render($request, Exception $exception)
|
2015-12-06 18:58:49 +00:00
|
|
|
{
|
2017-04-02 17:19:39 +00:00
|
|
|
if ($request->expectsJson() || $request->isJson() || $request->is(...config('pterodactyl.json_routes'))) {
|
2017-04-09 17:15:15 +00:00
|
|
|
$exception = $this->prepareException($exception);
|
2017-04-02 04:11:52 +00:00
|
|
|
|
|
|
|
if (config('app.debug')) {
|
|
|
|
$report = [
|
|
|
|
'code' => (! $this->isHttpException($exception)) ?: $exception->getStatusCode(),
|
|
|
|
'message' => class_basename($exception) . ' in ' . $exception->getFile() . ' on line ' . $exception->getLine(),
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
2016-09-07 20:12:06 +00:00
|
|
|
$response = response()->json([
|
2017-04-02 17:19:39 +00:00
|
|
|
'error' => (config('app.debug')) ? $exception->getMessage() : 'An unhandled exception was encountered with this request.',
|
2017-04-02 04:11:52 +00:00
|
|
|
'exception' => ! isset($report) ?: $report,
|
|
|
|
], ($this->isHttpException($exception)) ? $exception->getStatusCode() : 500, [], JSON_UNESCAPED_SLASHES);
|
2015-12-06 18:58:49 +00:00
|
|
|
|
2017-01-12 18:44:23 +00:00
|
|
|
parent::report($exception);
|
2015-12-06 18:58:49 +00:00
|
|
|
}
|
|
|
|
|
2016-09-07 22:25:11 +00:00
|
|
|
return (isset($response)) ? $response : parent::render($request, $exception);
|
2015-12-06 18:58:49 +00:00
|
|
|
}
|
2016-09-03 21:09:00 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Convert an authentication exception into an unauthenticated response.
|
|
|
|
*
|
2017-03-19 23:36:50 +00:00
|
|
|
* @param \Illuminate\Http\Request $request
|
2016-09-03 21:09:00 +00:00
|
|
|
* @param \Illuminate\Auth\AuthenticationException $exception
|
|
|
|
* @return \Illuminate\Http\Response
|
|
|
|
*/
|
|
|
|
protected function unauthenticated($request, AuthenticationException $exception)
|
|
|
|
{
|
|
|
|
if ($request->expectsJson()) {
|
|
|
|
return response()->json(['error' => 'Unauthenticated.'], 401);
|
|
|
|
}
|
2016-12-07 22:46:38 +00:00
|
|
|
|
2017-04-01 21:59:43 +00:00
|
|
|
return redirect()->guest(route('auth.login'));
|
2016-09-03 21:09:00 +00:00
|
|
|
}
|
2015-12-06 18:58:49 +00:00
|
|
|
}
|