Koha/misc/export_borrowers.pl
Petro Vashchuk 1ecf5ee106 Bug 29207: Getopt::Long should not ignore cases
To avoid Getopt::Long treating upper case and lower case options,
this patch restores removed ":config no_ignore_case".

Steps to reproduce:
1. Start koha-z3950-responder deamon for any instance.
2. Check z3950.log log file, there should be
"[fatal] Failed to listen on ...-koha-z3950" in it.
3. Alternatively you can "curl localhost:2100/biblios?version=1.1 -v"
to ensure that it doesn't work "Failed to connect to localhost
port 2100: Connection refused".
4. Apply the patch.
5. Stop and start daemon again.
6. Check the logs again, there should be no new error there.
7. Same way do the curl to ensure that this time it listens on that port.

Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>

Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de>

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
2021-10-25 14:08:06 +02:00

146 lines
4.7 KiB
Perl
Executable file

#!/usr/bin/perl
# Copyright 2011 BibLibre
#
# This file is part of Koha.
#
# 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 Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# Koha is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Koha; if not, see <http://www.gnu.org/licenses>.
# Script to export borrowers
use Modern::Perl;
use Text::CSV;
use Getopt::Long qw( GetOptions :config no_ignore_case );
use Koha::Script;
use C4::Context;
use Koha::Patrons;
binmode STDOUT, ":encoding(UTF-8)";
sub print_usage {
( my $basename = $0 ) =~ s|.*/||;
print <<USAGE;
$basename
Export patron informations in CSV format.
It prints to standard output. Use redirection to save CSV in a file.
Usage:
$0 [--field=FIELD [--field=FIELD [...]]] [--separator=CHAR] [--show-header] [--where=CONDITION]
$0 -h
-f, --field=FIELD Field to export. It is repeatable and has to match
column names of the borrower table (also as 'description' and 'category_type'
If no field is specified, then all fields will be
exported.
-s, --separator=CHAR This character will be used to separate fields.
Some characters like | or ; will need to be escaped
in the parameter setting, like -s=\\| or -s=\\;
If no separator is specified, the CSVDelimiter pref
will be used (or a comma, if the pref is empty)
-H, --show-header Print field names on first row
-w, --where=CONDITION Condition to filter borrowers to export
(SQL where clause).
CONDITION must be enclosed by double quotes
You can use single quotes around a field value
within the condition like:
--where "surname='De Lattre'"
-h, --help Show this help
USAGE
}
# Getting parameters
my @fields;
my $separator;
my $show_header;
my $where;
my $help;
GetOptions(
'field|f=s' => \@fields,
'separator|s=s' => \$separator,
'show-header|H' => \$show_header,
'where|w=s' => \$where,
'help|h' => \$help
) or print_usage, exit 1;
if ($help) {
print_usage;
exit;
}
# Getting borrowers
my $dbh = C4::Context->dbh;
my $query = "SELECT borrowernumber FROM borrowers";
$query .= " WHERE $where" if ($where);
$query .= " ORDER BY borrowernumber";
my $sth = $dbh->prepare($query);
$sth->execute;
unless ( $separator ) {
$separator = C4::Context->preference('CSVDelimiter') || ',';
$separator = "\t" if ($separator eq 'tabulation');
}
my $csv = Text::CSV->new( { sep_char => $separator, binary => 1 } );
# If the user did not specify any field to export, we assume they want them all
# We retrieve the first borrower informations to get field names
my ($borrowernumber) = $sth->fetchrow_array or die "No borrower to export";
my $patron = Koha::Patrons->find( $borrowernumber ); # FIXME Now is_expired is no longer available
# We will have to use Koha::Patron and allow method calls
my $category = $patron->category;
my $member = $patron->unblessed;
$member->{description} = $category->description;
$member->{category_type} = $category->category_type;
@fields = keys %$member unless (@fields);
if ($show_header) {
$csv->combine(@fields);
print $csv->string . "\n";
}
$csv->combine(
map {
( defined $member->{$_} and !ref $member->{$_} )
? $member->{$_}
: ''
} @fields
);
die "Invalid character at borrower $borrowernumber: ["
. $csv->error_input . "]\n"
if ( !defined( $csv->string ) );
print $csv->string . "\n";
while ( my $borrowernumber = $sth->fetchrow_array ) {
my $patron = Koha::Patrons->find( $borrowernumber );
my $category = $patron->category;
my $member = $patron->unblessed;
$member->{description} = $category->description;
$member->{category_type} = $category->category_type;
$csv->combine(
map {
( defined $member->{$_} and !ref $member->{$_} )
? $member->{$_}
: ''
} @fields
);
die "Invalid character at borrower $borrowernumber: ["
. $csv->error_input . "]\n"
if ( !defined( $csv->string ) );
print $csv->string . "\n";
}