Bug 29525: Make batch_anonymise.pl deal with holds
[koha.git] / misc / cronjobs / batch_anonymise.pl
1 #!/usr/bin/perl
2
3 # Copyright 2011, ByWater Solutions.
4 #
5 # This file is part of Koha.
6 #
7 # Koha is free software; you can redistribute it and/or modify it
8 # 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 # Koha is distributed in the hope that it will be useful, but
13 # 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 Koha; if not, see <http://www.gnu.org/licenses>.
19
20 use Modern::Perl;
21
22 use Koha::Script -cron;
23
24 use C4::Context;
25 use C4::Log qw( cronlogaction );
26
27 use Koha::Database;
28 use Koha::Old::Holds;
29 use Koha::Patrons;
30
31 use Date::Calc qw( Add_Delta_Days Today );
32 use Getopt::Long qw( GetOptions );
33
34 sub usage {
35     print STDERR <<USAGE;
36 Usage: $0  --days DAYS  [-h|--help]
37    --days DAYS        (MANDATORY) anonymise patron history that is older than DAYS days.
38    -v --verbose       gives a little more information
39    -h --help          prints this help message, and exits, ignoring all
40                       other options
41 Note: If the system preference 'AnonymousPatron' is not defined, NULL will be used.
42 USAGE
43     exit $_[0];
44 }
45
46 my ( $help, $days, $verbose );
47
48 GetOptions(
49     'h|help'       => \$help,
50     'days:i'       => \$days,
51     'v|verbose'    => \$verbose,
52 ) || usage(1);
53
54 if ($help) {
55     usage(0);
56 }
57
58 if ( !$days  ) {
59     print "The days parameter is mandatory.\n\n";
60     usage(1);
61 }
62
63 cronlogaction();
64
65 my ($year,$month,$day) = Today();
66 my ($newyear,$newmonth,$newday) = Add_Delta_Days ($year,$month,$day,(-1)*$days);
67 my $formatdate = sprintf "%4d-%02d-%02d",$newyear,$newmonth,$newday;
68 $verbose and print "Checkouts and holds before $formatdate will be anonymised.\n";
69
70 my $rows = Koha::Patrons->search_patrons_to_anonymise( { before => $formatdate } )->anonymise_issue_history( { before => $formatdate } );
71 $verbose and print int($rows) . " checkouts anonymised.\n";
72
73 $rows = Koha::Old::Holds
74           ->filter_by_anonymizable
75           ->filter_by_last_update( { days => $days } )
76           ->anonymize;
77
78 $verbose and print int($rows) . " holds anonymised.\n";
79
80 exit(0);