sintonia/airtime_mvc/application/models/Systemstatus.php

145 lines
4.4 KiB
PHP
Raw Normal View History

<?php
class Application_Model_Systemstatus
{
public static function GetMonitStatus(){
$url = "http://localhost:2812/_status?format=xml";
$ch = curl_init();
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_USERPWD, "admin:monit");
$result = curl_exec($ch);
curl_close($ch);
$xmlDoc = new DOMDocument();
$xmlDoc->loadXML($result);
return $xmlDoc->documentElement;
}
public static function ExtractServiceInformation($p_docRoot, $p_serviceName){
$data = array("pid"=>"UNKNOWN",
"uptime"=>"UNKNOWN");
foreach ($p_docRoot->getElementsByTagName("service") AS $item)
{
if ($item->getElementsByTagName("name")->item(0)->nodeValue == $p_serviceName){
$data["pid"] = $item->getElementsByTagName("pid")->item(0)->nodeValue;
$data["uptime"] = $item->getElementsByTagName("uptime")->item(0)->nodeValue."s";
break;
}
}
return $data;
}
public static function GetPypoStatus(){
$docRoot = self::GetMonitStatus();
$data = self::ExtractServiceInformation($docRoot, "airtime-playout");
return array(
"process_id"=>$data["pid"],
"uptime_seconds"=>$data["uptime"]
);
}
public static function GetLiquidsoapStatus(){
$docRoot = self::GetMonitStatus();
$data = self::ExtractServiceInformation($docRoot, "airtime-liquidsoap");
return array(
"process_id"=>$data["pid"],
"uptime_seconds"=>$data["uptime"]
);
}
public static function GetShowRecorderStatus(){
$docRoot = self::GetMonitStatus();
$data = self::ExtractServiceInformation($docRoot, "airtime-show-recorder");
return array(
"process_id"=>$data["pid"],
"uptime_seconds"=>$data["uptime"]
);
}
public static function GetMediaMonitorStatus(){
$docRoot = self::GetMonitStatus();
$data = self::ExtractServiceInformation($docRoot, "airtime-media-monitor");
return array(
"process_id"=>$data["pid"],
"uptime_seconds"=>$data["uptime"]
);
}
public static function GetIcecastStatus(){
$docRoot = self::GetMonitStatus();
$data = self::ExtractServiceInformation($docRoot, "icecast2");
return array(
"process_id"=>$data["pid"],
"uptime_seconds"=>$data["uptime"]
);
}
public static function GetAirtimeVersion(){
return AIRTIME_VERSION;
}
/*
private function getCheckSystemResults(){
//exec("airtime-check-system", $output);
require_once "/usr/lib/airtime/utils/airtime-check-system.php";
$arrs = AirtimeCheck::CheckAirtimeDaemons();
$status = array("AIRTIME_VERSION" => AIRTIME_VERSION);
foreach($arrs as $arr){
$status[$arr[0]] = $arr[1];
}
$storDir = MusicDir::getStorDir()->getDirectory();
$freeSpace = disk_free_space($storDir);
$totalSpace = disk_total_space($storDir);
$status["DISK_SPACE"] = sprintf("%01.3f%%", $freeSpace/$totalSpace*100);
return $status;
}
public function getResults(){
$keyValues = $this->getCheckSystemResults();
$results = array();
$key = "AIRTIME_VERSION";
$results[$key] = array("Airtime Version", $keyValues[$key], false);
$triplets = array(array("PLAYOUT_ENGINE_RUNNING_SECONDS", "Playout Engine Status", true),
array("LIQUIDSOAP_RUNNING_SECONDS", "Liquidsoap Status", true),
array("MEDIA_MONITOR_RUNNING_SECONDS", "Media-Monitor Status", true),
array("SHOW_RECORDER_RUNNING_SECONDS", "Show-Recorder Status", true));
foreach($triplets as $triple){
list($key, $desc, $downloadLog) = $triple;
$results[$key] = array($desc, $this->convertRunTimeToPassFail($keyValues[$key]), $downloadLog);
}
$key = "DISK_SPACE";
$results[$key] = array("Disk Space Free: ", $keyValues[$key], false);
return $results;
}
private function convertRunTimeToPassFail($runTime){
return $runTime > 3 ? "Pass" : "Fail";
}
*/
}