MMDVMHost-Dashboard/include/functions.php

367 lines
11 KiB
PHP
Raw Normal View History

2016-04-30 15:38:12 +02:00
<?php
2016-05-09 22:39:47 +02:00
function getMMDVMHostVersion() {
2016-05-10 21:50:33 +02:00
// returns creation-time of MMDVMHost as version-number
2016-05-09 22:39:47 +02:00
$filename = MMDVMHOSTPATH . "MMDVMHost";
if (file_exists($filename)) {
return date("Y-m-d", filectime($filename));
}
}
function isProcessRunning($processname) {
exec("pgrep " . $processname, $pids);
if(empty($pids)) {
// process not running!
return false;
} else {
// process running!
return true;
}
}
2016-05-09 22:39:47 +02:00
function getMMDVMConfig() {
2016-05-10 21:50:33 +02:00
// loads MMDVM.ini into array for further use
2016-05-09 22:39:47 +02:00
$mmdvmconfigs = array();
2016-05-10 18:01:13 +02:00
if ($configs = fopen(MMDVMINIPATH."MMDVM.ini", 'r')) {
2016-05-09 22:39:47 +02:00
while ($config = fgets($configs)) {
array_push($mmdvmconfigs, trim ( $config, " \t\n\r\0\x0B"));
2016-05-09 22:39:47 +02:00
}
fclose($configs);
}
return $mmdvmconfigs;
}
function getCallsign($mmdvmconfigs) {
2016-05-10 21:50:33 +02:00
// returns Callsign from MMDVM-config
return getConfigItem("General", "Callsign", $mmdvmconfigs);
2016-05-10 09:17:50 +02:00
}
function getConfigItem($section, $key, $configs) {
2016-05-10 21:50:33 +02:00
// retrieves the corresponding config-entry within a [section]
2016-05-10 09:17:50 +02:00
$sectionpos = array_search("[" . $section . "]", $configs) + 1;
$len = count($configs);
while(startsWith($configs[$sectionpos],$key."=") === false && $sectionpos <= ($len) ) {
if (startsWith($configs[$sectionpos],"[")) {
return null;
}
$sectionpos++;
2016-05-09 22:39:47 +02:00
}
2016-05-10 09:17:50 +02:00
return substr($configs[$sectionpos], strlen($key) + 1);
2016-05-09 22:39:47 +02:00
}
function getEnabled ($mode, $mmdvmconfigs) {
2016-05-10 21:50:33 +02:00
// returns enabled/disabled-State of mode
2016-05-10 09:17:50 +02:00
return getConfigItem($mode, "Enable", $mmdvmconfigs);
2016-05-09 22:39:47 +02:00
}
function showMode($mode, $mmdvmconfigs) {
2016-05-10 21:50:33 +02:00
// shows if mode is enabled or not.
2016-05-09 22:39:47 +02:00
?>
<td><span class="label <?php
2016-05-10 09:17:50 +02:00
if (getEnabled($mode, $mmdvmconfigs) == 1) {
if ($mode == "D-Star Network") {
if (isProcessRunning(IRCDDBGATEWAY)) {
echo "label-success";
} else {
echo "label-danger";
}
} else {
if ($mode == "D-Star" || $mode =="DMR" || $mode =="DMR Network" || $mode =="System Fusion" || $mode =="System Fusion Network") {
if (isProcessRunning("MMDVMHost")) {
echo "label-success";
} else {
echo "label-danger";
}
}
}
2016-05-10 09:17:50 +02:00
} else {
2016-05-10 15:15:26 +02:00
echo "label-default";
2016-05-09 22:39:47 +02:00
}
?>"><?php echo $mode ?></span></td>
<?php
}
function getLog() {
// Open Logfile and copy loglines into LogLines-Array()
$logLines = array();
if ($log = fopen(MMDVMLOGFILE,'r')) {
while ($logLine = fgets($log)) {
array_push($logLines, $logLine);
}
fclose($log);
}
return $logLines;
}
2016-04-30 15:38:12 +02:00
// 00000000001111111111222222222233333333334444444444555555555566666666667777777777888888888899999999990000000000111111111122
// 01234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901
// M: 2016-04-29 00:15:00.013 D-Star, received network header from DG9VH /ZEIT to CQCQCQ via DCS002 S
// M: 2016-04-29 19:43:21.839 DMR Slot 2, received network voice header from DL1ESZ to TG 9
2016-04-30 19:33:41 +02:00
// M: 2016-04-30 14:57:43.072 DMR Slot 2, received RF voice header from DG9VH to 5000
function getHeardList($logLines) {
2016-05-03 21:36:47 +02:00
array_multisort($logLines,SORT_DESC);
2016-04-30 15:38:12 +02:00
$heardList = array();
$ts1duration = "";
$ts1loss = "";
$ts1ber = "";
$ts2duration = "";
$ts2loss = "";
$ts2ber = "";
$dstarduration = "";
$dstarloss = "";
$dstarber = "";
2016-05-04 21:37:24 +02:00
$ysfduration = "";
$ysfloss = "";
$ysfber = "";
foreach ($logLines as $logLine) {
$duration = "";
$loss = "";
$ber = "";
//removing invalid lines
if(strpos($logLine,"BS_Dwn_Act")) {
2016-05-03 06:50:49 +02:00
continue;
} else if(strpos($logLine,"invalid access")) {
2016-05-03 06:50:49 +02:00
continue;
2016-05-04 17:37:30 +02:00
} else if(strpos($logLine,"received RF header for wrong repeater")) {
continue;
}
if(strpos($logLine,"end of") || strpos($logLine,"watchdog has expired")) {
2016-05-03 21:36:47 +02:00
$lineTokens = explode(", ",$logLine);
2016-05-03 21:36:47 +02:00
$duration = strtok($lineTokens[2], " ");
$loss = $lineTokens[3];
2016-05-05 22:45:33 +02:00
// if RF-Packet, no LOSS would be reported, so BER is in LOSS position
2016-05-03 21:36:47 +02:00
if (startsWith($loss,"BER")) {
$ber = substr($loss, 5);
$loss = "";
} else {
$loss = strtok($loss, " ");
$ber = substr($lineTokens[4], 5);
}
2016-05-05 22:45:33 +02:00
switch (substr($logLine, 27, strpos($logLine,",") - 27)) {
case "D-Star":
$dstarduration = $duration;
$dstarloss = $loss;
$dstarber = $ber;
break;
case "DMR Slot 1":
$ts1duration = $duration;
$ts1loss = $loss;
$ts1ber = $ber;
break;
case "DMR Slot 2":
$ts2duration = $duration;
$ts2loss = $loss;
$ts2ber = $ber;
break;
2016-05-04 21:37:24 +02:00
case "YSF":
$ysfduration = $duration;
$ysfloss = $loss;
$ysfber = $ber;
break;
}
2016-05-03 21:36:47 +02:00
}
2016-05-05 22:45:33 +02:00
$timestamp = substr($logLine, 3, 19);
$mode = substr($logLine, 27, strpos($logLine,",") - 27);
$callsign2 = substr($logLine, strpos($logLine,"from") + 5, strpos($logLine,"to") - strpos($logLine,"from") - 6);
$callsign = $callsign2;
if (strpos($callsign2,"/") > 0) {
$callsign = substr($callsign2, 0, strpos($callsign2,"/"));
}
$callsign = trim($callsign);
2016-05-05 22:45:33 +02:00
$id ="";
if ($mode == "D-Star") {
$id = substr($callsign2, strpos($callsign2,"/") + 1);
}
2016-05-05 22:45:33 +02:00
$target = substr($logLine, strpos($logLine, "to") + 3);
$source = "RF";
if (strpos($logLine,"network") > 0 ) {
$source = "Network";
}
switch ($mode) {
case "D-Star":
$duration = $dstarduration;
$loss = $dstarloss;
$ber = $dstarber;
break;
case "DMR Slot 1":
$duration = $ts1duration;
$loss = $ts1loss;
$ber = $ts1ber;
break;
case "DMR Slot 2":
$duration = $ts2duration;
$loss = $ts2loss;
$ber = $ts2ber;
break;
2016-05-04 21:37:24 +02:00
case "YSF":
$duration = $ysfduration;
$loss = $ysfloss;
$ber = $ysfber;
break;
}
2016-05-05 22:45:33 +02:00
// Callsign or ID should be less than 8 chars long, otherwise it could be errorneous
2016-05-03 22:27:01 +02:00
if ( strlen($callsign) < 8 ) {
2016-05-03 21:36:47 +02:00
array_push($heardList, array($timestamp, $mode, $callsign, $id, $target, $source, $duration, $loss, $ber));
$duration = "";
$loss ="";
$ber = "";
2016-04-30 15:38:12 +02:00
}
}
return $heardList;
}
function getLastHeard($logLines) {
2016-05-10 21:50:33 +02:00
//returns last heard list from log
$lastHeard = array();
$heardCalls = array();
$heardList = getHeardList($logLines);
2016-04-30 15:38:12 +02:00
foreach ($heardList as $listElem) {
2016-05-04 21:37:24 +02:00
if ( ($listElem[1] == "D-Star") || ($listElem[1] == "YSF") || (startsWith($listElem[1], "DMR")) ) {
if(!(array_search($listElem[2]."#".$listElem[1].$listElem[3], $heardCalls) > -1)) {
array_push($heardCalls, $listElem[2]."#".$listElem[1].$listElem[3]);
array_push($lastHeard, $listElem);
}
2016-04-30 15:38:12 +02:00
}
}
return $lastHeard;
}
function getActualMode($logLines, $mmdvmconfigs) {
2016-05-10 21:50:33 +02:00
// returns mode of repeater actual working in
$lastHeard = getLastHeard($logLines);
array_multisort($lastHeard,SORT_DESC);
$listElem = $lastHeard[0];
$timestamp = new DateTime($listElem[0]);
$mode = $listElem[1];
if (startsWith($mode, "DMR")) {
$mode = "DMR";
}
$now = new DateTime();
$hangtime = getConfigItem("General", "ModeHang", $mmdvmconfigs);
$timestamp->add(new DateInterval('PT' . $hangtime . 'S'));
if ($now->format('U') > $timestamp->format('U')) {
2016-05-12 17:43:25 +02:00
return "idle";
} else {
return $mode;
2016-05-02 10:19:08 +02:00
}
}
function getDSTARLinks() {
2016-05-10 21:50:33 +02:00
// returns link-states of all D-Star-modules
if (filesize(LINKLOGPATH) == 0) {
return "not linked";
}
$out = "<table>";
if ($linkLog = fopen(LINKLOGPATH,'r')) {
while ($linkLine = fgets($linkLog)) {
$linkDate = "&nbsp;";
$protocol = "&nbsp;";
$linkType = "&nbsp;";
$linkSource = "&nbsp;";
$linkDest = "&nbsp;";
$linkDir = "&nbsp;";
// Reflector-Link, sample:
// 2011-09-22 02:15:06: DExtra link - Type: Repeater Rptr: DB0LJ B Refl: XRF023 A Dir: Outgoing
// 2012-04-03 08:40:07: DPlus link - Type: Dongle Rptr: DB0ERK B Refl: REF006 D Dir: Outgoing
// 2012-04-03 08:40:07: DCS link - Type: Repeater Rptr: DB0ERK C Refl: DCS001 C Dir: Outgoing
if(preg_match_all('/^(.{19}).*(D[A-Za-z]*).*Type: ([A-Za-z]*).*Rptr: (.{8}).*Refl: (.{8}).*Dir: (.{8})/',$linkLine,$linx) > 0){
$linkDate = $linx[1][0];
$protocol = $linx[2][0];
$linkType = $linx[3][0];
$linkSource = $linx[4][0];
$linkDest = $linx[5][0];
$linkDir = $linx[6][0];
}
// CCS-Link, sample:
// 2013-03-30 23:21:53: CCS link - Rptr: PE1AGO C Remote: PE1KZU Dir: Incoming
if(preg_match_all('/^(.{19}).*(CC[A-Za-z]*).*Rptr: (.{8}).*Remote: (.{8}).*Dir: (.{8})/',$linkLine,$linx) > 0){
$linkDate = $linx[1][0];
$protocol = $linx[2][0];
$linkType = $linx[2][0];
$linkSource = $linx[3][0];
$linkDest = $linx[4][0];
$linkDir = $linx[5][0];
}
// Dongle-Link, sample:
// 2011-09-24 07:26:59: DPlus link - Type: Dongle User: DC1PIA Dir: Incoming
// 2012-03-14 21:32:18: DPlus link - Type: Dongle User: DC1PIA Dir: Incoming
if(preg_match_all('/^(.{19}).*(D[A-Za-z]*).*Type: ([A-Za-z]*).*User: (.{6,8}).*Dir: (.*)$/',$linkLine,$linx) > 0){
$linkDate = $linx[1][0];
$protocol = $linx[2][0];
$linkType = $linx[3][0];
$linkSource = "&nbsp;";
$linkDest = $linx[4][0];
$linkDir = $linx[5][0];
}
2016-05-07 19:43:22 +02:00
$out .= "<tr><td>" . $linkSource . "</td><td>&nbsp;" . $protocol . "-link</td><td>&nbsp;to&nbsp;</td><td>" . $linkDest . "</td><td>&nbsp;" . $linkDir . "</td></tr>";
}
}
$out .= "</table>";
return $out;
}
2016-05-02 10:19:08 +02:00
function getActualLink($logLines, $mode) {
2016-05-10 21:50:33 +02:00
// returns actual link state of specific mode
2016-05-02 10:19:08 +02:00
//M: 2016-05-02 07:04:10.504 D-Star link status set to "Verlinkt zu DCS002 S"
2016-05-02 17:36:19 +02:00
//M: 2016-04-03 16:16:18.638 DMR Slot 2, received network voice header from 4000 to 2625094
//M: 2016-04-03 19:30:03.099 DMR Slot 2, received network voice header from 4020 to 2625094
2016-05-02 10:19:08 +02:00
array_multisort($logLines,SORT_DESC);
switch ($mode) {
case "D-Star":
if (isProcessRunning(IRCDDBGATEWAY)) {
return getDSTARLinks();
} else {
return "ircddbgateway not running!";
}
2016-05-02 10:19:08 +02:00
break;
case "DMR Slot 1":
2016-05-02 17:36:19 +02:00
foreach ($logLines as $logLine) {
if(substr($logLine, 27, strpos($logLine,",") - 27) == "DMR Slot 1") {
$from = substr($logLine, strpos($logLine,"from") + 5, strpos($logLine,"to") - strpos($logLine,"from") - 6);
if (strlen($from) == 4 && startsWith($from,"4")) {
if ($from == "4000") {
return "not linked";
} else {
return $from;
}
}
}
}
return "not linked";
2016-05-02 10:19:08 +02:00
break;
case "DMR Slot 2":
2016-05-02 17:36:19 +02:00
foreach ($logLines as $logLine) {
if(substr($logLine, 27, strpos($logLine,",") - 27) == "DMR Slot 2") {
$from = substr($logLine, strpos($logLine,"from") + 5, strpos($logLine,"to") - strpos($logLine,"from") - 6);
if (strlen($from) == 4 && startsWith($from,"4")) {
if ($from == "4000") {
return "not linked";
} else {
return $from;
}
}
}
}
return "not linked";
2016-05-02 10:19:08 +02:00
break;
2016-05-02 17:36:19 +02:00
}
return "something went wrong!";
2016-05-02 10:19:08 +02:00
}
//Some basic inits
2016-05-09 22:39:47 +02:00
$mmdvmconfigs = getMMDVMConfig();
$logLines = getLog();
2016-04-30 15:38:12 +02:00
?>