diff options
author | Kristian Lyngstol <kly@kly.no> | 2016-03-10 16:56:04 +0000 |
---|---|---|
committer | Kristian Lyngstol <kly@kly.no> | 2016-03-10 16:56:04 +0000 |
commit | 85f76c6e8d4a261e26f95bd68088bd521eea5064 (patch) | |
tree | d9bc18ad8bbc901736a71c6d7934e88e527cdbb3 | |
parent | 0752bf4c3f15aa430fa3d67faa528d8e7bf4dbb0 (diff) |
NMS: Support all fields during switch insert
It's not particularly pretty, but it works OK.
Next: Modifications.
-rwxr-xr-x | web/nms.gathering.org/api/private/switch-add | 30 |
1 files changed, 20 insertions, 10 deletions
diff --git a/web/nms.gathering.org/api/private/switch-add b/web/nms.gathering.org/api/private/switch-add index 2b1f306..af8db38 100755 --- a/web/nms.gathering.org/api/private/switch-add +++ b/web/nms.gathering.org/api/private/switch-add @@ -5,7 +5,7 @@ use DBI; use lib '../../../../include'; use nms; -use nms::web qw(%get_params %json finalize_output get_input); +use nms::web qw(%get_params %json finalize_output get_input $dbh); use strict; use warnings; use JSON; @@ -20,11 +20,14 @@ my @added; my @dups; my $sth = $nms::web::dbh->prepare("SELECT sysname FROM switches WHERE sysname=?"); -my $insert = $nms::web::dbh->prepare("INSERT INTO SWITCHES (ip, sysname, switchtype,placement) VALUES(?,?,'ex2200',?);"); + +my @fields = ('ip', 'sysname', 'switchtype', 'last_updated', 'locked', 'poll_frequency', 'community', 'lldp_chassis_id', 'secondary_ip'); foreach my $tmp2 (@tmp) { my %switch = %{$tmp2}; my $affected = 0; + my %template = (); + map { $template{$_} = 'DEFAULT' } @fields; $sth->execute( $switch{'sysname'}); while ( my @row = $sth->fetchrow_array ) { @@ -32,14 +35,21 @@ foreach my $tmp2 (@tmp) { } if ($affected == 0) { - my ($x1,$x2,$y1,$y2); - $x1 = $switch{'placement'}{'x1'}; - $y1 = $switch{'placement'}{'y1'}; - $x2 = $switch{'placement'}{'xx'}; - $y2 = $switch{'placement'}{'yy'}; - my $place = "(($x1,$y1),($x2,$y2))"; - $json{'foo'} = $place . "foo"; - $insert->execute($switch{'mgtmt4'}, $switch{'sysname'},$place); + map { + if (defined ($template{$_})) { + $template{$_} = $dbh->quote($switch{$_}); + } + } keys %switch; + if (defined($switch{'placement'})) { + my ($x1,$x2,$y1,$y2); + $x1 = $switch{'placement'}{'x1'}; + $y1 = $switch{'placement'}{'y1'}; + $x2 = $switch{'placement'}{'xx'}; + $y2 = $switch{'placement'}{'yy'}; + my $place = "(($x1,$y1),($x2,$y2))"; + $template{'placement'} = $place; + } + $nms::web::dbh->do("INSERT INTO SWITCHES (ip, sysname, switchtype, last_updated, locked, poll_frequency, community, lldp_chassis_id, secondary_ip) VALUES ($template{'ip'}, $template{'sysname'}, $template{'switchtype'}, $template{'last_updated'}, $template{'locked'}, $template{'poll_frequency'}, $template{'community'}, $template{'lldp_chassis_id'}, $template{'secondary_ip'});"); push @added, $switch{'sysname'}; } else { push @dups, $switch{'sysname'}; |