Bug 19670: Change Collation of marc_field to allow mixed case mappings
[koha.git] / Koha / Patron.pm
blobd4544443f0dcd5cc9c3fdd47f341f27935d7f3f6
1 package Koha::Patron;
3 # Copyright ByWater Solutions 2014
4 # Copyright PTFS Europe 2016
6 # This file is part of Koha.
8 # Koha is free software; you can redistribute it and/or modify it under the
9 # terms of the GNU General Public License as published by the Free Software
10 # Foundation; either version 3 of the License, or (at your option) any later
11 # version.
13 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
14 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
15 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License along
18 # with Koha; if not, write to the Free Software Foundation, Inc.,
19 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 use Modern::Perl;
23 use Carp;
24 use List::MoreUtils qw( any uniq );
25 use JSON qw( to_json );
26 use Text::Unaccent qw( unac_string );
28 use C4::Context;
29 use C4::Log;
30 use Koha::AuthUtils;
31 use Koha::Checkouts;
32 use Koha::Database;
33 use Koha::DateUtils;
34 use Koha::Exceptions::Password;
35 use Koha::Holds;
36 use Koha::Old::Checkouts;
37 use Koha::Patron::Attributes;
38 use Koha::Patron::Categories;
39 use Koha::Patron::HouseboundProfile;
40 use Koha::Patron::HouseboundRole;
41 use Koha::Patron::Images;
42 use Koha::Patrons;
43 use Koha::Virtualshelves;
44 use Koha::Club::Enrollments;
45 use Koha::Account;
46 use Koha::Subscription::Routinglists;
48 use base qw(Koha::Object);
50 our $RESULTSET_PATRON_ID_MAPPING = {
51 Accountline => 'borrowernumber',
52 Aqbasketuser => 'borrowernumber',
53 Aqbudget => 'budget_owner_id',
54 Aqbudgetborrower => 'borrowernumber',
55 ArticleRequest => 'borrowernumber',
56 BorrowerAttribute => 'borrowernumber',
57 BorrowerDebarment => 'borrowernumber',
58 BorrowerFile => 'borrowernumber',
59 BorrowerModification => 'borrowernumber',
60 ClubEnrollment => 'borrowernumber',
61 Issue => 'borrowernumber',
62 ItemsLastBorrower => 'borrowernumber',
63 Linktracker => 'borrowernumber',
64 Message => 'borrowernumber',
65 MessageQueue => 'borrowernumber',
66 OldIssue => 'borrowernumber',
67 OldReserve => 'borrowernumber',
68 Rating => 'borrowernumber',
69 Reserve => 'borrowernumber',
70 Review => 'borrowernumber',
71 SearchHistory => 'userid',
72 Statistic => 'borrowernumber',
73 Suggestion => 'suggestedby',
74 TagAll => 'borrowernumber',
75 Virtualshelfcontent => 'borrowernumber',
76 Virtualshelfshare => 'borrowernumber',
77 Virtualshelve => 'owner',
80 =head1 NAME
82 Koha::Patron - Koha Patron Object class
84 =head1 API
86 =head2 Class Methods
88 =head3 new
90 =cut
92 sub new {
93 my ( $class, $params ) = @_;
95 return $class->SUPER::new($params);
98 =head3 fixup_cardnumber
100 Autogenerate next cardnumber from highest value found in database
102 =cut
104 sub fixup_cardnumber {
105 my ( $self ) = @_;
106 my $max = Koha::Patrons->search({
107 cardnumber => {-regexp => '^-?[0-9]+$'}
108 }, {
109 select => \'CAST(cardnumber AS SIGNED)',
110 as => ['cast_cardnumber']
111 })->_resultset->get_column('cast_cardnumber')->max;
112 $self->cardnumber(($max || 0) +1);
115 =head3 trim_whitespace
117 trim whitespace from data which has some non-whitespace in it.
118 Could be moved to Koha::Object if need to be reused
120 =cut
122 sub trim_whitespaces {
123 my( $self ) = @_;
125 my $schema = Koha::Database->new->schema;
126 my @columns = $schema->source($self->_type)->columns;
128 for my $column( @columns ) {
129 my $value = $self->$column;
130 if ( defined $value ) {
131 $value =~ s/^\s*|\s*$//g;
132 $self->$column($value);
135 return $self;
138 =head3 plain_text_password
140 $patron->plain_text_password( $password );
142 stores a copy of the unencrypted password in the object
143 for use in code before encrypting for db
145 =cut
147 sub plain_text_password {
148 my ( $self, $password ) = @_;
149 if ( $password ) {
150 $self->{_plain_text_password} = $password;
151 return $self;
153 return $self->{_plain_text_password}
154 if $self->{_plain_text_password};
156 return;
159 =head3 store
161 Patron specific store method to cleanup record
162 and do other necessary things before saving
163 to db
165 =cut
167 sub store {
168 my ($self) = @_;
170 $self->_result->result_source->schema->txn_do(
171 sub {
172 if (
173 C4::Context->preference("autoMemberNum")
174 and ( not defined $self->cardnumber
175 or $self->cardnumber eq '' )
178 # Warning: The caller is responsible for locking the members table in write
179 # mode, to avoid database corruption.
180 # We are in a transaction but the table is not locked
181 $self->fixup_cardnumber;
184 unless( $self->category->in_storage ) {
185 Koha::Exceptions::Object::FKConstraint->throw(
186 broken_fk => 'categorycode',
187 value => $self->categorycode,
191 $self->trim_whitespaces;
193 unless ( $self->in_storage ) { #AddMember
195 # Generate a valid userid/login if needed
196 $self->generate_userid
197 if not $self->userid or not $self->has_valid_userid;
199 # Add expiration date if it isn't already there
200 unless ( $self->dateexpiry ) {
201 $self->dateexpiry( $self->category->get_expiry_date );
204 # Add enrollment date if it isn't already there
205 unless ( $self->dateenrolled ) {
206 $self->dateenrolled(dt_from_string);
209 # Set the privacy depending on the patron's category
210 my $default_privacy = $self->category->default_privacy || q{};
211 $default_privacy =
212 $default_privacy eq 'default' ? 1
213 : $default_privacy eq 'never' ? 2
214 : $default_privacy eq 'forever' ? 0
215 : undef;
216 $self->privacy($default_privacy);
219 # Make a copy of the plain text password for later use
220 $self->plain_text_password( $self->password );
222 # Create a disabled account if no password provided
223 $self->password( $self->password
224 ? Koha::AuthUtils::hash_password( $self->password )
225 : '!' );
227 $self->borrowernumber(undef);
229 $self = $self->SUPER::store;
231 $self->add_enrolment_fee_if_needed;
233 logaction( "MEMBERS", "CREATE", $self->borrowernumber, "" )
234 if C4::Context->preference("BorrowersLog");
236 else { #ModMember
238 my $self_from_storage = $self->get_from_storage;
239 # FIXME We should not deal with that here, callers have to do this job
240 # Moved from ModMember to prevent regressions
241 unless ( $self->userid ) {
242 my $stored_userid = $self_from_storage->userid;
243 $self->userid($stored_userid);
246 # Password must be updated using $self->set_password
247 $self->password($self_from_storage->password);
249 if ( C4::Context->preference('FeeOnChangePatronCategory')
250 and $self->category->categorycode ne
251 $self_from_storage->category->categorycode )
253 $self->add_enrolment_fee_if_needed;
256 # Actionlogs
257 if ( C4::Context->preference("BorrowersLog") ) {
258 my $info;
259 my $from_storage = $self_from_storage->unblessed;
260 my $from_object = $self->unblessed;
261 my @skip_fields = (qw/lastseen/);
262 for my $key ( keys %{$from_storage} ) {
263 next if any { /$key/ } @skip_fields;
264 if (
266 !defined( $from_storage->{$key} )
267 && defined( $from_object->{$key} )
269 || ( defined( $from_storage->{$key} )
270 && !defined( $from_object->{$key} ) )
271 || (
272 defined( $from_storage->{$key} )
273 && defined( $from_object->{$key} )
274 && ( $from_storage->{$key} ne
275 $from_object->{$key} )
279 $info->{$key} = {
280 before => $from_storage->{$key},
281 after => $from_object->{$key}
286 if ( defined($info) ) {
287 logaction(
288 "MEMBERS",
289 "MODIFY",
290 $self->borrowernumber,
291 to_json(
292 $info,
293 { utf8 => 1, pretty => 1, canonical => 1 }
299 # Final store
300 $self = $self->SUPER::store;
304 return $self;
307 =head3 delete
309 $patron->delete
311 Delete patron's holds, lists and finally the patron.
313 Lists owned by the borrower are deleted, but entries from the borrower to
314 other lists are kept.
316 =cut
318 sub delete {
319 my ($self) = @_;
321 my $deleted;
322 $self->_result->result_source->schema->txn_do(
323 sub {
324 # Delete Patron's holds
325 $self->holds->delete;
327 # Delete all lists and all shares of this borrower
328 # Consistent with the approach Koha uses on deleting individual lists
329 # Note that entries in virtualshelfcontents added by this borrower to
330 # lists of others will be handled by a table constraint: the borrower
331 # is set to NULL in those entries.
332 # NOTE:
333 # We could handle the above deletes via a constraint too.
334 # But a new BZ report 11889 has been opened to discuss another approach.
335 # Instead of deleting we could also disown lists (based on a pref).
336 # In that way we could save shared and public lists.
337 # The current table constraints support that idea now.
338 # This pref should then govern the results of other routines/methods such as
339 # Koha::Virtualshelf->new->delete too.
340 # FIXME Could be $patron->get_lists
341 $_->delete for Koha::Virtualshelves->search( { owner => $self->borrowernumber } );
343 $deleted = $self->SUPER::delete;
345 logaction( "MEMBERS", "DELETE", $self->borrowernumber, "" ) if C4::Context->preference("BorrowersLog");
348 return $deleted;
352 =head3 category
354 my $patron_category = $patron->category
356 Return the patron category for this patron
358 =cut
360 sub category {
361 my ( $self ) = @_;
362 return Koha::Patron::Category->_new_from_dbic( $self->_result->categorycode );
365 =head3 guarantor
367 Returns a Koha::Patron object for this patron's guarantor
369 =cut
371 sub guarantor {
372 my ( $self ) = @_;
374 return unless $self->guarantorid();
376 return Koha::Patrons->find( $self->guarantorid() );
379 sub image {
380 my ( $self ) = @_;
382 return scalar Koha::Patron::Images->find( $self->borrowernumber );
385 sub library {
386 my ( $self ) = @_;
387 return Koha::Library->_new_from_dbic($self->_result->branchcode);
390 =head3 guarantees
392 Returns the guarantees (list of Koha::Patron) of this patron
394 =cut
396 sub guarantees {
397 my ( $self ) = @_;
399 return Koha::Patrons->search( { guarantorid => $self->borrowernumber }, { order_by => { -asc => ['surname','firstname'] } } );
402 =head3 housebound_profile
404 Returns the HouseboundProfile associated with this patron.
406 =cut
408 sub housebound_profile {
409 my ( $self ) = @_;
410 my $profile = $self->_result->housebound_profile;
411 return Koha::Patron::HouseboundProfile->_new_from_dbic($profile)
412 if ( $profile );
413 return;
416 =head3 housebound_role
418 Returns the HouseboundRole associated with this patron.
420 =cut
422 sub housebound_role {
423 my ( $self ) = @_;
425 my $role = $self->_result->housebound_role;
426 return Koha::Patron::HouseboundRole->_new_from_dbic($role) if ( $role );
427 return;
430 =head3 siblings
432 Returns the siblings of this patron.
434 =cut
436 sub siblings {
437 my ( $self ) = @_;
439 my $guarantor = $self->guarantor;
441 return unless $guarantor;
443 return Koha::Patrons->search(
445 guarantorid => {
446 '!=' => undef,
447 '=' => $guarantor->id,
449 borrowernumber => {
450 '!=' => $self->borrowernumber,
456 =head3 merge_with
458 my $patron = Koha::Patrons->find($id);
459 $patron->merge_with( \@patron_ids );
461 This subroutine merges a list of patrons into the patron record. This is accomplished by finding
462 all related patron ids for the patrons to be merged in other tables and changing the ids to be that
463 of the keeper patron.
465 =cut
467 sub merge_with {
468 my ( $self, $patron_ids ) = @_;
470 my @patron_ids = @{ $patron_ids };
472 # Ensure the keeper isn't in the list of patrons to merge
473 @patron_ids = grep { $_ ne $self->id } @patron_ids;
475 my $schema = Koha::Database->new()->schema();
477 my $results;
479 $self->_result->result_source->schema->txn_do( sub {
480 foreach my $patron_id (@patron_ids) {
481 my $patron = Koha::Patrons->find( $patron_id );
483 next unless $patron;
485 # Unbless for safety, the patron will end up being deleted
486 $results->{merged}->{$patron_id}->{patron} = $patron->unblessed;
488 while (my ($r, $field) = each(%$RESULTSET_PATRON_ID_MAPPING)) {
489 my $rs = $schema->resultset($r)->search({ $field => $patron_id });
490 $results->{merged}->{ $patron_id }->{updated}->{$r} = $rs->count();
491 $rs->update({ $field => $self->id });
494 $patron->move_to_deleted();
495 $patron->delete();
499 return $results;
504 =head3 wants_check_for_previous_checkout
506 $wants_check = $patron->wants_check_for_previous_checkout;
508 Return 1 if Koha needs to perform PrevIssue checking, else 0.
510 =cut
512 sub wants_check_for_previous_checkout {
513 my ( $self ) = @_;
514 my $syspref = C4::Context->preference("checkPrevCheckout");
516 # Simple cases
517 ## Hard syspref trumps all
518 return 1 if ($syspref eq 'hardyes');
519 return 0 if ($syspref eq 'hardno');
520 ## Now, patron pref trumps all
521 return 1 if ($self->checkprevcheckout eq 'yes');
522 return 0 if ($self->checkprevcheckout eq 'no');
524 # More complex: patron inherits -> determine category preference
525 my $checkPrevCheckoutByCat = $self->category->checkprevcheckout;
526 return 1 if ($checkPrevCheckoutByCat eq 'yes');
527 return 0 if ($checkPrevCheckoutByCat eq 'no');
529 # Finally: category preference is inherit, default to 0
530 if ($syspref eq 'softyes') {
531 return 1;
532 } else {
533 return 0;
537 =head3 do_check_for_previous_checkout
539 $do_check = $patron->do_check_for_previous_checkout($item);
541 Return 1 if the bib associated with $ITEM has previously been checked out to
542 $PATRON, 0 otherwise.
544 =cut
546 sub do_check_for_previous_checkout {
547 my ( $self, $item ) = @_;
549 # Find all items for bib and extract item numbers.
550 my @items = Koha::Items->search({biblionumber => $item->{biblionumber}});
551 my @item_nos;
552 foreach my $item (@items) {
553 push @item_nos, $item->itemnumber;
556 # Create (old)issues search criteria
557 my $criteria = {
558 borrowernumber => $self->borrowernumber,
559 itemnumber => \@item_nos,
562 # Check current issues table
563 my $issues = Koha::Checkouts->search($criteria);
564 return 1 if $issues->count; # 0 || N
566 # Check old issues table
567 my $old_issues = Koha::Old::Checkouts->search($criteria);
568 return $old_issues->count; # 0 || N
571 =head3 is_debarred
573 my $debarment_expiration = $patron->is_debarred;
575 Returns the date a patron debarment will expire, or undef if the patron is not
576 debarred
578 =cut
580 sub is_debarred {
581 my ($self) = @_;
583 return unless $self->debarred;
584 return $self->debarred
585 if $self->debarred =~ '^9999'
586 or dt_from_string( $self->debarred ) > dt_from_string;
587 return;
590 =head3 is_expired
592 my $is_expired = $patron->is_expired;
594 Returns 1 if the patron is expired or 0;
596 =cut
598 sub is_expired {
599 my ($self) = @_;
600 return 0 unless $self->dateexpiry;
601 return 0 if $self->dateexpiry =~ '^9999';
602 return 1 if dt_from_string( $self->dateexpiry ) < dt_from_string->truncate( to => 'day' );
603 return 0;
606 =head3 is_going_to_expire
608 my $is_going_to_expire = $patron->is_going_to_expire;
610 Returns 1 if the patron is going to expired, depending on the NotifyBorrowerDeparture pref or 0
612 =cut
614 sub is_going_to_expire {
615 my ($self) = @_;
617 my $delay = C4::Context->preference('NotifyBorrowerDeparture') || 0;
619 return 0 unless $delay;
620 return 0 unless $self->dateexpiry;
621 return 0 if $self->dateexpiry =~ '^9999';
622 return 1 if dt_from_string( $self->dateexpiry )->subtract( days => $delay ) < dt_from_string->truncate( to => 'day' );
623 return 0;
626 =head3 set_password
628 $patron->set_password({ password => $plain_text_password [, skip_validation => 1 ] });
630 Set the patron's password.
632 =head4 Exceptions
634 The passed string is validated against the current password enforcement policy.
635 Validation can be skipped by passing the I<skip_validation> parameter.
637 Exceptions are thrown if the password is not good enough.
639 =over 4
641 =item Koha::Exceptions::Password::TooShort
643 =item Koha::Exceptions::Password::WhitespaceCharacters
645 =item Koha::Exceptions::Password::TooWeak
647 =back
649 =cut
651 sub set_password {
652 my ( $self, $args ) = @_;
654 my $password = $args->{password};
656 unless ( $args->{skip_validation} ) {
657 my ( $is_valid, $error ) = Koha::AuthUtils::is_password_valid( $password );
659 if ( !$is_valid ) {
660 if ( $error eq 'too_short' ) {
661 my $min_length = C4::Context->preference('minPasswordLength');
662 $min_length = 3 if not $min_length or $min_length < 3;
664 my $password_length = length($password);
665 Koha::Exceptions::Password::TooShort->throw(
666 length => $password_length, min_length => $min_length );
668 elsif ( $error eq 'has_whitespaces' ) {
669 Koha::Exceptions::Password::WhitespaceCharacters->throw();
671 elsif ( $error eq 'too_weak' ) {
672 Koha::Exceptions::Password::TooWeak->throw();
677 my $digest = Koha::AuthUtils::hash_password($password);
678 $self->update(
679 { password => $digest,
680 login_attempts => 0,
684 logaction( "MEMBERS", "CHANGE PASS", $self->borrowernumber, "" )
685 if C4::Context->preference("BorrowersLog");
687 return $self;
691 =head3 renew_account
693 my $new_expiry_date = $patron->renew_account
695 Extending the subscription to the expiry date.
697 =cut
699 sub renew_account {
700 my ($self) = @_;
701 my $date;
702 if ( C4::Context->preference('BorrowerRenewalPeriodBase') eq 'combination' ) {
703 $date = ( dt_from_string gt dt_from_string( $self->dateexpiry ) ) ? dt_from_string : dt_from_string( $self->dateexpiry );
704 } else {
705 $date =
706 C4::Context->preference('BorrowerRenewalPeriodBase') eq 'dateexpiry'
707 ? dt_from_string( $self->dateexpiry )
708 : dt_from_string;
710 my $expiry_date = $self->category->get_expiry_date($date);
712 $self->dateexpiry($expiry_date);
713 $self->date_renewed( dt_from_string() );
714 $self->store();
716 $self->add_enrolment_fee_if_needed;
718 logaction( "MEMBERS", "RENEW", $self->borrowernumber, "Membership renewed" ) if C4::Context->preference("BorrowersLog");
719 return dt_from_string( $expiry_date )->truncate( to => 'day' );
722 =head3 has_overdues
724 my $has_overdues = $patron->has_overdues;
726 Returns the number of patron's overdues
728 =cut
730 sub has_overdues {
731 my ($self) = @_;
732 my $dtf = Koha::Database->new->schema->storage->datetime_parser;
733 return $self->_result->issues->search({ date_due => { '<' => $dtf->format_datetime( dt_from_string() ) } })->count;
736 =head3 track_login
738 $patron->track_login;
739 $patron->track_login({ force => 1 });
741 Tracks a (successful) login attempt.
742 The preference TrackLastPatronActivity must be enabled. Or you
743 should pass the force parameter.
745 =cut
747 sub track_login {
748 my ( $self, $params ) = @_;
749 return if
750 !$params->{force} &&
751 !C4::Context->preference('TrackLastPatronActivity');
752 $self->lastseen( dt_from_string() )->store;
755 =head3 move_to_deleted
757 my $is_moved = $patron->move_to_deleted;
759 Move a patron to the deletedborrowers table.
760 This can be done before deleting a patron, to make sure the data are not completely deleted.
762 =cut
764 sub move_to_deleted {
765 my ($self) = @_;
766 my $patron_infos = $self->unblessed;
767 delete $patron_infos->{updated_on}; #This ensures the updated_on date in deletedborrowers will be set to the current timestamp
768 return Koha::Database->new->schema->resultset('Deletedborrower')->create($patron_infos);
771 =head3 article_requests
773 my @requests = $borrower->article_requests();
774 my $requests = $borrower->article_requests();
776 Returns either a list of ArticleRequests objects,
777 or an ArtitleRequests object, depending on the
778 calling context.
780 =cut
782 sub article_requests {
783 my ( $self ) = @_;
785 $self->{_article_requests} ||= Koha::ArticleRequests->search({ borrowernumber => $self->borrowernumber() });
787 return $self->{_article_requests};
790 =head3 article_requests_current
792 my @requests = $patron->article_requests_current
794 Returns the article requests associated with this patron that are incomplete
796 =cut
798 sub article_requests_current {
799 my ( $self ) = @_;
801 $self->{_article_requests_current} ||= Koha::ArticleRequests->search(
803 borrowernumber => $self->id(),
804 -or => [
805 { status => Koha::ArticleRequest::Status::Pending },
806 { status => Koha::ArticleRequest::Status::Processing }
811 return $self->{_article_requests_current};
814 =head3 article_requests_finished
816 my @requests = $biblio->article_requests_finished
818 Returns the article requests associated with this patron that are completed
820 =cut
822 sub article_requests_finished {
823 my ( $self, $borrower ) = @_;
825 $self->{_article_requests_finished} ||= Koha::ArticleRequests->search(
827 borrowernumber => $self->id(),
828 -or => [
829 { status => Koha::ArticleRequest::Status::Completed },
830 { status => Koha::ArticleRequest::Status::Canceled }
835 return $self->{_article_requests_finished};
838 =head3 add_enrolment_fee_if_needed
840 my $enrolment_fee = $patron->add_enrolment_fee_if_needed;
842 Add enrolment fee for a patron if needed.
844 =cut
846 sub add_enrolment_fee_if_needed {
847 my ($self) = @_;
848 my $enrolment_fee = $self->category->enrolmentfee;
849 if ( $enrolment_fee && $enrolment_fee > 0 ) {
850 $self->account->add_debit(
852 amount => $enrolment_fee,
853 user_id => C4::Context->userenv ? C4::Context->userenv->{'number'} : undef,
854 interface => C4::Context->interface,
855 library_id => C4::Context->userenv ? C4::Context->userenv->{'branch'} : undef,
856 type => 'account'
860 return $enrolment_fee || 0;
863 =head3 checkouts
865 my $checkouts = $patron->checkouts
867 =cut
869 sub checkouts {
870 my ($self) = @_;
871 my $checkouts = $self->_result->issues;
872 return Koha::Checkouts->_new_from_dbic( $checkouts );
875 =head3 pending_checkouts
877 my $pending_checkouts = $patron->pending_checkouts
879 This method will return the same as $self->checkouts, but with a prefetch on
880 items, biblio and biblioitems.
882 It has been introduced to replaced the C4::Members::GetPendingIssues subroutine
884 It should not be used directly, prefer to access fields you need instead of
885 retrieving all these fields in one go.
887 =cut
889 sub pending_checkouts {
890 my( $self ) = @_;
891 my $checkouts = $self->_result->issues->search(
894 order_by => [
895 { -desc => 'me.timestamp' },
896 { -desc => 'issuedate' },
897 { -desc => 'issue_id' }, # Sort by issue_id should be enough
899 prefetch => { item => { biblio => 'biblioitems' } },
902 return Koha::Checkouts->_new_from_dbic( $checkouts );
905 =head3 old_checkouts
907 my $old_checkouts = $patron->old_checkouts
909 =cut
911 sub old_checkouts {
912 my ($self) = @_;
913 my $old_checkouts = $self->_result->old_issues;
914 return Koha::Old::Checkouts->_new_from_dbic( $old_checkouts );
917 =head3 get_overdues
919 my $overdue_items = $patron->get_overdues
921 Return the overdue items
923 =cut
925 sub get_overdues {
926 my ($self) = @_;
927 my $dtf = Koha::Database->new->schema->storage->datetime_parser;
928 return $self->checkouts->search(
930 'me.date_due' => { '<' => $dtf->format_datetime(dt_from_string) },
933 prefetch => { item => { biblio => 'biblioitems' } },
938 =head3 get_routing_lists
940 my @routinglists = $patron->get_routing_lists
942 Returns the routing lists a patron is subscribed to.
944 =cut
946 sub get_routing_lists {
947 my ($self) = @_;
948 my $routing_list_rs = $self->_result->subscriptionroutinglists;
949 return Koha::Subscription::Routinglists->_new_from_dbic($routing_list_rs);
952 =head3 get_age
954 my $age = $patron->get_age
956 Return the age of the patron
958 =cut
960 sub get_age {
961 my ($self) = @_;
962 my $today_str = dt_from_string->strftime("%Y-%m-%d");
963 return unless $self->dateofbirth;
964 my $dob_str = dt_from_string( $self->dateofbirth )->strftime("%Y-%m-%d");
966 my ( $dob_y, $dob_m, $dob_d ) = split /-/, $dob_str;
967 my ( $today_y, $today_m, $today_d ) = split /-/, $today_str;
969 my $age = $today_y - $dob_y;
970 if ( $dob_m . $dob_d > $today_m . $today_d ) {
971 $age--;
974 return $age;
977 =head3 account
979 my $account = $patron->account
981 =cut
983 sub account {
984 my ($self) = @_;
985 return Koha::Account->new( { patron_id => $self->borrowernumber } );
988 =head3 holds
990 my $holds = $patron->holds
992 Return all the holds placed by this patron
994 =cut
996 sub holds {
997 my ($self) = @_;
998 my $holds_rs = $self->_result->reserves->search( {}, { order_by => 'reservedate' } );
999 return Koha::Holds->_new_from_dbic($holds_rs);
1002 =head3 old_holds
1004 my $old_holds = $patron->old_holds
1006 Return all the historical holds for this patron
1008 =cut
1010 sub old_holds {
1011 my ($self) = @_;
1012 my $old_holds_rs = $self->_result->old_reserves->search( {}, { order_by => 'reservedate' } );
1013 return Koha::Old::Holds->_new_from_dbic($old_holds_rs);
1016 =head3 notice_email_address
1018 my $email = $patron->notice_email_address;
1020 Return the email address of patron used for notices.
1021 Returns the empty string if no email address.
1023 =cut
1025 sub notice_email_address{
1026 my ( $self ) = @_;
1028 my $which_address = C4::Context->preference("AutoEmailPrimaryAddress");
1029 # if syspref is set to 'first valid' (value == OFF), look up email address
1030 if ( $which_address eq 'OFF' ) {
1031 return $self->first_valid_email_address;
1034 return $self->$which_address || '';
1037 =head3 first_valid_email_address
1039 my $first_valid_email_address = $patron->first_valid_email_address
1041 Return the first valid email address for a patron.
1042 For now, the order is defined as email, emailpro, B_email.
1043 Returns the empty string if the borrower has no email addresses.
1045 =cut
1047 sub first_valid_email_address {
1048 my ($self) = @_;
1050 return $self->email() || $self->emailpro() || $self->B_email() || q{};
1053 =head3 get_club_enrollments
1055 =cut
1057 sub get_club_enrollments {
1058 my ( $self, $return_scalar ) = @_;
1060 my $e = Koha::Club::Enrollments->search( { borrowernumber => $self->borrowernumber(), date_canceled => undef } );
1062 return $e if $return_scalar;
1064 return wantarray ? $e->as_list : $e;
1067 =head3 get_enrollable_clubs
1069 =cut
1071 sub get_enrollable_clubs {
1072 my ( $self, $is_enrollable_from_opac, $return_scalar ) = @_;
1074 my $params;
1075 $params->{is_enrollable_from_opac} = $is_enrollable_from_opac
1076 if $is_enrollable_from_opac;
1077 $params->{is_email_required} = 0 unless $self->first_valid_email_address();
1079 $params->{borrower} = $self;
1081 my $e = Koha::Clubs->get_enrollable($params);
1083 return $e if $return_scalar;
1085 return wantarray ? $e->as_list : $e;
1088 =head3 account_locked
1090 my $is_locked = $patron->account_locked
1092 Return true if the patron has reach the maximum number of login attempts (see pref FailedLoginAttempts).
1093 Otherwise return false.
1094 If the pref is not set (empty string, null or 0), the feature is considered as disabled.
1096 =cut
1098 sub account_locked {
1099 my ($self) = @_;
1100 my $FailedLoginAttempts = C4::Context->preference('FailedLoginAttempts');
1101 return ( $FailedLoginAttempts
1102 and $self->login_attempts
1103 and $self->login_attempts >= $FailedLoginAttempts )? 1 : 0;
1106 =head3 can_see_patron_infos
1108 my $can_see = $patron->can_see_patron_infos( $patron );
1110 Return true if the patron (usually the logged in user) can see the patron's infos for a given patron
1112 =cut
1114 sub can_see_patron_infos {
1115 my ( $self, $patron ) = @_;
1116 return unless $patron;
1117 return $self->can_see_patrons_from( $patron->library->branchcode );
1120 =head3 can_see_patrons_from
1122 my $can_see = $patron->can_see_patrons_from( $branchcode );
1124 Return true if the patron (usually the logged in user) can see the patron's infos from a given library
1126 =cut
1128 sub can_see_patrons_from {
1129 my ( $self, $branchcode ) = @_;
1130 my $can = 0;
1131 if ( $self->branchcode eq $branchcode ) {
1132 $can = 1;
1133 } elsif ( $self->has_permission( { borrowers => 'view_borrower_infos_from_any_libraries' } ) ) {
1134 $can = 1;
1135 } elsif ( my $library_groups = $self->library->library_groups ) {
1136 while ( my $library_group = $library_groups->next ) {
1137 if ( $library_group->parent->has_child( $branchcode ) ) {
1138 $can = 1;
1139 last;
1143 return $can;
1146 =head3 libraries_where_can_see_patrons
1148 my $libraries = $patron-libraries_where_can_see_patrons;
1150 Return the list of branchcodes(!) of libraries the patron is allowed to see other patron's infos.
1151 The branchcodes are arbitrarily returned sorted.
1152 We are supposing here that the object is related to the logged in patron (use of C4::Context::only_my_library)
1154 An empty array means no restriction, the patron can see patron's infos from any libraries.
1156 =cut
1158 sub libraries_where_can_see_patrons {
1159 my ( $self ) = @_;
1160 my $userenv = C4::Context->userenv;
1162 return () unless $userenv; # For tests, but userenv should be defined in tests...
1164 my @restricted_branchcodes;
1165 if (C4::Context::only_my_library) {
1166 push @restricted_branchcodes, $self->branchcode;
1168 else {
1169 unless (
1170 $self->has_permission(
1171 { borrowers => 'view_borrower_infos_from_any_libraries' }
1175 my $library_groups = $self->library->library_groups({ ft_hide_patron_info => 1 });
1176 if ( $library_groups->count )
1178 while ( my $library_group = $library_groups->next ) {
1179 my $parent = $library_group->parent;
1180 if ( $parent->has_child( $self->branchcode ) ) {
1181 push @restricted_branchcodes, $parent->children->get_column('branchcode');
1186 @restricted_branchcodes = ( $self->branchcode ) unless @restricted_branchcodes;
1190 @restricted_branchcodes = grep { defined $_ } @restricted_branchcodes;
1191 @restricted_branchcodes = uniq(@restricted_branchcodes);
1192 @restricted_branchcodes = sort(@restricted_branchcodes);
1193 return @restricted_branchcodes;
1196 sub has_permission {
1197 my ( $self, $flagsrequired ) = @_;
1198 return unless $self->userid;
1199 # TODO code from haspermission needs to be moved here!
1200 return C4::Auth::haspermission( $self->userid, $flagsrequired );
1203 =head3 is_adult
1205 my $is_adult = $patron->is_adult
1207 Return true if the patron has a category with a type Adult (A) or Organization (I)
1209 =cut
1211 sub is_adult {
1212 my ( $self ) = @_;
1213 return $self->category->category_type =~ /^(A|I)$/ ? 1 : 0;
1216 =head3 is_child
1218 my $is_child = $patron->is_child
1220 Return true if the patron has a category with a type Child (C)
1222 =cut
1224 sub is_child {
1225 my( $self ) = @_;
1226 return $self->category->category_type eq 'C' ? 1 : 0;
1229 =head3 has_valid_userid
1231 my $patron = Koha::Patrons->find(42);
1232 $patron->userid( $new_userid );
1233 my $has_a_valid_userid = $patron->has_valid_userid
1235 my $patron = Koha::Patron->new( $params );
1236 my $has_a_valid_userid = $patron->has_valid_userid
1238 Return true if the current userid of this patron is valid/unique, otherwise false.
1240 Note that this should be done in $self->store instead and raise an exception if needed.
1242 =cut
1244 sub has_valid_userid {
1245 my ($self) = @_;
1247 return 0 unless $self->userid;
1249 return 0 if ( $self->userid eq C4::Context->config('user') ); # DB user
1251 my $already_exists = Koha::Patrons->search(
1253 userid => $self->userid,
1255 $self->in_storage
1256 ? ( borrowernumber => { '!=' => $self->borrowernumber } )
1257 : ()
1260 )->count;
1261 return $already_exists ? 0 : 1;
1264 =head3 generate_userid
1266 my $patron = Koha::Patron->new( $params );
1267 $patron->generate_userid
1269 Generate a userid using the $surname and the $firstname (if there is a value in $firstname).
1271 Set a generated userid ($firstname.$surname if there is a $firstname, or $surname if there is no value in $firstname) plus offset (0 if the $userid is unique, or a higher numeric value if not unique).
1273 =cut
1275 sub generate_userid {
1276 my ($self) = @_;
1277 my $offset = 0;
1278 my $firstname = $self->firstname // q{};
1279 my $surname = $self->surname // q{};
1280 #The script will "do" the following code and increment the $offset until the generated userid is unique
1281 do {
1282 $firstname =~ s/[[:digit:][:space:][:blank:][:punct:][:cntrl:]]//g;
1283 $surname =~ s/[[:digit:][:space:][:blank:][:punct:][:cntrl:]]//g;
1284 my $userid = lc(($firstname)? "$firstname.$surname" : $surname);
1285 $userid = unac_string('utf-8',$userid);
1286 $userid .= $offset unless $offset == 0;
1287 $self->userid( $userid );
1288 $offset++;
1289 } while (! $self->has_valid_userid );
1291 return $self;
1295 =head3 attributes
1297 my $attributes = $patron->attributes
1299 Return object of Koha::Patron::Attributes type with all attributes set for this patron
1301 =cut
1303 sub attributes {
1304 my ( $self ) = @_;
1305 return Koha::Patron::Attributes->search({
1306 borrowernumber => $self->borrowernumber,
1307 branchcode => $self->branchcode,
1311 =head2 Internal methods
1313 =head3 _type
1315 =cut
1317 sub _type {
1318 return 'Borrower';
1321 =head1 AUTHORS
1323 Kyle M Hall <kyle@bywatersolutions.com>
1324 Alex Sassmannshausen <alex.sassmannshausen@ptfs-europe.com>
1325 Martin Renvoize <martin.renvoize@ptfs-europe.com>
1327 =cut