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

Last change on this file since 906 was 906, checked in by Kris Deugau, 7 years ago

/trunk

Bulk addition of "add 'the directory the script is in' to @INC" for Perls
that have dropped '.' from @INC

  • Property svn:executable set to *
  • Property svn:keywords set to Date Rev Author
File size: 1.9 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: 2017-08-15 17:53:23 +0000 (Tue, 15 Aug 2017) $
7# SVN revision $Rev: 906 $
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 CGI::Simple;
16use HTML::Template;
17use DBI;
18#use POSIX qw(ceil);
19use NetAddr::IP;
20use Sys::Syslog;
21
22# don't remove! required for GNU/FHS-ish install from tarball
23##uselib##
24
25# push "the directory the script is in" into @INC
26use FindBin;
27use lib "$FindBin::RealBin/";
28
29use MyIPDB;
30
31openlog "IPDB","pid","$IPDB::syslog_facility";
32
33# Collect the username from HTTP auth. If undefined, we're in a test environment.
34my $authuser;
35if (!defined($ENV{'REMOTE_USER'})) {
36 $authuser = '__temptest';
37} else {
38 $authuser = $ENV{'REMOTE_USER'};
39}
40
41# Set up the CGI object...
42my $q = new CGI::Simple;
43# ... and get query-string params as well as POST params if necessary
44$q->parse_query_string;
45
46# Convenience; saves changing all references to %webvar
47##fixme: tweak for handling <select multiple='y' size=3> (list with multiple selection)
48my %webvar = $q->Vars;
49
50my ($dbh,$errstr) = connectDB_My;
51my $sth;
52
53$ENV{HTML_TEMPLATE_ROOT} = '../templates';
54
55my $page = HTML::Template->new(filename => "newnode.tmpl");
56
57if ($webvar{nodename}) {
58 $sth = $dbh->prepare("insert into nodes (node_type,node_name,node_ip) values (?,?,?)");
59 $sth->execute($webvar{type}, $webvar{nodename}, $webvar{nodeip});
60 $page->param(nodename => $webvar{nodename});
61 if ($sth->err) {
62 $page->param(err => $sth->errstr);
63 my $msg = "$authuser could not add node '$webvar{nodename}','$webvar{type}' to database: ".$sth->errstr;
64 mailNotify($dbh, 'f:nno', "IPDB node add failure", $msg);
65 syslog "err", $msg;
66 } else {
67 syslog "notice", "$authuser added node '$webvar{nodename}'";
68 }
69}
70
71print "Content-type: text/html\n\n";
72
73print $page->output;
74
75finish($dbh);
Note: See TracBrowser for help on using the repository browser.