]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - html/cgi-bin/system.cgi
Fix dahdi firmware download.
[people/pmueller/ipfire-2.x.git] / html / cgi-bin / system.cgi
CommitLineData
72fe12a9 1#!/usr/bin/perl
70df8302
MT
2###############################################################################
3# #
4# IPFire.org - A linux based firewall #
4e481c3a 5# Copyright (C) 2008 Michael Tremer & Christian Schmidt #
70df8302
MT
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###############################################################################
72fe12a9
MT
21
22use strict;
23
24# enable only the following on debugging purpose
cb5e9c6c
CS
25#use warnings;
26#use CGI::Carp 'fatalsToBrowser';
72fe12a9
MT
27
28require '/var/ipfire/general-functions.pl';
29require "${General::swroot}/lang.pl";
30require "${General::swroot}/header.pl";
350b52c5 31require "${General::swroot}/graphs.pl";
72fe12a9 32
f2fdd0c1
CS
33my %color = ();
34my %mainsettings = ();
35&General::readhash("${General::swroot}/main/settings", \%mainsettings);
36&General::readhash("/srv/web/ipfire/html/themes/".$mainsettings{'THEME'}."/include/colors.txt", \%color);
37
4e481c3a
CS
38my @querry = split(/\?/,$ENV{'QUERY_STRING'});
39$querry[0] = '' unless defined $querry[0];
40$querry[1] = 'hour' unless defined $querry[1];
72fe12a9 41
5dcc7ad7 42if ( $querry[0] =~ "cpufreq"){
4e481c3a
CS
43 print "Content-type: image/png\n\n";
44 binmode(STDOUT);
5dcc7ad7
AF
45 &Graphs::updatecpufreqgraph($querry[1]);
46}elsif ( $querry[0] =~ "cpu"){
bcad0fd0
CS
47 print "Content-type: image/png\n\n";
48 binmode(STDOUT);
5dcc7ad7 49 &Graphs::updatecpugraph($querry[1]);
4e481c3a
CS
50}elsif ( $querry[0] =~ "load"){
51 print "Content-type: image/png\n\n";
52 binmode(STDOUT);
53 &Graphs::updateloadgraph($querry[1]);
54}else{
55 &Header::showhttpheaders();
56 &Header::openpage($Lang::tr{'status information'}, 1, '');
57 &Header::openbigbox('100%', 'left');
72fe12a9 58
bcad0fd0
CS
59 if ( -e "$mainsettings{'RRDLOG'}/collectd/localhost/cpufreq/cpufreq-0.rrd"){
60 &Header::openbox('100%', 'center', "CPU $Lang::tr{'graph'}");
5dcc7ad7 61 &Graphs::makegraphbox("system.cgi","cpufreq","day","325");
bcad0fd0
CS
62 &Header::closebox();
63 }
64
4e481c3a 65 &Header::openbox('100%', 'center', "CPU $Lang::tr{'graph'}");
2d281532 66 &Graphs::makegraphbox("system.cgi","cpu","day","325");
4e481c3a 67 &Header::closebox();
72fe12a9 68
4e481c3a
CS
69 &Header::openbox('100%', 'center', "Load $Lang::tr{'graph'}");
70 &Graphs::makegraphbox("system.cgi","load","day");
71 &Header::closebox();
0950b1ec 72
4e481c3a
CS
73 &Header::closebigbox();
74 &Header::closepage();
72fe12a9 75}