misc_pterodactyl-panel/app/Exceptions/DisplayException.php

70 lines
1.8 KiB
PHP
Raw Normal View History

<?php
2016-12-07 22:46:38 +00:00
namespace Pterodactyl\Exceptions;
use Log;
2017-09-27 03:54:34 +00:00
use Throwable;
use Illuminate\Http\Response;
use Prologue\Alerts\AlertsMessageBag;
class DisplayException extends PterodactylException
{
const LEVEL_DEBUG = 'debug';
const LEVEL_INFO = 'info';
2017-10-06 05:16:22 +00:00
const LEVEL_WARNING = 'warning';
const LEVEL_ERROR = 'error';
2017-09-27 03:54:34 +00:00
/**
* @var string
*/
protected $level;
2017-03-19 23:36:50 +00:00
/**
* Exception constructor.
*
2017-09-27 03:54:34 +00:00
* @param string $message
* @param Throwable|null $previous
* @param string $level
2017-10-24 02:10:32 +00:00
* @param int $code
2017-03-19 23:36:50 +00:00
*/
2017-10-24 02:10:32 +00:00
public function __construct($message, Throwable $previous = null, $level = self::LEVEL_ERROR, $code = 0)
{
parent::__construct($message, $code, $previous);
2017-09-27 03:54:34 +00:00
if (! is_null($previous)) {
Log::{$level}($previous);
}
$this->level = $level;
}
2017-09-27 03:54:34 +00:00
/**
* @return string
*/
public function getErrorLevel()
{
return $this->level;
}
/**
* Render the exception to the user by adding a flashed message to the session
* and then redirecting them back to the page that they came from. If the
* request originated from an API hit, return the error in JSONAPI spec format.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Http\JsonResponse|\Illuminate\Http\RedirectResponse
*/
public function render($request)
{
if ($request->expectsJson()) {
return response()->json(Handler::convertToArray($this, [
'detail' => $this->getMessage(),
2018-01-21 22:02:03 +00:00
]), method_exists($this, 'getStatusCode') ? $this->getStatusCode() : Response::HTTP_BAD_REQUEST);
}
app()->make(AlertsMessageBag::class)->danger($this->getMessage())->flash();
return redirect()->back()->withInput();
}
}