Bug 14697: Make controller methods rely on the stashed user
[koha.git] / misc / cronjobs / delete_records_via_leader.pl
blob80c9996781152e5166a396c212f31b49cc4d2edc
1 #!/usr/bin/perl
3 #-----------------------------------
4 # Copyright 2013 ByWater Solutions
6 # This file is part of Koha.
8 # Koha is free software; you can redistribute it and/or modify it under the
9 # terms of the GNU General Public License as published by the Free Software
10 # Foundation; either version 3 of the License, or (at your option) any later
11 # version.
13 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
14 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
15 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License along
18 # with Koha; if not, write to the Free Software Foundation, Inc.,
19 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 #-----------------------------------
22 use Modern::Perl;
24 binmode( STDOUT, ":encoding(UTF-8)" );
26 BEGIN {
28 # find Koha's Perl modules
29 # test carefully before changing this
30 use FindBin;
31 eval { require "$FindBin::Bin/../kohalib.pl" };
34 use Getopt::Long;
35 use Pod::Usage;
36 use Koha::Script -cron;
37 use C4::Biblio;
38 use C4::Items;
39 use Koha::Database;
40 use Koha::Biblios;
41 use Koha::Biblio::Metadatas;
43 my $delete_items;
44 my $confirm;
45 my $test;
46 my $verbose;
47 my $help;
49 GetOptions(
50 'i|di|delete-items' => \$delete_items,
51 'c|confirm' => \$confirm,
52 't|test' => \$test,
53 'v|verbose' => \$verbose,
54 'h|help' => \$help,
57 pod2usage(q|--test and --confirm cannot be specified together|) if $test and $confirm;
59 unless ( $confirm or $test ) {
60 warn "Running in test mode as --confirm is not passed\n";
61 $test = 1;
64 if ( $help ) {
65 say qq{
66 delete_records_via_leader.pl - Attempt to delete any MARC records where the leader character 5 equals 'd'
67 usage: delete_records_via_leader.pl --confirm --verbose [--test]
68 This script has the following parameters :
69 -h --help: Prints this message
70 -c --confirm: Script will do nothing without this parameter
71 -v --verbose: Be verbose
72 -t --test: Test mode, does not delete records.
73 Test mode cannot determine if a record/item will be deleted successfully,
74 it will only tell you what records and items the script will attempt to delete.
75 -i --delete-items: Try deleting items before deleting record.
76 Records with items cannot be deleted.
78 exit();
81 my @metadatas = # Should be replaced by a call to C4::Search on zebra index
82 # Record-status when bug 15537 will be pushed
83 Koha::Biblio::Metadatas->search( { format => 'marcxml', schema => C4::Context->preference('marcflavour'), metadata => { LIKE => '%<leader>_____d%' } } );
85 my $total_records_count = @metadatas;
86 my $deleted_records_count = 0;
87 my $total_items_count = 0;
88 my $deleted_items_count = 0;
90 foreach my $m (@metadatas) {
91 my $biblionumber = $m->get_column('biblionumber');
93 say "RECORD: $biblionumber" if $verbose;
95 if ($delete_items) {
96 my $deleted_count = 0;
97 my $biblio = Koha::Biblios->find( $biblionumber );
98 my @items = $biblio ? $biblio->items : ();
99 foreach my $item ( @items ) {
100 my $itemnumber = $item->itemnumber();
102 my $error = $test ? "Test mode enabled" : DelItemCheck( $biblionumber, $itemnumber );
103 $error = undef if $error eq '1';
105 if ($error) {
106 say "ERROR DELETING ITEM $itemnumber: $error";
108 else {
109 say "DELETED ITEM $itemnumber" if $verbose;
110 $deleted_items_count++;
113 $total_items_count++;
118 my $error = $test ? q{Test mode enabled} : DelBiblio($biblionumber);
119 if ( $error ) {
120 say "ERROR DELETING BIBLIO $biblionumber: $error";
121 } else {
122 say "DELETED BIBLIO $biblionumber" if $verbose;
123 $deleted_records_count++;
126 say q{};
129 if ( $verbose ) {
130 say "DELETED $deleted_records_count OF $total_records_count RECORDS";
131 say "DELETED $deleted_items_count OF $total_items_count ITEMS" if $delete_items;