misc_pterodactyl-panel/app/Exceptions/Http/Connection/DaemonConnectionException.php

66 lines
2.1 KiB
PHP
Raw Normal View History

2017-10-06 05:16:22 +00:00
<?php
namespace Pterodactyl\Exceptions\Http\Connection;
use Illuminate\Support\Arr;
2018-01-31 02:36:59 +00:00
use Illuminate\Http\Response;
2017-10-06 05:16:22 +00:00
use GuzzleHttp\Exception\GuzzleException;
use Pterodactyl\Exceptions\DisplayException;
/**
* @method \GuzzleHttp\Exception\GuzzleException getPrevious()
*/
2017-10-06 05:16:22 +00:00
class DaemonConnectionException extends DisplayException
{
/**
* @var int
*/
2018-01-31 02:36:59 +00:00
private $statusCode = Response::HTTP_GATEWAY_TIMEOUT;
2017-10-06 05:16:22 +00:00
/**
* Throw a displayable exception caused by a daemon connection error.
*
* @param \GuzzleHttp\Exception\GuzzleException $previous
2019-09-06 04:32:57 +00:00
* @param bool $useStatusCode
2017-10-06 05:16:22 +00:00
*/
public function __construct(GuzzleException $previous, bool $useStatusCode = true)
2017-10-06 05:16:22 +00:00
{
/** @var \GuzzleHttp\Psr7\Response|null $response */
$response = method_exists($previous, 'getResponse') ? $previous->getResponse() : null;
if ($useStatusCode) {
$this->statusCode = is_null($response) ? $this->statusCode : $response->getStatusCode();
}
$message = trans('admin/server.exceptions.daemon_exception', [
2017-10-06 05:16:22 +00:00
'code' => is_null($response) ? 'E_CONN_REFUSED' : $response->getStatusCode(),
]);
// Attempt to pull the actual error message off the response and return that if it is not
// a 500 level error.
if ($this->statusCode < 500 && ! is_null($response)) {
$body = $response->getBody();
if (is_string($body) || (is_object($body) && method_exists($body, '__toString'))) {
$body = json_decode(is_string($body) ? $body : $body->__toString(), true);
$message = "[Wings Error]: " . Arr::get($body, 'error', $message);
}
}
$level = $this->statusCode >= 500 && $this->statusCode !== 504
? DisplayException::LEVEL_ERROR
: DisplayException::LEVEL_WARNING;
parent::__construct($message, $previous, $level);
2017-10-06 05:16:22 +00:00
}
/**
* Return the HTTP status code for this exception.
*
* @return int
*/
public function getStatusCode()
{
return $this->statusCode;
}
2017-10-06 05:16:22 +00:00
}