Bug 12600: remove duplicate use statement from code
[koha.git] / misc / cronjobs / delete_patrons.pl
bloba1463b174cfd578fc2074f3ce4e206cb86335a03
1 #!/usr/bin/perl
3 use Modern::Perl;
5 use Pod::Usage;
6 use Getopt::Long;
8 use C4::Members;
9 use C4::VirtualShelves;
10 use Koha::DateUtils;
12 my ( $help, $verbose, $not_borrowed_since, $expired_before, $category_code,
13 $branchcode, $confirm );
14 GetOptions(
15 'h|help' => \$help,
16 'v|verbose' => \$verbose,
17 'not_borrowed_since:s' => \$not_borrowed_since,
18 'expired_before:s' => \$expired_before,
19 'category_code:s' => \$category_code,
20 'library:s' => \$branchcode,
21 'c|confirm' => \$confirm,
22 ) || pod2usage(1);
24 if ($help) {
25 pod2usage(1);
28 $not_borrowed_since = dt_from_string( $not_borrowed_since, 'iso' )
29 if $not_borrowed_since;
31 $expired_before = dt_from_string( $expired_before, 'iso' )
32 if $expired_before;
34 unless ( $not_borrowed_since or $expired_before or $category_code or $branchcode ) {
35 pod2usage(q{At least one filter is mandatory});
36 exit;
39 my $members = GetBorrowersToExpunge(
41 not_borrowered_since => $not_borrowed_since,
42 expired_before => $expired_before,
43 category_code => $category_code,
44 branchcode => $branchcode,
48 unless ($confirm) {
49 say "Doing a dry run; no patron records will actually be deleted.";
50 say "Run again with --confirm to delete the records.";
53 say scalar(@$members) . " patrons to delete";
55 my $dbh = C4::Context->dbh;
56 $dbh->{RaiseError} = 1;
57 $dbh->{PrintError} = 0;
59 $dbh->{AutoCommit} = 0; # use transactions to avoid partial deletes
60 my $deleted = 0;
61 for my $member (@$members) {
62 print "Trying to delete patron $member->{borrowernumber}... "
63 if $verbose;
65 my $borrowernumber = $member->{borrowernumber};
66 my $flags = C4::Members::patronflags( $member );
67 if ( my $charges = $flags->{CHARGES}{amount} ) {
68 say "Failed to delete patron $borrowernumber: patron has $charges in fines";
69 next;
72 eval {
73 C4::Members::MoveMemberToDeleted( $borrowernumber )
74 if $confirm;
76 if ($@) {
77 say "Failed to delete patron $borrowernumber, cannot move it: ($@)";
78 $dbh->rollback;
79 next;
81 eval {
82 C4::VirtualShelves::HandleDelBorrower( $borrowernumber )
83 if $confirm;
85 if ($@) {
86 say "Failed to delete patron $borrowernumber, error handling its lists: ($@)";
87 $dbh->rollback;
88 next;
90 eval { C4::Members::DelMember( $borrowernumber ) if $confirm; };
91 if ($@) {
92 say "Failed to delete patron $borrowernumber: $@)";
93 $dbh->rollback;
94 next;
96 $dbh->commit;
97 $deleted++;
98 say "OK" if $verbose;
101 say "$deleted patrons deleted";
103 =head1 NAME
105 delete_patrons - This script deletes patrons
107 =head1 SYNOPSIS
109 delete_patrons.pl [-h|--help] [-v|--verbose] [-c|--confirm] [--not_borrowed_since=DATE] [--expired_before=DATE] [--category_code=CAT] [--library=LIBRARY]
111 Dates should be in ISO format, e.g., 2013-07-19, and can be generated
112 with `date -d '-3 month' "+%Y-%m-%d"`.
114 The options to select the patron records to delete are cumulative. For
115 example, supplying both --expired_before and --library specifies that
116 that patron records must meet both conditions to be selected for deletion.
118 =head1 OPTIONS
120 =over
122 =item B<-h|--help>
124 Print a brief help message
126 =item B<--not_borrowed_since>
128 Delete patrons who have not borrowed since this date.
130 =item B<--expired_before>
132 Delete patrons with an account expired before this date.
134 =item B<--category_code>
136 Delete patrons who have this category code.
138 =item B<--library>
140 Delete patrons in this library.
142 =item B<-c|--confirm>
144 This flag must be provided in order for the script to actually
145 delete patron records. If it is not supplied, the script will
146 only report on the patron records it would have deleted.
148 =item B<-v|--verbose>
150 Verbose mode.
152 =back
154 =head1 AUTHOR
156 Jonathan Druart <jonathan.druart@biblibre.com>
158 =head1 COPYRIGHT
160 Copyright 2013 BibLibre
162 =head1 LICENSE
164 This file is part of Koha.
166 Koha 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
167 Foundation; either version 3 of the License, or (at your option) any later version.
169 You should have received a copy of the GNU General Public License along
170 with Koha; if not, write to the Free Software Foundation, Inc.,
171 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
173 =cut