]> git.ipfire.org Git - people/teissler/ipfire-2.x.git/blame - html/cgi-bin/ddns.cgi
Re-add missing language string "DNS Servers".
[people/teissler/ipfire-2.x.git] / html / cgi-bin / ddns.cgi
CommitLineData
ac1cfefa 1#!/usr/bin/perl
70df8302
MT
2###############################################################################
3# #
4# IPFire.org - A linux based firewall #
38b6ec33 5# Copyright (C) 2007-2011 IPFire Team <info@ipfire.org> #
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###############################################################################
ac1cfefa
MT
21
22use strict;
23
24# enable only the following on debugging purpose
25#use warnings;
26#use CGI::Carp 'fatalsToBrowser';
27
986e08d9 28require '/var/ipfire/general-functions.pl';
ac1cfefa
MT
29require "${General::swroot}/lang.pl";
30require "${General::swroot}/header.pl";
31
32#workaround to suppress a warning when a variable is used only once
33my @dummy = ( ${Header::table2colour}, ${Header::colouryellow} );
34undef (@dummy);
35
36my $ddnsprefix = $Lang::tr{'ddns noip prefix'};
37$ddnsprefix =~ s/%/$General::noipprefix/;
38
f2fdd0c1
CS
39my %color = ();
40my %mainsettings = ();
41&General::readhash("${General::swroot}/main/settings", \%mainsettings);
42&General::readhash("/srv/web/ipfire/html/themes/".$mainsettings{'THEME'}."/include/colors.txt", \%color);
43
ac1cfefa
MT
44# Files used
45my $setting = "${General::swroot}/ddns/settings";
46our $datafile = "${General::swroot}/ddns/config";
47
48my %settings=();
49#Settings1
50$settings{'BEHINDROUTER'} = 'RED_IP';
51$settings{'MINIMIZEUPDATES'} = '';
52
53#Settings2 for editing the multi-line list
54#Must not be saved !
55$settings{'HOSTNAME'} = '';
56$settings{'DOMAIN'} = '';
57$settings{'LOGIN'} = '';
58$settings{'PASSWORD'} = '';
59$settings{'PASSWORD2'} = '';
60$settings{'ENABLED'} = '';
61$settings{'PROXY'} = '';
62$settings{'WILDCARDS'} = '';
63$settings{'SERVICE'} = '';
64
65my @nosaved=('HOSTNAME','DOMAIN','LOGIN','PASSWORD','PASSWORD2',
66 'ENABLED','PROXY','WILDCARDS','SERVICE'); # List here ALL setting2 fields. Mandatory
67
68$settings{'ACTION'} = ''; # add/edit/remove
69$settings{'KEY1'} = ''; # point record for ACTION
70$settings{'KEY2'} = ''; # point record for ACTION
71
72my $errormessage = '';
73my $warnmessage = '';
74
75&Header::showhttpheaders();
76
77#Get GUI values
78&Header::getcgihash(\%settings);
79
80# Load multiline data
81our @current = ();
82if (open(FILE, "$datafile")) {
83 @current = <FILE>;
84 close (FILE);
85}
86
87#
88# Check Settings1 first because they are needed before working on @current
89#
90if ($settings{'ACTION'} eq $Lang::tr{'save'}) {
91 # No user input to check. !
92 #unless ($errormessage) { # Everything is ok, save settings
93 $settings{'BEHINDROUTERWAITLOOP'} = '-1'; # init & will update on next setddns.pl call
94 map (delete ($settings{$_}) ,(@nosaved,'ACTION','KEY1','KEY2'));# Must never be saved
95 &General::writehash($setting, \%settings); # Save good settings
96 $settings{'ACTION'} = $Lang::tr{'save'}; # Recreate 'ACTION'
97 map ($settings{$_}= '',(@nosaved,'KEY1','KEY2')); # and reinit var to empty
98 #}
99} else {
100 &General::readhash($setting, \%settings); # Get saved settings and reset to good if needed
101}
102
103#
104# Now manipulate the multi-line list with Settings2
105#
106# Toggle enable/disable field. Field is in second position
107if ($settings{'ACTION'} eq $Lang::tr{'toggle enable disable'}) {
108 #move out new line
109 chomp(@current[$settings{'KEY1'}]);
110 my @temp = split(/\,/,@current[$settings{'KEY1'}]);
111 my $K2=$settings{'KEY2'};
112 $temp[ $K2 ] = ( $temp[ $K2 ] eq 'on') ? '' : 'on'; # Toggle the field
113 @current[$settings{'KEY1'}] = join (',',@temp)."\n";
114 $settings{'KEY1'} = ''; # End edit mode
115 &General::log($Lang::tr{'ddns hostname modified'});
116
117 # Write changes to config file.
118 &WriteDataFile; # sort newly added/modified entry
119}
120
121if ($settings{'ACTION'} eq $Lang::tr{'add'}) {
122 # Validate inputs
123
124 unless ($settings{'LOGIN'} ne '') {
125 $errormessage = $Lang::tr{'username not set'};
126 }
127
128 # list box returns 'service optional synonyms'
129 # keep only first name
130 $settings{'SERVICE'} =~ s/ .*$//;
131
132 # for freedns.afraid.org, only 'connect string' is mandatory
133 if ($settings{'SERVICE'} ne 'freedns.afraid.org') {
134 unless ($settings{'SERVICE'} eq 'regfish.com' || $settings{'PASSWORD'} ne '') {
135 $errormessage = $Lang::tr{'password not set'};
136 }
137 unless ($settings{'PASSWORD'} eq $settings{'PASSWORD2'}) {
138 $errormessage = $Lang::tr{'passwords do not match'};
139 }
140
141 # Permit an empty HOSTNAME for the nsupdate, regfish, dyndns, enom, ovh, zoneedit, no-ip, easydns
ff6f0295 142 #and namecheap
ac1cfefa
MT
143 unless ($settings{'SERVICE'} eq 'zoneedit.com' || $settings{'SERVICE'} eq 'nsupdate' ||
144 $settings{'SERVICE'} eq 'dyndns-custom'|| $settings{'SERVICE'} eq 'regfish.com' ||
145 $settings{'SERVICE'} eq 'enom.com' || $settings{'SERVICE'} eq 'dnspark.com' ||
146 $settings{'SERVICE'} eq 'ovh.com' || $settings{'HOSTNAME'} ne '' ||
ff6f0295
AB
147 $settings{'SERVICE'} eq 'no-ip.com' || $settings{'SERVICE'} eq 'easydns.com' ||
148 $settings{'SERVICE'} eq 'namecheap.com' ) {
ac1cfefa
MT
149 $errormessage = $Lang::tr{'hostname not set'};
150 }
151 unless ($settings{'HOSTNAME'} eq '' || $settings{'HOSTNAME'} =~ /^[a-zA-Z_0-9-]+$/) {
152 $errormessage = $Lang::tr{'invalid hostname'};
153 }
154 unless ($settings{'DOMAIN'} ne '') {
155 $errormessage = $Lang::tr{'domain not set'};
156 }
157 unless ($settings{'DOMAIN'} =~ /^[a-zA-Z_0-9.-]+$/) {
158 $errormessage = $Lang::tr{'invalid domain name'};
159 }
160 unless ($settings{'DOMAIN'} =~ /[.]/) {
161 $errormessage = $Lang::tr{'invalid domain name'};
162 }
163 }
164
165 # recheck service wich don't need too much fields
166 if ($settings{'SERVICE'} eq 'cjb.net') {
167 $errormessage = ''; # clear previous error
168 unless ($settings{'LOGIN'} ne '') {
169 $errormessage = $Lang::tr{'username not set'};
170 }
171 unless ($settings{'PASSWORD'} ne '') {
172 $errormessage = $Lang::tr{'password not set'};
173 }
174 unless ($settings{'PASSWORD'} eq $settings{'PASSWORD2'}) {
175 $errormessage = $Lang::tr{'passwords do not match'};
176 }
177 }
178
179 unless ($errormessage) {
180 if ($settings{'KEY1'} eq '') { #add or edit ?
181 unshift (@current, "$settings{'SERVICE'},$settings{'HOSTNAME'},$settings{'DOMAIN'},$settings{'PROXY'},$settings{'WILDCARDS'},$settings{'LOGIN'},$settings{'PASSWORD'},$settings{'ENABLED'}\n");
182 &General::log($Lang::tr{'ddns hostname added'});
183 } else {
184 @current[$settings{'KEY1'}] = "$settings{'SERVICE'},$settings{'HOSTNAME'},$settings{'DOMAIN'},$settings{'PROXY'},$settings{'WILDCARDS'},$settings{'LOGIN'},$settings{'PASSWORD'},$settings{'ENABLED'}\n";
185 $settings{'KEY1'} = ''; # End edit mode
186 &General::log($Lang::tr{'ddns hostname modified'});
187 }
188 map ($settings{$_}='' ,@nosaved); # Clear fields
189 # Write changes to config file.
190 &WriteDataFile; # sort newly added/modified entry
191 }
192}
193
194if ($settings{'ACTION'} eq $Lang::tr{'edit'}) {
195 #move out new line
196 my $line = @current[$settings{'KEY1'}]; # KEY1 is the index in current
197 chomp($line);
198 my @temp = split(/\,/, $line);
199 $settings{'SERVICE'} = $temp[0];
200 $settings{'HOSTNAME'} = $temp[1];
201 $settings{'DOMAIN'} = $temp[2];
202 $settings{'PROXY'} = $temp[3];
203 $settings{'WILDCARDS'} = $temp[4];
204 $settings{'LOGIN'} = $temp[5];
205 $settings{'PASSWORD'} = $settings{'PASSWORD2'} = $temp[6];
206 $settings{'ENABLED'} = $temp[7];
207}
208
209if ($settings{'ACTION'} eq $Lang::tr{'remove'}) {
210 splice (@current,$settings{'KEY1'},1); # Delete line
211 open(FILE, ">$datafile") or die 'ddns datafile error';
212 print FILE @current;
213 close(FILE);
214 $settings{'KEY1'} = ''; # End remove mode
215 &General::log($Lang::tr{'ddns hostname removed'});
216 # Write changes to config file.
217 &WriteDataFile;
218}
219
220if ($settings{'ACTION'} eq $Lang::tr{'instant update'}) {
221 system('/usr/local/bin/setddns.pl', '-f');
222}
223
224
225if ($settings{'ACTION'} eq '')
226{
227 $settings{'SERVICE'} = 'dyndns.org';
228 $settings{'ENABLED'} = 'on';
229}
230
231&Header::openpage($Lang::tr{'dynamic dns'}, 1, '');
232&Header::openbigbox('100%', 'left', '', $errormessage);
233
234my %checked =(); # Checkbox manipulations
80002fe4 235$checked{'SERVICE'}{'all-inkl.com'} = '';
ac1cfefa
MT
236$checked{'SERVICE'}{'cjb.net'} = '';
237$checked{'SERVICE'}{'dhs.org'} = '';
238$checked{'SERVICE'}{'dnspark.com'} = '';
5a2935b1 239$checked{'SERVICE'}{'dns.lightningwirelabs.com'} = '';
ac1cfefa
MT
240$checked{'SERVICE'}{'dtdns.com'} = '';
241$checked{'SERVICE'}{'dyndns.org'} = '';
242$checked{'SERVICE'}{'dyndns-custom'} = '';
243$checked{'SERVICE'}{'dyndns-static'} = '';
244$checked{'SERVICE'}{'dyns.cx'} = '';
245$checked{'SERVICE'}{'dynu.ca'} = '';
246$checked{'SERVICE'}{'easydns.com'} = '';
247$checked{'SERVICE'}{'enom.com'} = '';
248$checked{'SERVICE'}{'freedns.afraid.org'} = '';
249$checked{'SERVICE'}{'hn.org'} = '';
ff6f0295 250$checked{'SERVICE'}{'namecheap.com'} = '';
ac1cfefa
MT
251$checked{'SERVICE'}{'no-ip.com'} = '';
252$checked{'SERVICE'}{'nsupdate'} = '';
253$checked{'SERVICE'}{'ovh.com'} = '';
254$checked{'SERVICE'}{'regfish.com'} = '';
255$checked{'SERVICE'}{'selfhost.de'} = '';
9cf34ad1 256$checked{'SERVICE'}{'spdns.org'} = '';
b411505d 257$checked{'SERVICE'}{'strato.com'} = '';
02c542d1 258$checked{'SERVICE'}{'twodns.de'} = '';
ac1cfefa 259$checked{'SERVICE'}{'tzo.com'} = '';
b1ab4a4d 260$checked{'SERVICE'}{'variomedia.de'} = '';
ac1cfefa
MT
261$checked{'SERVICE'}{'zoneedit.com'} = '';
262$checked{'SERVICE'}{$settings{'SERVICE'}} = "selected='selected'";
263
264$checked{'BEHINDROUTER'}{'RED_IP'} = '';
265$checked{'BEHINDROUTER'}{'FETCH_IP'} = '';
266$checked{'BEHINDROUTER'}{$settings{'BEHINDROUTER'}} = "checked='checked'";
267$checked{'MINIMIZEUPDATES'} = ($settings{'MINIMIZEUPDATES'} eq '' ) ? '' : "checked='checked'";
268
269$checked{'PROXY'}{'on'} = ($settings{'PROXY'} eq '') ? '' : "checked='checked'";
270$checked{'WILDCARDS'}{'on'} = ($settings{'WILDCARDS'} eq '') ? '' : "checked='checked'";
271$checked{'ENABLED'}{'on'} = ($settings{'ENABLED'} eq '' ) ? '' : "checked='checked'";
272
273if ($errormessage) {
274 &Header::openbox('100%', 'left', $Lang::tr{'error messages'});
275 print "<font class='base'>$errormessage&nbsp;</font>";
276 &Header::closebox();
277}
278
279if ($warnmessage) {
280 $warnmessage = "<font color=${Header::colourred}><b>$Lang::tr{'capswarning'}</b></font>: $warnmessage";
281}
282&Header::openbox('100%', 'left', $Lang::tr{'settings'});
283print "<form method='post' action='$ENV{'SCRIPT_NAME'}'>";
284print <<END
285<table width='100%'>
286<tr>
287 <td class='base'>$Lang::tr{'dyn dns source choice'}</td>
288</tr><tr>
289 <td class='base'><input type='radio' name='BEHINDROUTER' value='RED_IP' $checked{'BEHINDROUTER'}{'RED_IP'} />
78331e30 290 $Lang::tr{'use ipfire red ip'}</td>
ac1cfefa
MT
291</tr><tr>
292 <td class='base'><input type='radio' name='BEHINDROUTER' value='FETCH_IP' $checked{'BEHINDROUTER'}{'FETCH_IP'} />
293 $Lang::tr{'fetch ip from'} <img src='/blob.gif' alt='*' /></td>
294</tr>
295<tr>
296 <td class='base'><input type='checkbox' name='MINIMIZEUPDATES' $checked{'MINIMIZEUPDATES'} />
297 $Lang::tr{'ddns minimize updates'}</td>
298</tr>
299</table>
300<br /><hr />
301END
302;
303
304print <<END
305<table width='100%'>
306<tr>
307 <td class='base' valign='top'><img src='/blob.gif' alt='*' /></td>
308 <td width='70%' class='base'>$Lang::tr{'avoid dod'}</td>
ec5a7d21 309 <td width='30%' align='right' valign='top' class='base'><input type='submit' name='ACTION' value='$Lang::tr{'save'}' /></td>
ac1cfefa
MT
310</tr>
311</table>
312</form>
313END
314;
315&Header::closebox(); # end of Settings1
316
317
318my $buttontext = $Lang::tr{'add'};
319if ($settings{'KEY1'} ne '') {
320 $buttontext = $Lang::tr{'update'};
321 &Header::openbox('100%', 'left', $Lang::tr{'edit an existing host'});
322} else {
323 &Header::openbox('100%', 'left', $Lang::tr{'add a host'});
324}
325
326#Edited line number (KEY1) passed until cleared by 'save' or 'remove'
327print <<END
328<form method='post' action='$ENV{'SCRIPT_NAME'}'>
329<input type='hidden' name='KEY1' value='$settings{'KEY1'}' />
330<table width='100%'>
331<tr>
332 <td width='25%' class='base'>$Lang::tr{'service'}:</td>
333 <td width='25%'><select size='1' name='SERVICE'>
80002fe4 334 <option $checked{'SERVICE'}{'all-inkl.com'}>all-inkl.com</option>
ac1cfefa
MT
335 <option $checked{'SERVICE'}{'cjb.net'}>cjb.net</option>
336 <option $checked{'SERVICE'}{'dhs.org'}>dhs.org</option>
337 <option $checked{'SERVICE'}{'dnspark.com'}>dnspark.com</option>
5a2935b1 338 <option $checked{'SERVICE'}{'dns.lightningwirelabs.com'}>dns.lightningwirelabs.com</option>
ac1cfefa
MT
339 <option $checked{'SERVICE'}{'dtdns.com'}>dtdns.com</option>
340 <option $checked{'SERVICE'}{'dyndns.org'}>dyndns.org</option>
341 <option $checked{'SERVICE'}{'dyndns-custom'}>dyndns-custom</option>
342 <option $checked{'SERVICE'}{'dyndns-static'}>dyndns-static</option>
343 <option $checked{'SERVICE'}{'dyns.cx'}>dyns.cx</option>
344 <option $checked{'SERVICE'}{'dynu.ca'}>dynu.ca dyn.ee dynserv.(ca|org|net|com)</option>
345 <option $checked{'SERVICE'}{'easydns.com'}>easydns.com</option>
346 <option $checked{'SERVICE'}{'enom.com'}>enom.com</option>
347 <option $checked{'SERVICE'}{'freedns.afraid.org'}>freedns.afraid.org</option>
348 <option $checked{'SERVICE'}{'hn.org'}>hn.org</option>
ff6f0295 349 <option $checked{'SERVICE'}{'namecheap.com'}>namecheap.com</option>
ac1cfefa
MT
350 <option $checked{'SERVICE'}{'no-ip.com'}>no-ip.com</option>
351 <option $checked{'SERVICE'}{'nsupdate'}>nsupdate</option>
352 <option $checked{'SERVICE'}{'ovh.com'}>ovh.com</option>
353 <option $checked{'SERVICE'}{'regfish.com'}>regfish.com</option>
354 <option $checked{'SERVICE'}{'selfhost.de'}>selfhost.de</option>
9cf34ad1 355 <option $checked{'SERVICE'}{'spdns.org'}>spdns.org</option>
b411505d 356 <option $checked{'SERVICE'}{'strato.com'}>strato.com</option>
02c542d1 357 <option $checked{'SERVICE'}{'twodns.de'}>twodns.de</option>
ac1cfefa 358<!-- <option $checked{'SERVICE'}{'tzo.com'}>tzo.com</option> comment this service out until a working fix is developed -->
b1ab4a4d 359 <option $checked{'SERVICE'}{'variomedia.de'}>variomedia.de</option>
afe4656c 360 <option $checked{'SERVICE'}{'zoneedit.com'}>zoneedit.com</option>
ac1cfefa
MT
361 </select></td>
362 <td width='20%' class='base'>$Lang::tr{'hostname'}:&nbsp;<img src='/blob.gif' alt='*' /></td>
363 <td width='30%'><input type='text' name='HOSTNAME' value='$settings{'HOSTNAME'}' /></td>
364</tr><tr>
365 <td class='base'>$Lang::tr{'behind a proxy'}</td>
366 <td><input type='checkbox' name='PROXY' value='on' $checked{'PROXY'}{'on'} /></td>
367 <td class='base'>$Lang::tr{'domain'}:</td>
368 <td><input type='text' name='DOMAIN' value='$settings{'DOMAIN'}' /></td>
369</tr><tr>
370 <td class='base'>$Lang::tr{'enable wildcards'}</td>
371 <td><input type='checkbox' name='WILDCARDS' value='on' $checked{'WILDCARDS'}{'on'} /></td>
372 <td class='base'>$Lang::tr{'username'}</td>
373 <td><input type='text' name='LOGIN' value='$settings{'LOGIN'}' /></td>
374</tr><tr>
375 <td></td>
376 <td></td>
377 <td class='base'>$Lang::tr{'password'}</td>
378 <td><input type='password' name='PASSWORD' value='$settings{'PASSWORD'}' /></td>
379</tr><tr>
380 <td class='base'>$Lang::tr{'enabled'}</td>
381 <td><input type='checkbox' name='ENABLED' value='on' $checked{'ENABLED'}{'on'} /></td>
382 <td class='base'>$Lang::tr{'again'}</td>
383 <td><input type='password' name='PASSWORD2' value='$settings{'PASSWORD2'}' /></td>
384</tr>
385</table>
ec5a7d21 386<br>
ac1cfefa
MT
387<hr />
388<table width='100%'>
389<tr>
390 <td class='base' valign='top'><img src='/blob.gif' alt='*' /></td>
391 <td width='70%' class='base'>$ddnsprefix</td>
392
ec5a7d21 393 <td width='30%' align='right' class='base'>
ac1cfefa
MT
394 <input type='hidden' name='ACTION' value='$Lang::tr{'add'}' />
395 <input type='submit' name='SUBMIT' value='$buttontext' /> </td>
396</tr>
397</table>
398</form>
399END
400;
401&Header::closebox();
402
403#
404# Third box shows the list, in columns
405#
406&Header::openbox('100%', 'left', $Lang::tr{'current hosts'});
407print <<END
09eb51c9 408<table width='100%' class='tbl'>
ac1cfefa 409<tr>
09eb51c9
AM
410 <th width='15%' align='center' class='boldbase'><b>$Lang::tr{'service'}</b></th>
411 <th width='25%' align='center' class='boldbase'><b>$Lang::tr{'hostname'}</b></th>
412 <th width='30%' align='center' class='boldbase'><b>$Lang::tr{'domain'}</b></th>
413 <th width='10%' align='center' class='boldbase'><b>$Lang::tr{'proxy'}</b></th>
414 <th width='10%' align='center' class='boldbase'><b>$Lang::tr{'wildcards'}</b></th>
415 <th width='10%' colspan='3' class='boldbase' align='center'><b>$Lang::tr{'action'}</b></th>
ac1cfefa
MT
416</tr>
417END
418;
419my $ip = &General::GetDyndnsRedIP;
420my $key = 0;
421foreach my $line (@current) {
422 chomp($line); # remove newline
423 my @temp = split(/\,/,$line);
424
425 if ($temp[0] eq 'no-ip.com') {
426 $temp[1] =~ s!$General::noipprefix(.*)!<b>group:</b>$1 !;
427 }
428
429 #Choose icon for checkbox
430
431 my $gifproxy='';
432 my $descproxy='';
433 if ($temp[3] eq "on") {
434 $gifproxy = 'on.gif';
435 $descproxy = $Lang::tr{'click to disable'};
436 } else {
437 $gifproxy = 'off.gif';
09eb51c9 438 $descproxy = $Lang::tr{'click to enable'};
ac1cfefa
MT
439 }
440
441 my $gifwildcard='';
442 my $descwildcard='';
443 if ($temp[4] eq "on") {
444 $gifwildcard = 'on.gif';
445 $descwildcard = $Lang::tr{'click to disable'};
446 } else {
447 $gifwildcard = 'off.gif';
448 $descwildcard = $Lang::tr{'click to enable'};
449 }
450
451 my $sync = "<font color='blue'>";
452 my $gif = '';
453 my $gdesc = '';
454 if ($temp[7] eq "on") {
455 $gif = 'on.gif';
456 $gdesc = $Lang::tr{'click to disable'};
457 $sync = (&General::DyndnsServiceSync ($ip,$temp[1], $temp[2]) ? "<font color='green'>": "<font color='red'>") ;
458 } else {
459 $gif = 'off.gif';
460 $gdesc = $Lang::tr{'click to enable'};
461 }
09eb51c9
AM
462
463 my $col="";
ac1cfefa
MT
464 #Colorize each line
465 if ($settings{'KEY1'} eq $key) {
09eb51c9
AM
466 print "<tr>";
467 $col="bgcolor='${Header::colouryellow}'";
ac1cfefa 468 } elsif ($key % 2) {
09eb51c9
AM
469 print "<tr>";
470 $col="bgcolor='$color{'color20'}'";
ac1cfefa 471 } else {
09eb51c9
AM
472 print "<tr>";
473 $col="bgcolor='$color{'color22'}'";
ac1cfefa 474 }
09eb51c9 475
ac1cfefa
MT
476 #if a field is empty, replace it with a '---' to see colorized info!
477 $temp[1] = '---' if (!$temp[1]);
478 $temp[2] = '---' if (!$temp[2]);
479
480 print <<END
09eb51c9
AM
481<td align='center' $col><a href='http://$temp[0]'>$temp[0]</a></td>
482<td align='center' $col>$sync$temp[1]</td>
483<td align='center' $col>$sync$temp[2]</td>
ac1cfefa 484
09eb51c9 485<td align='center' $col>
ac1cfefa
MT
486<form method='post' action='$ENV{'SCRIPT_NAME'}'>
487<input type='hidden' name='ACTION' value='$Lang::tr{'toggle enable disable'}' />
488<input type='image' name='$Lang::tr{'toggle enable disable'}' src='/images/$gifproxy' alt='$descproxy' title='$descproxy' />
489<input type='hidden' name='KEY1' value='$key' />
490<input type='hidden' name='KEY2' value='3' />
491</form>
492</td>
493
09eb51c9 494<td align='center' $col>
ac1cfefa
MT
495<form method='post' action='$ENV{'SCRIPT_NAME'}'>
496<input type='hidden' name='ACTION' value='$Lang::tr{'toggle enable disable'}' />
497<input type='image' name='$Lang::tr{'toggle enable disable'}' src='/images/$gifwildcard' alt='$descwildcard' title='$descwildcard' />
498<input type='hidden' name='KEY1' value='$key' />
499<input type='hidden' name='KEY2' value='4' />
500</form>
501</td>
502
09eb51c9 503<td align='center' $col>
ac1cfefa
MT
504<form method='post' action='$ENV{'SCRIPT_NAME'}'>
505<input type='hidden' name='ACTION' value='$Lang::tr{'toggle enable disable'}' />
506<input type='image' name='$Lang::tr{'toggle enable disable'}' src='/images/$gif' alt='$gdesc' title='$gdesc' />
507<input type='hidden' name='KEY1' value='$key' />
508<input type='hidden' name='KEY2' value='7' />
509</form>
510</td>
511
09eb51c9 512<td align='center' $col>
ac1cfefa
MT
513<form method='post' action='$ENV{'SCRIPT_NAME'}'>
514<input type='hidden' name='ACTION' value='$Lang::tr{'edit'}' />
515<input type='image' name='$Lang::tr{'edit'}' src='/images/edit.gif' alt='$Lang::tr{'edit'}' title='$Lang::tr{'edit'}' />
516<input type='hidden' name='KEY1' value='$key' />
517</form>
518</td>
519
09eb51c9 520<td align='center' $col>
ac1cfefa
MT
521<form method='post' action='$ENV{'SCRIPT_NAME'}'>
522<input type='hidden' name='ACTION' value='$Lang::tr{'remove'}' />
523<input type='image' name='$Lang::tr{'remove'}' src='/images/delete.gif' alt='$Lang::tr{'remove'}' title='$Lang::tr{'remove'}' />
524<input type='hidden' name='KEY1' value='$key' />
525</form>
526</td>
527</tr>
528END
529;
530 $key++;
531}
532print "</table>";
533
534# If table contains entries, print 'Key to action icons'
535if ($key) {
536print <<END
537<table width='100%'>
538<tr>
539 <td class='boldbase'>&nbsp;<b>$Lang::tr{'legend'}:&nbsp;</b></td>
540 <td><img src='/images/on.gif' alt='$Lang::tr{'click to disable'}' /></td>
541 <td class='base'>$Lang::tr{'click to disable'}</td>
542 <td>&nbsp;&nbsp;</td>
543 <td><img src='/images/off.gif' alt='$Lang::tr{'click to enable'}' /></td>
544 <td class='base'>$Lang::tr{'click to enable'}</td>
545 <td>&nbsp;&nbsp;</td>
546 <td><img src='/images/edit.gif' alt='$Lang::tr{'edit'}' /></td>
547 <td class='base'>$Lang::tr{'edit'}</td>
548 <td>&nbsp;&nbsp;</td>
549 <td><img src='/images/delete.gif' alt='$Lang::tr{'remove'}' /></td>
550 <td class='base'>$Lang::tr{'remove'}</td>
551 <form method='post' action='$ENV{'SCRIPT_NAME'}'>
ec5a7d21 552 <td align='right' width='30%'><input type='submit' name='ACTION' value='$Lang::tr{'instant update'}' /></td>
ac1cfefa
MT
553 </form>
554</tr>
555</table>
556END
557;
558}
559
560&Header::closebox();
561&Header::closebigbox();
562&Header::closepage();
563
564## Ouf it's the end !
565
566
567# write the "current" array
568sub WriteDataFile {
569 #Save current
570 open(FILE, ">$datafile") or die 'ddns datafile error';
571 print FILE @current;
572 close (FILE);
573}