1 | #!/usr/bin/perl
|
---|
2 | # ipdb/cgi-bin/newcity.cgi
|
---|
3 | # Add new city to database
|
---|
4 | ###
|
---|
5 | # SVN revision info
|
---|
6 | # $Date: 2010-07-16 19:56:36 +0000 (Fri, 16 Jul 2010) $
|
---|
7 | # SVN revision $Rev: 431 $
|
---|
8 | # Last update by $Author: kdeugau $
|
---|
9 | ###
|
---|
10 | # Copyright (C) 2004-2010 - Kris Deugau
|
---|
11 |
|
---|
12 | use strict;
|
---|
13 | use warnings;
|
---|
14 | #use CGI::Carp qw(fatalsToBrowser);
|
---|
15 | use DBI;
|
---|
16 | use CommonWeb qw(:ALL);
|
---|
17 | #use POSIX qw(ceil);
|
---|
18 | use NetAddr::IP;
|
---|
19 |
|
---|
20 | use Sys::Syslog;
|
---|
21 |
|
---|
22 | # don't remove! required for GNU/FHS-ish install from tarball
|
---|
23 | ##uselib##
|
---|
24 |
|
---|
25 | use MyIPDB;
|
---|
26 |
|
---|
27 | openlog "IPDB","pid","$IPDB::syslog_facility";
|
---|
28 |
|
---|
29 | # Collect the username from HTTP auth. If undefined, we're in a test environment.
|
---|
30 | my $authuser;
|
---|
31 | if (!defined($ENV{'REMOTE_USER'})) {
|
---|
32 | $authuser = '__temptest';
|
---|
33 | } else {
|
---|
34 | $authuser = $ENV{'REMOTE_USER'};
|
---|
35 | }
|
---|
36 |
|
---|
37 | my %webvar = parse_post();
|
---|
38 | cleanInput(\%webvar);
|
---|
39 |
|
---|
40 | my ($dbh,$errstr) = connectDB_My;
|
---|
41 | my $sth;
|
---|
42 |
|
---|
43 | print "Content-type: text/html\n\n";
|
---|
44 |
|
---|
45 | if ($webvar{pop} eq 'on') {
|
---|
46 | $sth = $dbh->prepare("insert into cities (city,routing) values ('$webvar{city}','y')");
|
---|
47 | } else {
|
---|
48 | $sth = $dbh->prepare("insert into cities (city,routing) values ('$webvar{city}','n')");
|
---|
49 | }
|
---|
50 | $sth->execute;
|
---|
51 |
|
---|
52 | if ($sth->err) {
|
---|
53 | print "Error adding city to database: ".$sth->errstr;
|
---|
54 | mailNotify($dbh, 'f:nci', "IPDB city add failure",
|
---|
55 | "$authuser could not add city '$webvar{city}' to database: ".$sth->errstr);
|
---|
56 | syslog "err", "$authuser could not add city '$webvar{city}' to database: ".$sth->errstr;
|
---|
57 | } else {
|
---|
58 | print "City added. Closing this window should refresh the page.";
|
---|
59 | syslog "notice", "$authuser added city/location '$webvar{pop}'".
|
---|
60 | (($webvar{pop} eq 'on') ? ' as POP location' : '');
|
---|
61 | }
|
---|
62 |
|
---|
63 | finish($dbh);
|
---|