[freeside-commits] freeside/FS/bin freeside-wipe-cvv,NONE,1.1.2.2
Mark Wells
mark at wavetail.420.am
Mon Aug 23 20:07:05 PDT 2010
- Previous message: [freeside-commits] freeside/FS/bin freeside-wipe-cvv,NONE,1.1
- Next message: [freeside-commits] freeside/httemplate/search 477.html, 1.6, 1.7 477partIA_detail.html, 1.2, 1.3 report_477.html, 1.4, 1.5 477partVI.html, 1.3, NONE 477partVI_census.html, NONE, 1.1
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /home/cvs/cvsroot/freeside/FS/bin
In directory wavetail.420.am:/tmp/cvs-serv15987/FS/bin
Added Files:
Tag: FREESIDE_1_9_BRANCH
freeside-wipe-cvv
Log Message:
script to remove payment info from canceled customers, RT#9652
--- NEW FILE: freeside-wipe-cvv ---
#!/usr/bin/perl -w
use strict;
use Getopt::Std;
use FS::UID qw(adminsuidsetup dbh);
use FS::Record qw(qsearch qsearchs);
use Time::Local 'timelocal';
use Date::Format 'time2str';
my %opt;
getopts('vnd:', \%opt);
my $user = shift or die &usage;
adminsuidsetup $user;
$FS::UID::AutoCommit = 0;
$FS::Record::nowarn_identical = 1;
my $extra_sql = FS::cust_main->cancel_sql;
$extra_sql = "WHERE $extra_sql
AND cust_main.payby IN('CARD','DCRD','CHEK','DCHK')
";
if($opt{'d'}) {
$opt{'d'} =~ /^(\d+)$/ or die &usage;
my $time = timelocal(0,0,0,(localtime(time-(86400*$1)))[3..5]);
print "Excluding customers canceled after ".time2str("%D",$time)."\n"
if $opt{'v'};
$extra_sql .= ' AND 0 = (' . FS::cust_main->select_count_pkgs_sql .
" AND cust_pkg.cancel > $time)";
}
foreach my $cust_main ( qsearch({
'table' => 'cust_main',
'hashref' => {},
'extra_sql' => $extra_sql
}) ) {
if($opt{'v'}) {
print $cust_main->name, "\n";
}
if($opt{'n'}) {
$cust_main->payinfo('deleted');
$cust_main->paydate('');
$cust_main->payby('BILL');
# can't have a CARD or CHEK without a valid payinfo
}
$cust_main->paycvv('');
my $error = $cust_main->replace;
if($error) {
dbh->rollback;
die "$error (changes reverted)\n";
}
}
dbh->commit;
sub usage {
"Usage:\n\n freeside-wipe-cvv [ -v ] [ -n ] [ -d days ] user\n"
}
=head1 NAME
freeside-wipe-cvv - Wipe sensitive payment information from customer records.
=head1 SYNOPSIS
freeside-wipe-cvv [ -v ] [ -n ] [ -d days ] user
=head1 DESCRIPTION
freeside-wipe-cvv deletes the CVV numbers (and, optionally, credit
card or bank account numbers) of customers who have no non-canceled
packages. Normally CVV numbers are deleted as soon as a payment is
processed; if the customer is canceled before a payment is processed,
this may not happen and the CVV will remain indefinitely, violating
good security practice and (possibly) your merchant agreement.
Running freeside-wipe-cvv will remove this data.
-v: Be verbose.
-n: Remove card and account numbers in addition to CVV numbers. This
will also set the customer's payment method to 'BILL'.
-d days: Only remove CVV/card numbers from customers who have been
inactive for at least that many days. Optional; will default to
all canceled customers.
=cut
- Previous message: [freeside-commits] freeside/FS/bin freeside-wipe-cvv,NONE,1.1
- Next message: [freeside-commits] freeside/httemplate/search 477.html, 1.6, 1.7 477partIA_detail.html, 1.2, 1.3 report_477.html, 1.4, 1.5 477partVI.html, 1.3, NONE 477partVI_census.html, NONE, 1.1
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the freeside-commits
mailing list