-
Notifications
You must be signed in to change notification settings - Fork 10
/
index.php
98 lines (80 loc) · 2.95 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<?php
/*
* PIMPED APACHE-STATUS
*
*/
global $aSrvStatus;
global $aSrvMeta;
// --- load default and user config
require("inc_config.php");
require("inc_menu.php");
if($bIsAuthenticated){
// --- check update param ... re-locate into admin
if (array_key_exists('action', $_GET) && $_GET['action']){
header('location: admin/'. str_replace('&','&',getNewQs()). '&action='.$_GET['action']);
}
require_once './classes/serverstatus.class.php';
$oServerStatus = new ServerStatus();
// given status url overrides server selection
if (array_key_exists("url", $_GET)) {
// $parts= parse_url($_GET["url"]);
$sTestUrl = $_GET["url"];
}
$i = 0;
if (isset($sTestUrl)) {
$oServerStatus->addServer('url-'.md5($sTestUrl), array('status-url' => $sTestUrl));
} else if ($aServers2Collect) {
foreach ($aServers2Collect as $sWebserver) {
$oServerStatus->addServer($sWebserver, $aServergroups[$aEnv["active"]["group"]]['servers'][$sWebserver]);
$i++;
}
}
$oLog->add('start $oServerStatus->getStatus() ');
$aStatus = $oServerStatus->getStatus();
if (count($aStatus["errors"])) {
foreach ($aStatus["errors"] as $sErr) {
$oMsg->add($sErr, 'error');
}
}
$oLog->add('done $oServerStatus->getStatus() ');
$aSrvStatus = $aStatus["data"];
$aSrvMeta = $aStatus["meta"];
if (!count($aServers2Collect) && isset($aCfgUser) ) {
$oMsg->add(sprintf($aLangTxt['error-no-server-in-group'], $aEnv["active"]["group"]), 'error');
}
} else {
$aEnv["active"]["view"]='login.php';
}
// ----------------------------------------------------------------------
//
// GENERATE OUTPUT
//
// ----------------------------------------------------------------------
// ----------------------------------------------------------------------
// create content
// ----------------------------------------------------------------------
require_once './classes/datarenderer.class.php';
$oDatarenderer = new Datarenderer();
// ----------------------------------------------------------------------
// page
// ----------------------------------------------------------------------
$oLog->add('generating output');
include("./classes/page.class.php");
$oPage = new Page();
$oPage->setOutputtype('html');
// load out_html.php in the skin directory
$oLog->add(__FILE__ . ' start including view ' . $aEnv["active"]["view"]);
$content='';
if (!@include(__DIR__ . '/views/' . $aEnv["active"]["view"])) {
$oMsg->add('View could not be included: ' . $aEnv["active"]["view"], 'error');
}
$oLog->add(__FILE__ . ' view done');
$oLog->add(__FILE__ . ' inc_pagetemplate.php start');
include ('./inc_pagetemplate.php');
$oLog->add(__FILE__ . ' inc_pagetemplate.php done');
$oLog->add('sending page');
// v 2.04.01 - no debug code on data output
if($aCfg["debug"] && $aEnv["active"]["skin"]!=='data'){
$oPage->addContent($oLog->render());
}
echo $oPage->render();