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: 2024-08-02 15:49:45 +0000 (Fri, 02 Aug 2024) $
|
---|
7 | # SVN revision $Rev: 952 $
|
---|
8 | # Last update by $Author: kdeugau $
|
---|
9 | ###
|
---|
10 | # Copyright (C) 2010 - Kris Deugau
|
---|
11 |
|
---|
12 | use strict;
|
---|
13 | use warnings;
|
---|
14 | #use CGI::Carp qw(fatalsToBrowser);
|
---|
15 | use CGI::Simple;
|
---|
16 | use HTML::Template;
|
---|
17 | use DBI;
|
---|
18 | #use POSIX qw(ceil);
|
---|
19 | use NetAddr::IP;
|
---|
20 | use 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
|
---|
26 | use FindBin;
|
---|
27 | use lib "$FindBin::RealBin/";
|
---|
28 |
|
---|
29 | use MyIPDB;
|
---|
30 |
|
---|
31 | openlog "IPDB","pid","$IPDB::syslog_facility";
|
---|
32 |
|
---|
33 | # Collect the username from HTTP auth. If undefined, we're in a test environment.
|
---|
34 | my $authuser;
|
---|
35 | if (!defined($ENV{'REMOTE_USER'})) {
|
---|
36 | $authuser = '__temptest';
|
---|
37 | } else {
|
---|
38 | $authuser = $ENV{'REMOTE_USER'};
|
---|
39 | }
|
---|
40 |
|
---|
41 | # Set up the CGI object...
|
---|
42 | my $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)
|
---|
48 | my %webvar = $q->Vars;
|
---|
49 |
|
---|
50 | my ($dbh,$errstr) = connectDB_My;
|
---|
51 | my $sth;
|
---|
52 |
|
---|
53 | $ENV{HTML_TEMPLATE_ROOT} = '../templates';
|
---|
54 |
|
---|
55 | my $page = HTML::Template->new(filename => "newnode.tmpl");
|
---|
56 |
|
---|
57 | if ($webvar{nodename}) {
|
---|
58 | $sth = $dbh->prepare("insert into nodes (node_type,node_name,node_ip) values (?,?,?)");
|
---|
59 | $webvar{nodeip} =~ s/^\s*//;
|
---|
60 | $webvar{nodeip} =~ s/\s*$//;
|
---|
61 | $sth->execute($webvar{type}, $webvar{nodename}, $webvar{nodeip});
|
---|
62 | $page->param(nodename => $webvar{nodename});
|
---|
63 | if ($sth->err) {
|
---|
64 | $page->param(err => $sth->errstr);
|
---|
65 | my $msg = "$authuser could not add node '$webvar{nodename}','$webvar{type}' to database: ".$sth->errstr;
|
---|
66 | mailNotify($dbh, 'f:nno', "IPDB node add failure", $msg);
|
---|
67 | syslog "err", $msg;
|
---|
68 | } else {
|
---|
69 | syslog "notice", "$authuser added node '$webvar{nodename}'";
|
---|
70 | }
|
---|
71 | }
|
---|
72 |
|
---|
73 | print "Content-type: text/html\n\n";
|
---|
74 |
|
---|
75 | print $page->output;
|
---|
76 |
|
---|
77 | finish($dbh);
|
---|