1 |
|
<?php |
2 |
|
|
3 |
< |
// A test navigation thingy. |
4 |
< |
// pjm2@ukc.ac.uk |
3 |
> |
# Navigation for the i-scream reports. |
4 |
> |
# pjm2@ukc.ac.uk |
5 |
> |
# |
6 |
> |
# CONFIGURABLE CONSTANTS |
7 |
> |
# |
8 |
|
|
9 |
+ |
# The report directory, and the number of days to display. |
10 |
+ |
$reportDirectory = "/home/cut/pjm2/webpages/reports"; |
11 |
+ |
$maxDaysShown = 7; |
12 |
|
|
13 |
+ |
# Page appearance. |
14 |
+ |
$scaleImage = "24hour.gif"; |
15 |
+ |
$lineColor = "#9999ff"; |
16 |
+ |
|
17 |
+ |
# Files to include |
18 |
+ |
$titleHTML = "title.inc"; |
19 |
+ |
$bottomHTML = "bottom.inc"; |
20 |
+ |
$machineNameHTML = "machine_name.inc"; |
21 |
+ |
$reportHTML = "report.inc"; |
22 |
+ |
|
23 |
+ |
# What are the names of the report files? |
24 |
+ |
$reportLimitsFile = "i-maxmin.txt"; |
25 |
+ |
$reportChartFile = "i-chart.gif"; |
26 |
+ |
$reportChartDataFile = "i-data.txt"; |
27 |
+ |
|
28 |
+ |
# Submission details. |
29 |
+ |
$formMethod = "GET"; |
30 |
+ |
$thisPage = "browser.php"; |
31 |
+ |
|
32 |
+ |
# Leave this alone unless you know what you're doing ;) |
33 |
+ |
$minFileSize = 33; |
34 |
+ |
|
35 |
+ |
# |
36 |
+ |
# END CONFIGURATION |
37 |
+ |
|
38 |
+ |
|
39 |
+ |
|
40 |
+ |
|
41 |
+ |
|
42 |
+ |
# Used to return whether or not a report data file is empty. |
43 |
+ |
function isReportEmpty($filename, $minFileSize) { |
44 |
+ |
if (filesize($filename) < $minFileSize) { |
45 |
+ |
return TRUE; |
46 |
+ |
} |
47 |
+ |
return FALSE; |
48 |
+ |
} |
49 |
+ |
|
50 |
+ |
|
51 |
+ |
# return an array of subdirectories in the current directory. |
52 |
|
function getdirArray($dir='./',$sort='asort') { |
53 |
|
global $dir_file_count; |
54 |
|
if ( is_dir($dir) ) { |
56 |
|
while ( ($part = @readdir($fd)) == TRUE ) { |
57 |
|
clearstatcache(); |
58 |
|
if ($part != "." && $part != "..") { |
59 |
< |
$dir_array[] = $part; |
59 |
> |
if (preg_match("/^[0-9]{4}\-[0-9]{2}\-[0-9]{2}$/", $part)) { |
60 |
> |
$dir_array[] = $part; |
61 |
> |
} |
62 |
|
} |
63 |
|
} |
64 |
|
if($fd == TRUE) { |
76 |
|
} |
77 |
|
} |
78 |
|
|
32 |
– |
include("day.inc"); |
33 |
– |
|
79 |
|
?> |
80 |
|
|
81 |
< |
<html> |
37 |
< |
<body bgcolor="#ffffff"> |
81 |
> |
<? include($titleHTML); ?> |
82 |
|
|
83 |
< |
<table border="0" align="center" cellpadding="2" cellspacing="5"> |
40 |
< |
<tr> |
41 |
< |
<td> |
42 |
< |
<? include("left.inc"); ?> |
43 |
< |
</td> |
44 |
< |
<td> |
45 |
< |
<? include("title.inc"); ?> |
83 |
> |
<hr weight="1" color="<? echo $lineColor ?>"> |
84 |
|
|
85 |
+ |
<b>Most recent reports available</b> |
86 |
+ |
<form method="<? echo $formMethod ?>" action="<? echo $thisPage ?>"> |
87 |
+ |
<? |
88 |
|
|
89 |
< |
<font face="arial, sans-serif" size="2"> |
90 |
< |
<b>View reports for <? echo "$day" ?></b> |
91 |
< |
</font> |
89 |
> |
$file_array = getdirArray($reportDirectory,'rsort'); |
90 |
> |
print "<select size=\"1\" name=\"day\">"; |
91 |
> |
if ($day) { ?> |
92 |
> |
<option selected value="<? echo $day ?>"><? echo $day ?></option> |
93 |
> |
<option value="">----------------</option> |
94 |
> |
<? } |
95 |
> |
foreach($file_array as $file_name) { |
96 |
> |
if (is_dir($file_name)) { |
97 |
> |
$i++; |
98 |
> |
print "<option value=\"$file_name\">$file_name</option>"; |
99 |
> |
} |
100 |
> |
if ($i >= $maxDaysShown) { |
101 |
> |
break; |
102 |
> |
} |
103 |
> |
} |
104 |
> |
print "</select>"; |
105 |
|
|
106 |
< |
<p> |
106 |
> |
?> |
107 |
> |
<input type="submit" name="submit" value="Go"> |
108 |
> |
</form> |
109 |
|
|
110 |
< |
<form method="GET" action=""> |
110 |
> |
<hr weight="1" color="<? echo $lineColor ?>"> |
111 |
> |
|
112 |
> |
<? if ($day) { ?> |
113 |
> |
|
114 |
> |
<b>Available reports for <? echo $day ?></b> |
115 |
> |
|
116 |
> |
<form method="<? echo $formMethod ?>" action="<? echo $thisPage ?>"> |
117 |
|
<select size="1" name="machine_name"> |
118 |
< |
<? include("machine_name.inc"); ?> |
118 |
> |
<? if ($machine_name) { ?> |
119 |
> |
<option selected value="<? echo $machine_name ?>"><? echo $machine_name ?></option> |
120 |
> |
<option value="">----------------</option> |
121 |
> |
<? } else { ?> |
122 |
> |
<option selected value="">[select machine]</option> |
123 |
> |
<? } ?> |
124 |
> |
<? include("$day/$machineNameHTML"); ?> |
125 |
|
</select> |
126 |
|
|
127 |
|
<select size="1" name="report"> |
128 |
< |
<? include("report.inc"); ?> |
128 |
> |
<? if ($report) { ?> |
129 |
> |
<option selected value="<? echo $report ?>"><? echo $report ?></option> |
130 |
> |
<option value="">----------------</option> |
131 |
> |
<? } else { ?> |
132 |
> |
<option selected value="">[select report]</option> |
133 |
> |
<? } ?> |
134 |
> |
<? include("$day/$reportHTML"); ?> |
135 |
|
</select> |
136 |
|
|
137 |
< |
<input type="submit" name="submit" value="bung"> |
137 |
> |
<input type="hidden" name="day" value="<? echo $day ?>"> |
138 |
> |
<input type="submit" name="submit" value="Show"> |
139 |
|
</form> |
140 |
+ |
|
141 |
+ |
<hr weight="1" color="<? echo $lineColor ?>"> |
142 |
+ |
|
143 |
+ |
<? } ?> |
144 |
|
|
145 |
|
</p> |
146 |
|
|
147 |
|
|
148 |
|
<? |
149 |
< |
if ($submit == "bung") { |
150 |
< |
$url = escapeshellcmd("$day/$machine_name/$report/chart.gif"); |
151 |
< |
if (file_exists($url)) { |
152 |
< |
echo "<p><b>$machine_name - $report</b><br><img src=\"$url\" width=\"500\" height=\"250\"><br><img src=\"24hour.gif\" width=\"500\" height=\"39\"></p>"; |
149 |
> |
if ($submit == "Show" && $machine_name && $report) { |
150 |
> |
|
151 |
> |
include("$day/$machine_name/$report/$reportLimitsFile"); |
152 |
> |
|
153 |
> |
$url = escapeshellcmd("$day/$machine_name/$report/$reportChartFile"); |
154 |
> |
if (isReportEmpty("$day/$machine_name/$report/$reportChartDataFile", $minFileSize)) { |
155 |
> |
echo "Host <b>$machine_name</b> did not send any information about <b>$report</b> on <b>$day</b>. Please select another report."; |
156 |
|
} |
157 |
+ |
else if (file_exists($url)) { ?> |
158 |
+ |
|
159 |
+ |
<center><b>[<? echo $machine_name; ?>] - <? echo $report; ?></b></center> |
160 |
+ |
|
161 |
+ |
<table border="0" cellpadding="0" cellspacing="0"> |
162 |
+ |
<tr> |
163 |
+ |
<td align="right" valign="top"> |
164 |
+ |
<font size="2"><? printf("%.1f", $max_value); ?></font> |
165 |
+ |
</td> |
166 |
+ |
<td rowspan="2"> |
167 |
+ |
<img src="<? echo $url; ?>" width="500" height="250"> |
168 |
+ |
</td> |
169 |
+ |
</tr> |
170 |
+ |
<tr> |
171 |
+ |
<td align="right" valign="bottom"> |
172 |
+ |
<font size="2"><? echo $min_value; ?></font> |
173 |
+ |
</td> |
174 |
+ |
</tr> |
175 |
+ |
<tr> |
176 |
+ |
<td> </td> |
177 |
+ |
<td><img src="<? echo $scaleImage ?>" width="500" height="39"></td> |
178 |
+ |
</tr> |
179 |
+ |
</table> |
180 |
+ |
|
181 |
+ |
<hr weigth="1" color="<? echo $lineColor ?>"> |
182 |
+ |
|
183 |
+ |
<b>Extra data</b> |
184 |
+ |
<p> |
185 |
+ |
<a href="<? echo "$day/$machine_name/$report/$reportChartDataFile" ?>">Raw plot data</a><br> |
186 |
+ |
<a href="<? echo "$day/$machine_name/$report/$reportChartFile" ?>">GIF chart</a><br> |
187 |
+ |
<a href="<? echo "$day/$machine_name/$report/$reportLimitsFile" ?>">PHP y-axis limits include</a> |
188 |
+ |
|
189 |
+ |
<? } |
190 |
|
else { |
191 |
< |
echo "<p>The report could not be found.</p>"; |
191 |
> |
echo "<p>The report could not be found. Somebody must have deleted it!</p>"; |
192 |
|
} |
193 |
+ |
echo "<hr weight=\"1\" color=\"$lineColor\">"; |
194 |
|
} |
195 |
|
|
196 |
|
?> |
197 |
|
|
198 |
< |
<hr> |
83 |
< |
|
84 |
< |
<p> |
85 |
< |
<font face="arial, sans-serif" size="2"> |
86 |
< |
<b>Or browse all dates</b> |
87 |
< |
</font> |
88 |
< |
</p> |
89 |
< |
|
90 |
< |
<? |
91 |
< |
|
92 |
< |
$file_array = getdirArray('/home/cut/pjm2/webpages/reports','asort'); |
93 |
< |
foreach($file_array as $file_name) { |
94 |
< |
if (is_dir($file_name)) { |
95 |
< |
print "+ <a href=\"$file_name\">$file_name</a><br>"; |
96 |
< |
} |
97 |
< |
} |
98 |
< |
|
99 |
< |
?> |
100 |
< |
|
101 |
< |
<? include("bottom.inc"); ?> |
102 |
< |
|
103 |
< |
</body> |
104 |
< |
</html> |
198 |
> |
<? include($bottomHTML); ?> |