]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blob - html/cgi-bin/system.cgi
Removed the old svn commands and started with git.
[people/pmueller/ipfire-2.x.git] / html / cgi-bin / system.cgi
1 #!/usr/bin/perl
2 ###############################################################################
3 # #
4 # IPFire.org - A linux based firewall #
5 # Copyright (C) 2007 Michael Tremer & Christian Schmidt #
6 # #
7 # This program is free software: you can redistribute it and/or modify #
8 # it under the terms of the GNU General Public License as published by #
9 # the Free Software Foundation, either version 3 of the License, or #
10 # (at your option) any later version. #
11 # #
12 # This program is distributed in the hope that it will be useful, #
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of #
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
15 # GNU General Public License for more details. #
16 # #
17 # You should have received a copy of the GNU General Public License #
18 # along with this program. If not, see <http://www.gnu.org/licenses/>. #
19 # #
20 ###############################################################################
21
22 use strict;
23
24 # enable only the following on debugging purpose
25 #use warnings;
26 #use CGI::Carp 'fatalsToBrowser';
27
28 require '/var/ipfire/general-functions.pl';
29 require "${General::swroot}/lang.pl";
30 require "${General::swroot}/header.pl";
31 require "${General::swroot}/graphs.pl";
32
33 my %color = ();
34 my %mainsettings = ();
35 &General::readhash("${General::swroot}/main/settings", \%mainsettings);
36 &General::readhash("/srv/web/ipfire/html/themes/".$mainsettings{'THEME'}."/include/colors.txt", \%color);
37
38 my %cgiparams=();
39
40 # Generate Graphs from rrd Data
41 &Graphs::updatecpugraph ("day");
42 &Graphs::updateloadgraph ("day");
43
44 &Header::showhttpheaders();
45 &Header::getcgihash(\%cgiparams);
46 &Header::openpage($Lang::tr{'status information'}, 1, '');
47 &Header::openbigbox('100%', 'left');
48
49 &Header::openbox('100%', 'center', "CPU $Lang::tr{'graph'}");
50 if (-e "$Header::graphdir/cpu-day.png") {
51 my $ftime = localtime((stat("$Header::graphdir/cpu-day.png"))[9]);
52 print "<center><b>$Lang::tr{'the statistics were last updated at'}: $ftime</b></center><br />\n";
53 print "<a href='/cgi-bin/graphs.cgi?graph=cpu'>";
54 print "<img alt='' src='/graphs/cpu-day.png' border='0' />";
55 print "</a>";
56 } else {
57 print $Lang::tr{'no information available'};
58 }
59 print "<br />\n";
60 &Header::closebox();
61
62 &Header::openbox('100%', 'center', "Load $Lang::tr{'graph'}");
63 if (-e "$Header::graphdir/load-day.png") {
64 my $ftime = localtime((stat("$Header::graphdir/load-day.png"))[9]);
65 print "<center><b>$Lang::tr{'the statistics were last updated at'}: $ftime</b></center><br />\n";
66 print "<a href='/cgi-bin/graphs.cgi?graph=load'>";
67 print "<img alt='' src='/graphs/load-day.png' border='0' />";
68 print "</a>";
69 } else {
70 print $Lang::tr{'no information available'};
71 }
72 print "<br />\n";
73 &Header::closebox();
74 &Header::closebigbox();
75 &Header::closepage();