source: trunk/dnsbl/orgmove@ 73

Last change on this file since 73 was 73, checked in by Kris Deugau, 2 months ago

/trunk/dnsbl

The "begin the cleanup from production" cleanup commit

  • Move default DB connect info into DNSBL.pm
  • Move configuration fragment loading into DNSBL.pm
  • Change up configuration fragment to use %siteconfig instead of individual variables
  • Normalize parts of locating the module to at least a "good enough" level
  • if(0) out a chunk of export-dnsbl

Some things may be broken.

  • Property svn:executable set to *
  • Property svn:keywords set to Date Rev Author Id
File size: 1.6 KB
Line 
1#!/usr/bin/perl
2# move blocks listed with one org to another. intended for orgs that have several bytestrings as names in WHOIS.
3##
4# $Id: orgmove 73 2025-09-05 20:04:46Z kdeugau $
5# Copyright 2009-2010,2025 Kris Deugau <kdeugau@deepnet.cx>
6#
7# This program is free software: you can redistribute it and/or modify
8# it under the terms of the GNU General Public License as published by
9# the Free Software Foundation, either version 3 of the License, or
10# (at your option) any later version.
11#
12# This program is distributed in the hope that it will be useful,
13# but WITHOUT ANY WARRANTY; without even the implied warranty of
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15# GNU General Public License for more details.
16#
17# You should have received a copy of the GNU General Public License
18# along with this program. If not, see <http://www.gnu.org/licenses/>.
19##
20
21use strict;
22use warnings;
23use DBI;
24
25# push "the directory the script is in" into @INC
26use FindBin;
27use lib "$FindBin::RealBin/";
28
29use DNSBL 3.0;
30
31die "Usage: orgmove <config name> <old orgid> <new orgid>\n" if !$ARGV[2];
32my $cfgname = shift @ARGV;
33
34my $dnsbl = new DNSBL (configfile => "/etc/dnsbl/$cfgname.conf");
35$dnsbl->connect;
36
37$dbh->{AutoCommit} = 0;
38
39my $sth1 = $dbh->prepare("update blocks set orgid=? where orgid=?");
40my $sth2 = $dbh->prepare("delete from orgs where orgid=?");
41
42print "updating orgid $ARGV[0] to $ARGV[1]...\n";
43$sth1->execute($ARGV[1],$ARGV[0]) or die "died horribly: $!\n";
44print "failed org change ($ARGV[0] -> $ARGV[1]): ".$sth1->errstr."\n" if $sth1->err;
45$sth2->execute($ARGV[0]);
46print "failed org delete ($ARGV[0]): ".$sth2->errstr."\n" if $sth2->err;
47
48$dbh->commit;
Note: See TracBrowser for help on using the repository browser.