bug 4358: remove disused ReadingHistory syspref and related code
[koha.git] / C4 / Members.pm
1 package C4::Members;
2
3 # Copyright 2000-2003 Katipo Communications
4 #
5 # This file is part of Koha.
6 #
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 2 of the License, or (at your option) any later
10 # version.
11 #
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License along
17 # with Koha; if not, write to the Free Software Foundation, Inc.,
18 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19
20
21 use strict;
22 use C4::Context;
23 use C4::Dates qw(format_date_in_iso);
24 use Digest::MD5 qw(md5_base64);
25 use Date::Calc qw/Today Add_Delta_YM/;
26 use C4::Log; # logaction
27 use C4::Overdues;
28 use C4::Reserves;
29 use C4::Accounts;
30 use C4::Biblio;
31 use C4::SQLHelper qw(InsertInTable UpdateInTable SearchInTable);
32 use C4::Members::Attributes qw(SearchIdMatchingAttribute);
33
34 our ($VERSION,@ISA,@EXPORT,@EXPORT_OK,$debug);
35
36 BEGIN {
37         $VERSION = 3.02;
38         $debug = $ENV{DEBUG} || 0;
39         require Exporter;
40         @ISA = qw(Exporter);
41         #Get data
42         push @EXPORT, qw(
43                 &Search
44                 &SearchMember 
45                 &GetMemberDetails
46                 &GetMember
47
48                 &GetGuarantees 
49
50                 &GetMemberIssuesAndFines
51                 &GetPendingIssues
52                 &GetAllIssues
53
54                 &get_institutions 
55                 &getzipnamecity 
56                 &getidcity
57
58                 &GetAge 
59                 &GetCities 
60                 &GetRoadTypes 
61                 &GetRoadTypeDetails 
62                 &GetSortDetails
63                 &GetTitles
64
65     &GetPatronImage
66     &PutPatronImage
67     &RmPatronImage
68
69                 &IsMemberBlocked
70                 &GetMemberAccountRecords
71                 &GetBorNotifyAcctRecord
72
73                 &GetborCatFromCatType 
74                 &GetBorrowercategory
75     &GetBorrowercategoryList
76
77                 &GetBorrowersWhoHaveNotBorrowedSince
78                 &GetBorrowersWhoHaveNeverBorrowed
79                 &GetBorrowersWithIssuesHistoryOlderThan
80
81                 &GetExpiryDate
82
83                 &AddMessage
84                 &DeleteMessage
85                 &GetMessages
86                 &GetMessagesCount
87         );
88
89         #Modify data
90         push @EXPORT, qw(
91                 &ModMember
92                 &changepassword
93         );
94
95         #Delete data
96         push @EXPORT, qw(
97                 &DelMember
98         );
99
100         #Insert data
101         push @EXPORT, qw(
102                 &AddMember
103                 &add_member_orgs
104                 &MoveMemberToDeleted
105                 &ExtendMemberSubscriptionTo
106         );
107
108         #Check data
109     push @EXPORT, qw(
110         &checkuniquemember
111         &checkuserpassword
112         &Check_Userid
113         &Generate_Userid
114         &fixEthnicity
115         &ethnicitycategories
116         &fixup_cardnumber
117         &checkcardnumber
118     );
119 }
120
121 =head1 NAME
122
123 C4::Members - Perl Module containing convenience functions for member handling
124
125 =head1 SYNOPSIS
126
127 use C4::Members;
128
129 =head1 DESCRIPTION
130
131 This module contains routines for adding, modifying and deleting members/patrons/borrowers 
132
133 =head1 FUNCTIONS
134
135 =over 2
136
137 =item SearchMember
138
139   ($count, $borrowers) = &SearchMember($searchstring, $type,$category_type,$filter,$showallbranches);
140
141 =back
142
143 Looks up patrons (borrowers) by name.
144
145 BUGFIX 499: C<$type> is now used to determine type of search.
146 if $type is "simple", search is performed on the first letter of the
147 surname only.
148
149 $category_type is used to get a specified type of user. 
150 (mainly adults when creating a child.)
151
152 C<$searchstring> is a space-separated list of search terms. Each term
153 must match the beginning a borrower's surname, first name, or other
154 name.
155
156 C<$filter> is assumed to be a list of elements to filter results on
157
158 C<$showallbranches> is used in IndependantBranches Context to display all branches results.
159
160 C<&SearchMember> returns a two-element list. C<$borrowers> is a
161 reference-to-array; each element is a reference-to-hash, whose keys
162 are the fields of the C<borrowers> table in the Koha database.
163 C<$count> is the number of elements in C<$borrowers>.
164
165 =cut
166
167 #'
168 #used by member enquiries from the intranet
169 sub SearchMember {
170     my ($searchstring, $orderby, $type,$category_type,$filter,$showallbranches ) = @_;
171     my $dbh   = C4::Context->dbh;
172     my $query = "";
173     my $count;
174     my @data;
175     my @bind = ();
176     
177     # this is used by circulation everytime a new borrowers cardnumber is scanned
178     # so we can check an exact match first, if that works return, otherwise do the rest
179     $query = "SELECT * FROM borrowers
180         LEFT JOIN categories ON borrowers.categorycode=categories.categorycode
181         ";
182     my $sth = $dbh->prepare("$query WHERE cardnumber = ?");
183     $sth->execute($searchstring);
184     my $data = $sth->fetchall_arrayref({});
185     if (@$data){
186         return ( scalar(@$data), $data );
187     }
188
189     if ( $type eq "simple" )    # simple search for one letter only
190     {
191         $query .= ($category_type ? " AND category_type = ".$dbh->quote($category_type) : ""); 
192         $query .= " WHERE (surname LIKE ? OR cardnumber like ?) ";
193         if (C4::Context->preference("IndependantBranches") && !$showallbranches){
194           if (C4::Context->userenv && C4::Context->userenv->{flags} % 2 !=1 && C4::Context->userenv->{'branch'}){
195             $query.=" AND borrowers.branchcode =".$dbh->quote(C4::Context->userenv->{'branch'}) unless (C4::Context->userenv->{'branch'} eq "insecure");
196           }
197         }
198         $query.=" ORDER BY $orderby";
199         @bind = ("$searchstring%","$searchstring");
200     }
201     else    # advanced search looking in surname, firstname and othernames
202     {
203         @data  = split( ' ', $searchstring );
204         $count = @data;
205         $query .= " WHERE ";
206         if (C4::Context->preference("IndependantBranches") && !$showallbranches){
207           if (C4::Context->userenv && C4::Context->userenv->{flags} % 2 !=1 && C4::Context->userenv->{'branch'}){
208             $query.=" borrowers.branchcode =".$dbh->quote(C4::Context->userenv->{'branch'})." AND " unless (C4::Context->userenv->{'branch'} eq "insecure");
209           }      
210         }     
211         $query.="((surname LIKE ? OR surname LIKE ?
212                 OR firstname  LIKE ? OR firstname LIKE ?
213                 OR othernames LIKE ? OR othernames LIKE ?)
214         " .
215         ($category_type?" AND category_type = ".$dbh->quote($category_type):"");
216         @bind = (
217             "$data[0]%", "% $data[0]%", "$data[0]%", "% $data[0]%",
218             "$data[0]%", "% $data[0]%"
219         );
220         for ( my $i = 1 ; $i < $count ; $i++ ) {
221             $query = $query . " AND (" . " surname LIKE ? OR surname LIKE ?
222                 OR firstname  LIKE ? OR firstname LIKE ?
223                 OR othernames LIKE ? OR othernames LIKE ?)";
224             push( @bind,
225                 "$data[$i]%",   "% $data[$i]%", "$data[$i]%",
226                 "% $data[$i]%", "$data[$i]%",   "% $data[$i]%" );
227
228             # FIXME - .= <<EOT;
229         }
230         $query = $query . ") OR cardnumber LIKE ? ";
231         push( @bind, $searchstring );
232         $query .= "order by $orderby";
233
234         # FIXME - .= <<EOT;
235     }
236
237     $sth = $dbh->prepare($query);
238
239     $debug and print STDERR "Q $orderby : $query\n";
240     $sth->execute(@bind);
241     my @results;
242     $data = $sth->fetchall_arrayref({});
243
244     return ( scalar(@$data), $data );
245 }
246
247 =over 2
248
249 =item Search
250
251   $borrowers_result_array_ref = &Search($filter,$orderby, $limit, $columns_out, $search_on_fields,$searchtype);
252
253 =back
254
255 Looks up patrons (borrowers) on filter.
256
257 BUGFIX 499: C<$type> is now used to determine type of search.
258 if $type is "simple", search is performed on the first letter of the
259 surname only.
260
261 $category_type is used to get a specified type of user. 
262 (mainly adults when creating a child.)
263
264 C<$filter> can be
265    - a space-separated list of search terms. Implicit AND is done on them
266    - a hash ref containing fieldnames associated with queried value
267    - an array ref combining the two previous elements Implicit OR is done between each array element
268
269
270 C<$orderby> is an arrayref of hashref. Contains the name of the field and 0 or 1 depending if order is ascending or descending
271
272 C<$limit> is there to allow limiting number of results returned
273
274 C<&columns_out> is an array ref to the fieldnames you want to see in the result list
275
276 C<&search_on_fields> is an array ref to the fieldnames you want to limit search on when you are using string search
277
278 C<&searchtype> is a string telling the type of search you want todo : start_with, exact or contains are allowed
279
280 =cut
281
282 sub Search {
283     my ($filter,$orderby, $limit, $columns_out, $search_on_fields,$searchtype) = @_;
284         my @filters;
285         if (ref($filter) eq "ARRAY"){
286                 push @filters,@$filter;
287         }
288         else {
289                 push @filters,$filter;
290         }
291     if (C4::Context->preference('ExtendedPatronAttributes')) {
292                 my $matching_records = C4::Members::Attributes::SearchIdMatchingAttribute($filter);
293                 push @filters,@$matching_records;
294     }
295         $searchtype||="start_with";
296         my $data=SearchInTable("borrowers",\@filters,$orderby,$limit,$columns_out,$search_on_fields,$searchtype);
297
298     return ( $data );
299 }
300
301 =head2 GetMemberDetails
302
303 ($borrower) = &GetMemberDetails($borrowernumber, $cardnumber);
304
305 Looks up a patron and returns information about him or her. If
306 C<$borrowernumber> is true (nonzero), C<&GetMemberDetails> looks
307 up the borrower by number; otherwise, it looks up the borrower by card
308 number.
309
310 C<$borrower> is a reference-to-hash whose keys are the fields of the
311 borrowers table in the Koha database. In addition,
312 C<$borrower-E<gt>{flags}> is a hash giving more detailed information
313 about the patron. Its keys act as flags :
314
315     if $borrower->{flags}->{LOST} {
316         # Patron's card was reported lost
317     }
318
319 If the state of a flag means that the patron should not be
320 allowed to borrow any more books, then it will have a C<noissues> key
321 with a true value.
322
323 See patronflags for more details.
324
325 C<$borrower-E<gt>{authflags}> is a hash giving more detailed information
326 about the top-level permissions flags set for the borrower.  For example,
327 if a user has the "editcatalogue" permission,
328 C<$borrower-E<gt>{authflags}-E<gt>{editcatalogue}> will exist and have
329 the value "1".
330
331 =cut
332
333 sub GetMemberDetails {
334     my ( $borrowernumber, $cardnumber ) = @_;
335     my $dbh = C4::Context->dbh;
336     my $query;
337     my $sth;
338     if ($borrowernumber) {
339         $sth = $dbh->prepare("select borrowers.*,category_type,categories.description from borrowers left join categories on borrowers.categorycode=categories.categorycode where  borrowernumber=?");
340         $sth->execute($borrowernumber);
341     }
342     elsif ($cardnumber) {
343         $sth = $dbh->prepare("select borrowers.*,category_type,categories.description from borrowers left join categories on borrowers.categorycode=categories.categorycode where cardnumber=?");
344         $sth->execute($cardnumber);
345     }
346     else {
347         return undef;
348     }
349     my $borrower = $sth->fetchrow_hashref;
350     my ($amount) = GetMemberAccountRecords( $borrowernumber);
351     $borrower->{'amountoutstanding'} = $amount;
352     # FIXME - patronflags calls GetMemberAccountRecords... just have patronflags return $amount
353     my $flags = patronflags( $borrower);
354     my $accessflagshash;
355
356     $sth = $dbh->prepare("select bit,flag from userflags");
357     $sth->execute;
358     while ( my ( $bit, $flag ) = $sth->fetchrow ) {
359         if ( $borrower->{'flags'} && $borrower->{'flags'} & 2**$bit ) {
360             $accessflagshash->{$flag} = 1;
361         }
362     }
363     $borrower->{'flags'}     = $flags;
364     $borrower->{'authflags'} = $accessflagshash;
365
366     # find out how long the membership lasts
367     $sth =
368       $dbh->prepare(
369         "select enrolmentperiod from categories where categorycode = ?");
370     $sth->execute( $borrower->{'categorycode'} );
371     my $enrolment = $sth->fetchrow;
372     $borrower->{'enrolmentperiod'} = $enrolment;
373     return ($borrower);    #, $flags, $accessflagshash);
374 }
375
376 =head2 patronflags
377
378  $flags = &patronflags($patron);
379
380  This function is not exported.
381
382  The following will be set where applicable:
383  $flags->{CHARGES}->{amount}        Amount of debt
384  $flags->{CHARGES}->{noissues}      Set if debt amount >$5.00 (or syspref noissuescharge)
385  $flags->{CHARGES}->{message}       Message -- deprecated
386
387  $flags->{CREDITS}->{amount}        Amount of credit
388  $flags->{CREDITS}->{message}       Message -- deprecated
389
390  $flags->{  GNA  }                  Patron has no valid address
391  $flags->{  GNA  }->{noissues}      Set for each GNA
392  $flags->{  GNA  }->{message}       "Borrower has no valid address" -- deprecated
393
394  $flags->{ LOST  }                  Patron's card reported lost
395  $flags->{ LOST  }->{noissues}      Set for each LOST
396  $flags->{ LOST  }->{message}       Message -- deprecated
397
398  $flags->{DBARRED}                  Set if patron debarred, no access
399  $flags->{DBARRED}->{noissues}      Set for each DBARRED
400  $flags->{DBARRED}->{message}       Message -- deprecated
401
402  $flags->{ NOTES }
403  $flags->{ NOTES }->{message}       The note itself.  NOT deprecated
404
405  $flags->{ ODUES }                  Set if patron has overdue books.
406  $flags->{ ODUES }->{message}       "Yes"  -- deprecated
407  $flags->{ ODUES }->{itemlist}      ref-to-array: list of overdue books
408  $flags->{ ODUES }->{itemlisttext}  Text list of overdue items -- deprecated
409
410  $flags->{WAITING}                  Set if any of patron's reserves are available
411  $flags->{WAITING}->{message}       Message -- deprecated
412  $flags->{WAITING}->{itemlist}      ref-to-array: list of available items
413
414 =over 4
415
416 C<$flags-E<gt>{ODUES}-E<gt>{itemlist}> is a reference-to-array listing the
417 overdue items. Its elements are references-to-hash, each describing an
418 overdue item. The keys are selected fields from the issues, biblio,
419 biblioitems, and items tables of the Koha database.
420
421 C<$flags-E<gt>{ODUES}-E<gt>{itemlisttext}> is a string giving a text listing of
422 the overdue items, one per line.  Deprecated.
423
424 C<$flags-E<gt>{WAITING}-E<gt>{itemlist}> is a reference-to-array listing the
425 available items. Each element is a reference-to-hash whose keys are
426 fields from the reserves table of the Koha database.
427
428 =back
429
430 All the "message" fields that include language generated in this function are deprecated, 
431 because such strings belong properly in the display layer.
432
433 The "message" field that comes from the DB is OK.
434
435 =cut
436
437 # TODO: use {anonymous => hashes} instead of a dozen %flaginfo
438 # FIXME rename this function.
439 sub patronflags {
440     my %flags;
441     my ( $patroninformation) = @_;
442     my $dbh=C4::Context->dbh;
443     my ($amount) = GetMemberAccountRecords( $patroninformation->{'borrowernumber'});
444     if ( $amount > 0 ) {
445         my %flaginfo;
446         my $noissuescharge = C4::Context->preference("noissuescharge") || 5;
447         $flaginfo{'message'} = sprintf "Patron owes \$%.02f", $amount;
448         $flaginfo{'amount'}  = sprintf "%.02f", $amount;
449         if ( $amount > $noissuescharge ) {
450             $flaginfo{'noissues'} = 1;
451         }
452         $flags{'CHARGES'} = \%flaginfo;
453     }
454     elsif ( $amount < 0 ) {
455         my %flaginfo;
456         $flaginfo{'message'} = sprintf "Patron has credit of \$%.02f", -$amount;
457         $flaginfo{'amount'}  = sprintf "%.02f", $amount;
458         $flags{'CREDITS'} = \%flaginfo;
459     }
460     if (   $patroninformation->{'gonenoaddress'}
461         && $patroninformation->{'gonenoaddress'} == 1 )
462     {
463         my %flaginfo;
464         $flaginfo{'message'}  = 'Borrower has no valid address.';
465         $flaginfo{'noissues'} = 1;
466         $flags{'GNA'}         = \%flaginfo;
467     }
468     if ( $patroninformation->{'lost'} && $patroninformation->{'lost'} == 1 ) {
469         my %flaginfo;
470         $flaginfo{'message'}  = 'Borrower\'s card reported lost.';
471         $flaginfo{'noissues'} = 1;
472         $flags{'LOST'}        = \%flaginfo;
473     }
474     if (   $patroninformation->{'debarred'}
475         && $patroninformation->{'debarred'} == 1 )
476     {
477         my %flaginfo;
478         $flaginfo{'message'}  = 'Borrower is Debarred.';
479         $flaginfo{'noissues'} = 1;
480         $flags{'DBARRED'}     = \%flaginfo;
481     }
482     if (   $patroninformation->{'borrowernotes'}
483         && $patroninformation->{'borrowernotes'} )
484     {
485         my %flaginfo;
486         $flaginfo{'message'} = $patroninformation->{'borrowernotes'};
487         $flags{'NOTES'}      = \%flaginfo;
488     }
489     my ( $odues, $itemsoverdue ) = checkoverdues($patroninformation->{'borrowernumber'});
490     if ( $odues > 0 ) {
491         my %flaginfo;
492         $flaginfo{'message'}  = "Yes";
493         $flaginfo{'itemlist'} = $itemsoverdue;
494         foreach ( sort { $a->{'date_due'} cmp $b->{'date_due'} }
495             @$itemsoverdue )
496         {
497             $flaginfo{'itemlisttext'} .=
498               "$_->{'date_due'} $_->{'barcode'} $_->{'title'} \n";  # newline is display layer
499         }
500         $flags{'ODUES'} = \%flaginfo;
501     }
502     my @itemswaiting = C4::Reserves::GetReservesFromBorrowernumber( $patroninformation->{'borrowernumber'},'W' );
503     my $nowaiting = scalar @itemswaiting;
504     if ( $nowaiting > 0 ) {
505         my %flaginfo;
506         $flaginfo{'message'}  = "Reserved items available";
507         $flaginfo{'itemlist'} = \@itemswaiting;
508         $flags{'WAITING'}     = \%flaginfo;
509     }
510     return ( \%flags );
511 }
512
513
514 =head2 GetMember
515
516   $borrower = &GetMember(%information);
517
518 Retrieve the first patron record meeting on criteria listed in the
519 C<%information> hash, which should contain one or more
520 pairs of borrowers column names and values, e.g.,
521
522    $borrower = GetMember(borrowernumber => id);
523
524 C<&GetBorrower> returns a reference-to-hash whose keys are the fields of
525 the C<borrowers> table in the Koha database.
526
527 FIXME: GetMember() is used throughout the code as a lookup
528 on a unique key such as the borrowernumber, but this meaning is not
529 enforced in the routine itself.
530
531 =cut
532
533 #'
534 sub GetMember {
535     my ( %information ) = @_;
536     if (exists $information{borrowernumber} && !defined $information{borrowernumber}) {
537         #passing mysql's kohaadmin?? Makes no sense as a query
538         return;
539     }
540     my $dbh = C4::Context->dbh;
541     my $select =
542     q{SELECT borrowers.*, categories.category_type, categories.description
543     FROM borrowers 
544     LEFT JOIN categories on borrowers.categorycode=categories.categorycode WHERE };
545     my $more_p = 0;
546     my @values = ();
547     for (keys %information ) {
548         if ($more_p) {
549             $select .= ' AND ';
550         }
551         else {
552             $more_p++;
553         }
554
555         if (defined $information{$_}) {
556             $select .= "$_ = ?";
557             push @values, $information{$_};
558         }
559         else {
560             $select .= "$_ IS NULL";
561         }
562     }
563     $debug && warn $select, " ",values %information;
564     my $sth = $dbh->prepare("$select");
565     $sth->execute(map{$information{$_}} keys %information);
566     my $data = $sth->fetchall_arrayref({});
567     #FIXME interface to this routine now allows generation of a result set
568     #so whole array should be returned but bowhere in the current code expects this
569     if (@{$data} ) {
570         return $data->[0];
571     }
572
573     return;
574 }
575
576
577 =head2 IsMemberBlocked
578
579 =over 4
580
581 my $blocked = IsMemberBlocked( $borrowernumber );
582
583 return the status, and the number of day or documents, depends his punishment
584
585 return :
586 -1 if the user have overdue returns
587 1 if the user is punished X days
588 0 if the user is authorised to loan
589
590 =back
591
592 =cut
593
594 sub IsMemberBlocked {
595     my $borrowernumber = shift;
596     my $dbh            = C4::Context->dbh;
597     # if he have late issues
598     my $sth = $dbh->prepare(
599         "SELECT COUNT(*) as latedocs
600          FROM issues
601          WHERE borrowernumber = ?
602          AND date_due < now()"
603     );
604     $sth->execute($borrowernumber);
605     my $latedocs = $sth->fetchrow_hashref->{'latedocs'};
606
607     return (-1, $latedocs) if $latedocs > 0;
608
609         my $strsth=qq{
610             SELECT
611             ADDDATE(returndate, finedays * DATEDIFF(returndate,date_due) ) AS blockingdate,
612             DATEDIFF(ADDDATE(returndate, finedays * DATEDIFF(returndate,date_due)),NOW()) AS blockedcount
613             FROM old_issues
614         };
615     # or if he must wait to loan
616     if(C4::Context->preference("item-level_itypes")){
617         $strsth.=
618                 qq{ LEFT JOIN items ON (items.itemnumber=old_issues.itemnumber)
619             LEFT JOIN issuingrules ON (issuingrules.itemtype=items.itype)}
620     }else{
621         $strsth .= 
622                 qq{ LEFT JOIN items ON (items.itemnumber=old_issues.itemnumber)
623             LEFT JOIN biblioitems ON (biblioitems.biblioitemnumber=items.biblioitemnumber)
624             LEFT JOIN issuingrules ON (issuingrules.itemtype=biblioitems.itemtype) };
625     }
626         $strsth.=
627         qq{ WHERE finedays IS NOT NULL
628             AND  date_due < returndate
629             AND borrowernumber = ?
630             ORDER BY blockingdate DESC, blockedcount DESC
631             LIMIT 1};
632         $sth=$dbh->prepare($strsth);
633     $sth->execute($borrowernumber);
634     my $row = $sth->fetchrow_hashref;
635     my $blockeddate  = $row->{'blockeddate'};
636     my $blockedcount = $row->{'blockedcount'};
637
638     return (1, $blockedcount) if $blockedcount > 0;
639
640     return 0
641 }
642
643 =head2 GetMemberIssuesAndFines
644
645   ($overdue_count, $issue_count, $total_fines) = &GetMemberIssuesAndFines($borrowernumber);
646
647 Returns aggregate data about items borrowed by the patron with the
648 given borrowernumber.
649
650 C<&GetMemberIssuesAndFines> returns a three-element array.  C<$overdue_count> is the
651 number of overdue items the patron currently has borrowed. C<$issue_count> is the
652 number of books the patron currently has borrowed.  C<$total_fines> is
653 the total fine currently due by the borrower.
654
655 =cut
656
657 #'
658 sub GetMemberIssuesAndFines {
659     my ( $borrowernumber ) = @_;
660     my $dbh   = C4::Context->dbh;
661     my $query = "SELECT COUNT(*) FROM issues WHERE borrowernumber = ?";
662
663     $debug and warn $query."\n";
664     my $sth = $dbh->prepare($query);
665     $sth->execute($borrowernumber);
666     my $issue_count = $sth->fetchrow_arrayref->[0];
667
668     $sth = $dbh->prepare(
669         "SELECT COUNT(*) FROM issues 
670          WHERE borrowernumber = ? 
671          AND date_due < now()"
672     );
673     $sth->execute($borrowernumber);
674     my $overdue_count = $sth->fetchrow_arrayref->[0];
675
676     $sth = $dbh->prepare("SELECT SUM(amountoutstanding) FROM accountlines WHERE borrowernumber = ?");
677     $sth->execute($borrowernumber);
678     my $total_fines = $sth->fetchrow_arrayref->[0];
679
680     return ($overdue_count, $issue_count, $total_fines);
681 }
682
683 sub columns(;$) {
684     return @{C4::Context->dbh->selectcol_arrayref("SHOW columns from borrowers")};
685 }
686
687 =head2
688
689 =head2 ModMember
690
691 =over 4
692
693 my $success = ModMember(borrowernumber => $borrowernumber, [ field => value ]... );
694
695 Modify borrower's data.  All date fields should ALREADY be in ISO format.
696
697 return :
698 true on success, or false on failure
699
700 =back
701
702 =cut
703 sub ModMember {
704     my (%data) = @_;
705     # test to know if you must update or not the borrower password
706     if (exists $data{password}) {
707         if ($data{password} eq '****' or $data{password} eq '') {
708             delete $data{password};
709         } else {
710             $data{password} = md5_base64($data{password});
711         }
712     }
713         my $execute_success=UpdateInTable("borrowers",\%data);
714 # ok if its an adult (type) it may have borrowers that depend on it as a guarantor
715 # so when we update information for an adult we should check for guarantees and update the relevant part
716 # of their records, ie addresses and phone numbers
717     my $borrowercategory= GetBorrowercategory( $data{'category_type'} );
718     if ( exists  $borrowercategory->{'category_type'} && $borrowercategory->{'category_type'} eq ('A' || 'S') ) {
719         # is adult check guarantees;
720         UpdateGuarantees(%data);
721     }
722     logaction("MEMBERS", "MODIFY", $data{'borrowernumber'}, "UPDATE (executed w/ arg: $data{'borrowernumber'})") 
723         if C4::Context->preference("BorrowersLog");
724
725     return $execute_success;
726 }
727
728
729 =head2
730
731 =head2 AddMember
732
733   $borrowernumber = &AddMember(%borrower);
734
735 insert new borrower into table
736 Returns the borrowernumber
737
738 =cut
739
740 #'
741 sub AddMember {
742     my (%data) = @_;
743     my $dbh = C4::Context->dbh;
744     $data{'password'} = '!' if (not $data{'password'} and $data{'userid'});
745     $data{'password'} = md5_base64( $data{'password'} ) if $data{'password'};
746         $data{'borrowernumber'}=InsertInTable("borrowers",\%data);      
747     # mysql_insertid is probably bad.  not necessarily accurate and mysql-specific at best.
748     logaction("MEMBERS", "CREATE", $data{'borrowernumber'}, "") if C4::Context->preference("BorrowersLog");
749     
750     # check for enrollment fee & add it if needed
751     my $sth = $dbh->prepare("SELECT enrolmentfee FROM categories WHERE categorycode=?");
752     $sth->execute($data{'categorycode'});
753     my ($enrolmentfee) = $sth->fetchrow;
754     if ($enrolmentfee && $enrolmentfee > 0) {
755         # insert fee in patron debts
756         manualinvoice($data{'borrowernumber'}, '', '', 'A', $enrolmentfee);
757     }
758     return $data{'borrowernumber'};
759 }
760
761
762 sub Check_Userid {
763     my ($uid,$member) = @_;
764     my $dbh = C4::Context->dbh;
765     # Make sure the userid chosen is unique and not theirs if non-empty. If it is not,
766     # Then we need to tell the user and have them create a new one.
767     my $sth =
768       $dbh->prepare(
769         "SELECT * FROM borrowers WHERE userid=? AND borrowernumber != ?");
770     $sth->execute( $uid, $member );
771     if ( ( $uid ne '' ) && ( my $row = $sth->fetchrow_hashref ) ) {
772         return 0;
773     }
774     else {
775         return 1;
776     }
777 }
778
779 sub Generate_Userid {
780   my ($borrowernumber, $firstname, $surname) = @_;
781   my $newuid;
782   my $offset = 0;
783   do {
784     $firstname =~ s/[[:digit:][:space:][:blank:][:punct:][:cntrl:]]//g;
785     $surname =~ s/[[:digit:][:space:][:blank:][:punct:][:cntrl:]]//g;
786     $newuid = lc("$firstname.$surname");
787     $newuid .= $offset unless $offset == 0;
788     $offset++;
789
790    } while (!Check_Userid($newuid,$borrowernumber));
791
792    return $newuid;
793 }
794
795 sub changepassword {
796     my ( $uid, $member, $digest ) = @_;
797     my $dbh = C4::Context->dbh;
798
799 #Make sure the userid chosen is unique and not theirs if non-empty. If it is not,
800 #Then we need to tell the user and have them create a new one.
801     my $resultcode;
802     my $sth =
803       $dbh->prepare(
804         "SELECT * FROM borrowers WHERE userid=? AND borrowernumber != ?");
805     $sth->execute( $uid, $member );
806     if ( ( $uid ne '' ) && ( my $row = $sth->fetchrow_hashref ) ) {
807         $resultcode=0;
808     }
809     else {
810         #Everything is good so we can update the information.
811         $sth =
812           $dbh->prepare(
813             "update borrowers set userid=?, password=? where borrowernumber=?");
814         $sth->execute( $uid, $digest, $member );
815         $resultcode=1;
816     }
817     
818     logaction("MEMBERS", "CHANGE PASS", $member, "") if C4::Context->preference("BorrowersLog");
819     return $resultcode;    
820 }
821
822
823
824 =head2 fixup_cardnumber
825
826 Warning: The caller is responsible for locking the members table in write
827 mode, to avoid database corruption.
828
829 =cut
830
831 use vars qw( @weightings );
832 my @weightings = ( 8, 4, 6, 3, 5, 2, 1 );
833
834 sub fixup_cardnumber ($) {
835     my ($cardnumber) = @_;
836     my $autonumber_members = C4::Context->boolean_preference('autoMemberNum') || 0;
837
838     # Find out whether member numbers should be generated
839     # automatically. Should be either "1" or something else.
840     # Defaults to "0", which is interpreted as "no".
841
842     #     if ($cardnumber !~ /\S/ && $autonumber_members) {
843     ($autonumber_members) or return $cardnumber;
844     my $checkdigit = C4::Context->preference('checkdigit');
845     my $dbh = C4::Context->dbh;
846     if ( $checkdigit and $checkdigit eq 'katipo' ) {
847
848         # if checkdigit is selected, calculate katipo-style cardnumber.
849         # otherwise, just use the max()
850         # purpose: generate checksum'd member numbers.
851         # We'll assume we just got the max value of digits 2-8 of member #'s
852         # from the database and our job is to increment that by one,
853         # determine the 1st and 9th digits and return the full string.
854         my $sth = $dbh->prepare(
855             "select max(substring(borrowers.cardnumber,2,7)) as new_num from borrowers"
856         );
857         $sth->execute;
858         my $data = $sth->fetchrow_hashref;
859         $cardnumber = $data->{new_num};
860         if ( !$cardnumber ) {    # If DB has no values,
861             $cardnumber = 1000000;    # start at 1000000
862         } else {
863             $cardnumber += 1;
864         }
865
866         my $sum = 0;
867         for ( my $i = 0 ; $i < 8 ; $i += 1 ) {
868             # read weightings, left to right, 1 char at a time
869             my $temp1 = $weightings[$i];
870
871             # sequence left to right, 1 char at a time
872             my $temp2 = substr( $cardnumber, $i, 1 );
873
874             # mult each char 1-7 by its corresponding weighting
875             $sum += $temp1 * $temp2;
876         }
877
878         my $rem = ( $sum % 11 );
879         $rem = 'X' if $rem == 10;
880
881         return "V$cardnumber$rem";
882      } else {
883
884      # MODIFIED BY JF: mysql4.1 allows casting as an integer, which is probably
885      # better. I'll leave the original in in case it needs to be changed for you
886      # my $sth=$dbh->prepare("select max(borrowers.cardnumber) from borrowers");
887         my $sth = $dbh->prepare(
888             "select max(cast(cardnumber as signed)) from borrowers"
889         );
890         $sth->execute;
891         my ($result) = $sth->fetchrow;
892         return $result + 1;
893     }
894     return $cardnumber;     # just here as a fallback/reminder 
895 }
896
897 =head2 GetGuarantees
898
899   ($num_children, $children_arrayref) = &GetGuarantees($parent_borrno);
900   $child0_cardno = $children_arrayref->[0]{"cardnumber"};
901   $child0_borrno = $children_arrayref->[0]{"borrowernumber"};
902
903 C<&GetGuarantees> takes a borrower number (e.g., that of a patron
904 with children) and looks up the borrowers who are guaranteed by that
905 borrower (i.e., the patron's children).
906
907 C<&GetGuarantees> returns two values: an integer giving the number of
908 borrowers guaranteed by C<$parent_borrno>, and a reference to an array
909 of references to hash, which gives the actual results.
910
911 =cut
912
913 #'
914 sub GetGuarantees {
915     my ($borrowernumber) = @_;
916     my $dbh              = C4::Context->dbh;
917     my $sth              =
918       $dbh->prepare(
919 "select cardnumber,borrowernumber, firstname, surname from borrowers where guarantorid=?"
920       );
921     $sth->execute($borrowernumber);
922
923     my @dat;
924     my $data = $sth->fetchall_arrayref({}); 
925     return ( scalar(@$data), $data );
926 }
927
928 =head2 UpdateGuarantees
929
930   &UpdateGuarantees($parent_borrno);
931   
932
933 C<&UpdateGuarantees> borrower data for an adult and updates all the guarantees
934 with the modified information
935
936 =cut
937
938 #'
939 sub UpdateGuarantees {
940     my (%data) = @_;
941     my $dbh = C4::Context->dbh;
942     my ( $count, $guarantees ) = GetGuarantees( $data{'borrowernumber'} );
943     for ( my $i = 0 ; $i < $count ; $i++ ) {
944
945         # FIXME
946         # It looks like the $i is only being returned to handle walking through
947         # the array, which is probably better done as a foreach loop.
948         #
949         my $guaquery = qq|UPDATE borrowers 
950               SET address='$data{'address'}',fax='$data{'fax'}',
951                   B_city='$data{'B_city'}',mobile='$data{'mobile'}',city='$data{'city'}',phone='$data{'phone'}'
952               WHERE borrowernumber='$guarantees->[$i]->{'borrowernumber'}'
953         |;
954         my $sth3 = $dbh->prepare($guaquery);
955         $sth3->execute;
956     }
957 }
958 =head2 GetPendingIssues
959
960   my $issues = &GetPendingIssues($borrowernumber);
961
962 Looks up what the patron with the given borrowernumber has borrowed.
963
964 C<&GetPendingIssues> returns a
965 reference-to-array where each element is a reference-to-hash; the
966 keys are the fields from the C<issues>, C<biblio>, and C<items> tables.
967 The keys include C<biblioitems> fields except marc and marcxml.
968
969 =cut
970
971 #'
972 sub GetPendingIssues {
973     my ($borrowernumber) = @_;
974     # must avoid biblioitems.* to prevent large marc and marcxml fields from killing performance
975     # FIXME: namespace collision: each table has "timestamp" fields.  Which one is "timestamp" ?
976     # FIXME: circ/ciculation.pl tries to sort by timestamp!
977     # FIXME: C4::Print::printslip tries to sort by timestamp!
978     # FIXME: namespace collision: other collisions possible.
979     # FIXME: most of this data isn't really being used by callers.
980     my $sth = C4::Context->dbh->prepare(
981    "SELECT issues.*,
982             items.*,
983            biblio.*,
984            biblioitems.volume,
985            biblioitems.number,
986            biblioitems.itemtype,
987            biblioitems.isbn,
988            biblioitems.issn,
989            biblioitems.publicationyear,
990            biblioitems.publishercode,
991            biblioitems.volumedate,
992            biblioitems.volumedesc,
993            biblioitems.lccn,
994            biblioitems.url,
995            issues.timestamp AS timestamp,
996            issues.renewals  AS renewals,
997             items.renewals  AS totalrenewals
998     FROM   issues
999     LEFT JOIN items       ON items.itemnumber       =      issues.itemnumber
1000     LEFT JOIN biblio      ON items.biblionumber     =      biblio.biblionumber
1001     LEFT JOIN biblioitems ON items.biblioitemnumber = biblioitems.biblioitemnumber
1002     WHERE
1003       borrowernumber=?
1004     ORDER BY issues.issuedate"
1005     );
1006     $sth->execute($borrowernumber);
1007     my $data = $sth->fetchall_arrayref({});
1008     my $today = C4::Dates->new->output('iso');
1009     foreach (@$data) {
1010         $_->{date_due} or next;
1011         ($_->{date_due} lt $today) and $_->{overdue} = 1;
1012     }
1013     return $data;
1014 }
1015
1016 =head2 GetAllIssues
1017
1018   ($count, $issues) = &GetAllIssues($borrowernumber, $sortkey, $limit);
1019
1020 Looks up what the patron with the given borrowernumber has borrowed,
1021 and sorts the results.
1022
1023 C<$sortkey> is the name of a field on which to sort the results. This
1024 should be the name of a field in the C<issues>, C<biblio>,
1025 C<biblioitems>, or C<items> table in the Koha database.
1026
1027 C<$limit> is the maximum number of results to return.
1028
1029 C<&GetAllIssues> returns a two-element array. C<$issues> is a
1030 reference-to-array, where each element is a reference-to-hash; the
1031 keys are the fields from the C<issues>, C<biblio>, C<biblioitems>, and
1032 C<items> tables of the Koha database. C<$count> is the number of
1033 elements in C<$issues>
1034
1035 =cut
1036
1037 #'
1038 sub GetAllIssues {
1039     my ( $borrowernumber, $order, $limit ) = @_;
1040
1041     #FIXME: sanity-check order and limit
1042     my $dbh   = C4::Context->dbh;
1043     my $query =
1044   "SELECT *, issues.timestamp as issuestimestamp, issues.renewals AS renewals,items.renewals AS totalrenewals,items.timestamp AS itemstimestamp 
1045   FROM issues 
1046   LEFT JOIN items on items.itemnumber=issues.itemnumber
1047   LEFT JOIN biblio ON items.biblionumber=biblio.biblionumber
1048   LEFT JOIN biblioitems ON items.biblioitemnumber=biblioitems.biblioitemnumber
1049   WHERE borrowernumber=? 
1050   UNION ALL
1051   SELECT *, old_issues.timestamp as issuestimestamp, old_issues.renewals AS renewals,items.renewals AS totalrenewals,items.timestamp AS itemstimestamp 
1052   FROM old_issues 
1053   LEFT JOIN items on items.itemnumber=old_issues.itemnumber
1054   LEFT JOIN biblio ON items.biblionumber=biblio.biblionumber
1055   LEFT JOIN biblioitems ON items.biblioitemnumber=biblioitems.biblioitemnumber
1056   WHERE borrowernumber=? 
1057   order by $order";
1058     if ( $limit != 0 ) {
1059         $query .= " limit $limit";
1060     }
1061
1062     my $sth = $dbh->prepare($query);
1063     $sth->execute($borrowernumber, $borrowernumber);
1064     my @result;
1065     my $i = 0;
1066     while ( my $data = $sth->fetchrow_hashref ) {
1067         push @result, $data;
1068     }
1069
1070     return \@result;
1071 }
1072
1073
1074 =head2 GetMemberAccountRecords
1075
1076   ($total, $acctlines, $count) = &GetMemberAccountRecords($borrowernumber);
1077
1078 Looks up accounting data for the patron with the given borrowernumber.
1079
1080 C<&GetMemberAccountRecords> returns a three-element array. C<$acctlines> is a
1081 reference-to-array, where each element is a reference-to-hash; the
1082 keys are the fields of the C<accountlines> table in the Koha database.
1083 C<$count> is the number of elements in C<$acctlines>. C<$total> is the
1084 total amount outstanding for all of the account lines.
1085
1086 =cut
1087
1088 #'
1089 sub GetMemberAccountRecords {
1090     my ($borrowernumber,$date) = @_;
1091     my $dbh = C4::Context->dbh;
1092     my @acctlines;
1093     my $numlines = 0;
1094     my $strsth      = qq(
1095                         SELECT * 
1096                         FROM accountlines 
1097                         WHERE borrowernumber=?);
1098     my @bind = ($borrowernumber);
1099     if ($date && $date ne ''){
1100             $strsth.=" AND date < ? ";
1101             push(@bind,$date);
1102     }
1103     $strsth.=" ORDER BY date desc,timestamp DESC";
1104     my $sth= $dbh->prepare( $strsth );
1105     $sth->execute( @bind );
1106     my $total = 0;
1107     while ( my $data = $sth->fetchrow_hashref ) {
1108                 my $biblio = GetBiblioFromItemNumber($data->{itemnumber}) if $data->{itemnumber};
1109                 $data->{biblionumber} = $biblio->{biblionumber};
1110                 $data->{title} = $biblio->{title};
1111         $acctlines[$numlines] = $data;
1112         $numlines++;
1113         $total += int(1000 * $data->{'amountoutstanding'}); # convert float to integer to avoid round-off errors
1114     }
1115     $total /= 1000;
1116     return ( $total, \@acctlines,$numlines);
1117 }
1118
1119 =head2 GetBorNotifyAcctRecord
1120
1121   ($count, $acctlines, $total) = &GetBorNotifyAcctRecord($params,$notifyid);
1122
1123 Looks up accounting data for the patron with the given borrowernumber per file number.
1124
1125 (FIXME - I'm not at all sure what this is about.)
1126
1127 C<&GetBorNotifyAcctRecord> returns a three-element array. C<$acctlines> is a
1128 reference-to-array, where each element is a reference-to-hash; the
1129 keys are the fields of the C<accountlines> table in the Koha database.
1130 C<$count> is the number of elements in C<$acctlines>. C<$total> is the
1131 total amount outstanding for all of the account lines.
1132
1133 =cut
1134
1135 sub GetBorNotifyAcctRecord {
1136     my ( $borrowernumber, $notifyid ) = @_;
1137     my $dbh = C4::Context->dbh;
1138     my @acctlines;
1139     my $numlines = 0;
1140     my $sth = $dbh->prepare(
1141             "SELECT * 
1142                 FROM accountlines 
1143                 WHERE borrowernumber=? 
1144                     AND notify_id=? 
1145                     AND amountoutstanding != '0' 
1146                 ORDER BY notify_id,accounttype
1147                 ");
1148 #                    AND (accounttype='FU' OR accounttype='N' OR accounttype='M'OR accounttype='A'OR accounttype='F'OR accounttype='L' OR accounttype='IP' OR accounttype='CH' OR accounttype='RE' OR accounttype='RL')
1149
1150     $sth->execute( $borrowernumber, $notifyid );
1151     my $total = 0;
1152     while ( my $data = $sth->fetchrow_hashref ) {
1153         $acctlines[$numlines] = $data;
1154         $numlines++;
1155         $total += int(100 * $data->{'amountoutstanding'});
1156     }
1157     $total /= 100;
1158     return ( $total, \@acctlines, $numlines );
1159 }
1160
1161 =head2 checkuniquemember (OUEST-PROVENCE)
1162
1163   ($result,$categorycode)  = &checkuniquemember($collectivity,$surname,$firstname,$dateofbirth);
1164
1165 Checks that a member exists or not in the database.
1166
1167 C<&result> is nonzero (=exist) or 0 (=does not exist)
1168 C<&categorycode> is from categorycode table
1169 C<&collectivity> is 1 (= we add a collectivity) or 0 (= we add a physical member)
1170 C<&surname> is the surname
1171 C<&firstname> is the firstname (only if collectivity=0)
1172 C<&dateofbirth> is the date of birth in ISO format (only if collectivity=0)
1173
1174 =cut
1175
1176 # FIXME: This function is not legitimate.  Multiple patrons might have the same first/last name and birthdate.
1177 # This is especially true since first name is not even a required field.
1178
1179 sub checkuniquemember {
1180     my ( $collectivity, $surname, $firstname, $dateofbirth ) = @_;
1181     my $dbh = C4::Context->dbh;
1182     my $request = ($collectivity) ?
1183         "SELECT borrowernumber,categorycode FROM borrowers WHERE surname=? " :
1184             ($dateofbirth) ?
1185             "SELECT borrowernumber,categorycode FROM borrowers WHERE surname=? and firstname=?  and dateofbirth=?" :
1186             "SELECT borrowernumber,categorycode FROM borrowers WHERE surname=? and firstname=?";
1187     my $sth = $dbh->prepare($request);
1188     if ($collectivity) {
1189         $sth->execute( uc($surname) );
1190     } elsif($dateofbirth){
1191         $sth->execute( uc($surname), ucfirst($firstname), $dateofbirth );
1192     }else{
1193         $sth->execute( uc($surname), ucfirst($firstname));
1194     }
1195     my @data = $sth->fetchrow;
1196     ( $data[0] ) and return $data[0], $data[1];
1197     return 0;
1198 }
1199
1200 sub checkcardnumber {
1201     my ($cardnumber,$borrowernumber) = @_;
1202     my $dbh = C4::Context->dbh;
1203     my $query = "SELECT * FROM borrowers WHERE cardnumber=?";
1204     $query .= " AND borrowernumber <> ?" if ($borrowernumber);
1205   my $sth = $dbh->prepare($query);
1206   if ($borrowernumber) {
1207    $sth->execute($cardnumber,$borrowernumber);
1208   } else { 
1209      $sth->execute($cardnumber);
1210   } 
1211     if (my $data= $sth->fetchrow_hashref()){
1212         return 1;
1213     }
1214     else {
1215         return 0;
1216     }
1217 }  
1218
1219
1220 =head2 getzipnamecity (OUEST-PROVENCE)
1221
1222 take all info from table city for the fields city and  zip
1223 check for the name and the zip code of the city selected
1224
1225 =cut
1226
1227 sub getzipnamecity {
1228     my ($cityid) = @_;
1229     my $dbh      = C4::Context->dbh;
1230     my $sth      =
1231       $dbh->prepare(
1232         "select city_name,city_zipcode from cities where cityid=? ");
1233     $sth->execute($cityid);
1234     my @data = $sth->fetchrow;
1235     return $data[0], $data[1];
1236 }
1237
1238
1239 =head2 getdcity (OUEST-PROVENCE)
1240
1241 recover cityid  with city_name condition
1242
1243 =cut
1244
1245 sub getidcity {
1246     my ($city_name) = @_;
1247     my $dbh = C4::Context->dbh;
1248     my $sth = $dbh->prepare("select cityid from cities where city_name=? ");
1249     $sth->execute($city_name);
1250     my $data = $sth->fetchrow;
1251     return $data;
1252 }
1253
1254
1255 =head2 GetExpiryDate 
1256
1257   $expirydate = GetExpiryDate($categorycode, $dateenrolled);
1258
1259 Calculate expiry date given a categorycode and starting date.  Date argument must be in ISO format.
1260 Return date is also in ISO format.
1261
1262 =cut
1263
1264 sub GetExpiryDate {
1265     my ( $categorycode, $dateenrolled ) = @_;
1266     my $enrolments;
1267     if ($categorycode) {
1268         my $dbh = C4::Context->dbh;
1269         my $sth = $dbh->prepare("SELECT enrolmentperiod,enrolmentperioddate FROM categories WHERE categorycode=?");
1270         $sth->execute($categorycode);
1271         $enrolments = $sth->fetchrow_hashref;
1272     }
1273     # die "GetExpiryDate: for enrollmentperiod $enrolmentperiod (category '$categorycode') starting $dateenrolled.\n";
1274     my @date = split (/-/,$dateenrolled);
1275     if($enrolments->{enrolmentperiod}){
1276         return sprintf("%04d-%02d-%02d", Add_Delta_YM(@date,0,$enrolments->{enrolmentperiod}));
1277     }else{
1278         return $enrolments->{enrolmentperioddate};
1279     }
1280 }
1281
1282 =head2 checkuserpassword (OUEST-PROVENCE)
1283
1284 check for the password and login are not used
1285 return the number of record 
1286 0=> NOT USED 1=> USED
1287
1288 =cut
1289
1290 sub checkuserpassword {
1291     my ( $borrowernumber, $userid, $password ) = @_;
1292     $password = md5_base64($password);
1293     my $dbh = C4::Context->dbh;
1294     my $sth =
1295       $dbh->prepare(
1296 "Select count(*) from borrowers where borrowernumber !=? and userid =? and password=? "
1297       );
1298     $sth->execute( $borrowernumber, $userid, $password );
1299     my $number_rows = $sth->fetchrow;
1300     return $number_rows;
1301
1302 }
1303
1304 =head2 GetborCatFromCatType
1305
1306   ($codes_arrayref, $labels_hashref) = &GetborCatFromCatType();
1307
1308 Looks up the different types of borrowers in the database. Returns two
1309 elements: a reference-to-array, which lists the borrower category
1310 codes, and a reference-to-hash, which maps the borrower category codes
1311 to category descriptions.
1312
1313 =cut
1314
1315 #'
1316 sub GetborCatFromCatType {
1317     my ( $category_type, $action ) = @_;
1318         # FIXME - This API  seems both limited and dangerous. 
1319     my $dbh     = C4::Context->dbh;
1320     my $request = qq|   SELECT categorycode,description 
1321             FROM categories 
1322             $action
1323             ORDER BY categorycode|;
1324     my $sth = $dbh->prepare($request);
1325         if ($action) {
1326         $sth->execute($category_type);
1327     }
1328     else {
1329         $sth->execute();
1330     }
1331
1332     my %labels;
1333     my @codes;
1334
1335     while ( my $data = $sth->fetchrow_hashref ) {
1336         push @codes, $data->{'categorycode'};
1337         $labels{ $data->{'categorycode'} } = $data->{'description'};
1338     }
1339     return ( \@codes, \%labels );
1340 }
1341
1342 =head2 GetBorrowercategory
1343
1344   $hashref = &GetBorrowercategory($categorycode);
1345
1346 Given the borrower's category code, the function returns the corresponding
1347 data hashref for a comprehensive information display.
1348   
1349   $arrayref_hashref = &GetBorrowercategory;
1350 If no category code provided, the function returns all the categories.
1351
1352 =cut
1353
1354 sub GetBorrowercategory {
1355     my ($catcode) = @_;
1356     my $dbh       = C4::Context->dbh;
1357     if ($catcode){
1358         my $sth       =
1359         $dbh->prepare(
1360     "SELECT description,dateofbirthrequired,upperagelimit,category_type 
1361     FROM categories 
1362     WHERE categorycode = ?"
1363         );
1364         $sth->execute($catcode);
1365         my $data =
1366         $sth->fetchrow_hashref;
1367         return $data;
1368     } 
1369     return;  
1370 }    # sub getborrowercategory
1371
1372 =head2 GetBorrowercategoryList
1373  
1374   $arrayref_hashref = &GetBorrowercategoryList;
1375 If no category code provided, the function returns all the categories.
1376
1377 =cut
1378
1379 sub GetBorrowercategoryList {
1380     my $dbh       = C4::Context->dbh;
1381     my $sth       =
1382     $dbh->prepare(
1383     "SELECT * 
1384     FROM categories 
1385     ORDER BY description"
1386         );
1387     $sth->execute;
1388     my $data =
1389     $sth->fetchall_arrayref({});
1390     return $data;
1391 }    # sub getborrowercategory
1392
1393 =head2 ethnicitycategories
1394
1395   ($codes_arrayref, $labels_hashref) = &ethnicitycategories();
1396
1397 Looks up the different ethnic types in the database. Returns two
1398 elements: a reference-to-array, which lists the ethnicity codes, and a
1399 reference-to-hash, which maps the ethnicity codes to ethnicity
1400 descriptions.
1401
1402 =cut
1403
1404 #'
1405
1406 sub ethnicitycategories {
1407     my $dbh = C4::Context->dbh;
1408     my $sth = $dbh->prepare("Select code,name from ethnicity order by name");
1409     $sth->execute;
1410     my %labels;
1411     my @codes;
1412     while ( my $data = $sth->fetchrow_hashref ) {
1413         push @codes, $data->{'code'};
1414         $labels{ $data->{'code'} } = $data->{'name'};
1415     }
1416     return ( \@codes, \%labels );
1417 }
1418
1419 =head2 fixEthnicity
1420
1421   $ethn_name = &fixEthnicity($ethn_code);
1422
1423 Takes an ethnicity code (e.g., "european" or "pi") and returns the
1424 corresponding descriptive name from the C<ethnicity> table in the
1425 Koha database ("European" or "Pacific Islander").
1426
1427 =cut
1428
1429 #'
1430
1431 sub fixEthnicity {
1432     my $ethnicity = shift;
1433     return unless $ethnicity;
1434     my $dbh       = C4::Context->dbh;
1435     my $sth       = $dbh->prepare("Select name from ethnicity where code = ?");
1436     $sth->execute($ethnicity);
1437     my $data = $sth->fetchrow_hashref;
1438     return $data->{'name'};
1439 }    # sub fixEthnicity
1440
1441 =head2 GetAge
1442
1443   $dateofbirth,$date = &GetAge($date);
1444
1445 this function return the borrowers age with the value of dateofbirth
1446
1447 =cut
1448
1449 #'
1450 sub GetAge{
1451     my ( $date, $date_ref ) = @_;
1452
1453     if ( not defined $date_ref ) {
1454         $date_ref = sprintf( '%04d-%02d-%02d', Today() );
1455     }
1456
1457     my ( $year1, $month1, $day1 ) = split /-/, $date;
1458     my ( $year2, $month2, $day2 ) = split /-/, $date_ref;
1459
1460     my $age = $year2 - $year1;
1461     if ( $month1 . $day1 > $month2 . $day2 ) {
1462         $age--;
1463     }
1464
1465     return $age;
1466 }    # sub get_age
1467
1468 =head2 get_institutions
1469   $insitutions = get_institutions();
1470
1471 Just returns a list of all the borrowers of type I, borrownumber and name
1472
1473 =cut
1474
1475 #'
1476 sub get_institutions {
1477     my $dbh = C4::Context->dbh();
1478     my $sth =
1479       $dbh->prepare(
1480 "SELECT borrowernumber,surname FROM borrowers WHERE categorycode=? ORDER BY surname"
1481       );
1482     $sth->execute('I');
1483     my %orgs;
1484     while ( my $data = $sth->fetchrow_hashref() ) {
1485         $orgs{ $data->{'borrowernumber'} } = $data;
1486     }
1487     return ( \%orgs );
1488
1489 }    # sub get_institutions
1490
1491 =head2 add_member_orgs
1492
1493   add_member_orgs($borrowernumber,$borrowernumbers);
1494
1495 Takes a borrowernumber and a list of other borrowernumbers and inserts them into the borrowers_to_borrowers table
1496
1497 =cut
1498
1499 #'
1500 sub add_member_orgs {
1501     my ( $borrowernumber, $otherborrowers ) = @_;
1502     my $dbh   = C4::Context->dbh();
1503     my $query =
1504       "INSERT INTO borrowers_to_borrowers (borrower1,borrower2) VALUES (?,?)";
1505     my $sth = $dbh->prepare($query);
1506     foreach my $otherborrowernumber (@$otherborrowers) {
1507         $sth->execute( $borrowernumber, $otherborrowernumber );
1508     }
1509
1510 }    # sub add_member_orgs
1511
1512 =head2 GetCities (OUEST-PROVENCE)
1513
1514   ($id_cityarrayref, $city_hashref) = &GetCities();
1515
1516 Looks up the different city and zip in the database. Returns two
1517 elements: a reference-to-array, which lists the zip city
1518 codes, and a reference-to-hash, which maps the name of the city.
1519 WHERE =>OUEST PROVENCE OR EXTERIEUR
1520
1521 =cut
1522
1523 sub GetCities {
1524
1525     #my ($type_city) = @_;
1526     my $dbh   = C4::Context->dbh;
1527     my $query = qq|SELECT cityid,city_zipcode,city_name 
1528         FROM cities 
1529         ORDER BY city_name|;
1530     my $sth = $dbh->prepare($query);
1531
1532     #$sth->execute($type_city);
1533     $sth->execute();
1534     my %city;
1535     my @id;
1536     #    insert empty value to create a empty choice in cgi popup
1537     push @id, " ";
1538     $city{""} = "";
1539     while ( my $data = $sth->fetchrow_hashref ) {
1540         push @id, $data->{'city_zipcode'}."|".$data->{'city_name'};
1541         $city{ $data->{'city_zipcode'}."|".$data->{'city_name'} } = $data->{'city_name'};
1542     }
1543
1544 #test to know if the table contain some records if no the function return nothing
1545     my $id = @id;
1546     if ( $id == 1 ) {
1547         # all we have is the one blank row
1548         return ();
1549     }
1550     else {
1551         unshift( @id, "" );
1552         return ( \@id, \%city );
1553     }
1554 }
1555
1556 =head2 GetSortDetails (OUEST-PROVENCE)
1557
1558   ($lib) = &GetSortDetails($category,$sortvalue);
1559
1560 Returns the authorized value  details
1561 C<&$lib>return value of authorized value details
1562 C<&$sortvalue>this is the value of authorized value 
1563 C<&$category>this is the value of authorized value category
1564
1565 =cut
1566
1567 sub GetSortDetails {
1568     my ( $category, $sortvalue ) = @_;
1569     my $dbh   = C4::Context->dbh;
1570     my $query = qq|SELECT lib 
1571         FROM authorised_values 
1572         WHERE category=?
1573         AND authorised_value=? |;
1574     my $sth = $dbh->prepare($query);
1575     $sth->execute( $category, $sortvalue );
1576     my $lib = $sth->fetchrow;
1577     return ($lib) if ($lib);
1578     return ($sortvalue) unless ($lib);
1579 }
1580
1581 =head2 MoveMemberToDeleted
1582
1583   $result = &MoveMemberToDeleted($borrowernumber);
1584
1585 Copy the record from borrowers to deletedborrowers table.
1586
1587 =cut
1588
1589 # FIXME: should do it in one SQL statement w/ subquery
1590 # Otherwise, we should return the @data on success
1591
1592 sub MoveMemberToDeleted {
1593     my ($member) = shift or return;
1594     my $dbh = C4::Context->dbh;
1595     my $query = qq|SELECT * 
1596           FROM borrowers 
1597           WHERE borrowernumber=?|;
1598     my $sth = $dbh->prepare($query);
1599     $sth->execute($member);
1600     my @data = $sth->fetchrow_array;
1601     (@data) or return;  # if we got a bad borrowernumber, there's nothing to insert
1602     $sth =
1603       $dbh->prepare( "INSERT INTO deletedborrowers VALUES ("
1604           . ( "?," x ( scalar(@data) - 1 ) )
1605           . "?)" );
1606     $sth->execute(@data);
1607 }
1608
1609 =head2 DelMember
1610
1611 DelMember($borrowernumber);
1612
1613 This function remove directly a borrower whitout writing it on deleteborrower.
1614 + Deletes reserves for the borrower
1615
1616 =cut
1617
1618 sub DelMember {
1619     my $dbh            = C4::Context->dbh;
1620     my $borrowernumber = shift;
1621     #warn "in delmember with $borrowernumber";
1622     return unless $borrowernumber;    # borrowernumber is mandatory.
1623
1624     my $query = qq|DELETE 
1625           FROM  reserves 
1626           WHERE borrowernumber=?|;
1627     my $sth = $dbh->prepare($query);
1628     $sth->execute($borrowernumber);
1629     $query = "
1630        DELETE
1631        FROM borrowers
1632        WHERE borrowernumber = ?
1633    ";
1634     $sth = $dbh->prepare($query);
1635     $sth->execute($borrowernumber);
1636     logaction("MEMBERS", "DELETE", $borrowernumber, "") if C4::Context->preference("BorrowersLog");
1637     return $sth->rows;
1638 }
1639
1640 =head2 ExtendMemberSubscriptionTo (OUEST-PROVENCE)
1641
1642     $date = ExtendMemberSubscriptionTo($borrowerid, $date);
1643
1644 Extending the subscription to a given date or to the expiry date calculated on ISO date.
1645 Returns ISO date.
1646
1647 =cut
1648
1649 sub ExtendMemberSubscriptionTo {
1650     my ( $borrowerid,$date) = @_;
1651     my $dbh = C4::Context->dbh;
1652     my $borrower = GetMember('borrowernumber'=>$borrowerid);
1653     unless ($date){
1654       $date=POSIX::strftime("%Y-%m-%d",localtime());
1655       $date = GetExpiryDate( $borrower->{'categorycode'}, $date );
1656     }
1657     my $sth = $dbh->do(<<EOF);
1658 UPDATE borrowers 
1659 SET  dateexpiry='$date' 
1660 WHERE borrowernumber='$borrowerid'
1661 EOF
1662     # add enrolmentfee if needed
1663     $sth = $dbh->prepare("SELECT enrolmentfee FROM categories WHERE categorycode=?");
1664     $sth->execute($borrower->{'categorycode'});
1665     my ($enrolmentfee) = $sth->fetchrow;
1666     if ($enrolmentfee && $enrolmentfee > 0) {
1667         # insert fee in patron debts
1668         manualinvoice($borrower->{'borrowernumber'}, '', '', 'A', $enrolmentfee);
1669     }
1670     return $date if ($sth);
1671     return 0;
1672 }
1673
1674 =head2 GetRoadTypes (OUEST-PROVENCE)
1675
1676   ($idroadtypearrayref, $roadttype_hashref) = &GetRoadTypes();
1677
1678 Looks up the different road type . Returns two
1679 elements: a reference-to-array, which lists the id_roadtype
1680 codes, and a reference-to-hash, which maps the road type of the road .
1681
1682 =cut
1683
1684 sub GetRoadTypes {
1685     my $dbh   = C4::Context->dbh;
1686     my $query = qq|
1687 SELECT roadtypeid,road_type 
1688 FROM roadtype 
1689 ORDER BY road_type|;
1690     my $sth = $dbh->prepare($query);
1691     $sth->execute();
1692     my %roadtype;
1693     my @id;
1694
1695     #    insert empty value to create a empty choice in cgi popup
1696
1697     while ( my $data = $sth->fetchrow_hashref ) {
1698
1699         push @id, $data->{'roadtypeid'};
1700         $roadtype{ $data->{'roadtypeid'} } = $data->{'road_type'};
1701     }
1702
1703 #test to know if the table contain some records if no the function return nothing
1704     my $id = @id;
1705     if ( $id eq 0 ) {
1706         return ();
1707     }
1708     else {
1709         unshift( @id, "" );
1710         return ( \@id, \%roadtype );
1711     }
1712 }
1713
1714
1715
1716 =head2 GetTitles (OUEST-PROVENCE)
1717
1718   ($borrowertitle)= &GetTitles();
1719
1720 Looks up the different title . Returns array  with all borrowers title
1721
1722 =cut
1723
1724 sub GetTitles {
1725     my @borrowerTitle = split (/,|\|/,C4::Context->preference('BorrowersTitles'));
1726     unshift( @borrowerTitle, "" );
1727     my $count=@borrowerTitle;
1728     if ($count == 1){
1729         return ();
1730     }
1731     else {
1732         return ( \@borrowerTitle);
1733     }
1734 }
1735
1736 =head2 GetPatronImage
1737
1738     my ($imagedata, $dberror) = GetPatronImage($cardnumber);
1739
1740 Returns the mimetype and binary image data of the image for the patron with the supplied cardnumber.
1741
1742 =cut
1743
1744 sub GetPatronImage {
1745     my ($cardnumber) = @_;
1746     warn "Cardnumber passed to GetPatronImage is $cardnumber" if $debug;
1747     my $dbh = C4::Context->dbh;
1748     my $query = 'SELECT mimetype, imagefile FROM patronimage WHERE cardnumber = ?';
1749     my $sth = $dbh->prepare($query);
1750     $sth->execute($cardnumber);
1751     my $imagedata = $sth->fetchrow_hashref;
1752     warn "Database error!" if $sth->errstr;
1753     return $imagedata, $sth->errstr;
1754 }
1755
1756 =head2 PutPatronImage
1757
1758     PutPatronImage($cardnumber, $mimetype, $imgfile);
1759
1760 Stores patron binary image data and mimetype in database.
1761 NOTE: This function is good for updating images as well as inserting new images in the database.
1762
1763 =cut
1764
1765 sub PutPatronImage {
1766     my ($cardnumber, $mimetype, $imgfile) = @_;
1767     warn "Parameters passed in: Cardnumber=$cardnumber, Mimetype=$mimetype, " . ($imgfile ? "Imagefile" : "No Imagefile") if $debug;
1768     my $dbh = C4::Context->dbh;
1769     my $query = "INSERT INTO patronimage (cardnumber, mimetype, imagefile) VALUES (?,?,?) ON DUPLICATE KEY UPDATE imagefile = ?;";
1770     my $sth = $dbh->prepare($query);
1771     $sth->execute($cardnumber,$mimetype,$imgfile,$imgfile);
1772     warn "Error returned inserting $cardnumber.$mimetype." if $sth->errstr;
1773     return $sth->errstr;
1774 }
1775
1776 =head2 RmPatronImage
1777
1778     my ($dberror) = RmPatronImage($cardnumber);
1779
1780 Removes the image for the patron with the supplied cardnumber.
1781
1782 =cut
1783
1784 sub RmPatronImage {
1785     my ($cardnumber) = @_;
1786     warn "Cardnumber passed to GetPatronImage is $cardnumber" if $debug;
1787     my $dbh = C4::Context->dbh;
1788     my $query = "DELETE FROM patronimage WHERE cardnumber = ?;";
1789     my $sth = $dbh->prepare($query);
1790     $sth->execute($cardnumber);
1791     my $dberror = $sth->errstr;
1792     warn "Database error!" if $sth->errstr;
1793     return $dberror;
1794 }
1795
1796 =head2 GetRoadTypeDetails (OUEST-PROVENCE)
1797
1798   ($roadtype) = &GetRoadTypeDetails($roadtypeid);
1799
1800 Returns the description of roadtype
1801 C<&$roadtype>return description of road type
1802 C<&$roadtypeid>this is the value of roadtype s
1803
1804 =cut
1805
1806 sub GetRoadTypeDetails {
1807     my ($roadtypeid) = @_;
1808     my $dbh          = C4::Context->dbh;
1809     my $query        = qq|
1810 SELECT road_type 
1811 FROM roadtype 
1812 WHERE roadtypeid=?|;
1813     my $sth = $dbh->prepare($query);
1814     $sth->execute($roadtypeid);
1815     my $roadtype = $sth->fetchrow;
1816     return ($roadtype);
1817 }
1818
1819 =head2 GetBorrowersWhoHaveNotBorrowedSince
1820
1821 &GetBorrowersWhoHaveNotBorrowedSince($date)
1822
1823 this function get all borrowers who haven't borrowed since the date given on input arg.
1824       
1825 =cut
1826
1827 sub GetBorrowersWhoHaveNotBorrowedSince {
1828     my $filterdate = shift||POSIX::strftime("%Y-%m-%d",localtime());
1829     my $filterexpiry = shift;
1830     my $filterbranch = shift || 
1831                         ((C4::Context->preference('IndependantBranches') 
1832                              && C4::Context->userenv 
1833                              && C4::Context->userenv->{flags} % 2 !=1 
1834                              && C4::Context->userenv->{branch})
1835                          ? C4::Context->userenv->{branch}
1836                          : "");  
1837     my $dbh   = C4::Context->dbh;
1838     my $query = "
1839         SELECT borrowers.borrowernumber,
1840                max(old_issues.timestamp) as latestissue,
1841                max(issues.timestamp) as currentissue
1842         FROM   borrowers
1843         JOIN   categories USING (categorycode)
1844         LEFT JOIN old_issues USING (borrowernumber)
1845         LEFT JOIN issues USING (borrowernumber) 
1846         WHERE  category_type <> 'S'
1847         AND borrowernumber NOT IN (SELECT guarantorid FROM borrowers WHERE guarantorid IS NOT NULL AND guarantorid <> 0) 
1848    ";
1849     my @query_params;
1850     if ($filterbranch && $filterbranch ne ""){ 
1851         $query.=" AND borrowers.branchcode= ?";
1852         push @query_params,$filterbranch;
1853     }
1854     if($filterexpiry){
1855         $query .= " AND dateexpiry < ? ";
1856         push @query_params,$filterdate;
1857     }
1858     $query.=" GROUP BY borrowers.borrowernumber";
1859     if ($filterdate){ 
1860         $query.=" HAVING (latestissue < ? OR latestissue IS NULL) 
1861                   AND currentissue IS NULL";
1862         push @query_params,$filterdate;
1863     }
1864     warn $query if $debug;
1865     my $sth = $dbh->prepare($query);
1866     if (scalar(@query_params)>0){  
1867         $sth->execute(@query_params);
1868     } 
1869     else {
1870         $sth->execute;
1871     }      
1872     
1873     my @results;
1874     while ( my $data = $sth->fetchrow_hashref ) {
1875         push @results, $data;
1876     }
1877     return \@results;
1878 }
1879
1880 =head2 GetBorrowersWhoHaveNeverBorrowed
1881
1882 $results = &GetBorrowersWhoHaveNeverBorrowed
1883
1884 this function get all borrowers who have never borrowed.
1885
1886 I<$result> is a ref to an array which all elements are a hasref.
1887
1888 =cut
1889
1890 sub GetBorrowersWhoHaveNeverBorrowed {
1891     my $filterbranch = shift || 
1892                         ((C4::Context->preference('IndependantBranches') 
1893                              && C4::Context->userenv 
1894                              && C4::Context->userenv->{flags} % 2 !=1 
1895                              && C4::Context->userenv->{branch})
1896                          ? C4::Context->userenv->{branch}
1897                          : "");  
1898     my $dbh   = C4::Context->dbh;
1899     my $query = "
1900         SELECT borrowers.borrowernumber,max(timestamp) as latestissue
1901         FROM   borrowers
1902           LEFT JOIN issues ON borrowers.borrowernumber = issues.borrowernumber
1903         WHERE issues.borrowernumber IS NULL
1904    ";
1905     my @query_params;
1906     if ($filterbranch && $filterbranch ne ""){ 
1907         $query.=" AND borrowers.branchcode= ?";
1908         push @query_params,$filterbranch;
1909     }
1910     warn $query if $debug;
1911   
1912     my $sth = $dbh->prepare($query);
1913     if (scalar(@query_params)>0){  
1914         $sth->execute(@query_params);
1915     } 
1916     else {
1917         $sth->execute;
1918     }      
1919     
1920     my @results;
1921     while ( my $data = $sth->fetchrow_hashref ) {
1922         push @results, $data;
1923     }
1924     return \@results;
1925 }
1926
1927 =head2 GetBorrowersWithIssuesHistoryOlderThan
1928
1929 $results = &GetBorrowersWithIssuesHistoryOlderThan($date)
1930
1931 this function get all borrowers who has an issue history older than I<$date> given on input arg.
1932
1933 I<$result> is a ref to an array which all elements are a hashref.
1934 This hashref is containt the number of time this borrowers has borrowed before I<$date> and the borrowernumber.
1935
1936 =cut
1937
1938 sub GetBorrowersWithIssuesHistoryOlderThan {
1939     my $dbh  = C4::Context->dbh;
1940     my $date = shift ||POSIX::strftime("%Y-%m-%d",localtime());
1941     my $filterbranch = shift || 
1942                         ((C4::Context->preference('IndependantBranches') 
1943                              && C4::Context->userenv 
1944                              && C4::Context->userenv->{flags} % 2 !=1 
1945                              && C4::Context->userenv->{branch})
1946                          ? C4::Context->userenv->{branch}
1947                          : "");  
1948     my $query = "
1949        SELECT count(borrowernumber) as n,borrowernumber
1950        FROM old_issues
1951        WHERE returndate < ?
1952          AND borrowernumber IS NOT NULL 
1953     "; 
1954     my @query_params;
1955     push @query_params, $date;
1956     if ($filterbranch){
1957         $query.="   AND branchcode = ?";
1958         push @query_params, $filterbranch;
1959     }    
1960     $query.=" GROUP BY borrowernumber ";
1961     warn $query if $debug;
1962     my $sth = $dbh->prepare($query);
1963     $sth->execute(@query_params);
1964     my @results;
1965
1966     while ( my $data = $sth->fetchrow_hashref ) {
1967         push @results, $data;
1968     }
1969     return \@results;
1970 }
1971
1972 =head2 GetBorrowersNamesAndLatestIssue
1973
1974 $results = &GetBorrowersNamesAndLatestIssueList(@borrowernumbers)
1975
1976 this function get borrowers Names and surnames and Issue information.
1977
1978 I<@borrowernumbers> is an array which all elements are borrowernumbers.
1979 This hashref is containt the number of time this borrowers has borrowed before I<$date> and the borrowernumber.
1980
1981 =cut
1982
1983 sub GetBorrowersNamesAndLatestIssue {
1984     my $dbh  = C4::Context->dbh;
1985     my @borrowernumbers=@_;  
1986     my $query = "
1987        SELECT surname,lastname, phone, email,max(timestamp)
1988        FROM borrowers 
1989          LEFT JOIN issues ON borrowers.borrowernumber=issues.borrowernumber
1990        GROUP BY borrowernumber
1991    ";
1992     my $sth = $dbh->prepare($query);
1993     $sth->execute;
1994     my $results = $sth->fetchall_arrayref({});
1995     return $results;
1996 }
1997
1998 =head2 DebarMember
1999
2000 =over 4
2001
2002 my $success = DebarMember( $borrowernumber );
2003
2004 marks a Member as debarred, and therefore unable to checkout any more
2005 items.
2006
2007 return :
2008 true on success, false on failure
2009
2010 =back
2011
2012 =cut
2013
2014 sub DebarMember {
2015     my $borrowernumber = shift;
2016
2017     return unless defined $borrowernumber;
2018     return unless $borrowernumber =~ /^\d+$/;
2019
2020     return ModMember( borrowernumber => $borrowernumber,
2021                       debarred       => 1 );
2022     
2023 }
2024
2025 =head2 AddMessage
2026
2027 =over 4
2028
2029 AddMessage( $borrowernumber, $message_type, $message, $branchcode );
2030
2031 Adds a message to the messages table for the given borrower.
2032
2033 Returns:
2034   True on success
2035   False on failure
2036
2037 =back
2038
2039 =cut
2040
2041 sub AddMessage {
2042     my ( $borrowernumber, $message_type, $message, $branchcode ) = @_;
2043
2044     my $dbh  = C4::Context->dbh;
2045
2046     if ( ! ( $borrowernumber && $message_type && $message && $branchcode ) ) {
2047       return;
2048     }
2049
2050     my $query = "INSERT INTO messages ( borrowernumber, branchcode, message_type, message ) VALUES ( ?, ?, ?, ? )";
2051     my $sth = $dbh->prepare($query);
2052     $sth->execute( $borrowernumber, $branchcode, $message_type, $message );
2053
2054     return 1;
2055 }
2056
2057 =head2 GetMessages
2058
2059 =over 4
2060
2061 GetMessages( $borrowernumber, $type );
2062
2063 $type is message type, B for borrower, or L for Librarian.
2064 Empty type returns all messages of any type.
2065
2066 Returns all messages for the given borrowernumber
2067
2068 =back
2069
2070 =cut
2071
2072 sub GetMessages {
2073     my ( $borrowernumber, $type, $branchcode ) = @_;
2074
2075     if ( ! $type ) {
2076       $type = '%';
2077     }
2078
2079     my $dbh  = C4::Context->dbh;
2080
2081     my $query = "SELECT
2082                   branches.branchname,
2083                   messages.*,
2084                   DATE_FORMAT( message_date, '%m/%d/%Y' ) AS message_date_formatted,
2085                   messages.branchcode LIKE '$branchcode' AS can_delete
2086                   FROM messages, branches
2087                   WHERE borrowernumber = ?
2088                   AND message_type LIKE ?
2089                   AND messages.branchcode = branches.branchcode
2090                   ORDER BY message_date DESC";
2091     my $sth = $dbh->prepare($query);
2092     $sth->execute( $borrowernumber, $type ) ;
2093     my @results;
2094
2095     while ( my $data = $sth->fetchrow_hashref ) {
2096         push @results, $data;
2097     }
2098     return \@results;
2099
2100 }
2101
2102 =head2 GetMessages
2103
2104 =over 4
2105
2106 GetMessagesCount( $borrowernumber, $type );
2107
2108 $type is message type, B for borrower, or L for Librarian.
2109 Empty type returns all messages of any type.
2110
2111 Returns the number of messages for the given borrowernumber
2112
2113 =back
2114
2115 =cut
2116
2117 sub GetMessagesCount {
2118     my ( $borrowernumber, $type, $branchcode ) = @_;
2119
2120     if ( ! $type ) {
2121       $type = '%';
2122     }
2123
2124     my $dbh  = C4::Context->dbh;
2125
2126     my $query = "SELECT COUNT(*) as MsgCount FROM messages WHERE borrowernumber = ? AND message_type LIKE ?";
2127     my $sth = $dbh->prepare($query);
2128     $sth->execute( $borrowernumber, $type ) ;
2129     my @results;
2130
2131     my $data = $sth->fetchrow_hashref;
2132     my $count = $data->{'MsgCount'};
2133
2134     return $count;
2135 }
2136
2137
2138
2139 =head2 DeleteMessage
2140
2141 =over 4
2142
2143 DeleteMessage( $message_id );
2144
2145 =back
2146
2147 =cut
2148
2149 sub DeleteMessage {
2150     my ( $message_id ) = @_;
2151
2152     my $dbh = C4::Context->dbh;
2153
2154     my $query = "DELETE FROM messages WHERE message_id = ?";
2155     my $sth = $dbh->prepare($query);
2156     $sth->execute( $message_id );
2157
2158 }
2159
2160 END { }    # module clean-up code here (global destructor)
2161
2162 1;
2163
2164 __END__
2165
2166 =head1 AUTHOR
2167
2168 Koha Team
2169
2170 =cut