source: trunk/cgi-bin/IPDB.pm@ 69

Last change on this file since 69 was 69, checked in by Kris Deugau, 20 years ago

/trunk

Fix for mailNotify() so it works

File size: 2.5 KB
Line 
1# ipdb/cgi-bin/IPDB.pm
2# Contains functions for IPDB - database access, subnet mangling, block allocation, etc
3###
4# SVN revision info
5# $Date$
6# SVN revision $Rev$
7# Last update by $Author$
8###
9# Copyright (C) 2004 - Kris Deugau
10
11package IPDB;
12
13use strict;
14use warnings;
15use Exporter;
16use Net::SMTP;
17use POSIX;
18use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
19
20$VERSION = 1.0;
21@ISA = qw(Exporter);
22@EXPORT_OK = qw(&connectDB &checkDBSanity &allocateBlock &mailNotify);
23
24@EXPORT = (); # Export nothing by default.
25%EXPORT_TAGS = ( ALL => [qw( &connectDB &checkDBSanity &allocateBlock &mailNotify)]
26 );
27
28
29# Creates connection to IPDB.
30# Default is a PostgreSQL db; could be any DBMS with the
31# right changes. MySQL in comments. Note that some DBMS's don't
32# support transactions, this is a Bad Thing!
33# Returns a handle to the db.
34sub connectDB {
35 my $dbh;
36 my $DSN = "DBI:Pg:dbname=ipdb";
37 my $user = 'ipdb';
38 my $pw = 'ipdbpwd';
39
40# Note that we want to autocommit by default, and we will turn it off locally as necessary.
41 $dbh = DBI->connect($DSN, $user, $pw, { AutoCommit => 1 } )
42 or return undef if(!$dbh);
43
44 return $dbh;
45} # end connectDB
46
47# Quick check to see if the db is responding. A full integrity
48# check will have to be a separate tool to walk the IP allocation trees.
49sub checkDBSanity {
50 my $dbh = connectDB();
51
52 if (!$dbh) {
53 print "Cannot connect to the database!";
54 } else {
55 # it connects, try a stmt.
56 my $sth = $dbh->prepare('select cidr from masterblocks');
57 my $err = $sth->execute();
58
59 if ($sth->fetchrow()) {
60 # all is well.
61 return 1;
62 } else {
63 print "Connected to the database, but could not execute test statement. ".$sth->errstr();
64 }
65 }
66 # Clean up after ourselves.
67 $dbh->disconnect;
68} # end checkDBSanity
69
70
71# allocateBlock()
72# Does all of the magic of actually allocating a netblock
73sub allocateBlock($) {
74}
75
76
77# mailNotify()
78# Sends notification mail to recipients regarding an IPDB operation
79sub mailNotify ($$$) {
80 my ($recip,$subj,$message) = @_;
81 my $mailer = Net::SMTP->new("smtp.example.com", Hello => "ipdb.example.com");
82
83 $mailer->mail('ipdb@example.com');
84 $mailer->to($recip);
85 $mailer->data("From: \"IP Database\" <ipdb\@example.com>\n",
86 "Date: ".strftime("%a, %d %b %Y %H:%M:%S %z",localtime)."\n",
87 "Subject: {IPDB} $subj\n",
88 "X-Mailer: IPDB Notify v".sprintf("%.1d",$IPDB::VERSION)."\n",
89 "Organization: Example Corp\n",
90 "\n$message\n");
91 $mailer->quit;
92}
93
94# Indicates module loaded OK. Required by Perl.
951;
Note: See TracBrowser for help on using the repository browser.