2016-09-05 20:21:36 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Pterodactyl - Panel
|
2017-01-24 22:57:08 +00:00
|
|
|
* Copyright (c) 2015 - 2017 Dane Everitt <dane@daneeveritt.com>.
|
2016-09-05 20:21:36 +00:00
|
|
|
*
|
2017-09-26 02:43:01 +00:00
|
|
|
* This software is licensed under the terms of the MIT license.
|
|
|
|
* https://opensource.org/licenses/MIT
|
2016-09-05 20:21:36 +00:00
|
|
|
*/
|
2016-12-07 22:46:38 +00:00
|
|
|
|
2017-04-02 17:19:39 +00:00
|
|
|
namespace Pterodactyl\Transformers\User;
|
2016-09-05 20:21:36 +00:00
|
|
|
|
2017-04-02 17:19:39 +00:00
|
|
|
use GuzzleHttp\Client;
|
|
|
|
use League\Fractal\TransformerAbstract;
|
|
|
|
use GuzzleHttp\Exception\ConnectException;
|
2016-09-05 20:21:36 +00:00
|
|
|
|
2017-04-02 17:19:39 +00:00
|
|
|
class StatsTransformer extends TransformerAbstract
|
2016-09-05 20:21:36 +00:00
|
|
|
{
|
|
|
|
/**
|
2017-04-02 17:19:39 +00:00
|
|
|
* Return a generic transformed subuser array.
|
2016-09-05 20:21:36 +00:00
|
|
|
*
|
2017-03-19 17:20:33 +00:00
|
|
|
* @return array
|
2016-09-05 20:21:36 +00:00
|
|
|
*/
|
2017-04-02 17:19:39 +00:00
|
|
|
public function transform(Client $client)
|
2016-09-05 20:21:36 +00:00
|
|
|
{
|
2017-04-02 17:19:39 +00:00
|
|
|
try {
|
|
|
|
$res = $client->request('GET', '/server', ['http_errors' => false]);
|
2017-02-11 01:26:38 +00:00
|
|
|
|
2017-04-02 17:19:39 +00:00
|
|
|
if ($res->getStatusCode() !== 200) {
|
|
|
|
return [
|
|
|
|
'error' => 'Error: HttpResponseException. Recieved non-200 HTTP status code from daemon: ' . $res->statusCode(),
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
$json = json_decode($res->getBody());
|
|
|
|
|
|
|
|
return [
|
2017-04-02 20:51:56 +00:00
|
|
|
'id' => 1,
|
2017-04-02 17:19:39 +00:00
|
|
|
'status' => $json->status,
|
|
|
|
'resources' => $json->proc,
|
|
|
|
];
|
|
|
|
} catch (ConnectException $ex) {
|
|
|
|
return [
|
|
|
|
'error' => 'Error: ConnectException. Unable to contact the daemon to request server status.',
|
|
|
|
'exception' => (config('app.debug')) ? $ex->getMessage() : null,
|
|
|
|
];
|
|
|
|
}
|
2016-09-05 20:21:36 +00:00
|
|
|
}
|
|
|
|
}
|