including some more dashboard components

This commit is contained in:
2026-03-05 06:34:27 +01:00
parent f03ec900c6
commit 7d8c36a771
57 changed files with 1694 additions and 0 deletions

View File

@@ -0,0 +1,184 @@
<?php
namespace App\SupportedApps\Pihole;
use Illuminate\Support\Facades\Log;
class Pihole 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()
{
$version = $this->config->version;
if ($version == 5) {
$test = parent::appTest($this->url("api.php?summaryRaw"));
echo $test->status;
}
if ($version == 6) {
$test = $this->getInfo();
if ($test["valid"]) {
echo "Successfully communicated with the API";
} else {
echo "Error while communicating with the API: " . $test["message"];
}
}
}
public function livestats()
{
$data = [];
$status = "inactive";
$version = $this->config->version;
if ($version == 5) {
$res = parent::execute($this->url("api.php?summaryRaw"));
$details = json_decode($res->getBody());
if ($details) {
$data["ads_blocked"] = number_format(
$details->ads_blocked_today
);
$data["ads_percentage"] = number_format(
$details->ads_percentage_today,
1
);
$status = "active";
}
}
if ($version == 6) {
$results = $this->getInfo();
if ($results["valid"]) {
$data["ads_blocked"] = $results["queries"];
$data["ads_percentage"] = $results["percent"];
$status = "active";
}
}
return parent::getLiveStats($status, $data);
}
public function url($endpoint)
{
$version = $this->config->version;
if ($version == 5) {
$apikey = $this->config->apikey;
$api_url = parent::normaliseurl($this->config->url) . $endpoint;
if ($apikey) {
$api_url .= "&auth=" . $apikey;
}
}
if ($version == 6) {
$api_url = parent::normaliseurl($this->config->url) . $endpoint;
}
return $api_url;
}
public function getInfo()
{
$ignoreTls = $this->getConfigValue("ignore_tls", false);
if ($ignoreTls) {
$attrs = [
"body" => json_encode(['password' => $this->config->apikey]),
"cookies" => $this->jar,
"verify" => false,
"headers" => [
"Content-Type" => "application/json",
"Accept" => "application/json",
],
];
$attrsid["verify"] = false;
} else {
$attrs = [
"body" => json_encode(['password' => $this->config->apikey]),
"cookies" => $this->jar,
"headers" => [
"Content-Type" => "application/json",
"Accept" => "application/json",
],
];
}
// Create session and retrieve data
$response = parent::execute($this->url("api/auth"), $attrs, null, "POST");
$auth = json_decode($response->getBody());
if (!$auth->session->valid) {
$data = [
'valid' => false,
'validity' => -1,
'message' => $auth->session->message,
'queries' => 0,
'percent' => 0
];
return $data;
}
if ($ignoreTls) {
$attrsid = [
"body" => json_encode(['sid' => $auth->session->sid]),
"cookies" => $this->jar,
"verify" => false,
"headers" => [
"Content-Type" => "application/json",
"Accept" => "application/json",
],
];
} else {
$attrsid = [
"body" => json_encode(['sid' => $auth->session->sid]),
"cookies" => $this->jar,
"headers" => [
"Content-Type" => "application/json",
"Accept" => "application/json",
],
];
}
// Get queries data
$responsesummary = parent::execute($this->url("api/stats/summary"), $attrsid, null, "GET");
$datasummary = json_decode($responsesummary->getBody());
// After retrieving the data the session is closed to declutter
parent::execute($this->url("api/auth"), $attrsid, null, "DELETE");
// Extract data from the response
$valid = $auth->session->valid;
$validity = $auth->session->validity;
$message = $auth->session->message;
if (!$auth->session->valid) {
$queriesblocked = 0;
$percentblocked = 0;
} else {
$queriesblocked = $datasummary->queries->blocked;
$percentblocked = round($datasummary->queries->percent_blocked, 2);
}
$data = [
'valid' => $valid,
'validity' => $validity,
'message' => $message,
'queries' => $queriesblocked,
'percent' => $percentblocked
];
return $data;
}
public function getConfigValue($key, $default = null)
{
return isset($this->config) && isset($this->config->$key)
? $this->config->$key
: $default;
}
}