- Timestamp:
- 04/14/05 15:45:44 (20 years ago)
- Location:
- branches/acl
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/acl/cgi-bin/main.cgi
r223 r225 550 550 print qq(<hr width="60%"><center><div class="heading">No allocations in ). 551 551 qq($master.</div>\n). 552 qq(<form action="/ip/cgi-bin/main.cgi" method=POST>\n). 553 qq(<input type=hidden name=action value="delete">\n). 554 qq(<input type=hidden name=block value="$master">\n). 555 qq(<input type=hidden name=alloctype value="mm">\n). 556 qq(<input type=submit value=" Remove this master ">\n). 557 qq(</form></center>\n); 552 ($IPDBacl{$authuser} =~ /d/ ? 553 qq(<form action="/ip/cgi-bin/main.cgi" method=POST>\n). 554 qq(<input type=hidden name=action value="delete">\n). 555 qq(<input type=hidden name=block value="$master">\n). 556 qq(<input type=hidden name=alloctype value="mm">\n). 557 qq(<input type=submit value=" Remove this master ">\n). 558 qq(</form></center>\n) : 559 ''); 558 560 559 561 } # end check for existence of routed blocks in master … … 636 638 print qq(<hr width="60%"><center><div class="heading">No allocations in ). 637 639 qq($master.</div></center>\n). 638 qq(<form action="/ip/cgi-bin/main.cgi" method=POST>\n). 639 qq(<input type=hidden name=action value="delete">\n). 640 qq(<input type=hidden name=block value="$master">\n). 641 qq(<input type=hidden name=alloctype value="rm">\n). 642 qq(<input type=submit value=" Remove this block ">\n). 643 qq(</form>\n); 640 ($IPDBacl{$authuser} =~ /d/ ? 641 qq(<form action="/ip/cgi-bin/main.cgi" method=POST>\n). 642 qq(<input type=hidden name=action value="delete">\n). 643 qq(<input type=hidden name=block value="$master">\n). 644 qq(<input type=hidden name=alloctype value="rm">\n). 645 qq(<input type=submit value=" Remove this block ">\n). 646 qq(</form>\n) : 647 ''); 644 648 } 645 649 … … 718 722 my @row = ( qq(<a href="/ip/cgi-bin/main.cgi?action=edit&block=$data[0]">$data[0]</a>), 719 723 $data[1],$data[2],$data[3], 720 ( ( $data[2] eq 'n') ?724 ( (($data[2] eq 'n') && ($IPDBacl{$authuser} =~ /d/)) ? 721 725 ("<a href=\"/ip/cgi-bin/main.cgi?action=delete&block=$data[0]&". 722 726 "alloctype=$data[4]\">Unassign this IP</a>") : … … 1100 1104 $data[2] =~ s/\s//; 1101 1105 1102 ##fixme LEGACY CODE1103 # Postfix "i" on pool IP types1104 if ($data[2] =~ /^[cdsmw]$/) {1105 $data[2] .= "i";1106 }1107 1108 1106 open (HTML, "../editDisplay.html") 1109 1107 or croak "Could not open editDisplay.html :$!"; … … 1116 1114 # Needs thinking. Have to allow changes to city to correct errors, no? 1117 1115 $html =~ s/\$\$BLOCK\$\$/$webvar{block}/g; 1118 $html =~ s/\$\$CITY\$\$/$data[3]/g; 1116 1117 if ($IPDBacl{$authuser} =~ /c/) { 1118 $html =~ s/\$\$CUSTID\$\$/<input type=text name=custid value="$data[1]" maxlength=15 class="regular">/; 1119 1119 1120 1120 # Screw it. Changing allocation types gets very ugly VERY quickly- especially … … 1125 1125 1126 1126 ##fixme The check here should be built from the database 1127 if ($data[2] =~ /^.[ne]$/) {1128 # Block that can be changed1129 my $blockoptions = "<select name=alloctype><option".1127 if ($data[2] =~ /^.[ne]$/) { 1128 # Block that can be changed 1129 my $blockoptions = "<select name=alloctype><option". 1130 1130 (($data[2] eq 'me') ? ' selected' : '') ." value='me'>Dialup netblock</option>\n<option". 1131 1131 (($data[2] eq 'de') ? ' selected' : '') ." value='de'>Dynamic DSL netblock</option>\n<option". (($data[2] eq 'dc') ? ' selected' : '') ." value='dc'>Dynamic cable netblock</option>\n<option". … … 1136 1136 (($data[2] eq 'in') ? ' selected' : '') ." value='in'>Internal netblock</option>\n". 1137 1137 "</select>\n"; 1138 $html =~ s/\$\$TYPESELECT\$\$/$blockoptions/g; 1138 $html =~ s/\$\$TYPESELECT\$\$/$blockoptions/g; 1139 } else { 1140 $html =~ s/\$\$TYPESELECT\$\$/$disp_alloctypes{$data[2]}<input type=hidden name=alloctype value="$data[2]">/g; 1141 } 1142 $html =~ s/\$\$CITY\$\$/<input type=text name=city value="$data[3]">/g; 1143 $html =~ s/\$\$CIRCID\$\$/<input type="text" name="circid" value="$data[4]" maxlength=64 size=64 class="regular">/g; 1144 $html =~ s/\$\$DESC\$\$/<input type="text" name="desc" value="$data[5]" maxlength=64 size=64 class="regular">/g; 1145 $html =~ s|\$\$NOTES\$\$|<textarea rows="8" cols="64" name="notes" class="regular">$data[6]</textarea>|g; 1139 1146 } else { 1140 $html =~ s/\$\$TYPESELECT\$\$/$disp_alloctypes{$data[2]}<input type=hidden name=alloctype value="$data[2]">/g; 1141 } 1142 1143 # These can be modified, although CustID changes may get ignored. 1144 $html =~ s/\$\$CUSTID\$\$/$data[1]/g; 1145 $html =~ s/\$\$TYPE\$\$/$data[2]/g; 1146 $html =~ s/\$\$CIRCID\$\$/$data[4]/g; 1147 $html =~ s/\$\$DESC\$\$/$data[5]/g; 1148 $html =~ s/\$\$NOTES\$\$/$data[6]/g; 1147 $html =~ s/\$\$CUSTID\$\$/$data[1]/g; 1148 $html =~ s/\$\$TYPESELECT\$\$/$disp_alloctypes{$data[2]}/g; 1149 $html =~ s/\$\$CITY\$\$/$data[3]/g; 1150 $html =~ s/\$\$CIRCID\$\$/$data[4]/g; 1151 $html =~ s/\$\$DESC\$\$/$data[5]/g; 1152 $html =~ s/\$\$NOTES\$\$/$data[6]/g; 1153 } 1154 1155 # More ACL trickery - we can live with forms that don't submit, 1156 # but we can't leave the extra table rows there, and we *really* 1157 # can't leave the submit buttons there. 1158 my $updok = ''; 1159 my $i=2; 1160 if ($IPDBacl{$authuser} =~ /c/) { 1161 $updok = qq(<tr class="color$i"><td colspan=2 class=regular><div class="center">). 1162 qq(<input type="submit" value=" Update this block " class="regular">). 1163 "</div></td></tr></form>\n"; 1164 $i--; 1165 } 1166 $html =~ s/\$\$UPDOK\$\$/$updok/g; 1167 1168 my $delok = ''; 1169 if ($IPDBacl{$authuser} =~ /d/) { 1170 $delok = qq(<form method="POST" action="main.cgi"> 1171 <tr class="color$i"><td colspan=2 class="regular"><div class=center> 1172 <input type="hidden" name="action" value="delete"> 1173 <input type="hidden" name="block" value="$webvar{block}"> 1174 <input type="hidden" name="alloctype" value="$data[2]"> 1175 <input type=submit value=" Delete this block "> 1176 </div></td></tr>); 1177 } 1178 $html =~ s/\$\$DELOK\$\$/$delok/; 1149 1179 1150 1180 print $html; … … 1216 1246 # Delete an allocation. 1217 1247 sub remove { 1248 if ($IPDBacl{$authuser} !~ /d/) { 1249 printError("You shouldn't have been able to get here. Access denied."); 1250 return; 1251 } 1252 1218 1253 #show confirm screen. 1219 1254 open HTML, "../confirmRemove.html" … … 1305 1340 # Remove IPs from pool listing if necessary 1306 1341 sub finalDelete { 1342 if ($IPDBacl{$authuser} !~ /d/) { 1343 printError("You shouldn't have been able to get here. Access denied."); 1344 return; 1345 } 1307 1346 1308 1347 my ($code,$msg) = deleteBlock($ip_dbh, $webvar{block}, $webvar{alloctype}); -
branches/acl/editDisplay.html
r74 r225 8 8 <tr class="color1"><td class=heading>IP block:</td><td class="regular">$$BLOCK$$</td></tr> 9 9 10 <tr class="color2"><td class=heading>City:</td><td class="regular"> 11 <input type=text name=city value="$$CITY$$"></td></tr> 10 <tr class="color2"><td class=heading>City:</td><td class="regular">$$CITY$$</td></tr> 12 11 13 12 <tr class="color1"><td class=heading>Type:</td><td class=regular>$$TYPESELECT$$</td></tr> 14 13 15 <tr class="color2"><td class=heading>CustID:</td><td class="regular"> 16 <input type=text name=custid value="$$CUSTID$$" maxlength=15 class="regular"></td></tr> 14 <tr class="color2"><td class=heading>CustID:</td><td class="regular">$$CUSTID$$</td></tr> 17 15 18 <tr class="color1"><td class="heading">Circuit ID:</td><td class="regular"> 19 <input type="text" name="circid" value="$$CIRCID$$" maxlength=64 size=64 class="regular"></td></tr> 16 <tr class="color1"><td class="heading">Circuit ID:</td><td class="regular">$$CIRCID$$</td></tr> 20 17 21 <tr class="color2"><td class="heading">Description/Name:</td><td class="regular"> 22 <input type="text" name="desc" value="$$DESC$$" maxlength=64 size=64 class="regular"></td></tr> 18 <tr class="color2"><td class="heading">Description/Name:</td><td class="regular">$$DESC$$</td></tr> 23 19 24 <tr class="color1"><td class="heading" valign="top">Notes:</td><td class="regular"> 25 <textarea rows="8" cols="64" name="notes" class="regular">$$NOTES$$</textarea></td></tr> 20 <tr class="color1"><td class="heading" valign="top">Notes:</td><td class="regular">$$NOTES$$</td></tr> 26 21 27 <tr class="color2"><td colspan=2 class=regular><div class="center"> 28 <input type="submit" value=" Update this block " class="regular"> 29 </div></td></tr></form> 30 <form method="POST" action="main.cgi"> 31 <tr class="color1"><td colspan=2 class="regular"><div class=center> 32 <input type="hidden" name="action" value="delete"> 33 <input type="hidden" name="block" value="$$BLOCK$$"> 34 <input type="hidden" name="alloctype" value="$$TYPE$$"> 35 <input type=submit value=" Delete this block "> 36 </div></td></tr> 22 $$UPDOK$$ 23 $$DELOK$$ 37 24 </form> 38 25
Note:
See TracChangeset
for help on using the changeset viewer.