Bug 12633: Remove export line
[koha.git] / C4 / Members.pm
1 package C4::Members;
2
3 # Copyright 2000-2003 Katipo Communications
4 # Copyright 2010 BibLibre
5 # Parts Copyright 2010 Catalyst IT
6 #
7 # This file is part of Koha.
8 #
9 # Koha is free software; you can redistribute it and/or modify it
10 # under the terms of the GNU General Public License as published by
11 # the Free Software Foundation; either version 3 of the License, or
12 # (at your option) any later version.
13 #
14 # Koha is distributed in the hope that it will be useful, but
15 # WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 # GNU General Public License for more details.
18 #
19 # You should have received a copy of the GNU General Public License
20 # along with Koha; if not, see <http://www.gnu.org/licenses>.
21
22
23 use strict;
24 #use warnings; FIXME - Bug 2505
25 use C4::Context;
26 use String::Random qw( random_string );
27 use Scalar::Util qw( looks_like_number );
28 use Date::Calc qw/Today check_date Date_to_Days/;
29 use C4::Log; # logaction
30 use C4::Overdues;
31 use C4::Reserves;
32 use C4::Accounts;
33 use C4::Biblio;
34 use C4::Letters;
35 use C4::Members::Attributes qw(SearchIdMatchingAttribute UpdateBorrowerAttribute);
36 use C4::NewsChannels; #get slip news
37 use DateTime;
38 use Koha::Database;
39 use Koha::DateUtils;
40 use Text::Unaccent qw( unac_string );
41 use Koha::AuthUtils qw(hash_password);
42 use Koha::Database;
43 use Koha::Holds;
44 use Koha::List::Patron;
45 use Koha::Patrons;
46 use Koha::Patron::Categories;
47
48 our (@ISA,@EXPORT,@EXPORT_OK,$debug);
49
50 use Module::Load::Conditional qw( can_load );
51 if ( ! can_load( modules => { 'Koha::NorwegianPatronDB' => undef } ) ) {
52    $debug && warn "Unable to load Koha::NorwegianPatronDB";
53 }
54
55
56 BEGIN {
57     $debug = $ENV{DEBUG} || 0;
58     require Exporter;
59     @ISA = qw(Exporter);
60     #Get data
61     push @EXPORT, qw(
62         &GetMemberDetails
63         &GetMember
64
65         &GetMemberIssuesAndFines
66         &GetPendingIssues
67         &GetAllIssues
68
69         &GetFirstValidEmailAddress
70         &GetNoticeEmailAddress
71
72         &GetAge
73         &GetTitles
74
75         &GetHideLostItemsPreference
76
77         &GetMemberAccountRecords
78         &GetBorNotifyAcctRecord
79
80         &GetBorrowersToExpunge
81         &GetBorrowersWhoHaveNeverBorrowed
82         &GetBorrowersWithIssuesHistoryOlderThan
83
84         &GetUpcomingMembershipExpires
85
86         &IssueSlip
87         GetBorrowersWithEmail
88
89         GetOverduesForPatron
90     );
91
92     #Modify data
93     push @EXPORT, qw(
94         &ModMember
95         &changepassword
96     );
97
98     #Insert data
99     push @EXPORT, qw(
100         &AddMember
101         &AddMember_Opac
102     );
103
104     #Check data
105     push @EXPORT, qw(
106         &checkuniquemember
107         &checkuserpassword
108         &Check_Userid
109         &Generate_Userid
110         &fixup_cardnumber
111         &checkcardnumber
112     );
113 }
114
115 =head1 NAME
116
117 C4::Members - Perl Module containing convenience functions for member handling
118
119 =head1 SYNOPSIS
120
121 use C4::Members;
122
123 =head1 DESCRIPTION
124
125 This module contains routines for adding, modifying and deleting members/patrons/borrowers 
126
127 =head1 FUNCTIONS
128
129 =head2 GetMemberDetails
130
131 ($borrower) = &GetMemberDetails($borrowernumber, $cardnumber);
132
133 Looks up a patron and returns information about him or her. If
134 C<$borrowernumber> is true (nonzero), C<&GetMemberDetails> looks
135 up the borrower by number; otherwise, it looks up the borrower by card
136 number.
137
138 C<$borrower> is a reference-to-hash whose keys are the fields of the
139 borrowers table in the Koha database. In addition,
140 C<$borrower-E<gt>{flags}> is a hash giving more detailed information
141 about the patron. Its keys act as flags :
142
143     if $borrower->{flags}->{LOST} {
144         # Patron's card was reported lost
145     }
146
147 If the state of a flag means that the patron should not be
148 allowed to borrow any more books, then it will have a C<noissues> key
149 with a true value.
150
151 See patronflags for more details.
152
153 C<$borrower-E<gt>{authflags}> is a hash giving more detailed information
154 about the top-level permissions flags set for the borrower.  For example,
155 if a user has the "editcatalogue" permission,
156 C<$borrower-E<gt>{authflags}-E<gt>{editcatalogue}> will exist and have
157 the value "1".
158
159 =cut
160
161 sub GetMemberDetails {
162     my ( $borrowernumber, $cardnumber ) = @_;
163     my $dbh = C4::Context->dbh;
164     my $query;
165     my $sth;
166     if ($borrowernumber) {
167         $sth = $dbh->prepare("
168             SELECT borrowers.*,
169                    category_type,
170                    categories.description,
171                    categories.BlockExpiredPatronOpacActions,
172                    reservefee,
173                    enrolmentperiod
174             FROM borrowers
175             LEFT JOIN categories ON borrowers.categorycode=categories.categorycode
176             WHERE borrowernumber = ?
177         ");
178         $sth->execute($borrowernumber);
179     }
180     elsif ($cardnumber) {
181         $sth = $dbh->prepare("
182             SELECT borrowers.*,
183                    category_type,
184                    categories.description,
185                    categories.BlockExpiredPatronOpacActions,
186                    reservefee,
187                    enrolmentperiod
188             FROM borrowers
189             LEFT JOIN categories ON borrowers.categorycode = categories.categorycode
190             WHERE cardnumber = ?
191         ");
192         $sth->execute($cardnumber);
193     }
194     else {
195         return;
196     }
197     my $borrower = $sth->fetchrow_hashref;
198     return unless $borrower;
199     my ($amount) = GetMemberAccountRecords($borrower->{borrowernumber});
200     $borrower->{'amountoutstanding'} = $amount;
201     # FIXME - patronflags calls GetMemberAccountRecords... just have patronflags return $amount
202     my $flags = patronflags( $borrower);
203     my $accessflagshash;
204
205     $sth = $dbh->prepare("select bit,flag from userflags");
206     $sth->execute;
207     while ( my ( $bit, $flag ) = $sth->fetchrow ) {
208         if ( $borrower->{'flags'} && $borrower->{'flags'} & 2**$bit ) {
209             $accessflagshash->{$flag} = 1;
210         }
211     }
212     $borrower->{'flags'}     = $flags;
213     $borrower->{'authflags'} = $accessflagshash;
214
215     # Handle setting the true behavior for BlockExpiredPatronOpacActions
216     $borrower->{'BlockExpiredPatronOpacActions'} =
217       C4::Context->preference('BlockExpiredPatronOpacActions')
218       if ( $borrower->{'BlockExpiredPatronOpacActions'} == -1 );
219
220     $borrower->{'is_expired'} = 0;
221     $borrower->{'is_expired'} = 1 if
222       defined($borrower->{dateexpiry}) &&
223       $borrower->{'dateexpiry'} ne '0000-00-00' &&
224       Date_to_Days( Today() ) >
225       Date_to_Days( split /-/, $borrower->{'dateexpiry'} );
226
227     return ($borrower);    #, $flags, $accessflagshash);
228 }
229
230 =head2 patronflags
231
232  $flags = &patronflags($patron);
233
234 This function is not exported.
235
236 The following will be set where applicable:
237  $flags->{CHARGES}->{amount}        Amount of debt
238  $flags->{CHARGES}->{noissues}      Set if debt amount >$5.00 (or syspref noissuescharge)
239  $flags->{CHARGES}->{message}       Message -- deprecated
240
241  $flags->{CREDITS}->{amount}        Amount of credit
242  $flags->{CREDITS}->{message}       Message -- deprecated
243
244  $flags->{  GNA  }                  Patron has no valid address
245  $flags->{  GNA  }->{noissues}      Set for each GNA
246  $flags->{  GNA  }->{message}       "Borrower has no valid address" -- deprecated
247
248  $flags->{ LOST  }                  Patron's card reported lost
249  $flags->{ LOST  }->{noissues}      Set for each LOST
250  $flags->{ LOST  }->{message}       Message -- deprecated
251
252  $flags->{DBARRED}                  Set if patron debarred, no access
253  $flags->{DBARRED}->{noissues}      Set for each DBARRED
254  $flags->{DBARRED}->{message}       Message -- deprecated
255
256  $flags->{ NOTES }
257  $flags->{ NOTES }->{message}       The note itself.  NOT deprecated
258
259  $flags->{ ODUES }                  Set if patron has overdue books.
260  $flags->{ ODUES }->{message}       "Yes"  -- deprecated
261  $flags->{ ODUES }->{itemlist}      ref-to-array: list of overdue books
262  $flags->{ ODUES }->{itemlisttext}  Text list of overdue items -- deprecated
263
264  $flags->{WAITING}                  Set if any of patron's reserves are available
265  $flags->{WAITING}->{message}       Message -- deprecated
266  $flags->{WAITING}->{itemlist}      ref-to-array: list of available items
267
268 =over 
269
270 =item C<$flags-E<gt>{ODUES}-E<gt>{itemlist}> is a reference-to-array listing the
271 overdue items. Its elements are references-to-hash, each describing an
272 overdue item. The keys are selected fields from the issues, biblio,
273 biblioitems, and items tables of the Koha database.
274
275 =item C<$flags-E<gt>{ODUES}-E<gt>{itemlisttext}> is a string giving a text listing of
276 the overdue items, one per line.  Deprecated.
277
278 =item C<$flags-E<gt>{WAITING}-E<gt>{itemlist}> is a reference-to-array listing the
279 available items. Each element is a reference-to-hash whose keys are
280 fields from the reserves table of the Koha database.
281
282 =back
283
284 All the "message" fields that include language generated in this function are deprecated, 
285 because such strings belong properly in the display layer.
286
287 The "message" field that comes from the DB is OK.
288
289 =cut
290
291 # TODO: use {anonymous => hashes} instead of a dozen %flaginfo
292 # FIXME rename this function.
293 sub patronflags {
294     my %flags;
295     my ( $patroninformation) = @_;
296     my $dbh=C4::Context->dbh;
297     my ($balance, $owing) = GetMemberAccountBalance( $patroninformation->{'borrowernumber'});
298     if ( $owing > 0 ) {
299         my %flaginfo;
300         my $noissuescharge = C4::Context->preference("noissuescharge") || 5;
301         $flaginfo{'message'} = sprintf 'Patron owes %.02f', $owing;
302         $flaginfo{'amount'}  = sprintf "%.02f", $owing;
303         if ( $owing > $noissuescharge && !C4::Context->preference("AllowFineOverride") ) {
304             $flaginfo{'noissues'} = 1;
305         }
306         $flags{'CHARGES'} = \%flaginfo;
307     }
308     elsif ( $balance < 0 ) {
309         my %flaginfo;
310         $flaginfo{'message'} = sprintf 'Patron has credit of %.02f', -$balance;
311         $flaginfo{'amount'}  = sprintf "%.02f", $balance;
312         $flags{'CREDITS'} = \%flaginfo;
313     }
314
315     # Check the debt of the guarntees of this patron
316     my $no_issues_charge_guarantees = C4::Context->preference("NoIssuesChargeGuarantees");
317     $no_issues_charge_guarantees = undef unless looks_like_number( $no_issues_charge_guarantees );
318     if ( defined $no_issues_charge_guarantees ) {
319         my $p = Koha::Patrons->find( $patroninformation->{borrowernumber} );
320         my @guarantees = $p->guarantees();
321         my $guarantees_non_issues_charges;
322         foreach my $g ( @guarantees ) {
323             my ( $b, $n, $o ) = C4::Members::GetMemberAccountBalance( $g->id );
324             $guarantees_non_issues_charges += $n;
325         }
326
327         if ( $guarantees_non_issues_charges > $no_issues_charge_guarantees ) {
328             my %flaginfo;
329             $flaginfo{'message'} = sprintf 'patron guarantees owe %.02f', $guarantees_non_issues_charges;
330             $flaginfo{'amount'}  = $guarantees_non_issues_charges;
331             $flaginfo{'noissues'} = 1 unless C4::Context->preference("allowfineoverride");
332             $flags{'CHARGES_GUARANTEES'} = \%flaginfo;
333         }
334     }
335
336     if (   $patroninformation->{'gonenoaddress'}
337         && $patroninformation->{'gonenoaddress'} == 1 )
338     {
339         my %flaginfo;
340         $flaginfo{'message'}  = 'Borrower has no valid address.';
341         $flaginfo{'noissues'} = 1;
342         $flags{'GNA'}         = \%flaginfo;
343     }
344     if ( $patroninformation->{'lost'} && $patroninformation->{'lost'} == 1 ) {
345         my %flaginfo;
346         $flaginfo{'message'}  = 'Borrower\'s card reported lost.';
347         $flaginfo{'noissues'} = 1;
348         $flags{'LOST'}        = \%flaginfo;
349     }
350     if ( $patroninformation->{'debarred'} && check_date( split( /-/, $patroninformation->{'debarred'} ) ) ) {
351         if ( Date_to_Days(Date::Calc::Today) < Date_to_Days( split( /-/, $patroninformation->{'debarred'} ) ) ) {
352             my %flaginfo;
353             $flaginfo{'debarredcomment'} = $patroninformation->{'debarredcomment'};
354             $flaginfo{'message'}         = $patroninformation->{'debarredcomment'};
355             $flaginfo{'noissues'}        = 1;
356             $flaginfo{'dateend'}         = $patroninformation->{'debarred'};
357             $flags{'DBARRED'}           = \%flaginfo;
358         }
359     }
360     if (   $patroninformation->{'borrowernotes'}
361         && $patroninformation->{'borrowernotes'} )
362     {
363         my %flaginfo;
364         $flaginfo{'message'} = $patroninformation->{'borrowernotes'};
365         $flags{'NOTES'}      = \%flaginfo;
366     }
367     my ( $odues, $itemsoverdue ) = C4::Overdues::checkoverdues($patroninformation->{'borrowernumber'});
368     if ( $odues && $odues > 0 ) {
369         my %flaginfo;
370         $flaginfo{'message'}  = "Yes";
371         $flaginfo{'itemlist'} = $itemsoverdue;
372         foreach ( sort { $a->{'date_due'} cmp $b->{'date_due'} }
373             @$itemsoverdue )
374         {
375             $flaginfo{'itemlisttext'} .=
376               "$_->{'date_due'} $_->{'barcode'} $_->{'title'} \n";  # newline is display layer
377         }
378         $flags{'ODUES'} = \%flaginfo;
379     }
380     my @itemswaiting = C4::Reserves::GetReservesFromBorrowernumber( $patroninformation->{'borrowernumber'},'W' );
381     my $nowaiting = scalar @itemswaiting;
382     if ( $nowaiting > 0 ) {
383         my %flaginfo;
384         $flaginfo{'message'}  = "Reserved items available";
385         $flaginfo{'itemlist'} = \@itemswaiting;
386         $flags{'WAITING'}     = \%flaginfo;
387     }
388     return ( \%flags );
389 }
390
391
392 =head2 GetMember
393
394   $borrower = &GetMember(%information);
395
396 Retrieve the first patron record meeting on criteria listed in the
397 C<%information> hash, which should contain one or more
398 pairs of borrowers column names and values, e.g.,
399
400    $borrower = GetMember(borrowernumber => id);
401
402 C<&GetBorrower> returns a reference-to-hash whose keys are the fields of
403 the C<borrowers> table in the Koha database.
404
405 FIXME: GetMember() is used throughout the code as a lookup
406 on a unique key such as the borrowernumber, but this meaning is not
407 enforced in the routine itself.
408
409 =cut
410
411 #'
412 sub GetMember {
413     my ( %information ) = @_;
414     if (exists $information{borrowernumber} && !defined $information{borrowernumber}) {
415         #passing mysql's kohaadmin?? Makes no sense as a query
416         return;
417     }
418     my $dbh = C4::Context->dbh;
419     my $select =
420     q{SELECT borrowers.*, categories.category_type, categories.description
421     FROM borrowers 
422     LEFT JOIN categories on borrowers.categorycode=categories.categorycode WHERE };
423     my $more_p = 0;
424     my @values = ();
425     for (keys %information ) {
426         if ($more_p) {
427             $select .= ' AND ';
428         }
429         else {
430             $more_p++;
431         }
432
433         if (defined $information{$_}) {
434             $select .= "$_ = ?";
435             push @values, $information{$_};
436         }
437         else {
438             $select .= "$_ IS NULL";
439         }
440     }
441     $debug && warn $select, " ",values %information;
442     my $sth = $dbh->prepare("$select");
443     $sth->execute(@values);
444     my $data = $sth->fetchall_arrayref({});
445     #FIXME interface to this routine now allows generation of a result set
446     #so whole array should be returned but bowhere in the current code expects this
447     if (@{$data} ) {
448         return $data->[0];
449     }
450
451     return;
452 }
453
454 =head2 GetMemberIssuesAndFines
455
456   ($overdue_count, $issue_count, $total_fines) = &GetMemberIssuesAndFines($borrowernumber);
457
458 Returns aggregate data about items borrowed by the patron with the
459 given borrowernumber.
460
461 C<&GetMemberIssuesAndFines> returns a three-element array.  C<$overdue_count> is the
462 number of overdue items the patron currently has borrowed. C<$issue_count> is the
463 number of books the patron currently has borrowed.  C<$total_fines> is
464 the total fine currently due by the borrower.
465
466 =cut
467
468 #'
469 sub GetMemberIssuesAndFines {
470     my ( $borrowernumber ) = @_;
471     my $dbh   = C4::Context->dbh;
472     my $query = "SELECT COUNT(*) FROM issues WHERE borrowernumber = ?";
473
474     $debug and warn $query."\n";
475     my $sth = $dbh->prepare($query);
476     $sth->execute($borrowernumber);
477     my $issue_count = $sth->fetchrow_arrayref->[0];
478
479     $sth = $dbh->prepare(
480         "SELECT COUNT(*) FROM issues 
481          WHERE borrowernumber = ? 
482          AND date_due < now()"
483     );
484     $sth->execute($borrowernumber);
485     my $overdue_count = $sth->fetchrow_arrayref->[0];
486
487     $sth = $dbh->prepare("SELECT SUM(amountoutstanding) FROM accountlines WHERE borrowernumber = ?");
488     $sth->execute($borrowernumber);
489     my $total_fines = $sth->fetchrow_arrayref->[0];
490
491     return ($overdue_count, $issue_count, $total_fines);
492 }
493
494
495 =head2 ModMember
496
497   my $success = ModMember(borrowernumber => $borrowernumber,
498                                             [ field => value ]... );
499
500 Modify borrower's data.  All date fields should ALREADY be in ISO format.
501
502 return :
503 true on success, or false on failure
504
505 =cut
506
507 sub ModMember {
508     my (%data) = @_;
509     # test to know if you must update or not the borrower password
510     if (exists $data{password}) {
511         if ($data{password} eq '****' or $data{password} eq '') {
512             delete $data{password};
513         } else {
514             if ( C4::Context->preference('NorwegianPatronDBEnable') && C4::Context->preference('NorwegianPatronDBEnable') == 1 ) {
515                 # Update the hashed PIN in borrower_sync.hashed_pin, before Koha hashes it
516                 Koha::NorwegianPatronDB::NLUpdateHashedPIN( $data{'borrowernumber'}, $data{password} );
517             }
518             $data{password} = hash_password($data{password});
519         }
520     }
521
522     my $old_categorycode = Koha::Patrons->find( $data{borrowernumber} )->categorycode;
523
524     # get only the columns of a borrower
525     my $schema = Koha::Database->new()->schema;
526     my @columns = $schema->source('Borrower')->columns;
527     my $new_borrower = { map { join(' ', @columns) =~ /$_/ ? ( $_ => $data{$_} ) : () } keys(%data) };
528     delete $new_borrower->{flags};
529
530     $new_borrower->{dateofbirth}     ||= undef if exists $new_borrower->{dateofbirth};
531     $new_borrower->{dateenrolled}    ||= undef if exists $new_borrower->{dateenrolled};
532     $new_borrower->{dateexpiry}      ||= undef if exists $new_borrower->{dateexpiry};
533     $new_borrower->{debarred}        ||= undef if exists $new_borrower->{debarred};
534     $new_borrower->{sms_provider_id} ||= undef if exists $new_borrower->{sms_provider_id};
535     $new_borrower->{guarantorid}     ||= undef if exists $new_borrower->{guarantorid};
536
537     my $patron = Koha::Patrons->find( $new_borrower->{borrowernumber} );
538
539     delete $new_borrower->{userid} if exists $new_borrower->{userid} and not $new_borrower->{userid};
540
541     my $execute_success = $patron->store if $patron->set($new_borrower);
542
543     if ($execute_success) { # only proceed if the update was a success
544         # If the patron changes to a category with enrollment fee, we add a fee
545         if ( $data{categorycode} and $data{categorycode} ne $old_categorycode ) {
546             if ( C4::Context->preference('FeeOnChangePatronCategory') ) {
547                 $patron->add_enrolment_fee_if_needed;
548             }
549         }
550
551         # If NorwegianPatronDBEnable is enabled, we set syncstatus to something that a
552         # cronjob will use for syncing with NL
553         if ( C4::Context->preference('NorwegianPatronDBEnable') && C4::Context->preference('NorwegianPatronDBEnable') == 1 ) {
554             my $borrowersync = Koha::Database->new->schema->resultset('BorrowerSync')->find({
555                 'synctype'       => 'norwegianpatrondb',
556                 'borrowernumber' => $data{'borrowernumber'}
557             });
558             # Do not set to "edited" if syncstatus is "new". We need to sync as new before
559             # we can sync as changed. And the "new sync" will pick up all changes since
560             # the patron was created anyway.
561             if ( $borrowersync->syncstatus ne 'new' && $borrowersync->syncstatus ne 'delete' ) {
562                 $borrowersync->update( { 'syncstatus' => 'edited' } );
563             }
564             # Set the value of 'sync'
565             $borrowersync->update( { 'sync' => $data{'sync'} } );
566             # Try to do the live sync
567             Koha::NorwegianPatronDB::NLSync({ 'borrowernumber' => $data{'borrowernumber'} });
568         }
569
570         logaction("MEMBERS", "MODIFY", $data{'borrowernumber'}, "UPDATE (executed w/ arg: $data{'borrowernumber'})") if C4::Context->preference("BorrowersLog");
571     }
572     return $execute_success;
573 }
574
575 =head2 AddMember
576
577   $borrowernumber = &AddMember(%borrower);
578
579 insert new borrower into table
580
581 (%borrower keys are database columns. Database columns could be
582 different in different versions. Please look into database for correct
583 column names.)
584
585 Returns the borrowernumber upon success
586
587 Returns as undef upon any db error without further processing
588
589 =cut
590
591 #'
592 sub AddMember {
593     my (%data) = @_;
594     my $dbh = C4::Context->dbh;
595     my $schema = Koha::Database->new()->schema;
596
597     # generate a proper login if none provided
598     $data{'userid'} = Generate_Userid( $data{'borrowernumber'}, $data{'firstname'}, $data{'surname'} )
599       if ( $data{'userid'} eq '' || !Check_Userid( $data{'userid'} ) );
600
601     # add expiration date if it isn't already there
602     $data{dateexpiry} ||= Koha::Patron::Categories->find( $data{categorycode} )->get_expiry_date;
603
604     # add enrollment date if it isn't already there
605     unless ( $data{'dateenrolled'} ) {
606         $data{'dateenrolled'} = output_pref( { dt => dt_from_string, dateonly => 1, dateformat => 'iso' } );
607     }
608
609     my $patron_category = $schema->resultset('Category')->find( $data{'categorycode'} );
610     $data{'privacy'} =
611         $patron_category->default_privacy() eq 'default' ? 1
612       : $patron_category->default_privacy() eq 'never'   ? 2
613       : $patron_category->default_privacy() eq 'forever' ? 0
614       :                                                    undef;
615
616     $data{'privacy_guarantor_checkouts'} = 0 unless defined( $data{'privacy_guarantor_checkouts'} );
617
618     # Make a copy of the plain text password for later use
619     my $plain_text_password = $data{'password'};
620
621     # create a disabled account if no password provided
622     $data{'password'} = ($data{'password'})? hash_password($data{'password'}) : '!';
623
624     # we don't want invalid dates in the db (mysql has a bad habit of inserting 0000-00-00
625     $data{'dateofbirth'}     = undef if ( not $data{'dateofbirth'} );
626     $data{'debarred'}        = undef if ( not $data{'debarred'} );
627     $data{'sms_provider_id'} = undef if ( not $data{'sms_provider_id'} );
628
629     # get only the columns of Borrower
630     # FIXME Do we really need this check?
631     my @columns = $schema->source('Borrower')->columns;
632     my $new_member = { map { join(' ',@columns) =~ /$_/ ? ( $_ => $data{$_} )  : () } keys(%data) } ;
633
634     delete $new_member->{borrowernumber};
635
636     my $patron = Koha::Patron->new( $new_member )->store;
637     $data{borrowernumber} = $patron->borrowernumber;
638
639     # If NorwegianPatronDBEnable is enabled, we set syncstatus to something that a
640     # cronjob will use for syncing with NL
641     if ( exists $data{'borrowernumber'} && C4::Context->preference('NorwegianPatronDBEnable') && C4::Context->preference('NorwegianPatronDBEnable') == 1 ) {
642         Koha::Database->new->schema->resultset('BorrowerSync')->create({
643             'borrowernumber' => $data{'borrowernumber'},
644             'synctype'       => 'norwegianpatrondb',
645             'sync'           => 1,
646             'syncstatus'     => 'new',
647             'hashed_pin'     => Koha::NorwegianPatronDB::NLEncryptPIN( $plain_text_password ),
648         });
649     }
650
651     logaction("MEMBERS", "CREATE", $data{'borrowernumber'}, "") if C4::Context->preference("BorrowersLog");
652
653     $patron->add_enrolment_fee_if_needed;
654
655     return $data{borrowernumber};
656 }
657
658 =head2 Check_Userid
659
660     my $uniqueness = Check_Userid($userid,$borrowernumber);
661
662     $borrowernumber is optional (i.e. it can contain a blank value). If $userid is passed with a blank $borrowernumber variable, the database will be checked for all instances of that userid (i.e. userid=? AND borrowernumber != '').
663
664     If $borrowernumber is provided, the database will be checked for every instance of that userid coupled with a different borrower(number) than the one provided.
665
666     return :
667         0 for not unique (i.e. this $userid already exists)
668         1 for unique (i.e. this $userid does not exist, or this $userid/$borrowernumber combination already exists)
669
670 =cut
671
672 sub Check_Userid {
673     my ( $uid, $borrowernumber ) = @_;
674
675     return 0 unless ($uid); # userid is a unique column, we should assume NULL is not unique
676
677     return 0 if ( $uid eq C4::Context->config('user') );
678
679     my $rs = Koha::Database->new()->schema()->resultset('Borrower');
680
681     my $params;
682     $params->{userid} = $uid;
683     $params->{borrowernumber} = { '!=' => $borrowernumber } if ($borrowernumber);
684
685     my $count = $rs->count( $params );
686
687     return $count ? 0 : 1;
688 }
689
690 =head2 Generate_Userid
691
692     my $newuid = Generate_Userid($borrowernumber, $firstname, $surname);
693
694     Generate a userid using the $surname and the $firstname (if there is a value in $firstname).
695
696     $borrowernumber is optional (i.e. it can contain a blank value). A value is passed when generating a new userid for an existing borrower. When a new userid is created for a new borrower, a blank value is passed to this sub.
697
698     return :
699         new userid ($firstname.$surname if there is a $firstname, or $surname if there is no value in $firstname) plus offset (0 if the $newuid is unique, or a higher numeric value if Check_Userid finds an existing match for the $newuid in the database).
700
701 =cut
702
703 sub Generate_Userid {
704   my ($borrowernumber, $firstname, $surname) = @_;
705   my $newuid;
706   my $offset = 0;
707   #The script will "do" the following code and increment the $offset until Check_Userid = 1 (i.e. until $newuid comes back as unique)
708   do {
709     $firstname =~ s/[[:digit:][:space:][:blank:][:punct:][:cntrl:]]//g;
710     $surname =~ s/[[:digit:][:space:][:blank:][:punct:][:cntrl:]]//g;
711     $newuid = lc(($firstname)? "$firstname.$surname" : $surname);
712     $newuid = unac_string('utf-8',$newuid);
713     $newuid .= $offset unless $offset == 0;
714     $offset++;
715
716    } while (!Check_Userid($newuid,$borrowernumber));
717
718    return $newuid;
719 }
720
721 =head2 fixup_cardnumber
722
723 Warning: The caller is responsible for locking the members table in write
724 mode, to avoid database corruption.
725
726 =cut
727
728 use vars qw( @weightings );
729 my @weightings = ( 8, 4, 6, 3, 5, 2, 1 );
730
731 sub fixup_cardnumber {
732     my ($cardnumber) = @_;
733     my $autonumber_members = C4::Context->boolean_preference('autoMemberNum') || 0;
734
735     # Find out whether member numbers should be generated
736     # automatically. Should be either "1" or something else.
737     # Defaults to "0", which is interpreted as "no".
738
739     #     if ($cardnumber !~ /\S/ && $autonumber_members) {
740     ($autonumber_members) or return $cardnumber;
741     my $checkdigit = C4::Context->preference('checkdigit');
742     my $dbh = C4::Context->dbh;
743     if ( $checkdigit and $checkdigit eq 'katipo' ) {
744
745         # if checkdigit is selected, calculate katipo-style cardnumber.
746         # otherwise, just use the max()
747         # purpose: generate checksum'd member numbers.
748         # We'll assume we just got the max value of digits 2-8 of member #'s
749         # from the database and our job is to increment that by one,
750         # determine the 1st and 9th digits and return the full string.
751         my $sth = $dbh->prepare(
752             "select max(substring(borrowers.cardnumber,2,7)) as new_num from borrowers"
753         );
754         $sth->execute;
755         my $data = $sth->fetchrow_hashref;
756         $cardnumber = $data->{new_num};
757         if ( !$cardnumber ) {    # If DB has no values,
758             $cardnumber = 1000000;    # start at 1000000
759         } else {
760             $cardnumber += 1;
761         }
762
763         my $sum = 0;
764         for ( my $i = 0 ; $i < 8 ; $i += 1 ) {
765             # read weightings, left to right, 1 char at a time
766             my $temp1 = $weightings[$i];
767
768             # sequence left to right, 1 char at a time
769             my $temp2 = substr( $cardnumber, $i, 1 );
770
771             # mult each char 1-7 by its corresponding weighting
772             $sum += $temp1 * $temp2;
773         }
774
775         my $rem = ( $sum % 11 );
776         $rem = 'X' if $rem == 10;
777
778         return "V$cardnumber$rem";
779      } else {
780
781         my $sth = $dbh->prepare(
782             'SELECT MAX( CAST( cardnumber AS SIGNED ) ) FROM borrowers WHERE cardnumber REGEXP "^-?[0-9]+$"'
783         );
784         $sth->execute;
785         my ($result) = $sth->fetchrow;
786         return $result + 1;
787     }
788     return $cardnumber;     # just here as a fallback/reminder 
789 }
790
791 =head2 GetPendingIssues
792
793   my $issues = &GetPendingIssues(@borrowernumber);
794
795 Looks up what the patron with the given borrowernumber has borrowed.
796
797 C<&GetPendingIssues> returns a
798 reference-to-array where each element is a reference-to-hash; the
799 keys are the fields from the C<issues>, C<biblio>, and C<items> tables.
800 The keys include C<biblioitems> fields except marc and marcxml.
801
802 =cut
803
804 sub GetPendingIssues {
805     my @borrowernumbers = @_;
806
807     unless (@borrowernumbers ) { # return a ref_to_array
808         return \@borrowernumbers; # to not cause surprise to caller
809     }
810
811     # Borrowers part of the query
812     my $bquery = '';
813     for (my $i = 0; $i < @borrowernumbers; $i++) {
814         $bquery .= ' issues.borrowernumber = ?';
815         if ($i < $#borrowernumbers ) {
816             $bquery .= ' OR';
817         }
818     }
819
820     # must avoid biblioitems.* to prevent large marc and marcxml fields from killing performance
821     # FIXME: namespace collision: each table has "timestamp" fields.  Which one is "timestamp" ?
822     # FIXME: circ/ciculation.pl tries to sort by timestamp!
823     # FIXME: namespace collision: other collisions possible.
824     # FIXME: most of this data isn't really being used by callers.
825     my $query =
826    "SELECT issues.*,
827             items.*,
828            biblio.*,
829            biblioitems.volume,
830            biblioitems.number,
831            biblioitems.itemtype,
832            biblioitems.isbn,
833            biblioitems.issn,
834            biblioitems.publicationyear,
835            biblioitems.publishercode,
836            biblioitems.volumedate,
837            biblioitems.volumedesc,
838            biblioitems.lccn,
839            biblioitems.url,
840            borrowers.firstname,
841            borrowers.surname,
842            borrowers.cardnumber,
843            issues.timestamp AS timestamp,
844            issues.renewals  AS renewals,
845            issues.borrowernumber AS borrowernumber,
846             items.renewals  AS totalrenewals
847     FROM   issues
848     LEFT JOIN items       ON items.itemnumber       =      issues.itemnumber
849     LEFT JOIN biblio      ON items.biblionumber     =      biblio.biblionumber
850     LEFT JOIN biblioitems ON items.biblioitemnumber = biblioitems.biblioitemnumber
851     LEFT JOIN borrowers ON issues.borrowernumber = borrowers.borrowernumber
852     WHERE
853       $bquery
854     ORDER BY issues.issuedate"
855     ;
856
857     my $sth = C4::Context->dbh->prepare($query);
858     $sth->execute(@borrowernumbers);
859     my $data = $sth->fetchall_arrayref({});
860     my $today = dt_from_string;
861     foreach (@{$data}) {
862         if ($_->{issuedate}) {
863             $_->{issuedate} = dt_from_string($_->{issuedate}, 'sql');
864         }
865         $_->{date_due_sql} = $_->{date_due};
866         # FIXME no need to have this value
867         $_->{date_due} or next;
868         $_->{date_due_sql} = $_->{date_due};
869         # FIXME no need to have this value
870         $_->{date_due} = dt_from_string($_->{date_due}, 'sql');
871         if ( DateTime->compare($_->{date_due}, $today) == -1 ) {
872             $_->{overdue} = 1;
873         }
874     }
875     return $data;
876 }
877
878 =head2 GetAllIssues
879
880   $issues = &GetAllIssues($borrowernumber, $sortkey, $limit);
881
882 Looks up what the patron with the given borrowernumber has borrowed,
883 and sorts the results.
884
885 C<$sortkey> is the name of a field on which to sort the results. This
886 should be the name of a field in the C<issues>, C<biblio>,
887 C<biblioitems>, or C<items> table in the Koha database.
888
889 C<$limit> is the maximum number of results to return.
890
891 C<&GetAllIssues> an arrayref, C<$issues>, of hashrefs, the keys of which
892 are the fields from the C<issues>, C<biblio>, C<biblioitems>, and
893 C<items> tables of the Koha database.
894
895 =cut
896
897 #'
898 sub GetAllIssues {
899     my ( $borrowernumber, $order, $limit ) = @_;
900
901     return unless $borrowernumber;
902     $order = 'date_due desc' unless $order;
903
904     my $dbh = C4::Context->dbh;
905     my $query =
906 'SELECT *, issues.timestamp as issuestimestamp, issues.renewals AS renewals,items.renewals AS totalrenewals,items.timestamp AS itemstimestamp
907   FROM issues 
908   LEFT JOIN items on items.itemnumber=issues.itemnumber
909   LEFT JOIN biblio ON items.biblionumber=biblio.biblionumber
910   LEFT JOIN biblioitems ON items.biblioitemnumber=biblioitems.biblioitemnumber
911   WHERE borrowernumber=? 
912   UNION ALL
913   SELECT *, old_issues.timestamp as issuestimestamp, old_issues.renewals AS renewals,items.renewals AS totalrenewals,items.timestamp AS itemstimestamp 
914   FROM old_issues 
915   LEFT JOIN items on items.itemnumber=old_issues.itemnumber
916   LEFT JOIN biblio ON items.biblionumber=biblio.biblionumber
917   LEFT JOIN biblioitems ON items.biblioitemnumber=biblioitems.biblioitemnumber
918   WHERE borrowernumber=? AND old_issues.itemnumber IS NOT NULL
919   order by ' . $order;
920     if ($limit) {
921         $query .= " limit $limit";
922     }
923
924     my $sth = $dbh->prepare($query);
925     $sth->execute( $borrowernumber, $borrowernumber );
926     return $sth->fetchall_arrayref( {} );
927 }
928
929
930 =head2 GetMemberAccountRecords
931
932   ($total, $acctlines, $count) = &GetMemberAccountRecords($borrowernumber);
933
934 Looks up accounting data for the patron with the given borrowernumber.
935
936 C<&GetMemberAccountRecords> returns a three-element array. C<$acctlines> is a
937 reference-to-array, where each element is a reference-to-hash; the
938 keys are the fields of the C<accountlines> table in the Koha database.
939 C<$count> is the number of elements in C<$acctlines>. C<$total> is the
940 total amount outstanding for all of the account lines.
941
942 =cut
943
944 sub GetMemberAccountRecords {
945     my ($borrowernumber) = @_;
946     my $dbh = C4::Context->dbh;
947     my @acctlines;
948     my $numlines = 0;
949     my $strsth      = qq(
950                         SELECT * 
951                         FROM accountlines 
952                         WHERE borrowernumber=?);
953     $strsth.=" ORDER BY accountlines_id desc";
954     my $sth= $dbh->prepare( $strsth );
955     $sth->execute( $borrowernumber );
956
957     my $total = 0;
958     while ( my $data = $sth->fetchrow_hashref ) {
959         if ( $data->{itemnumber} ) {
960             my $biblio = GetBiblioFromItemNumber( $data->{itemnumber} );
961             $data->{biblionumber} = $biblio->{biblionumber};
962             $data->{title}        = $biblio->{title};
963         }
964         $acctlines[$numlines] = $data;
965         $numlines++;
966         $total += sprintf "%.0f", 1000*$data->{amountoutstanding}; # convert float to integer to avoid round-off errors
967     }
968     $total /= 1000;
969     return ( $total, \@acctlines,$numlines);
970 }
971
972 =head2 GetMemberAccountBalance
973
974   ($total_balance, $non_issue_balance, $other_charges) = &GetMemberAccountBalance($borrowernumber);
975
976 Calculates amount immediately owing by the patron - non-issue charges.
977 Based on GetMemberAccountRecords.
978 Charges exempt from non-issue are:
979 * Res (reserves)
980 * Rent (rental) if RentalsInNoissuesCharge syspref is set to false
981 * Manual invoices if ManInvInNoissuesCharge syspref is set to false
982
983 =cut
984
985 sub GetMemberAccountBalance {
986     my ($borrowernumber) = @_;
987
988     my $ACCOUNT_TYPE_LENGTH = 5; # this is plain ridiculous...
989
990     my @not_fines;
991     push @not_fines, 'Res' unless C4::Context->preference('HoldsInNoissuesCharge');
992     push @not_fines, 'Rent' unless C4::Context->preference('RentalsInNoissuesCharge');
993     unless ( C4::Context->preference('ManInvInNoissuesCharge') ) {
994         my $dbh = C4::Context->dbh;
995         my $man_inv_types = $dbh->selectcol_arrayref(qq{SELECT authorised_value FROM authorised_values WHERE category = 'MANUAL_INV'});
996         push @not_fines, map substr($_, 0, $ACCOUNT_TYPE_LENGTH), @$man_inv_types;
997     }
998     my %not_fine = map {$_ => 1} @not_fines;
999
1000     my ($total, $acctlines) = GetMemberAccountRecords($borrowernumber);
1001     my $other_charges = 0;
1002     foreach (@$acctlines) {
1003         $other_charges += $_->{amountoutstanding} if $not_fine{ substr($_->{accounttype}, 0, $ACCOUNT_TYPE_LENGTH) };
1004     }
1005
1006     return ( $total, $total - $other_charges, $other_charges);
1007 }
1008
1009 =head2 GetBorNotifyAcctRecord
1010
1011   ($total, $acctlines, $count) = &GetBorNotifyAcctRecord($params,$notifyid);
1012
1013 Looks up accounting data for the patron with the given borrowernumber per file number.
1014
1015 C<&GetBorNotifyAcctRecord> returns a three-element array. C<$acctlines> is a
1016 reference-to-array, where each element is a reference-to-hash; the
1017 keys are the fields of the C<accountlines> table in the Koha database.
1018 C<$count> is the number of elements in C<$acctlines>. C<$total> is the
1019 total amount outstanding for all of the account lines.
1020
1021 =cut
1022
1023 sub GetBorNotifyAcctRecord {
1024     my ( $borrowernumber, $notifyid ) = @_;
1025     my $dbh = C4::Context->dbh;
1026     my @acctlines;
1027     my $numlines = 0;
1028     my $sth = $dbh->prepare(
1029             "SELECT * 
1030                 FROM accountlines 
1031                 WHERE borrowernumber=? 
1032                     AND notify_id=? 
1033                     AND amountoutstanding != '0' 
1034                 ORDER BY notify_id,accounttype
1035                 ");
1036
1037     $sth->execute( $borrowernumber, $notifyid );
1038     my $total = 0;
1039     while ( my $data = $sth->fetchrow_hashref ) {
1040         if ( $data->{itemnumber} ) {
1041             my $biblio = GetBiblioFromItemNumber( $data->{itemnumber} );
1042             $data->{biblionumber} = $biblio->{biblionumber};
1043             $data->{title}        = $biblio->{title};
1044         }
1045         $acctlines[$numlines] = $data;
1046         $numlines++;
1047         $total += int(100 * $data->{'amountoutstanding'});
1048     }
1049     $total /= 100;
1050     return ( $total, \@acctlines, $numlines );
1051 }
1052
1053 sub checkcardnumber {
1054     my ( $cardnumber, $borrowernumber ) = @_;
1055
1056     # If cardnumber is null, we assume they're allowed.
1057     return 0 unless defined $cardnumber;
1058
1059     my $dbh = C4::Context->dbh;
1060     my $query = "SELECT * FROM borrowers WHERE cardnumber=?";
1061     $query .= " AND borrowernumber <> ?" if ($borrowernumber);
1062     my $sth = $dbh->prepare($query);
1063     $sth->execute(
1064         $cardnumber,
1065         ( $borrowernumber ? $borrowernumber : () )
1066     );
1067
1068     return 1 if $sth->fetchrow_hashref;
1069
1070     my ( $min_length, $max_length ) = get_cardnumber_length();
1071     return 2
1072         if length $cardnumber > $max_length
1073         or length $cardnumber < $min_length;
1074
1075     return 0;
1076 }
1077
1078 =head2 get_cardnumber_length
1079
1080     my ($min, $max) = C4::Members::get_cardnumber_length()
1081
1082 Returns the minimum and maximum length for patron cardnumbers as
1083 determined by the CardnumberLength system preference, the
1084 BorrowerMandatoryField system preference, and the width of the
1085 database column.
1086
1087 =cut
1088
1089 sub get_cardnumber_length {
1090     my ( $min, $max ) = ( 0, 16 ); # borrowers.cardnumber is a nullable varchar(16)
1091     $min = 1 if C4::Context->preference('BorrowerMandatoryField') =~ /cardnumber/;
1092     if ( my $cardnumber_length = C4::Context->preference('CardnumberLength') ) {
1093         # Is integer and length match
1094         if ( $cardnumber_length =~ m|^\d+$| ) {
1095             $min = $max = $cardnumber_length
1096                 if $cardnumber_length >= $min
1097                     and $cardnumber_length <= $max;
1098         }
1099         # Else assuming it is a range
1100         elsif ( $cardnumber_length =~ m|(\d*),(\d*)| ) {
1101             $min = $1 if $1 and $min < $1;
1102             $max = $2 if $2 and $max > $2;
1103         }
1104
1105     }
1106     return ( $min, $max );
1107 }
1108
1109 =head2 GetFirstValidEmailAddress
1110
1111   $email = GetFirstValidEmailAddress($borrowernumber);
1112
1113 Return the first valid email address for a borrower, given the borrowernumber.  For now, the order 
1114 is defined as email, emailpro, B_email.  Returns the empty string if the borrower has no email 
1115 addresses.
1116
1117 =cut
1118
1119 sub GetFirstValidEmailAddress {
1120     my $borrowernumber = shift;
1121     my $dbh = C4::Context->dbh;
1122     my $sth = $dbh->prepare( "SELECT email, emailpro, B_email FROM borrowers where borrowernumber = ? ");
1123     $sth->execute( $borrowernumber );
1124     my $data = $sth->fetchrow_hashref;
1125
1126     if ($data->{'email'}) {
1127        return $data->{'email'};
1128     } elsif ($data->{'emailpro'}) {
1129        return $data->{'emailpro'};
1130     } elsif ($data->{'B_email'}) {
1131        return $data->{'B_email'};
1132     } else {
1133        return '';
1134     }
1135 }
1136
1137 =head2 GetNoticeEmailAddress
1138
1139   $email = GetNoticeEmailAddress($borrowernumber);
1140
1141 Return the email address of borrower used for notices, given the borrowernumber.
1142 Returns the empty string if no email address.
1143
1144 =cut
1145
1146 sub GetNoticeEmailAddress {
1147     my $borrowernumber = shift;
1148
1149     my $which_address = C4::Context->preference("AutoEmailPrimaryAddress");
1150     # if syspref is set to 'first valid' (value == OFF), look up email address
1151     if ( $which_address eq 'OFF' ) {
1152         return GetFirstValidEmailAddress($borrowernumber);
1153     }
1154     # specified email address field
1155     my $dbh = C4::Context->dbh;
1156     my $sth = $dbh->prepare( qq{
1157         SELECT $which_address AS primaryemail
1158         FROM borrowers
1159         WHERE borrowernumber=?
1160     } );
1161     $sth->execute($borrowernumber);
1162     my $data = $sth->fetchrow_hashref;
1163     return $data->{'primaryemail'} || '';
1164 }
1165
1166 =head2 GetUpcomingMembershipExpires
1167
1168     my $expires = GetUpcomingMembershipExpires({
1169         branch => $branch, before => $before, after => $after,
1170     });
1171
1172     $branch is an optional branch code.
1173     $before/$after is an optional number of days before/after the date that
1174     is set by the preference MembershipExpiryDaysNotice.
1175     If the pref would be 14, before 2 and after 3, you will get all expires
1176     from 12 to 17 days.
1177
1178 =cut
1179
1180 sub GetUpcomingMembershipExpires {
1181     my ( $params ) = @_;
1182     my $before = $params->{before} || 0;
1183     my $after  = $params->{after} || 0;
1184     my $branch = $params->{branch};
1185
1186     my $dbh = C4::Context->dbh;
1187     my $days = C4::Context->preference("MembershipExpiryDaysNotice") || 0;
1188     my $date1 = dt_from_string->add( days => $days - $before );
1189     my $date2 = dt_from_string->add( days => $days + $after );
1190     $date1= output_pref({ dt => $date1, dateformat => 'iso', dateonly => 1 });
1191     $date2= output_pref({ dt => $date2, dateformat => 'iso', dateonly => 1 });
1192
1193     my $query = q|
1194         SELECT borrowers.*, categories.description,
1195         branches.branchname, branches.branchemail FROM borrowers
1196         LEFT JOIN branches USING (branchcode)
1197         LEFT JOIN categories USING (categorycode)
1198     |;
1199     if( $branch ) {
1200         $query.= 'WHERE branchcode=? AND dateexpiry BETWEEN ? AND ?';
1201     } else {
1202         $query.= 'WHERE dateexpiry BETWEEN ? AND ?';
1203     }
1204
1205     my $sth = $dbh->prepare( $query );
1206     my @pars = $branch? ( $branch ): ();
1207     push @pars, $date1, $date2;
1208     $sth->execute( @pars );
1209     my $results = $sth->fetchall_arrayref( {} );
1210     return $results;
1211 }
1212
1213 =head2 GetAge
1214
1215   $dateofbirth,$date = &GetAge($date);
1216
1217 this function return the borrowers age with the value of dateofbirth
1218
1219 =cut
1220
1221 #'
1222 sub GetAge{
1223     my ( $date, $date_ref ) = @_;
1224
1225     if ( not defined $date_ref ) {
1226         $date_ref = sprintf( '%04d-%02d-%02d', Today() );
1227     }
1228
1229     my ( $year1, $month1, $day1 ) = split /-/, $date;
1230     my ( $year2, $month2, $day2 ) = split /-/, $date_ref;
1231
1232     my $age = $year2 - $year1;
1233     if ( $month1 . $day1 > $month2 . $day2 ) {
1234         $age--;
1235     }
1236
1237     return $age;
1238 }    # sub get_age
1239
1240 =head2 SetAge
1241
1242   $borrower = C4::Members::SetAge($borrower, $datetimeduration);
1243   $borrower = C4::Members::SetAge($borrower, '0015-12-10');
1244   $borrower = C4::Members::SetAge($borrower, $datetimeduration, $datetime_reference);
1245
1246   eval { $borrower = C4::Members::SetAge($borrower, '015-1-10'); };
1247   if ($@) {print $@;} #Catch a bad ISO Date or kill your script!
1248
1249 This function sets the borrower's dateofbirth to match the given age.
1250 Optionally relative to the given $datetime_reference.
1251
1252 @PARAM1 koha.borrowers-object
1253 @PARAM2 DateTime::Duration-object as the desired age
1254         OR a ISO 8601 Date. (To make the API more pleasant)
1255 @PARAM3 DateTime-object as the relative date, defaults to now().
1256 RETURNS The given borrower reference @PARAM1.
1257 DIES    If there was an error with the ISO Date handling.
1258
1259 =cut
1260
1261 #'
1262 sub SetAge{
1263     my ( $borrower, $datetimeduration, $datetime_ref ) = @_;
1264     $datetime_ref = DateTime->now() unless $datetime_ref;
1265
1266     if ($datetimeduration && ref $datetimeduration ne 'DateTime::Duration') {
1267         if ($datetimeduration =~ /^(\d{4})-(\d{2})-(\d{2})/) {
1268             $datetimeduration = DateTime::Duration->new(years => $1, months => $2, days => $3);
1269         }
1270         else {
1271             die "C4::Members::SetAge($borrower, $datetimeduration), datetimeduration not a valid ISO 8601 Date!\n";
1272         }
1273     }
1274
1275     my $new_datetime_ref = $datetime_ref->clone();
1276     $new_datetime_ref->subtract_duration( $datetimeduration );
1277
1278     $borrower->{dateofbirth} = $new_datetime_ref->ymd();
1279
1280     return $borrower;
1281 }    # sub SetAge
1282
1283 =head2 GetHideLostItemsPreference
1284
1285   $hidelostitemspref = &GetHideLostItemsPreference($borrowernumber);
1286
1287 Returns the HideLostItems preference for the patron category of the supplied borrowernumber
1288 C<&$hidelostitemspref>return value of function, 0 or 1
1289
1290 =cut
1291
1292 sub GetHideLostItemsPreference {
1293     my ($borrowernumber) = @_;
1294     my $dbh = C4::Context->dbh;
1295     my $query = "SELECT hidelostitems FROM borrowers,categories WHERE borrowers.categorycode = categories.categorycode AND borrowernumber = ?";
1296     my $sth = $dbh->prepare($query);
1297     $sth->execute($borrowernumber);
1298     my $hidelostitems = $sth->fetchrow;    
1299     return $hidelostitems;    
1300 }
1301
1302 =head2 GetBorrowersToExpunge
1303
1304   $borrowers = &GetBorrowersToExpunge(
1305       not_borrowed_since => $not_borrowed_since,
1306       expired_before       => $expired_before,
1307       category_code        => $category_code,
1308       patron_list_id       => $patron_list_id,
1309       branchcode           => $branchcode
1310   );
1311
1312   This function get all borrowers based on the given criteria.
1313
1314 =cut
1315
1316 sub GetBorrowersToExpunge {
1317
1318     my $params = shift;
1319     my $filterdate       = $params->{'not_borrowed_since'};
1320     my $filterexpiry     = $params->{'expired_before'};
1321     my $filterlastseen   = $params->{'last_seen'};
1322     my $filtercategory   = $params->{'category_code'};
1323     my $filterbranch     = $params->{'branchcode'} ||
1324                         ((C4::Context->preference('IndependentBranches')
1325                              && C4::Context->userenv 
1326                              && !C4::Context->IsSuperLibrarian()
1327                              && C4::Context->userenv->{branch})
1328                          ? C4::Context->userenv->{branch}
1329                          : "");  
1330     my $filterpatronlist = $params->{'patron_list_id'};
1331
1332     my $dbh   = C4::Context->dbh;
1333     my $query = q|
1334         SELECT borrowers.borrowernumber,
1335                MAX(old_issues.timestamp) AS latestissue,
1336                MAX(issues.timestamp) AS currentissue
1337         FROM   borrowers
1338         JOIN   categories USING (categorycode)
1339         LEFT JOIN (
1340             SELECT guarantorid
1341             FROM borrowers
1342             WHERE guarantorid IS NOT NULL
1343                 AND guarantorid <> 0
1344         ) as tmp ON borrowers.borrowernumber=tmp.guarantorid
1345         LEFT JOIN old_issues USING (borrowernumber)
1346         LEFT JOIN issues USING (borrowernumber)|;
1347     if ( $filterpatronlist  ){
1348         $query .= q| LEFT JOIN patron_list_patrons USING (borrowernumber)|;
1349     }
1350     $query .= q| WHERE  category_type <> 'S'
1351         AND tmp.guarantorid IS NULL
1352    |;
1353     my @query_params;
1354     if ( $filterbranch && $filterbranch ne "" ) {
1355         $query.= " AND borrowers.branchcode = ? ";
1356         push( @query_params, $filterbranch );
1357     }
1358     if ( $filterexpiry ) {
1359         $query .= " AND dateexpiry < ? ";
1360         push( @query_params, $filterexpiry );
1361     }
1362     if ( $filterlastseen ) {
1363         $query .= ' AND lastseen < ? ';
1364         push @query_params, $filterlastseen;
1365     }
1366     if ( $filtercategory ) {
1367         $query .= " AND categorycode = ? ";
1368         push( @query_params, $filtercategory );
1369     }
1370     if ( $filterpatronlist ){
1371         $query.=" AND patron_list_id = ? ";
1372         push( @query_params, $filterpatronlist );
1373     }
1374     $query.=" GROUP BY borrowers.borrowernumber HAVING currentissue IS NULL ";
1375     if ( $filterdate ) {
1376         $query.=" AND ( latestissue < ? OR latestissue IS NULL ) ";
1377         push @query_params,$filterdate;
1378     }
1379     warn $query if $debug;
1380
1381     my $sth = $dbh->prepare($query);
1382     if (scalar(@query_params)>0){  
1383         $sth->execute(@query_params);
1384     }
1385     else {
1386         $sth->execute;
1387     }
1388     
1389     my @results;
1390     while ( my $data = $sth->fetchrow_hashref ) {
1391         push @results, $data;
1392     }
1393     return \@results;
1394 }
1395
1396 =head2 GetBorrowersWhoHaveNeverBorrowed
1397
1398   $results = &GetBorrowersWhoHaveNeverBorrowed
1399
1400 This function get all borrowers who have never borrowed.
1401
1402 I<$result> is a ref to an array which all elements are a hasref.
1403
1404 =cut
1405
1406 sub GetBorrowersWhoHaveNeverBorrowed {
1407     my $filterbranch = shift || 
1408                         ((C4::Context->preference('IndependentBranches')
1409                              && C4::Context->userenv 
1410                              && !C4::Context->IsSuperLibrarian()
1411                              && C4::Context->userenv->{branch})
1412                          ? C4::Context->userenv->{branch}
1413                          : "");  
1414     my $dbh   = C4::Context->dbh;
1415     my $query = "
1416         SELECT borrowers.borrowernumber,max(timestamp) as latestissue
1417         FROM   borrowers
1418           LEFT JOIN issues ON borrowers.borrowernumber = issues.borrowernumber
1419         WHERE issues.borrowernumber IS NULL
1420    ";
1421     my @query_params;
1422     if ($filterbranch && $filterbranch ne ""){ 
1423         $query.=" AND borrowers.branchcode= ?";
1424         push @query_params,$filterbranch;
1425     }
1426     warn $query if $debug;
1427   
1428     my $sth = $dbh->prepare($query);
1429     if (scalar(@query_params)>0){  
1430         $sth->execute(@query_params);
1431     } 
1432     else {
1433         $sth->execute;
1434     }      
1435     
1436     my @results;
1437     while ( my $data = $sth->fetchrow_hashref ) {
1438         push @results, $data;
1439     }
1440     return \@results;
1441 }
1442
1443 =head2 GetBorrowersWithIssuesHistoryOlderThan
1444
1445   $results = &GetBorrowersWithIssuesHistoryOlderThan($date)
1446
1447 this function get all borrowers who has an issue history older than I<$date> given on input arg.
1448
1449 I<$result> is a ref to an array which all elements are a hashref.
1450 This hashref is containt the number of time this borrowers has borrowed before I<$date> and the borrowernumber.
1451
1452 =cut
1453
1454 sub GetBorrowersWithIssuesHistoryOlderThan {
1455     my $dbh  = C4::Context->dbh;
1456     my $date = shift ||POSIX::strftime("%Y-%m-%d",localtime());
1457     my $filterbranch = shift || 
1458                         ((C4::Context->preference('IndependentBranches')
1459                              && C4::Context->userenv 
1460                              && !C4::Context->IsSuperLibrarian()
1461                              && C4::Context->userenv->{branch})
1462                          ? C4::Context->userenv->{branch}
1463                          : "");  
1464     my $query = "
1465        SELECT count(borrowernumber) as n,borrowernumber
1466        FROM old_issues
1467        WHERE returndate < ?
1468          AND borrowernumber IS NOT NULL 
1469     "; 
1470     my @query_params;
1471     push @query_params, $date;
1472     if ($filterbranch){
1473         $query.="   AND branchcode = ?";
1474         push @query_params, $filterbranch;
1475     }    
1476     $query.=" GROUP BY borrowernumber ";
1477     warn $query if $debug;
1478     my $sth = $dbh->prepare($query);
1479     $sth->execute(@query_params);
1480     my @results;
1481
1482     while ( my $data = $sth->fetchrow_hashref ) {
1483         push @results, $data;
1484     }
1485     return \@results;
1486 }
1487
1488 =head2 IssueSlip
1489
1490   IssueSlip($branchcode, $borrowernumber, $quickslip)
1491
1492   Returns letter hash ( see C4::Letters::GetPreparedLetter )
1493
1494   $quickslip is boolean, to indicate whether we want a quick slip
1495
1496   IssueSlip populates ISSUESLIP and ISSUEQSLIP, and will make the following expansions:
1497
1498   Both slips:
1499
1500       <<branches.*>>
1501       <<borrowers.*>>
1502
1503   ISSUESLIP:
1504
1505       <checkedout>
1506          <<biblio.*>>
1507          <<items.*>>
1508          <<biblioitems.*>>
1509          <<issues.*>>
1510       </checkedout>
1511
1512       <overdue>
1513          <<biblio.*>>
1514          <<items.*>>
1515          <<biblioitems.*>>
1516          <<issues.*>>
1517       </overdue>
1518
1519       <news>
1520          <<opac_news.*>>
1521       </news>
1522
1523   ISSUEQSLIP:
1524
1525       <checkedout>
1526          <<biblio.*>>
1527          <<items.*>>
1528          <<biblioitems.*>>
1529          <<issues.*>>
1530       </checkedout>
1531
1532   NOTE: Not all table fields are available, pleasee see GetPendingIssues for a list of available fields.
1533
1534 =cut
1535
1536 sub IssueSlip {
1537     my ($branch, $borrowernumber, $quickslip) = @_;
1538
1539     # FIXME Check callers before removing this statement
1540     #return unless $borrowernumber;
1541
1542     my @issues = @{ GetPendingIssues($borrowernumber) };
1543
1544     for my $issue (@issues) {
1545         $issue->{date_due} = $issue->{date_due_sql};
1546         if ($quickslip) {
1547             my $today = output_pref({ dt => dt_from_string, dateformat => 'iso', dateonly => 1 });
1548             if ( substr( $issue->{issuedate}, 0, 10 ) eq $today
1549                 or substr( $issue->{lastreneweddate}, 0, 10 ) eq $today ) {
1550                   $issue->{now} = 1;
1551             };
1552         }
1553     }
1554
1555     # Sort on timestamp then on issuedate (useful for tests and could be if modified in a batch
1556     @issues = sort {
1557         my $s = $b->{timestamp} <=> $a->{timestamp};
1558         $s == 0 ?
1559              $b->{issuedate} <=> $a->{issuedate} : $s;
1560     } @issues;
1561
1562     my ($letter_code, %repeat);
1563     if ( $quickslip ) {
1564         $letter_code = 'ISSUEQSLIP';
1565         %repeat =  (
1566             'checkedout' => [ map {
1567                 'biblio'       => $_,
1568                 'items'        => $_,
1569                 'biblioitems'  => $_,
1570                 'issues'       => $_,
1571             }, grep { $_->{'now'} } @issues ],
1572         );
1573     }
1574     else {
1575         $letter_code = 'ISSUESLIP';
1576         %repeat =  (
1577             'checkedout' => [ map {
1578                 'biblio'       => $_,
1579                 'items'        => $_,
1580                 'biblioitems'  => $_,
1581                 'issues'       => $_,
1582             }, grep { !$_->{'overdue'} } @issues ],
1583
1584             'overdue' => [ map {
1585                 'biblio'       => $_,
1586                 'items'        => $_,
1587                 'biblioitems'  => $_,
1588                 'issues'       => $_,
1589             }, grep { $_->{'overdue'} } @issues ],
1590
1591             'news' => [ map {
1592                 $_->{'timestamp'} = $_->{'newdate'};
1593                 { opac_news => $_ }
1594             } @{ GetNewsToDisplay("slip",$branch) } ],
1595         );
1596     }
1597
1598     return  C4::Letters::GetPreparedLetter (
1599         module => 'circulation',
1600         letter_code => $letter_code,
1601         branchcode => $branch,
1602         tables => {
1603             'branches'    => $branch,
1604             'borrowers'   => $borrowernumber,
1605         },
1606         repeat => \%repeat,
1607     );
1608 }
1609
1610 =head2 GetBorrowersWithEmail
1611
1612     ([$borrnum,$userid], ...) = GetBorrowersWithEmail('me@example.com');
1613
1614 This gets a list of users and their basic details from their email address.
1615 As it's possible for multiple user to have the same email address, it provides
1616 you with all of them. If there is no userid for the user, there will be an
1617 C<undef> there. An empty list will be returned if there are no matches.
1618
1619 =cut
1620
1621 sub GetBorrowersWithEmail {
1622     my $email = shift;
1623
1624     my $dbh = C4::Context->dbh;
1625
1626     my $query = "SELECT borrowernumber, userid FROM borrowers WHERE email=?";
1627     my $sth=$dbh->prepare($query);
1628     $sth->execute($email);
1629     my @result = ();
1630     while (my $ref = $sth->fetch) {
1631         push @result, $ref;
1632     }
1633     die "Failure searching for borrowers by email address: $sth->errstr" if $sth->err;
1634     return @result;
1635 }
1636
1637 =head2 AddMember_Opac
1638
1639 =cut
1640
1641 sub AddMember_Opac {
1642     my ( %borrower ) = @_;
1643
1644     $borrower{'categorycode'} //= C4::Context->preference('PatronSelfRegistrationDefaultCategory');
1645     if (not defined $borrower{'password'}){
1646         my $sr = new String::Random;
1647         $sr->{'A'} = [ 'A'..'Z', 'a'..'z' ];
1648         my $password = $sr->randpattern("AAAAAAAAAA");
1649         $borrower{'password'} = $password;
1650     }
1651
1652     $borrower{'cardnumber'} = fixup_cardnumber( $borrower{'cardnumber'} );
1653
1654     my $borrowernumber = AddMember(%borrower);
1655
1656     return ( $borrowernumber, $borrower{'password'} );
1657 }
1658
1659 =head2 DeleteExpiredOpacRegistrations
1660
1661     Delete accounts that haven't been upgraded from the 'temporary' category
1662     Returns the number of removed patrons
1663
1664 =cut
1665
1666 sub DeleteExpiredOpacRegistrations {
1667
1668     my $delay = C4::Context->preference('PatronSelfRegistrationExpireTemporaryAccountsDelay');
1669     my $category_code = C4::Context->preference('PatronSelfRegistrationDefaultCategory');
1670
1671     return 0 if not $category_code or not defined $delay or $delay eq q||;
1672
1673     my $query = qq|
1674 SELECT borrowernumber
1675 FROM borrowers
1676 WHERE categorycode = ? AND DATEDIFF( NOW(), dateenrolled ) > ? |;
1677
1678     my $dbh = C4::Context->dbh;
1679     my $sth = $dbh->prepare($query);
1680     $sth->execute( $category_code, $delay );
1681     my $cnt=0;
1682     while ( my ($borrowernumber) = $sth->fetchrow_array() ) {
1683         Koha::Patrons->find($borrowernumber)->delete;
1684         $cnt++;
1685     }
1686     return $cnt;
1687 }
1688
1689 =head2 DeleteUnverifiedOpacRegistrations
1690
1691     Delete all unverified self registrations in borrower_modifications,
1692     older than the specified number of days.
1693
1694 =cut
1695
1696 sub DeleteUnverifiedOpacRegistrations {
1697     my ( $days ) = @_;
1698     my $dbh = C4::Context->dbh;
1699     my $sql=qq|
1700 DELETE FROM borrower_modifications
1701 WHERE borrowernumber = 0 AND DATEDIFF( NOW(), timestamp ) > ?|;
1702     my $cnt=$dbh->do($sql, undef, ($days) );
1703     return $cnt eq '0E0'? 0: $cnt;
1704 }
1705
1706 sub GetOverduesForPatron {
1707     my ( $borrowernumber ) = @_;
1708
1709     my $sql = "
1710         SELECT *
1711         FROM issues, items, biblio, biblioitems
1712         WHERE items.itemnumber=issues.itemnumber
1713           AND biblio.biblionumber   = items.biblionumber
1714           AND biblio.biblionumber   = biblioitems.biblionumber
1715           AND issues.borrowernumber = ?
1716           AND date_due < NOW()
1717     ";
1718
1719     my $sth = C4::Context->dbh->prepare( $sql );
1720     $sth->execute( $borrowernumber );
1721
1722     return $sth->fetchall_arrayref({});
1723 }
1724
1725 END { }    # module clean-up code here (global destructor)
1726
1727 1;
1728
1729 __END__
1730
1731 =head1 AUTHOR
1732
1733 Koha Team
1734
1735 =cut