Heimdall-Apps/LinkAce/LinkAce.php
Martijn van der Kleijn 9f17db3574 Fix linter issues
2024-01-29 18:11:41 +01:00

66 lines
1.6 KiB
PHP

<?php
namespace App\SupportedApps\LinkAce;
class LinkAce 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("api/v1/links"));
echo $test->status;
}
public function livestats()
{
$status = "inactive";
$res_links = parent::execute(
$this->url("api/v1/links"),
$this->attrs()
);
$links = json_decode($res_links->getBody(), true);
$res_tags = parent::execute($this->url("api/v1/tags"), $this->attrs());
$tags = json_decode($res_tags->getBody(), true);
$data = [];
if ($links) {
$data["links"] = $links["total"] ?? 0;
}
if ($tags) {
$data["tags"] = $tags["total"] ?? 0;
}
return parent::getLiveStats($status, $data);
}
public function url($endpoint)
{
$api_url = parent::normaliseurl($this->config->url) . $endpoint;
return $api_url;
}
public function attrs()
{
$apikey = $this->config->apikey;
$attrs = [
"headers" => [
"content-type" => "application/json",
"Authorization" => "Bearer " . $apikey,
],
];
return $attrs;
}
}