3 # Copyright 2007 Liblime
4 # Parts copyright 2010 BibLibre
6 # This file is part of Koha.
8 # Koha is free software; you can redistribute it and/or modify it
9 # under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 3 of the License, or
11 # (at your option) any later version.
13 # Koha is distributed in the hope that it will be useful, but
14 # WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
18 # You should have received a copy of the GNU General Public License
19 # along with Koha; if not, see <http://www.gnu.org/licenses>.
21 # Script to take some borrowers data in a known format and load it into Koha
25 # cardnumber,surname,firstname,title,othernames,initials,streetnumber,streettype,
26 # address line , address line 2, city, zipcode, contry, email, phone, mobile, fax, work email, work phone,
27 # alternate streetnumber, alternate streettype, alternate address line 1, alternate city,
28 # alternate zipcode, alternate country, alternate email, alternate phone, date of birth, branchcode,
29 # categorycode, enrollment date, expiry date, noaddress, lost, debarred, contact surname,
30 # contact firstname, contact title, borrower notes, contact relationship
31 # gender, username, opac note, contact note, password, sort one, sort two
33 # any fields except cardnumber can be blank but the number of fields must match
34 # dates should be in the format you have set up Koha to expect
35 # branchcode and categorycode need to be valid
44 use C4
::Members
::Attributes
qw(:all);
45 use C4
::Members
::AttributeTypes
;
46 use C4
::Members
::Messaging
;
47 use C4
::Reports
::Guided
;
49 use Koha
::Patron
::Debarments
;
54 use Koha
::Patron
::Categories
;
55 use Koha
::List
::Patron
;
58 # Text::CSV::Unicode, even in binary mode, fails to parse lines with these diacriticals:
64 my (@errors, @feedback);
65 my $extended = C4
::Context
->preference('ExtendedPatronAttributes');
66 my $set_messaging_prefs = C4
::Context
->preference('EnhancedMessagingPreferences');
67 my @columnkeys = Koha
::Patrons
->columns();
68 @columnkeys = map { $_ ne 'borrowernumber' ?
$_ : () } @columnkeys;
70 push @columnkeys, 'patron_attributes';
73 my $input = CGI
->new();
74 our $csv = Text
::CSV
->new({binary
=> 1}); # binary needed for non-ASCII Unicode
75 #push @feedback, {feedback=>1, name=>'backend', value=>$csv->backend, backend=>$csv->backend}; #XXX
77 my ( $template, $loggedinuser, $cookie ) = get_template_and_user
({
78 template_name
=> "tools/import_borrowers.tt",
82 flagsrequired
=> { tools
=> 'import_patrons' },
86 # get the patron categories and pass them to the template
87 my @patron_categories = Koha
::Patron
::Categories
->search_limited({}, {order_by
=> ['description']});
88 $template->param( categories
=> \
@patron_categories );
89 my $columns = C4
::Templates
::GetColumnDefs
( $input )->{borrowers
};
90 $columns = [ grep { $_->{field
} ne 'borrowernumber' ?
$_ : () } @
$columns ];
91 $template->param( borrower_fields
=> $columns );
93 if ($input->param('sample')) {
95 -type
=> 'application/vnd.sun.xml.calc', # 'application/vnd.ms-excel' ?
96 -attachment
=> 'patron_import.csv',
98 $csv->combine(@columnkeys);
99 print $csv->string, "\n";
102 my $uploadborrowers = $input->param('uploadborrowers');
103 my $matchpoint = $input->param('matchpoint');
105 $matchpoint =~ s/^patron_attribute_//;
107 my $overwrite_cardnumber = $input->param('overwrite_cardnumber');
110 my $createpatronlist = $input->param('createpatronlist') || 0;
111 my $dt = dt_from_string
();
112 my $timestamp = $dt->ymd('-').' '.$dt->hms(':');
113 my $patronlistname = $uploadborrowers . ' (' . $timestamp .')';
115 $template->param( SCRIPT_NAME
=> '/cgi-bin/koha/tools/import_borrowers.pl' );
117 if ( $uploadborrowers && length($uploadborrowers) > 0 ) {
118 die "Wrong CSRF token"
119 unless Koha
::Token
->new->check_csrf({
120 session_id
=> scalar $input->cookie('CGISESSID'),
121 token
=> scalar $input->param('csrf_token'),
124 push @feedback, {feedback
=>1, name
=>'filename', value
=>$uploadborrowers, filename
=>$uploadborrowers};
125 my $handle = $input->upload('uploadborrowers');
126 my $uploadinfo = $input->uploadInfo($uploadborrowers);
127 foreach (keys %$uploadinfo) {
128 push @feedback, {feedback
=>1, name
=>$_, value
=>$uploadinfo->{$_}, $_=>$uploadinfo->{$_}};
132 my @imported_borrowers;
136 my $matchpoint_attr_type;
137 my %defaults = $input->Vars;
139 # use header line to construct key to column map
140 my $borrowerline = <$handle>;
141 my $status = $csv->parse($borrowerline);
142 ($status) or push @errors, {badheader
=>1,line
=>$., lineraw
=>$borrowerline};
143 my @csvcolumns = $csv->fields();
146 foreach my $keycol (@csvcolumns) {
147 # columnkeys don't contain whitespace, but some stupid tools add it
149 $csvkeycol{$keycol} = $col++;
151 #warn($borrowerline);
152 my $ext_preserve = $input->param('ext_preserve') || 0;
154 $matchpoint_attr_type = C4
::Members
::AttributeTypes
->fetch($matchpoint);
157 push @feedback, {feedback
=>1, name
=>'headerrow', value
=>join(', ', @csvcolumns)};
158 my $today = output_pref
;
159 my @criticals = qw(surname branchcode categorycode); # there probably should be others
160 my @bad_dates; # I've had a few.
161 LINE
: while ( my $borrowerline = <$handle> ) {
163 my @missing_criticals;
164 my $patron_attributes;
165 my $status = $csv->parse($borrowerline);
166 my @columns = $csv->fields();
168 push @missing_criticals, {badparse
=>1, line
=>$., lineraw
=>$borrowerline};
169 } elsif (@columns == @columnkeys) {
170 @borrower{@columnkeys} = @columns;
171 # MJR: try to fill blanks gracefully by using default values
172 foreach my $key (@columnkeys) {
173 if ($borrower{$key} !~ /\S/) {
174 $borrower{$key} = $defaults{$key};
178 # MJR: try to recover gracefully by using default values
179 foreach my $key (@columnkeys) {
180 if (defined($csvkeycol{$key}) and $columns[$csvkeycol{$key}] =~ /\S/) {
181 $borrower{$key} = $columns[$csvkeycol{$key}];
182 } elsif ( $defaults{$key} ) {
183 $borrower{$key} = $defaults{$key};
184 } elsif ( scalar grep {$key eq $_} @criticals ) {
185 # a critical field is undefined
186 push @missing_criticals, {key
=>$key, line
=>$., lineraw
=>$borrowerline};
188 $borrower{$key} = '';
192 #warn join(':',%borrower);
193 if ($borrower{categorycode
}) {
194 push @missing_criticals, {key
=>'categorycode', line
=>$. , lineraw
=>$borrowerline, value
=>$borrower{categorycode
}, category_map
=>1}
195 unless Koha
::Patron
::Categories
->find($borrower{categorycode
});
197 push @missing_criticals, {key
=>'categorycode', line
=>$. , lineraw
=>$borrowerline};
199 if ($borrower{branchcode
}) {
200 push @missing_criticals, {key
=>'branchcode', line
=>$. , lineraw
=>$borrowerline, value
=>$borrower{branchcode
}, branch_map
=>1}
201 unless Koha
::Libraries
->find($borrower{branchcode
});
203 push @missing_criticals, {key
=>'branchcode', line
=>$. , lineraw
=>$borrowerline};
205 if (@missing_criticals) {
206 foreach (@missing_criticals) {
207 $_->{borrowernumber
} = $borrower{borrowernumber
} || 'UNDEF';
208 $_->{surname
} = $borrower{surname
} || 'UNDEF';
211 (25 > scalar @errors) and push @errors, {missing_criticals
=>\
@missing_criticals};
212 # The first 25 errors are enough. Keeping track of 30,000+ would destroy performance.
216 my $attr_str = $borrower{patron_attributes
};
217 $attr_str =~ s/\xe2\x80\x9c/"/g; # fixup double quotes in case we are passed smart quotes
218 $attr_str =~ s/\xe2\x80\x9d/"/g;
219 push @feedback, {feedback
=>1, name
=>'attribute string', value
=>$attr_str, filename
=>$uploadborrowers};
220 delete $borrower{patron_attributes
}; # not really a field in borrowers, so we don't want to pass it to ModMember.
221 $patron_attributes = extended_attributes_code_value_arrayref
($attr_str);
223 # Popular spreadsheet applications make it difficult to force date outputs to be zero-padded, but we require it.
224 foreach (qw(dateofbirth dateenrolled dateexpiry)) {
225 my $tempdate = $borrower{$_} or next;
226 $tempdate = eval { output_pref
( { dt
=> dt_from_string
( $tempdate ), dateonly
=> 1, dateformat
=> 'iso' } ); };
228 $borrower{$_} = $tempdate;
231 push @missing_criticals, {key
=>$_, line
=>$. , lineraw
=>$borrowerline, bad_date
=>1};
234 $borrower{dateenrolled
} ||= $today;
235 $borrower{dateexpiry
} ||= Koha
::Patron
::Categories
->find( $borrower{categorycode
} )->get_expiry_date( $borrower{dateenrolled
} );
238 if ( ($matchpoint eq 'cardnumber') && ($borrower{'cardnumber'}) ) {
239 $member = Koha
::Patrons
->find( { cardnumber
=> $borrower{'cardnumber'} } );
240 } elsif ( ($matchpoint eq 'userid') && ($borrower{'userid'}) ) {
241 $member = Koha
::Patrons
->find( { userid
=> $borrower{'userid'} } );
242 } elsif ($extended) {
243 if (defined($matchpoint_attr_type)) {
244 foreach my $attr (@
$patron_attributes) {
245 if ($attr->{code
} eq $matchpoint and $attr->{value
} ne '') {
246 my @borrowernumbers = $matchpoint_attr_type->get_patrons($attr->{value
});
247 $borrowernumber = $borrowernumbers[0] if scalar(@borrowernumbers) == 1;
255 $member = $member->unblessed;
256 $borrowernumber = $member->{'borrowernumber'};
261 if ( C4
::Members
::checkcardnumber
( $borrower{cardnumber
}, $borrowernumber ) ) {
263 invalid_cardnumber
=> 1,
264 borrowernumber
=> $borrowernumber,
265 cardnumber
=> $borrower{cardnumber
}
271 if ($borrowernumber) {
273 unless ($overwrite_cardnumber) {
275 $template->param('lastalreadyindb'=>$borrower{'surname'}.' / '.$borrowernumber);
278 $borrower{'borrowernumber'} = $borrowernumber;
279 for my $col (keys %borrower) {
280 # use values from extant patron unless our csv file includes this column or we provided a default.
281 # FIXME : You cannot update a field with a perl-evaluated false value using the defaults.
283 # The password is always encrypted, skip it!
284 next if $col eq 'password';
286 unless(exists($csvkeycol{$col}) || $defaults{$col}) {
287 $borrower{$col} = $member->{$col} if($member->{$col}) ;
291 # Check if the userid provided does not exist yet
292 if ( exists $borrower{userid
}
293 and $borrower{userid
}
294 and not Check_Userid
( $borrower{userid
}, $borrower{borrowernumber
} ) ) {
295 push @errors, { duplicate_userid
=> 1, userid
=> $borrower{userid
} };
300 unless (ModMember
(%borrower)) {
302 # until we have better error trapping, we have no way of knowing why ModMember errored out...
303 push @errors, {unknown_error
=> 1};
304 $template->param('lastinvalid'=>$borrower{'surname'}.' / '.$borrowernumber);
308 # Don't add a new restriction if the existing 'combined' restriction matches this one
309 if ( $borrower{debarred
} && ( ( $borrower{debarred
} ne $member->{debarred
} ) || ( $borrower{debarredcomment
} ne $member->{debarredcomment
} ) ) ) {
310 # Check to see if this debarment already exists
311 my $debarrments = GetDebarments
(
313 borrowernumber
=> $borrowernumber,
314 expiration
=> $borrower{debarred
},
315 comment
=> $borrower{debarredcomment
}
318 # If it doesn't, then add it!
319 unless (@
$debarrments) {
322 borrowernumber
=> $borrowernumber,
323 expiration
=> $borrower{debarred
},
324 comment
=> $borrower{debarredcomment
}
332 my $old_attributes = GetBorrowerAttributes
($borrowernumber);
333 $patron_attributes = extended_attributes_merge
($old_attributes, $patron_attributes); #TODO: expose repeatable options in template
335 push @errors, {unknown_error
=> 1} unless SetBorrowerAttributes
($borrower{'borrowernumber'}, $patron_attributes, 'no_branch_limit' );
338 $template->param('lastoverwritten'=>$borrower{'surname'}.' / '.$borrowernumber);
340 # FIXME: fixup_cardnumber says to lock table, but the web interface doesn't so this doesn't either.
341 # At least this is closer to AddMember than in members/memberentry.pl
342 if (!$borrower{'cardnumber'}) {
343 $borrower{'cardnumber'} = fixup_cardnumber
(undef);
345 if ($borrowernumber = AddMember
(%borrower)) {
347 if ( $borrower{debarred
} ) {
350 borrowernumber
=> $borrowernumber,
351 expiration
=> $borrower{debarred
},
352 comment
=> $borrower{debarredcomment
}
358 SetBorrowerAttributes
($borrowernumber, $patron_attributes);
361 if ($set_messaging_prefs) {
362 C4
::Members
::Messaging
::SetMessagingPreferencesFromDefaults
({ borrowernumber
=> $borrowernumber,
363 categorycode
=> $borrower{categorycode
} });
367 $template->param('lastimported'=>$borrower{'surname'}.' / '.$borrowernumber);
368 push @imported_borrowers, $borrowernumber; #for patronlist
371 push @errors, {unknown_error
=> 1};
372 $template->param('lastinvalid'=>$borrower{'surname'}.' / AddMember');
377 if ( $imported && $createpatronlist ) {
378 my $patronlist = AddPatronList
({ name
=> $patronlistname });
379 AddPatronsToList
({ list
=> $patronlist, borrowernumbers
=> \
@imported_borrowers });
380 $template->param('patronlistname' => $patronlistname);
383 (@errors ) and $template->param( ERRORS
=>\
@errors );
384 (@feedback) and $template->param(FEEDBACK
=>\
@feedback);
386 'uploadborrowers' => 1,
387 'imported' => $imported,
388 'overwritten' => $overwritten,
389 'alreadyindb' => $alreadyindb,
390 'invalid' => $invalid,
391 'total' => $imported + $alreadyindb + $invalid + $overwritten,
396 my @matchpoints = ();
397 my @attr_types = C4
::Members
::AttributeTypes
::GetAttributeTypes
(undef, 1);
398 foreach my $type (@attr_types) {
399 my $attr_type = C4
::Members
::AttributeTypes
->fetch($type->{code
});
400 if ($attr_type->unique_id()) {
401 push @matchpoints, { code
=> "patron_attribute_" . $attr_type->code(), description
=> $attr_type->description() };
404 $template->param(matchpoints
=> \
@matchpoints);
408 csrf_token
=> Koha
::Token
->new->generate_csrf(
409 { session_id
=> scalar $input->cookie('CGISESSID'), }
415 output_html_with_http_headers
$input, $cookie, $template->output;