@ -6,8 +6,16 @@
* The dashboard is based of the Bootstrap dashboard template.
*/
if (file_exists("./pgs/functions.php")) { require_once("./pgs/functions.php"); } else { die("functions.php does not exist."); }
if (file_exists("./pgs/config.inc.php")) { require_once("./pgs/config.inc.php"); } else { die("config.inc.php does not exist."); }
if (file_exists("./pgs/functions.php")) {
require_once("./pgs/functions.php");
} else {
die("functions.php does not exist.");
}
if (file_exists("./pgs/config.inc.php")) {
require_once("./pgs/config.inc.php");
} else {
die("config.inc.php does not exist.");
}
if (!class_exists('ParseXML')) require_once("./pgs/class.parsexml.php");
if (!class_exists('Node')) require_once("./pgs/class.node.php");
@ -29,26 +37,25 @@ if ($CallingHome['Active']) {
if (!file_exists($CallingHome['HashFile'])) {
$Hash = CreateCode(16);
$LastSync = 0;
$Ressource = @fopen($CallingHome['HashFile'],"w");
$Ressource = @fopen($CallingHome['HashFile'], "w");
if ($Ressource) {
@fwrite($Ressource, "<?php \n ");
@fwrite($Ressource, "\n".'$LastSync = 0;');
@fwrite($Ressource, "\n".'$Hash = "'.$Hash.'";');
@fwrite($Ressource, "\n\n".'?>');
@fwrite($Ressource, "\n" . '$LastSync = 0;');
@fwrite($Ressource, "\n" . '$Hash = "' . $Hash . '";');
@fwrite($Ressource, "\n\n" . '?>');
@fclose($Ressource);
@exec("chmod 777 ".$CallingHome['HashFile']);
@exec("chmod 777 " . $CallingHome['HashFile']);
$CallHomeNow = true;
}
}
else {
} else {
include($CallingHome['HashFile']);
if ($LastSync < (time() - $CallingHome['PushDelay'])) {
$Ressource = @fopen($CallingHome['HashFile'],"w");
$Ressource = @fopen($CallingHome['HashFile'], "w");
if ($Ressource) {
@fwrite($Ressource, "<?php \n ");
@fwrite($Ressource, "\n".'$LastSync = '.time().';');
@fwrite($Ressource, "\n".'$Hash = "'.$Hash.'";');
@fwrite($Ressource, "\n\n".'?>');
@fwrite($Ressource, "\n" . '$LastSync = ' . time() . ';');
@fwrite($Ressource, "\n" . '$Hash = "' . $Hash . '";');
@fwrite($Ressource, "\n\n" . '?>');
@fclose($Ressource);
}
$CallHomeNow = true;
@ -62,25 +69,25 @@ if ($CallingHome['Active']) {
$Reflector->PrepareReflectorXML();
$Reflector->CallHome();
}
}
else {
} else {
$Hash = "";
}
?>
<!DOCTYPE html>
< html lang = "en" >
< head >
< head >
< meta charset = "utf-8" >
< meta http-equiv = "X-UA-Compatible" content = "IE=edge" >
< meta name = "viewport" content = "width=device-width, initial-scale=1" >
< meta name = "description" content = " <?php echo $PageOptions [ 'MetaDescription' ]; ?> " />
< meta name = "keywords" content = " <?php echo $PageOptions [ 'MetaKeywords' ]; ?> " />
< meta name = "author" content = " <?php echo $PageOptions [ 'MetaAuthor' ]; ?> " />
< meta name = "revisit" content = " <?php echo $PageOptions [ 'MetaRevisit' ]; ?> " />
< meta name = "robots" content = " <?php echo $PageOptions [ 'MetaAuthor' ]; ?> " />
< meta name = "description" content = " <?php echo $PageOptions [ 'MetaDescription' ]; ?> " />
< meta name = "keywords" content = " <?php echo $PageOptions [ 'MetaKeywords' ]; ?> " />
< meta name = "author" content = " <?php echo $PageOptions [ 'MetaAuthor' ]; ?> " />
< meta name = "revisit" content = " <?php echo $PageOptions [ 'MetaRevisit' ]; ?> " />
< meta name = "robots" content = " <?php echo $PageOptions [ 'MetaAuthor' ]; ?> " />
< link rel = "icon" href = "./favicon.ico" type = "image/vnd.microsoft.icon" >
< meta http-equiv = "content-type" content = "text/html; charset=utf-8" / >
< title > <?php echo $Reflector -> GetReflectorName (); ?> Reflector Dashboard</ title >
< link rel = "icon" href = "./favicon.ico" type = "image/vnd.microsoft.icon" >
<!-- Bootstrap core CSS -->
< link href = "css/bootstrap.min.css" rel = "stylesheet" >
@ -104,28 +111,31 @@ else {
function ReloadPage() {
document.location.href = "./index.php';
if (isset($_GET['show'])) {
echo '?show='.$_GET['show'];
echo '?show=' . $_GET['show'];
}
echo '";
}';
if (!isset($_GET['show']) || (($_GET['show'] != 'liveircddb') & & ($_GET['show'] != 'reflectors') & & ($_GET['show'] != 'interlinks'))) {
echo '
setTimeout(ReloadPage, '.$PageOptions['PageRefreshDelay'].');';
setTimeout(ReloadPage, ' . $PageOptions['PageRefreshDelay'] . ');';
}
echo '
< / script > ';
}
if (!isset($_GET['show'])) $_GET['show'] = "";
?>
?>
< / head >
< body >
<?php if ( file_exists ( "./tracking.php" )) { include_once ( "tracking.php" ); } ?>
< nav class = "navbar navbar-inverse navbar-fixed-top" >
<?php if ( file_exists ( "./tracking.php" )) {
include_once("tracking.php");
} ?>
< nav class = "navbar navbar-inverse navbar-fixed-top" >
< div class = "container-fluid" >
< div class = "navbar-header" >
< button type = "button" class = "navbar-toggle collapsed" data-toggle = "collapse" data-target = "#navbar" aria-expanded = "false" aria-controls = "navbar" >
< button type = "button" class = "navbar-toggle collapsed" data-toggle = "collapse" data-target = "#navbar"
aria-expanded="false" aria-controls="navbar">
< span class = "sr-only" > Toggle navigation< / span >
< span class = "icon-bar" > < / span >
< span class = "icon-bar" > < / span >
@ -135,64 +145,84 @@ else {
< / div >
< div id = "navbar" class = "navbar-collapse collapse" >
< ul class = "nav navbar-nav navbar-right" >
< li class = "navbar-info" > <?php echo $Reflector -> GetVersion (); ?> - Dashboard v<?php echo $PageOptions [ 'DashboardVersion' ]; ?> </ li >
< li class = "navbar-info" > Service uptime: <?php echo FormatSeconds ( $Reflector -> GetServiceUptime ()); ?> </ li >
< li class = "navbar-info" > <?php echo $Reflector -> GetVersion (); ?> - Dashboard
v<?php echo $PageOptions [ 'DashboardVersion' ]; ?> </ li >
< li class = "navbar-info" > Service
uptime: <?php echo FormatSeconds ( $Reflector -> GetServiceUptime ()); ?> </ li >
< / ul >
< / div >
< / div >
< / nav >
< / nav >
< div class = "container-fluid" >
< div class = "container-fluid" >
< div class = "row" >
< div class = "col-sm-3 col-md-2 sidebar" >
< ul class = "nav nav-sidebar" >
< li <?php echo (( $_GET [ 'show' ] == "users" ) || ( $_GET [ 'show' ] == "" )) ? ' class="active"' : '' ; ?> >< a href = "./index.php" > Users / Modules</ a ></ li >
< li <?php echo ( $_GET [ 'show' ] == "repeaters" ) ? ' class="active"' : '' ; ?> >< a href = "./index.php?show=repeaters" > Repeaters / Nodes (<?php echo $Reflector -> NodeCount (); ?> )</ a ></ li >
< li <?php echo ( $_GET [ 'show' ] == "peers" ) ? ' class="active"' : '' ; ?> >< a href = "./index.php?show=peers" > Peers (<?php echo $Reflector -> PeerCount (); ?> )</ a ></ li >
< li <?php echo ( $_GET [ 'show' ] == "reflectors" ) ? ' class="active"' : '' ; ?> >< a href = "./index.php?show=reflectors" > Reflectorlist</ a ></ li >
< li <?php echo ( $_GET [ 'show' ] == "liveircddb" ) ? ' class="active"' : '' ; ?> >< a href = "./index.php?show=liveircddb" > D-Star live</ a ></ li >
< li <?php echo (( $_GET [ 'show' ] == "users" ) || ( $_GET [ 'show' ] == "" )) ? ' class="active"' : '' ; ?> >< a
href="./index.php">Users / Modules< / a > < / li >
< li <?php echo ( $_GET [ 'show' ] == "repeaters" ) ? ' class="active"' : '' ; ?> >< a
href="./index.php?show=repeaters">Repeaters / Nodes (<?php echo $Reflector -> NodeCount (); ?>
)< / a > < / li >
< li <?php echo ( $_GET [ 'show' ] == "peers" ) ? ' class="active"' : '' ; ?> >< a href = "./index.php?show=peers" > Peers
(<?php echo $Reflector -> PeerCount (); ?> )</ a ></ li >
< li <?php echo ( $_GET [ 'show' ] == "reflectors" ) ? ' class="active"' : '' ; ?> >< a
href="./index.php?show=reflectors">Reflectorlist< / a > < / li >
< li <?php echo ( $_GET [ 'show' ] == "liveircddb" ) ? ' class="active"' : '' ; ?> >< a
href="./index.php?show=liveircddb">D-Star live< / a > < / li >
< / ul >
< / div >
< div class = "col-sm-9 col-sm-offset-3 col-md-10 col-md-offset-2 main" >
<?php
<?php
if ($CallingHome['Active']) {
if (!is_readable($CallingHome['HashFile']) & & (!is_writeable($CallingHome['HashFile']))) {
echo '
< div class = "error" >
your private hash in '.$CallingHome['HashFile'].' could not be created, please check your config file and the permissions for the defined folder.
your private hash in ' . $CallingHome['HashFile'] . ' could not be created, please check your config file and the permissions for the defined folder.
< / div > ';
}
}
switch ($_GET['show']) {
case 'users' : require_once("./pgs/users.php"); break;
case 'repeaters' : require_once("./pgs/repeaters.php"); break;
case 'liveircddb' : require_once("./pgs/liveircddb.php"); break;
case 'peers' : require_once("./pgs/peers.php"); break;
case 'reflectors' : require_once("./pgs/reflectors.php"); break;
default : require_once("./pgs/users.php");
case 'users' :
require_once("./pgs/users.php");
break;
case 'repeaters' :
require_once("./pgs/repeaters.php");
break;
case 'liveircddb' :
require_once("./pgs/liveircddb.php");
break;
case 'peers' :
require_once("./pgs/peers.php");
break;
case 'reflectors' :
require_once("./pgs/reflectors.php");
break;
default :
require_once("./pgs/users.php");
}
?>
?>
< / div >
< / div >
< / div >
< / div >
< footer class = "footer" >
< footer class = "footer" >
< div class = "container" >
< p >< a href = "mailto: <?php echo $PageOptions [ 'ContactEmail' ]; ?> " > <?php echo $PageOptions [ 'ContactEmail' ]; ?> </ a ></ p >
< p >< a href = "mailto: <?php echo $PageOptions [ 'ContactEmail' ]; ?> " > <?php echo $PageOptions [ 'ContactEmail' ]; ?> </ a >
< / p >
< / div >
< / footer >
< / footer >
<!-- Bootstrap core JavaScript
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
< script src = "https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js" > < / script >
< script > window . jQuery || document . write ( '<script src="../../assets/js/vendor/jquery.min.js"><\/script>' ) < / script >
< script src = "js/bootstrap.min.js" > < / script >
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
< script src = "js/ie10-viewport-bug-workaround.js" > < / script >
<!-- Placed at the end of the document so the pages load faster -->
< script src = "https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js" > < / script >
< script > window . jQuery || document . write ( '<script src="../../assets/js/vendor/jquery.min.js"><\/script>' ) < / script >
< script src = "js/bootstrap.min.js" > < / script >
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
< script src = "js/ie10-viewport-bug-workaround.js" > < / script >
< / body >
< / html >