#!/usr/bin/perl
# Delist a URI
##
# $Id: delist-uri 83 2025-09-11 20:34:37Z kdeugau $
# Copyright 2010,2025 Kris Deugau <kdeugau@deepnet.cx>
# 
#    This program is free software: you can redistribute it and/or modify
#    it under the terms of the GNU General Public License as published by
#    the Free Software Foundation, either version 3 of the License, or
#    (at your option) any later version. 
# 
#    This program is distributed in the hope that it will be useful,
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#    GNU General Public License for more details.
# 
#    You should have received a copy of the GNU General Public License
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
##

use strict;
use warnings;
use DBI;

# push "the directory the script is in" into @INC
use FindBin;
use lib "$FindBin::RealBin/";

use URIdb 2.0;

die "Usage: delist-uri <list> <domain>\n"
	if !$ARGV[1];

my $cfgname = shift @ARGV;

my $uridb = new URIdb (configfile => "/etc/uridb/$cfgname.conf");
$uridb->connect;

my %config;
my $sth = $dbh->prepare("SELECT key,value FROM misc");
$sth->execute;
while (my ($key,$value) = $sth->fetchrow_array) {
  $config{$key} = $value;
}

my $removeme = $ARGV[0];

$sth = $dbh->prepare("SELECT uri,list,count,added,comment FROM urilist WHERE uri=?");
$sth->execute($removeme);
my ($uri,$list,$count,$added,$comment) = $sth->fetchrow_array;

die "URI $removeme not found.  Exiting.\n" if !$uri;

# need to do the next in a single transaction
local $dbh->{AutoCommit} = 0;
local $dbh->{RaiseError} = 1;
eval {
  $sth = $dbh->prepare("INSERT INTO waslisted (uri,list,count,origadded,comment) VALUES (?,?,?,?,?)");
  $sth->execute($uri,$list,$count,$added,$comment);
  $sth = $dbh->prepare("DELETE FROM urilist WHERE uri=?");
  $sth->execute($uri);
  $dbh->commit;
};
if ($@) {
  my $msg = $@;
  eval { $dbh->rollback; };
  print "Failed to move record from urilist to waslisted: $msg\n";
}
