-
Notifications
You must be signed in to change notification settings - Fork 264
/
Copy pathexport_borrowers.pl
executable file
·135 lines (115 loc) · 4.13 KB
/
export_borrowers.pl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
#!/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(:config no_ignore_case);
use C4::Context;
use C4::Members;
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
keys returned by the GetMemberDetails function.
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 delimiter 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('delimiter') || ',';
$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 he wants them all
# We retrieve the first borrower informations to get field names
my ($borrowernumber) = $sth->fetchrow_array or die "No borrower to export";
my $member = GetMemberDetails($borrowernumber);
@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 ) {
$member = GetMemberDetails($borrowernumber);
$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";
}