nginxsonarrradarrplexorganizrdashboardbookmarkapplication-dashboardmuximuxlandingpagestartpagelandinghtpcserverhomepagesabnzbdheimdallembycouchpotatonzbget
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
72 lines
2.1 KiB
72 lines
2.1 KiB
<?php namespace App\SupportedApps;
|
|
|
|
use GuzzleHttp\Exception\GuzzleException;
|
|
use GuzzleHttp\Client;
|
|
|
|
class Nzbget implements Contracts\Applications, Contracts\Livestats {
|
|
|
|
public $config;
|
|
|
|
public function defaultColour()
|
|
{
|
|
return '#124019';
|
|
}
|
|
public function icon()
|
|
{
|
|
return 'supportedapps/nzbget.png';
|
|
}
|
|
public function configDetails()
|
|
{
|
|
return 'nzbget';
|
|
}
|
|
public function testConfig()
|
|
{
|
|
$res = $this->buildRequest('status');
|
|
switch($res->getStatusCode()) {
|
|
case 200:
|
|
echo 'Successfully connected to the API';
|
|
break;
|
|
case 401:
|
|
echo 'Failed: Invalid credentials';
|
|
break;
|
|
default:
|
|
throw new MyException("Invalid response from api...");
|
|
break;
|
|
}
|
|
}
|
|
public function executeConfig()
|
|
{
|
|
$res = $this->buildRequest('status');
|
|
$data = json_decode($res->getBody());
|
|
//$data->result->RemainingSizeMB = '10000000';
|
|
//$data->result->DownloadRate = '100000000';
|
|
$queue_size = format_bytes($data->result->RemainingSizeMB*1000*1000, false, ' <span>', '</span>');
|
|
$current_speed = format_bytes($data->result->DownloadRate, false, ' <span>');
|
|
|
|
$output = '
|
|
<ul class="livestats">
|
|
<li><span class="title">Queue</span><strong>'.$queue_size.'</strong></li>
|
|
<li><span class="title">Speed</span><strong>'.$current_speed.'/s</span></strong></li>
|
|
</ul>
|
|
';
|
|
return $output;
|
|
}
|
|
public function buildRequest($endpoint)
|
|
{
|
|
$config = $this->config;
|
|
$url = $config->url;
|
|
$username = $config->username;
|
|
$password = $config->password;
|
|
|
|
$rebuild_url = str_replace('http://', 'http://'.$username.':'.$password.'@', $url);
|
|
$rebuild_url = str_replace('https://', 'https://'.$username.':'.$password.'@', $rebuild_url);
|
|
|
|
$api_url = $rebuild_url.'jsonrpc/'.$endpoint;
|
|
|
|
$client = new Client(['http_errors' => false]);
|
|
$res = $client->request('GET', $api_url);
|
|
return $res;
|
|
|
|
}
|
|
|
|
}
|