ajout heimdall
This commit is contained in:
66
heimdall/config/www/SupportedApps/Jellyfin/Jellyfin.php
Executable file
66
heimdall/config/www/SupportedApps/Jellyfin/Jellyfin.php
Executable file
@@ -0,0 +1,66 @@
|
||||
<?php namespace App\SupportedApps\Jellyfin;
|
||||
|
||||
class Jellyfin extends \App\SupportedApps implements \App\EnhancedApps
|
||||
{
|
||||
public $config;
|
||||
|
||||
function __construct()
|
||||
{
|
||||
}
|
||||
|
||||
public function test()
|
||||
{
|
||||
$test = parent::appTest(
|
||||
$this->url("System/Info/Public"),
|
||||
$this->getAttrs()
|
||||
);
|
||||
echo $test->status;
|
||||
}
|
||||
|
||||
public function livestats()
|
||||
{
|
||||
$status = "inactive";
|
||||
$res = parent::execute($this->url("Items/Counts"), $this->getAttrs());
|
||||
$result = json_decode($res->getBody());
|
||||
$details = ["visiblestats" => []];
|
||||
foreach ($this->config->availablestats as $stat) {
|
||||
$newstat = new \stdClass();
|
||||
$newstat->title = self::getAvailableStats()[$stat];
|
||||
$newstat->value = $result->{$stat};
|
||||
$details["visiblestats"][] = $newstat;
|
||||
}
|
||||
return parent::getLiveStats($status, $details);
|
||||
}
|
||||
public function url($endpoint)
|
||||
{
|
||||
$api_url = parent::normaliseurl($this->config->url) . $endpoint;
|
||||
return $api_url;
|
||||
}
|
||||
|
||||
private function getAttrs()
|
||||
{
|
||||
return [
|
||||
"headers" => [
|
||||
"X-MediaBrowser-Token" => $this->config->password,
|
||||
],
|
||||
];
|
||||
}
|
||||
|
||||
public static function getAvailableStats()
|
||||
{
|
||||
return [
|
||||
"MovieCount" => "Movies",
|
||||
"SeriesCount" => "Series",
|
||||
"EpisodeCount" => "Episodes",
|
||||
"ArtistCount" => "Artists",
|
||||
"ProgramCount" => "Programs",
|
||||
"TrailerCount" => "Trailers",
|
||||
"SongCount" => "Songs",
|
||||
"AlbumCount" => "Albums",
|
||||
"MusicVideoCount" => "MusicVideos",
|
||||
"BoxSetCount" => "BoxSets",
|
||||
"BookCount" => "Books",
|
||||
"ItemCount" => "Items",
|
||||
];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user