mirror of
https://github.com/linuxserver/Heimdall-Apps.git
synced 2026-02-06 03:42:06 +08:00
* Make FileBrowser Enhanced App * Remove initial values for FileBrowser data * Dynamic unit for FileBrowser * Fix lint error
102 lines
2.7 KiB
PHP
102 lines
2.7 KiB
PHP
<?php
|
|
|
|
namespace App\SupportedApps\FileBrowser;
|
|
|
|
class FileBrowser extends \App\SupportedApps implements \App\EnhancedApps
|
|
{
|
|
public $config;
|
|
|
|
//protected $login_first = true; // Uncomment if api requests need to be authed first
|
|
//protected $method = 'POST'; // Uncomment if requests to the API should be set by POST
|
|
|
|
public function __construct()
|
|
{
|
|
//$this->jar = new \GuzzleHttp\Cookie\CookieJar; // Uncomment if cookies need to be set
|
|
}
|
|
|
|
private function getToken()
|
|
{
|
|
$username = $this->config->username;
|
|
$password = $this->config->password;
|
|
$authHeader = $this->config->authHeader;
|
|
|
|
$attrs = [
|
|
"headers" => [
|
|
"Content-Type" => "application/json"
|
|
],
|
|
"body" => json_encode([
|
|
"username" => $username,
|
|
"password" => $password
|
|
])
|
|
];
|
|
if ($authHeader !== null) {
|
|
$attrs["headers"][$authHeader] = $username;
|
|
}
|
|
|
|
$res = parent::execute($this->url("api/login"), $attrs, null, "POST");
|
|
|
|
switch ($res->getStatusCode()) {
|
|
case 200:
|
|
return $res->getBody()->getContents();
|
|
case 403:
|
|
throw new \Exception("Invalid username/password");
|
|
default:
|
|
throw new \Exception("Could not connect to FileBrowser");
|
|
}
|
|
}
|
|
|
|
private function formatBytes($bytes, $precision = 2) {
|
|
$units = array('B', 'KB', 'MB', 'GB', 'TB');
|
|
$bytes = max($bytes, 0);
|
|
$pow = floor(($bytes ? log($bytes) : 0) / log(1024));
|
|
$pow = min($pow, count($units) - 1);
|
|
|
|
$bytes /= pow(1024, $pow);
|
|
|
|
$value = round($bytes, $precision);
|
|
$unit = $units[$pow];
|
|
|
|
return [
|
|
"value" => $value,
|
|
"unit" => $unit
|
|
];
|
|
}
|
|
|
|
public function test()
|
|
{
|
|
try {
|
|
$token = $this->getToken();
|
|
echo "Successfully communicated with the API";
|
|
} catch (Exception $err) {
|
|
echo $err->getMessage();
|
|
}
|
|
}
|
|
|
|
public function livestats()
|
|
{
|
|
$status = "inactive";
|
|
|
|
$token = $this->getToken();
|
|
$attrs = [
|
|
"headers" => [
|
|
"X-AUTH" => $token
|
|
],
|
|
];
|
|
$res = parent::execute($this->url("api/usage"), $attrs);
|
|
$details = json_decode($res->getBody());
|
|
|
|
if ($details != null) {
|
|
$data["used"] = $this->formatBytes($details->used);
|
|
$data["total"] = $this->formatBytes($details->total);
|
|
}
|
|
return parent::getLiveStats($status, $data);
|
|
}
|
|
|
|
public function url($endpoint)
|
|
{
|
|
$api_url = parent::normaliseurl($this->config->url) . $endpoint;
|
|
|
|
return $api_url;
|
|
}
|
|
}
|