]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - html/cgi-bin/hardwaregraphs.cgi
Syntax fixes in several CGIs
[people/pmueller/ipfire-2.x.git] / html / cgi-bin / hardwaregraphs.cgi
CommitLineData
3961e831
AF
1#!/usr/bin/perl
2###############################################################################
3# #
4# IPFire.org - A linux based firewall #
1e18d32b 5# Copyright (C) 2005-2011 IPFire Team #
3961e831
AF
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
22use strict;
23
24# enable only the following on debugging purpose
bcad0fd0
CS
25#use warnings;
26#use CGI::Carp 'fatalsToBrowser';
3961e831
AF
27
28require '/var/ipfire/general-functions.pl';
29require "${General::swroot}/lang.pl";
30require "${General::swroot}/header.pl";
31require "${General::swroot}/graphs.pl";
32
2d281532
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
3961e831 38my %sensorsettings = ();
3961e831 39
3961e831 40my @sensorsgraphs = ();
bcad0fd0 41my @sensorsdir = `ls -dA $mainsettings{'RRDLOG'}/collectd/localhost/sensors-*/`;
2d281532 42foreach (@sensorsdir){
3961e831
AF
43 chomp($_);chop($_);
44 foreach (`ls $_/*`){
45 chomp($_);
46 push(@sensorsgraphs,$_);
47 }
48}
49
2d281532
CS
50my @querry = split(/\?/,$ENV{'QUERY_STRING'});
51$querry[0] = '' unless defined $querry[0];
52$querry[1] = 'hour' unless defined $querry[1];
53
54if ( $querry[0] =~ "hwtemp"){
55 print "Content-type: image/png\n\n";
56 binmode(STDOUT);
57 &Graphs::updatehwtempgraph($querry[1]);
58}elsif ( $querry[0] =~ "hwfan"){
59 print "Content-type: image/png\n\n";
60 binmode(STDOUT);
61 &Graphs::updatehwfangraph($querry[1]);
62}elsif ( $querry[0] =~ "hwvolt"){
63 print "Content-type: image/png\n\n";
64 binmode(STDOUT);
65 &Graphs::updatehwvoltgraph($querry[1]);
30189c50
AF
66}elsif ( $querry[0] =~ "thermaltemp"){
67 print "Content-type: image/png\n\n";
68 binmode(STDOUT);
69 &Graphs::updatethermaltempgraph($querry[1]);
269e21c6 70}elsif ( $querry[0] =~ "sd?" ){
2d281532
CS
71 print "Content-type: image/png\n\n";
72 binmode(STDOUT);
73 &Graphs::updatehddgraph($querry[0],$querry[1]);
ca9c45b3
AF
74}elsif ( $querry[0] =~ "nvme?" ){
75 print "Content-type: image/png\n\n";
76 binmode(STDOUT);
77 &Graphs::updatehddgraph($querry[0],$querry[1]);
2d281532
CS
78}else{
79 &Header::showhttpheaders();
fb6446d2 80 &Header::openpage($Lang::tr{'hardware graphs'}, 1, '');
2d281532
CS
81 &Header::openbigbox('100%', 'left');
82
83 &Header::getcgihash(\%sensorsettings);
84
85 if ( $sensorsettings{'ACTION'} eq $Lang::tr{'save'} ) {
86 foreach(@sensorsgraphs){
87 chomp($_);
88 $_ =~ /\/(.*)sensors-(.*)\/(.*)\.rrd/;
89 my $label = $2.$3;$label=~ s/-//g;
e4e74858
CS
90 if ( $sensorsettings{'LINE-'.$label} ne "on" ){
91 $sensorsettings{'LINE-'.$label} = 'off';
92 } elsif ($sensorsettings{'LINE-'.$label} eq "on" ){
93 $sensorsettings{'LINE-'.$label} = 'checked';
94 }
95 $sensorsettings{'LABEL-'.$label} =~ s/\W//g;
2d281532
CS
96 }
97 &General::writehash("${General::swroot}/sensors/settings", \%sensorsettings);
3961e831 98 }
3961e831 99
ca9c45b3 100 my @disks = `ls -1 /sys/block | grep -E '^sd|^nvme' | sort | uniq`;
2d281532
CS
101
102 foreach (@disks){
103 my $disk = $_;
104 chomp $disk;
105 my @array = split(/\//,$disk);
106
107 &Header::openbox('100%', 'center', "$array[$#array] $Lang::tr{'graph'}");
108 &Graphs::makegraphbox("hardwaregraphs.cgi",$array[$#array],"day");
109 &Header::closebox();
3961e831 110 }
2d281532 111
0d08de33 112 if ( `ls $mainsettings{'RRDLOG'}/collectd/localhost/thermal-thermal_zone* 2>/dev/null` ) {
e4e74858
CS
113 &Header::openbox('100%', 'center', "ACPI Thermal-Zone Temp $Lang::tr{'graph'}");
114 &Graphs::makegraphbox("hardwaregraphs.cgi","thermaltemp","day");
115 &Header::closebox();
30189c50
AF
116 }
117
0d08de33 118 if ( `ls $mainsettings{'RRDLOG'}/collectd/localhost/sensors-*/temperature-* 2>/dev/null` ) {
e4e74858 119 &Header::openbox('100%', 'center', "hwtemp $Lang::tr{'graph'}");
a249ccd2 120 &Graphs::makegraphbox("hardwaregraphs.cgi","hwtemp","day");
e4e74858 121 Header::closebox();
30114625 122 }
2d281532 123
0d08de33 124 if ( `ls $mainsettings{'RRDLOG'}/collectd/localhost/sensors-*/fanspeed-* 2>/dev/null` ) {
e4e74858
CS
125 &Header::openbox('100%', 'center', "hwfan $Lang::tr{'graph'}");
126 &Graphs::makegraphbox("hardwaregraphs.cgi","hwfan","day");
127 &Header::closebox();
30114625 128 }
2d281532 129
0d08de33 130 if ( `ls $mainsettings{'RRDLOG'}/collectd/localhost/sensors-*/voltage-* 2>/dev/null` ) {
e4e74858 131 &Header::openbox('100%', 'center', "hwvolt $Lang::tr{'graph'}");
a249ccd2 132 &Graphs::makegraphbox("hardwaregraphs.cgi","hwvolt","day");
e4e74858 133 &Header::closebox();
30114625 134 }
3961e831 135
0d08de33 136 if ( `ls $mainsettings{'RRDLOG'}/collectd/localhost/sensors-* 2>/dev/null` ) {
e4e74858 137 sensorsbox();
30189c50 138 }
2d281532
CS
139 &Header::closebigbox();
140 &Header::closepage();
3961e831 141
3961e831
AF
142}
143
3961e831 144
2d281532
CS
145sub sensorsbox {
146 &Header::openbox('100%', 'center', "$Lang::tr{'mbmon settings'}");
3961e831 147
2d281532
CS
148 print <<END
149<form method='post' action='$ENV{'SCRIPT_NAME'}'>
150<table width='100%' border='0' cellspacing='5' cellpadding='0' align='center'>
151<tr>
152 <td align='right' width='40%'><b>$Lang::tr{'mbmon display'}</b></td>
153 <td align='left'><b>$Lang::tr{'mbmon label'}</b></td>
154</tr>
3961e831
AF
155END
156;
2d281532
CS
157
158 foreach (@sensorsgraphs){
159 $_ =~ /\/(.*)sensors-(.*)\/(.*)\.rrd/;
160 my $label = $2.$3;$label=~ s/-//g;
161 $sensorsettings{'LABEL-'.$label}="$label";
162 $sensorsettings{'LINE-'.$label}="checked";
163 &General::readhash("${General::swroot}/sensors/settings", \%sensorsettings);
164 print("<tr><td align='right'><input type='checkbox' name='LINE-$label' $sensorsettings{'LINE-'.$label} /></td>");
165 print("<td><input type='text' name='LABEL-$label' value='$sensorsettings{'LABEL-'.$label}' size='25' /></td></tr>\n");
166 }
167
168 print <<END
169<tr>
1d55fccd 170 <td align='center' colspan='2' ><input type='submit' name='ACTION' value='$Lang::tr{'save'}' /></td>
2d281532
CS
171</tr>
172</table>
173</form>
3961e831
AF
174END
175;
2d281532 176 &Header::closebox();
3961e831 177}