Changeset 634 for trunk/cgi-bin/main.cgi
- Timestamp:
- 10/09/14 12:37:39 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/cgi-bin/main.cgi
r633 r634 651 651 652 652 # snag block info from db 653 my $blockinfo = getBlockData($ip_dbh, $webvar{block}, $webvar{rdepth}); 653 my $blockinfo = getBlockData($ip_dbh, $webvar{id}, $webvar{basetype}); 654 $page->param(id => $webvar{id}); 655 $page->param(basetype => $webvar{basetype}); 654 656 655 657 # Clean up extra whitespace on alloc type. Mainly a legacy-data cleanup. … … 657 659 658 660 # Get rDNS info; duplicates a bit of getBlockData but also does the RPC call if possible 659 $blockinfo->{rdns} = getBlockRDNS($ip_dbh, $webvar{block}, $webvar{rdepth}, user => $authuser);660 661 $page->param(block => $webvar{block});661 $blockinfo->{rdns} = getBlockRDNS($ip_dbh, id => $webvar{id}, type => $blockinfo->{type}, user => $authuser); 662 663 $page->param(block => $blockinfo->{block}); 662 664 $page->param(rdns => $blockinfo->{rdns}); 663 $page->param(rdepth => $blockinfo->{rdepth});664 665 665 666 $page->param(custid => $blockinfo->{custid}); … … 689 690 690 691 ## node hack 691 my ($nodeid,$nodename) = getNodeInfo($ip_dbh, $webvar{block}); 692 $page->param(havenodeid => $nodeid); 693 694 if ($blockinfo->{type} eq 'fr' || $blockinfo->{type} eq 'bi') { 695 $page->param(typesupportsnodes => 1); 696 $page->param(nodename => $nodename); 692 my ($nodeid,$nodename) = getNodeInfo($ip_dbh, $blockinfo->{block}); 693 # $page->param(havenodeid => $nodeid); 694 $page->param(nodename => $nodename); 697 695 698 696 ##fixme: this whole hack needs cleanup and generalization for all alloctypes 699 697 ##fixme: arguably a bug that presence of a nodeid implies it can be changed.. 700 # but except for manual database changes, only the two types fr and bi can 701 # (currently) have a nodeid set in the first place. 702 if ($IPDBacl{$authuser} =~ /c/) { 703 my $nlist = getNodeList($ip_dbh); 698 if ($IPDBacl{$authuser} =~ /c/) { 699 my $nlist = getNodeList($ip_dbh); 700 if ($nodeid) { 704 701 foreach (@{$nlist}) { 705 702 $$_{selme} = ($$_{node_id} == $nodeid); 706 703 } 707 $page->param(nodelist => $nlist);708 }704 } 705 $page->param(nodelist => $nlist); 709 706 } 710 707 ## end node hack … … 750 747 type => $webvar{alloctype}, 751 748 swip => $webvar{swip}, 752 rdepth => $webvar{rdepth},753 749 rdns => $webvar{rdns}, 754 750 user => $authuser, … … 783 779 784 780 # Link back to browse-routed or list-pool page on "Update complete" page. 785 my $cblock = getBlockData($ip_dbh, $webvar{block}, $webvar{rdepth}); 786 if (my $pooltype = ($webvar{alloctype} =~ /^(.)i$/) ) { 787 $page->param(backpool => 1); 788 $page->param(backblock => $cblock->{pool}); 789 } else { 790 $page->param(backblock => $cblock->{parent}); 791 } 792 $page->param(backdepth => ($webvar{rdepth})); 781 my $binfo = getBlockData($ip_dbh, $webvar{block}, $webvar{basetype}); 782 my $pblock = getBlockData($ip_dbh, $binfo->{parent_id}); 783 $page->param(backid => $binfo->{parent_id}); 784 $page->param(backblock => $pblock->{block}); 785 $page->param(backpool => ($webvar{basetype} eq 'i')); 793 786 794 787 # Do some HTML fiddling here instead of using ESCAPE=HTML in the template, … … 799 792 $webvar{privdata} =~ s/\n/<br>\n/; 800 793 801 $page->param(cidr => $ webvar{block});794 $page->param(cidr => $binfo->{block}); 802 795 $page->param(rdns => $webvar{rdns}); 803 796 $page->param(city => $webvar{city});
Note:
See TracChangeset
for help on using the changeset viewer.