source: trunk/cgi-bin/checkcusts.pl@ 417

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

/trunk

Rearrangements and tweaks toward releaseability:

  • Add Makefile to install halfway-sanely
  • Add .spec file
  • Shuffle "use IPDB;" and "use MyIPDB;" lines so that we can automagically insert a suitable "use lib..." line during 'make install'
  • Check copyright statements
  • Clear up some defaults, and place a number of "constants" in IPDB/MyIPDB rather than having them hardcoded all over the place (Still need to think of a sane way to do this for ipdb.psql's alloctype preseeding)
  • Tweak $VERSION identifier in IPDB.pm so it can be defined in the Makefile
  • Clean up some dangling bits from repository history conversion, remove unneeded "use ..." statements
  • Tweak rWHOIS export script to use more globals and "constants" from (My)IPDB.pm, and more Perl internals than system()-equivalents. Add a few fixme comments for longer-term flexibility improvements.
  • Property svn:executable set to *
  • Property svn:keywords set to Date Rev Author
File size: 1.7 KB
Line 
1#!/usr/bin/perl
2# Check all customer IDs to see which are invalid
3###
4# SVN revision info
5# $Date: 2010-06-30 21:48:03 +0000 (Wed, 30 Jun 2010) $
6# SVN revision $Rev: 417 $
7# Last update by $Author: kdeugau $
8###
9# Copyright (C) 2004-2010 Kris Deugau
10
11use DBI;
12use IPDB 2.0 qw(:ALL);
13
14# We'll be hosing the server with several thousand queries. We
15# REALLY don't want the overhead and load of opening a new connection
16# for each query.
17#use CustIDCK;
18
19use NetAddr::IP;
20
21$priv1 = new NetAddr::IP '10.0.0.0/8';
22$priv2 = new NetAddr::IP '172.16.0.0/12';
23$priv3 = new NetAddr::IP '192.168.0.0/16';
24
25print "Content-type: text/plain\n\n";
26
27($dbh,$errstr) = connectDB("ipdb", "ipdb", "ipdbpwd");
28$IDH = DBI->connect ("DBI:Pg:host=billing;dbname=custids", "cidcheck", "c1dch4ck");
29
30$sth = $dbh->prepare("select distinct def_custid from alloctypes where listorder >=40");
31$sth->execute;
32while (@data = $sth->fetchrow_array) {
33 push @def_custids, $data[0];
34}
35$sth = $dbh->prepare("select cidr,custid from searchme where not (custid='$IPDB::defcustid') ".
36 "and not (custid='STAFF') order by cidr");
37#$sth = $dbh->prepare("select cidr,custid from searchme order by cidr");
38$sth->execute;
39
40$IDS = $IDH->prepare("select custid from custid where custid=?");
41
42$count = $bad = 0;
43while (@data = $sth->fetchrow_array) {
44 $cidr = new NetAddr::IP $data[0];
45 if ($cidr->within($priv1) or $cidr->within($priv2) or $cidr->within($priv3) or
46 (grep /$data[1]/, @def_custids)) {
47 # no-op. we ignore these.
48 } else {
49 $count++;
50 $IDS->execute($data[1]);
51 $hr = $IDS->fetchrow_hashref();
52 if (!$hr->{custid}) {
53 print " $data[0]\thas invalid CustID '$data[1]'\n";
54 $bad++;
55 }
56 $IDS->finish;
57 }
58}
59
60$IDH->disconnect;
61$dbh->disconnect;
62
63print "$count customer blocks, $bad bad.\n";
64exit 0;
65
66
67### Ported subs of sorts from CustIDCK.pm
Note: See TracBrowser for help on using the repository browser.