3 #script to administer Authorities without biblio
5 # Copyright 2009 BibLibre
6 # written 2009-05-04 by paul dot poulain at biblibre.com
8 # This file is part of Koha.
10 # Koha is free software; you can redistribute it and/or modify it under the
11 # terms of the GNU General Public License as published by the Free Software
12 # Foundation; either version 2 of the License, or (at your option) any later
15 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
16 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
17 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
19 # You should have received a copy of the GNU General Public License along
20 # with Koha; if not, write to the Free Software Foundation, Inc.,
21 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
27 use C4::AuthoritiesMarc;
30 my ($test,@authtypes);
33 'aut|authtypecode:s' => \@authtypes,
35 'h|help' => \$want_help
43 my $dbh=C4::Context->dbh;
44 @authtypes or @authtypes = qw( NC );
48 # prepare the request to retrieve all authorities of the requested types
49 my $rqselect = $dbh->prepare(
50 qq{SELECT * from auth_header where authtypecode IN (}
51 . join(",",map{$dbh->quote($_)}@authtypes)
60 while (my $data=$rqselect->fetchrow_hashref){
62 $query= "an=".$data->{'authid'};
63 # search for biblios mapped
64 my ($err,$res,$used) = C4::Search::SimpleSearch($query,0,10);
66 print "$counter\n" unless $counter++ % 100;
67 # if found, delete, otherwise, just count
68 if ($used>=$thresholdmin and $used<=$thresholdmax){
69 DelAuthority($data->{'authid'}) unless $test;
76 print "$counter authorities parsed, $totdeleted deleted and $totundeleted unchanged because used\n";
81 $0: Removes unused authorities.
83 This script will parse all authoritiestypes given as parameter, and remove authorities without any biblio attached.
84 warning : there is no individual confirmation !
86 --aut|authtypecode TYPE the list of authtypes to check
87 --t|test test mode, don't delete really, just count
88 --help or -h show this message.