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