source: trunk/cgi-bin/newnode.cgi@ 416

Last change on this file since 416 was 416, checked in by Kris Deugau, 14 years ago

/trunk

Update mailNotify to use new table notify to decide who to spam
with notices on various events. See #2.

  • existing notification calls updated. Still need to move calls into IPDB.pm's subs
  • IPDB.pm and MyIPDB.pm updated with new semiglobal vars for org name, SMTP host, domain. Will add others as needed so MyIPDB.pm can be moved to /etc/ipdb/ (see #17).

Internal allocation types will need to be rearranged somewhat to
make full use of the flexibility possible. See #20.

  • Property svn:executable set to *
  • Property svn:keywords set to Date Rev Author
File size: 1.4 KB
Line 
1#!/usr/bin/perl
2# ipdb/cgi-bin/newnode.cgi
3# Add new wifi tower or fibre demarc switch ("node") to database
4###
5# SVN revision info
6# $Date: 2010-05-18 22:08:12 +0000 (Tue, 18 May 2010) $
7# SVN revision $Rev: 416 $
8# Last update by $Author: kdeugau $
9###
10# Copyright (C) 2010 - Kris Deugau
11
12use strict;
13use warnings;
14#use CGI::Carp qw(fatalsToBrowser);
15use DBI;
16use CommonWeb qw(:ALL);
17use MyIPDB;
18#use POSIX qw(ceil);
19use NetAddr::IP;
20
21use Sys::Syslog;
22
23openlog "IPDB","pid","local2";
24
25# Collect the username from HTTP auth. If undefined, we're in a test environment.
26my $authuser;
27if (!defined($ENV{'REMOTE_USER'})) {
28 $authuser = '__temptest';
29} else {
30 $authuser = $ENV{'REMOTE_USER'};
31}
32
33my %webvar = parse_post();
34cleanInput(\%webvar);
35
36my ($dbh,$errstr) = connectDB_My;
37my $sth;
38
39print "Content-type: text/html\n\n";
40
41$sth = $dbh->prepare("insert into nodes (node_type,node_name,node_ip)".
42 " values ('$webvar{type}','$webvar{nodename}','$webvar{nodeip}')");
43$sth->execute;
44
45if ($sth->err) {
46 print "Error adding node to database: ".$sth->errstr;
47 mailNotify($dbh, 'f:nno', "IPDB node add failure",
48 "$authuser could not add node '$webvar{nodename}','$webvar{type}' to database: ".$sth->errstr);
49 syslog "err", "$authuser could not add node '$webvar{nodename}','$webvar{type}' to database: ".$sth->errstr;
50} else {
51 print "Node added. Closing this window should refresh the page.";
52 syslog "notice", "$authuser added node '$webvar{nodename}'";
53}
54
55finish($dbh);
Note: See TracBrowser for help on using the repository browser.