mirror of
https://github.com/linuxserver/Heimdall-Apps.git
synced 2026-02-13 06:21:41 +08:00
* Update Radarr.php Radarr was using normaliseurl (which strips the trailing `/`) without passing true to re-add said `/` as needed. * Update Sonarr.php Sonarr as well was using normaliseurl (which strips the trailing `/`) without passing true to re-add said `/` as needed. * Update Readarr.php Readarr as well was using normaliseurl (which strips the trailing `/`) without passing true to re-add said `/` as needed. * Update Lidarr.php Lidarr as well was using normaliseurl (which strips the trailing `/`) without passing true to re-add said `/` as needed. * Update Bazarr.php Bazarr as well was using normaliseurl (which strips the trailing `/`) without passing true to re-add said `/` as needed. * Update Prowlarr.php Prowlarr as well was using normaliseurl (which strips the trailing `/`) without passing true to re-add said `/` as needed.
54 lines
1.5 KiB
PHP
54 lines
1.5 KiB
PHP
<?php
|
|
|
|
namespace App\SupportedApps\Radarr;
|
|
|
|
class Radarr 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
|
|
}
|
|
|
|
public function test()
|
|
{
|
|
$test = parent::appTest($this->url("system/status"));
|
|
echo $test->status;
|
|
}
|
|
|
|
public function livestats()
|
|
{
|
|
$status = "inactive";
|
|
$data = [];
|
|
|
|
$movies = json_decode(parent::execute($this->url("movie"))->getBody());
|
|
$queue = json_decode(parent::execute($this->url("queue"))->getBody());
|
|
|
|
$collect = collect($movies);
|
|
$missing = $collect->where("monitored", true)->where("isAvailable", true)->where("hasFile", false);
|
|
|
|
$data = [];
|
|
if ($missing || $queue) {
|
|
$data["missing"] = $missing->count() ?? 0;
|
|
$data["queue"] = count($queue->records) ?? 0;
|
|
}
|
|
|
|
return parent::getLiveStats($status, $data);
|
|
}
|
|
|
|
public function url($endpoint)
|
|
{
|
|
$api_url =
|
|
parent::normaliseurl($this->config->url, true) .
|
|
"api/v3/" .
|
|
$endpoint .
|
|
"?apikey=" .
|
|
$this->config->apikey;
|
|
return $api_url;
|
|
}
|
|
}
|