]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blob - html/cgi-bin/mac.cgi
Impoved mac.cgi page. Fixed table and added some comments.
[people/pmueller/ipfire-2.x.git] / html / cgi-bin / mac.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
32 my %macsettings=();
33 my $errormessage = '';
34
35 &Header::showhttpheaders();
36
37 &General::readhash("${General::swroot}/mac/settings", \%macsettings);
38
39 &Header::getcgihash(\%macsettings);
40
41 &Header::openpage($Lang::tr{'mac address title'}, 1, );
42
43 &Header::openbigbox('100%', 'left', '', $errormessage);
44
45 if ($macsettings{'ACTION'} eq $Lang::tr{'save'}) {
46 $macsettings{'MAC'} =~ s/\-/:/g;
47 my @mac = split(/:/,$macsettings{"MAC"});
48 if ($#mac == 5) {
49 foreach (@mac) {
50 unless ($_ =~ /^[a-fA-F0-9]{1,2}$/) {
51 $errormessage = $Lang::tr{'mac address error not valid'};
52 last;
53 }
54 }
55 } else {
56 $errormessage = $Lang::tr{'mac address error not valid'};
57 }
58 $macsettings{'MAC2'} =~ s/\-/:/g;
59
60 if ( not ($macsettings{'MAC2'} eq "" )) {
61 my @mac = split(/:/,$macsettings{"MAC2"});
62 if ($#mac == 5) {
63 foreach (@mac) {
64 unless ($_ =~ /^[a-fA-F0-9]{1,2}$/) {
65 $errormessage = $Lang::tr{'mac address error not valid'};
66 last;
67 }
68 }
69 } else {
70 $errormessage = $Lang::tr{'mac address error not valid'};
71 }
72 }
73 if ($errormessage eq "") {
74 $macsettings{'MAC'} =~ s/\:/-/g;
75 $macsettings{'MAC2'} =~ s/\:/-/g;
76 &General::writehash("${General::swroot}/mac/settings", \%macsettings);
77 &Header::openbox('100%', 'left', $Lang::tr{'mac address saved'});
78 print "<font class='base'>$Lang::tr{'mac address saved txt'}</font>\n";
79 &Header::closebox();
80 }
81 }
82 if ($macsettings{'ACTION'} eq $Lang::tr{'reconnect'}) {
83 system("/usr/local/bin/redctrl restart >/dev/null 2>&1 &");
84 &Header::openbox('100%', 'left', $Lang::tr{'mac address recon'} );
85 print "<font class='base'>$Lang::tr{'mac address done'}</font>\n";
86 &Header::closebox();
87 }
88 if ($macsettings{'ACTION'} eq $Lang::tr{'delete'} ) {
89 system("cat /dev/null > ${General::swroot}/mac/settings &");
90 &Header::openbox('100%', 'left', $Lang::tr{'mac address deleted'} );
91 print "<font class='base'>$Lang::tr{'mac address deleted txt'}</font>\n";
92 &Header::closebox();
93 }
94 if ($macsettings{'ACTION'} eq $Lang::tr{'reboot'}) {
95 &General::log($Lang::tr{'rebooting ipfire'});
96 system("/usr/local/bin/ipfirereboot boot");
97 &Header::openbox('100%', 'left', $Lang::tr{'rebooting ipfire'} );
98 print "&nbsp;&nbsp;<img src='/images/indicator.gif' /><br /><br />";
99 print "<meta http-equiv='refresh' content='120;'>";
100 &Header::closebox();
101 }
102
103 # DPC move error message to top so it is seen!
104 if ($errormessage) {
105 &Header::openbox('100%', 'left', $Lang::tr{'error messages'});
106 print "<font class='base'>$errormessage&nbsp;</font>\n";
107 &Header::closebox();
108 }
109
110 print "<form method='post' action='$ENV{'SCRIPT_NAME'}'>\n";
111
112 &Header::openbox('100%', 'left', $Lang::tr{'mac address header'});
113 print <<END
114
115 <table border="0" width='100%'>
116 <tr>
117 <td colspan="2"><font class='base'>$Lang::tr{'mac desc'}</font></td>
118 </tr>
119 <tr>
120 <td colspan="2">&nbsp;</td>
121 </tr>
122 <tr>
123 <td width="25%"><font class='base'>$Lang::tr{'mac new'}&nbsp;</font></td><td>
124 END
125 ;
126 if ($macsettings{'ACTION'} eq $Lang::tr{'delete'} ) {
127 print <<END
128 <input type="text" name="MAC" maxlength="17" value=''/></td>
129 END
130 ;
131 } else {
132 print <<END
133 <input type="text" name="MAC" maxlength="17" value='$macsettings{"MAC"}'/></td>
134 END
135 ;
136 }
137 print <<END
138 </tr>
139 <tr>
140 <td>&nbsp;</td>
141 </tr>
142 <tr>
143 <td><font class='base'>$Lang::tr{'mac2 new'}&nbsp;</font></td><td>
144 END
145 ;
146 if ($macsettings{'ACTION'} eq $Lang::tr{'delete'} ) {
147 print <<END
148 <input type="text" name="MAC2" maxlength="17" value=''/><img src='/blob.gif' alt='*' /></td>
149 END
150 ;
151 } else {
152 print <<END
153 <input type="text" name="MAC2" maxlength="17" value='$macsettings{"MAC2"}'/><img src='/blob.gif' alt='*' /></td>
154 END
155 ;
156 }
157 print <<END
158 </tr>
159 <tr>
160 <td colspan="2"><hr /></td>
161 </tr>
162 <tr>
163 <td colspan="2"><div align="center">
164 END
165 ;
166 if ($macsettings{'ACTION'} eq $Lang::tr{'delete'} ) {
167 print <<END
168 <input type='submit' name='ACTION' value='$Lang::tr{'save'}' />
169 &nbsp;&nbsp;&nbsp;&nbsp;
170 <input type='submit' name='ACTION' value='$Lang::tr{'delete'}' />
171 &nbsp;&nbsp;&nbsp;&nbsp;
172 <input type='submit' name='ACTION' value='$Lang::tr{'reboot'}' />
173 END
174 ;
175 } elsif ($macsettings{'ACTION'} eq $Lang::tr{'save'} && $errormessage eq "") {
176 print <<END
177 <input type='submit' name='ACTION' value='$Lang::tr{'save'}' />
178 &nbsp;&nbsp;&nbsp;&nbsp;
179 <input type='submit' name='ACTION' value='$Lang::tr{'delete'}' />
180 &nbsp;&nbsp;&nbsp;&nbsp;
181 <input type='submit' name='ACTION' value='$Lang::tr{'reconnect'}' />
182 END
183 ;
184 } elsif ($macsettings{'ACTION'} eq $Lang::tr{'save'}) {
185 print <<END
186 <input type='submit' name='ACTION' value='$Lang::tr{'save'}' />
187 END
188 ;
189 } else {
190 print <<END
191 <input type='submit' name='ACTION' value='$Lang::tr{'save'}' />
192 &nbsp;&nbsp;&nbsp;&nbsp;
193 <input type='submit' name='ACTION' value='$Lang::tr{'delete'}' />
194 END
195 ;
196 }
197 print <<END
198 </div></td>
199 </tr>
200 <tr>
201 <td colspan="2"align='left'>
202 <img src='/blob.gif' alt='*' />&nbsp;$Lang::tr{'this field may be blank'}</td>
203 </tr>
204
205 </table>
206
207 END
208 ;
209 &Header::closebox();
210
211 print "</form>\n";
212
213 &Header::closebigbox();
214
215 &Header::closepage();
216