Heimdall-Apps/Portainer/Portainer.php
jeremysherriff 7870578b55
Handle multiple Portainer Endpoints
Use a simple foreach loop instead of [0]
2021-10-25 14:35:12 +13:00

97 lines
2.5 KiB
PHP

<?php namespace App\SupportedApps\Portainer;
use Exception;
class Portainer extends \App\SupportedApps implements \App\EnhancedApps {
public $config;
function __construct() {
}
public function test() {
try {
$token = $this->auth();
echo "Successfully communicated with the API";
} catch (Exception $err) {
echo $err->getMessage();
}
}
public function auth() {
$attrs = [];
$body["username"] = $this->config->username;
$body["password"] = $this->config->password;
$vars = [
'http_errors' => false,
'timeout' => 5,
'body' => json_encode($body)
];
$result = parent::execute($this->url('api/auth'), $attrs, $vars, 'POST');
if (null === $result) {
throw new Exception("Could not connect to Portainer");
}
$response = json_decode($result->getBody());
if (!isset($response->jwt)) {
throw new Exception("Invalid credentials");
}
return $response->jwt;
}
public function livestats() {
$status = 'inactive';
$running = 0;
$stopped = 0;
$token = $this->auth();
$headers = [
'Authorization' => 'Bearer ' . $token,
'Accept' => 'application/json',
];
$attrs = [
'headers' => $headers
];
$result = parent::execute($this->url('api/endpoints?limit=100&start=0'), $attrs, []);
if (null === $result) {
throw new Exception("Could not connect to Portainer");
}
$response = json_decode($result->getBody());
if (count($response) === 0) {
throw new Exception("No endpoints");
}
foreach ($response as $endpoint) {
if (count($endpoint->Snapshots) === 0) {
throw new Exception("No snapshots");
}
$snapshot = $endpoint->Snapshots[0];
$data = [
$running += $snapshot->RunningContainerCount,
$stopped += $snapshot->StoppedContainerCount
];
}
$data = [
'running' => $running,
'stopped' => $stopped
];
if ($running || $stopped) {
$status = 'active';
}
return parent::getLiveStats($status, $data);
}
public function url($endpoint) {
$api_url = parent::normaliseurl($this->config->url).$endpoint;
return $api_url;
}
}