Changeset 798 for trunk


Ignore:
Timestamp:
12/23/15 15:46:13 (8 years ago)
Author:
Kris Deugau
Message:

/trunk

Complete adding the IP address field to the backup fields
Complete add/update handling for backup fields generally

Location:
trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/cgi-bin/IPDB.pm

    r795 r798  
    6767# Mapping hash for pooltype -> poolip-as-netblock conversions
    6868my %poolmap = (sd => 'en', cd => 'cn', dp => 'cn', mp => 'cn', wp => 'cn', ld => 'in', ad => 'in', bd => 'in');
     69
     70# Backup fields, since we iterate over the set regularly
     71our @backupfields = qw(brand model type src user vpass epass port ip);
    6972
    7073# Friendly display strings for merge scopes
     
    14721475      my $backupid = 0;
    14731476      if ($args{backup}) {
    1474         my $sql = "INSERT INTO backuplist (";
     1477        my $bksql = "INSERT INTO backuplist (";
    14751478        my @bkvals;
    1476         for my $bk (qw(brand model type port src user vpass epass)) {
     1479        my @bkfields;
     1480        for my $bk (@backupfields) {
    14771481          if ($args{"bk$bk"}) {
    1478             $sql .= "bk$bk,";
     1482            push @bkfields, "bk$bk";
    14791483            push @bkvals, $args{"bk$bk"};
    14801484          }
    14811485        }
    1482         $sql .= "ip) VALUES (".('?,' x scalar(@bkvals))."?)";
    1483         $dbh->do($sql, undef, @bkvals, $args{cidr});
     1486        $bksql .= join(',',@bkfields).") VALUES (".join(',', map {'?'} @bkfields).")";
     1487        $dbh->do($bksql, undef, @bkvals);
    14841488        ($backupid) = $dbh->selectrow_array("SELECT currval('backuplist_backup_id_seq')");
    14851489      }
     
    15231527        $msg = "Unable to allocate $args{cidr} as '$disp_alloctypes{$args{type}}'";
    15241528
     1529        # backup
     1530        my $backupid = 0;
     1531        if ($args{backup}) {
     1532          if (!$args{bkip}) {
     1533            # check for /32-ness.  no point in skipping /32 "netblocks", because they already single IPs
     1534            die "Backup data set on a netblock requires a backup IP\n" unless $args{cidr} =~ m{/32$};
     1535            $args{bkip} = $args{cidr};
     1536          }
     1537          my $bksql = "INSERT INTO backuplist (";
     1538          my @bkfields;
     1539          my @bkvals;
     1540          for my $bk (@backupfields) {
     1541            if ($args{"bk$bk"}) {
     1542              push @bkfields, "bk$bk";
     1543              push @bkvals, $args{"bk$bk"};
     1544            }
     1545          }
     1546          $bksql .= join(',',@bkfields).") VALUES (".join(',',map {'?'} @bkfields).")";
     1547          $dbh->do($bksql, undef, @bkvals);
     1548          ($backupid) = $dbh->selectrow_array("SELECT currval('backuplist_backup_id_seq')");
     1549        } # $args{backup}
     1550
    15251551        # Insert the allocations entry
    15261552        $dbh->do("INSERT INTO allocations ".
    1527                 "(cidr,parent_id,master_id,vrf,vlan,custid,type,city,description,notes,circuitid,privdata,rdns)".
    1528                 " VALUES (?,?,?,?,?,?,?,?,?,?,?,?,?)", undef,
     1553                "(cidr,parent_id,master_id,vrf,vlan,custid,type,city,description,notes,circuitid,privdata,rdns,backup_id)".
     1554                " VALUES (?,?,?,?,?,?,?,?,?,?,?,?,?,?)", undef,
    15291555                ($args{cidr}, $fbparent, $fbmaster, $args{vrf}, $args{vlan}, $args{custid}, $args{type}, $args{city},
    1530                 $args{desc}, $args{notes}, $args{circid}, $args{privdata}, $args{rdns}) );
     1556                $args{desc}, $args{notes}, $args{circid}, $args{privdata}, $args{rdns}, $backupid) );
    15311557        my ($bid) = $dbh->selectrow_array("SELECT currval('allocations_id_seq')");
    15321558
     
    18451871    }
    18461872
    1847     # check on the backup data first.  we may need to tweak the main update's parameters.
     1873    # backup
    18481874    if (!defined($args{ignorebk})) {
    1849       if ($args{backupfields}) {
    1850         my @bkfields;
    1851         my @bkvals;
    1852         for my $bk (qw(brand model type src user vpass epass)) {
    1853           if ($binfo->{"bk$bk"} ne $args{"bk$bk"}) {
    1854             push @bkfields, "bk$bk = ?";
    1855             push @bkvals, $args{"bk$bk"};
     1875      # backup data considered "restricted";  caller should set this flag if user does not have 's' permission
     1876
     1877      my $backupid = $binfo->{hasbk};
     1878      if (!$binfo->{hasbk}) {
     1879        if ($args{backup}) {
     1880          # failure mode:  backup data on netblock with no IP set
     1881          if (!$args{bkip}) {
     1882            # check for /32-ness.  no point in skipping /32 "netblocks", because they already single IPs
     1883            die "Backup data set on a netblock requires a backup IP\n" unless $binfo->{block} =~ m{/32$};
     1884            $args{bkip} = $binfo->{block};
    18561885          }
     1886          # insert new backup record since we don't have one
     1887          my $bksql = "INSERT INTO backuplist (";
     1888          my @bkfields;
     1889          my @bkvals;
     1890          for my $bk (@backupfields) {
     1891            if ($args{"bk$bk"}) {
     1892              push @bkfields, "bk$bk";
     1893              push @bkvals, $args{"bk$bk"};
     1894            }
     1895          }
     1896          $bksql .= join(',',@bkfields).") VALUES (".join(',', map {'?'} @bkfields).")";
     1897          $dbh->do($bksql, undef, @bkvals);
     1898          ($backupid) = $dbh->selectrow_array("SELECT currval('backuplist_backup_id_seq')");
     1899          # add the backup ID to the update
     1900          push @vallist, $backupid;
     1901          $sql .= " = ?, backup_id";
    18571902        }
    1858         $dbh->do("UPDATE backuplist SET ".join(',', @bkfields)." WHERE backup_id = ?",
    1859             undef, @bkvals, $binfo->{hasbk})
    1860             if @bkfields;
     1903
     1904      } else { # !$binfo->{hasbk}
     1905
     1906        # allocation already has backup data
     1907        if ($args{backup}) {
     1908          if (!$args{bkip}) {
     1909            # check for /32-ness.  no point in skipping /32 "netblocks", because they are already single IPs
     1910            die "Backup data set on a netblock requires a backup IP\n" unless $binfo->{block} =~ m{/32$};
     1911            $args{bkip} = $binfo->{block};
     1912          }
     1913          my @bkfields;
     1914          my @bkvals;
     1915          for my $bk (@backupfields) {
     1916            no warnings qw( uninitialized );
     1917            if ($binfo->{"bk$bk"} ne $args{"bk$bk"}) {
     1918              push @bkfields, "bk$bk = ?";
     1919              push @bkvals, $args{"bk$bk"};
     1920            }
     1921          }
     1922
     1923          $dbh->do("UPDATE backuplist SET ".join(',', @bkfields)." WHERE backup_id = ?",
     1924              undef, @bkvals, $binfo->{hasbk})
     1925              if @bkfields;
    18611926##todo: keep historic changes for $timeperiod, by adding a backref ID field, and on updates adding a new backup
    18621927# record instead of updating the existing one.  should probably check if new==old so we don't do needless updates
    18631928# in that case...
    1864       } else {
    1865         if ($binfo->{hasbk}) {
    1866           # had backup data, no longer checked - delete backup entry
    1867           $dbh->do("DELETE FROM backuplist WHERE backup_id = ?", undef, $binfo->{hasbk});
    1868           $sql .= " = ?, backup_id";
    1869           push @vallist, 0;
     1929        } else {
     1930          if ($binfo->{hasbk}) {
     1931            # had backup data, no longer checked - delete backup entry
     1932            $dbh->do("DELETE FROM backuplist WHERE backup_id = ?", undef, $binfo->{hasbk});
     1933            $sql .= " = ?, backup_id";
     1934            push @vallist, 0;
     1935          }
    18701936        }
    1871       }
    1872     }
     1937      } # $binfo->{hasbk} defined
     1938    } # if !args{ignorebk}
    18731939
    18741940    # append another SQL fragment
     
    30273093## IPDB::getBlockData()
    30283094# Get CIDR or IP, custid, type, city, circuit ID, description, notes, modification time,
    3029 # private/restricted data, for a CIDR block or pool IP
     3095# private/restricted data, and backup fields, for a CIDR block or pool IP
    30303096# Also returns SWIP status flag for CIDR blocks or pool netblock for IPs
    30313097# Takes the block ID or IP to look up and an optional flag to indicate a pool IP lookup
     
    30453111        privdata, vlan, rdns);
    30463112  my $bkfields = q(b.backup_id AS hasbk, b.bkbrand, b.bkmodel, b.bktype, b.bkport, b.bksrc,
    3047         b.bkuser, b.bkvpass, b.bkepass);
     3113        b.bkuser, b.bkvpass, b.bkepass, b.bkip);
    30483114
    30493115  if ($type eq 'i') {
     
    30513117        SELECT p.id, p.ip AS block, p.city, p.vrf, p.parent_id, p.master_id, $commonfields,
    30523118                d.zone >> p.ip AS revavail,
    3053                 $bkfields
     3119                $bkfields
    30543120        FROM poolips p
    30553121        LEFT JOIN dnsavail d ON p.master_id = d.parent_alloc AND p.ip << d.zone
    3056         LEFT JOIN backuplist b ON p.backup_id = b.backup_id
     3122        LEFT JOIN backuplist b ON p.backup_id = b.backup_id
    30573123        WHERE id = ?
    30583124        ), undef, ($id) );
     
    30623128        SELECT a.id, a.cidr AS block, a.city, a.vrf, a.parent_id, a.master_id, swip, $commonfields,
    30633129                f.cidr AS reserve, f.id as reserve_id,
    3064                 d.zone >>= a.cidr AS revavail, d.zone << a.cidr AS revpartial
     3130                d.zone >>= a.cidr AS revavail, d.zone << a.cidr AS revpartial,
     3131                $bkfields
    30653132        FROM allocations a
    30663133        LEFT JOIN freeblocks f ON a.id=f.reserve_for
    30673134        LEFT JOIN dnsavail d ON a.master_id = d.parent_alloc AND (a.cidr <<= d.zone OR a.cidr >> d.zone)
     3135        LEFT JOIN backuplist b ON a.backup_id = b.backup_id
    30683136        WHERE a.id = ?
    30693137        ), undef, ($id) );
  • trunk/cgi-bin/main.cgi

    r793 r798  
    676676    $page->param(bkepass => $q->escapeHTML($webvar{bkepass}));
    677677    $page->param(bkport  => $webvar{bkport});
     678    $page->param(bkip    => $webvar{bkip});
    678679  }
    679680
     
    739740  if ($webvar{backupfields}) {
    740741    $insert_args{backup} = 1;
    741     $insert_args{bkbrand} = $webvar{bkbrand};
    742     $insert_args{bkmodel} = $webvar{bkmodel};
    743     for my $bkfield (qw(type src user vpass epass port)) {
     742    for my $bkfield (@IPDB::backupfields) {
    744743      $insert_args{"bk$bkfield"} = ($webvar{"bk$bkfield"} ? $webvar{"bk$bkfield"} : '');
    745744    }
     
    908907  # Backup fields.  Minimal sanity checks.
    909908  for my $bkfield (qw(brand model)) {
    910     if ($webvar{"bk$bkfield"} && $webvar{"bk$bkfield"} !~ /^[a-zA-Z0-9\s_.-]+$/) {
     909    if (!$webvar{"bk$bkfield"}) {
     910      $page->param(err => "Backup $bkfield must be filled in if IP/netblock is flagged for backup");
     911      return;
     912    }
     913    if ($webvar{"bk$bkfield"} !~ /^[a-zA-Z0-9\s_.-]+$/) {
    911914      $page->param(err => "Invalid characters in backup $bkfield");
    912915      return;
     
    924927    if ($webvar{bkport} !~ /^\d+$/) {
    925928      $page->param(err => "Backup port must be numeric");
     929      return;
     930    }
     931  }
     932##fixme:  code review:  should normalize $webvar{cidr} variants so we can
     933# check for non-/32 allocations having the backup IP field filled in here,
     934# instead of failing on the allocation or update attempt
     935  if ($webvar{bkip}) {
     936    $webvar{bkip} =~ s/^\s+//g;
     937    $webvar{bkip} =~ s/\s+$//g;
     938    if ($webvar{bkip} !~ /^[\da-fA-F:.]+$/) {
     939      $page->param(err => "Backup IP must be an IP");
    926940      return;
    927941    }
     
    9901004  if ($blockinfo->{hasbk}) {
    9911005    $page->param(hasbackup => $blockinfo->{hasbk});
    992     for my $bkfield (qw(brand model src user vpass epass port)) {
     1006    for my $bkfield (@IPDB::backupfields) {
    9931007      $page->param("bk$bkfield" => $blockinfo->{"bk$bkfield"});
    9941008    }
     
    11251139  if ($IPDBacl{$authuser} =~ /s/) {
    11261140    $updargs{privdata} = $webvar{privdata};
    1127     for my $bkfield (qw(brand model type src user vpass epass port)) {
     1141    for my $bkfield (@IPDB::backupfields) {
    11281142      $updargs{"bk$bkfield"} = $webvar{"bk$bkfield"};
    11291143    }
    1130     $updargs{backupfields} = $webvar{backupfields};
     1144    $updargs{backup} = $webvar{backupfields};
    11311145  } else {
    11321146    # If the user doesn't have permissions to monkey with NOC-things, pass
     
    12031217    $page->param(nocling  => 1);
    12041218    $page->param(privdata => $webvar{privdata});
    1205     if ($binfo->{hasbk}) {
    1206       $page->param(hasbackup => $binfo->{hasbk});
    1207       for my $bkfield (qw(brand model type src user vpass epass port)) {
    1208         $page->param("bk$bkfield" => $binfo->{"bk$bkfield"});
     1219    if ($webvar{backupfields} && $webvar{backupfields} eq 'on') {
     1220      $page->param(hasbackup => 1);
     1221      for my $bkfield (qw(@IPDB::backupfields) {
     1222        $page->param("bk$bkfield" => $webvar{"bk$bkfield"});
    12091223      }
    12101224    }
  • trunk/templates/assign.tmpl

    r796 r798  
    175175<tr><td>Enable password:</td><td><input name="bkepass"></td></tr>
    176176<tr><td>Alternate port (if required):</td><td><input name="bkport"></td></tr>
     177<tr><td>IP (if device is part of a netblock assignment):</td><td><input name="bkip"></td></tr>
    177178</table>
    178179</li></ul>
  • trunk/templates/confirm.tmpl

    r797 r798  
    129129<tr><td>Enable password:</td><td><TMPL_VAR NAME=bkepass></td></tr>
    130130<tr><td>Port:</td><td><TMPL_VAR NAME=bkport></td></tr>
     131<tr><td>IP:</td><td><TMPL_VAR NAME=bkip></td></tr>
    131132</table>
    132133<TMPL_ELSE>
     
    169170<input type="hidden" name="bkepass" value="<TMPL_VAR NAME=bkepass>">
    170171<input type="hidden" name="bkport" value="<TMPL_VAR NAME=bkport>">
     172<input type="hidden" name="bkip" value="<TMPL_VAR NAME=bkip>">
    171173</TMPL_IF>
    172174</TMPL_IF>
  • trunk/templates/edit.tmpl

    r796 r798  
    235235<tr><td>Enable password:</td><td><input name="bkepass" value="<TMPL_VAR NAME=bkepass>"></td></tr>
    236236<tr><td>Alternate port (if required):</td><td><input name="bkport" value="<TMPL_VAR NAME=bkport>"></td></tr>
     237<tr><td>IP (if device is part of a netblock assignment):</td><td><input name="bkip" value="<TMPL_VAR NAME=bkip>"></td></tr>
    237238</table>
    238239
  • trunk/templates/update.tmpl

    r788 r798  
    8080<tr><td>Enable password:</td><td><TMPL_VAR NAME=bkepass></td></tr>
    8181<tr><td>Port:</td><td><TMPL_VAR NAME=bkport></td></tr>
     82<tr><td>IP:</td><td><TMPL_VAR NAME=bkip></td></tr>
    8283</table>
    8384<TMPL_ELSE>
Note: See TracChangeset for help on using the changeset viewer.