Bug 24317: Sample patron data not loading for non-English installations
[koha.git] / Koha / Patron.pm
blob2de2965e7ff2e0e94dc7d044e3be924efe805d05
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::Account;
31 use Koha::AuthUtils;
32 use Koha::Checkouts;
33 use Koha::Club::Enrollments;
34 use Koha::Database;
35 use Koha::DateUtils;
36 use Koha::Exceptions::Password;
37 use Koha::Holds;
38 use Koha::Old::Checkouts;
39 use Koha::Patron::Attributes;
40 use Koha::Patron::Categories;
41 use Koha::Patron::HouseboundProfile;
42 use Koha::Patron::HouseboundRole;
43 use Koha::Patron::Images;
44 use Koha::Patron::Relationships;
45 use Koha::Patrons;
46 use Koha::Plugins;
47 use Koha::Subscription::Routinglists;
48 use Koha::Token;
49 use Koha::Virtualshelves;
51 use base qw(Koha::Object);
53 use constant ADMINISTRATIVE_LOCKOUT => -1;
55 our $RESULTSET_PATRON_ID_MAPPING = {
56 Accountline => 'borrowernumber',
57 Aqbasketuser => 'borrowernumber',
58 Aqbudget => 'budget_owner_id',
59 Aqbudgetborrower => 'borrowernumber',
60 ArticleRequest => 'borrowernumber',
61 BorrowerAttribute => 'borrowernumber',
62 BorrowerDebarment => 'borrowernumber',
63 BorrowerFile => 'borrowernumber',
64 BorrowerModification => 'borrowernumber',
65 ClubEnrollment => 'borrowernumber',
66 Issue => 'borrowernumber',
67 ItemsLastBorrower => 'borrowernumber',
68 Linktracker => 'borrowernumber',
69 Message => 'borrowernumber',
70 MessageQueue => 'borrowernumber',
71 OldIssue => 'borrowernumber',
72 OldReserve => 'borrowernumber',
73 Rating => 'borrowernumber',
74 Reserve => 'borrowernumber',
75 Review => 'borrowernumber',
76 SearchHistory => 'userid',
77 Statistic => 'borrowernumber',
78 Suggestion => 'suggestedby',
79 TagAll => 'borrowernumber',
80 Virtualshelfcontent => 'borrowernumber',
81 Virtualshelfshare => 'borrowernumber',
82 Virtualshelve => 'owner',
85 =head1 NAME
87 Koha::Patron - Koha Patron Object class
89 =head1 API
91 =head2 Class Methods
93 =head3 new
95 =cut
97 sub new {
98 my ( $class, $params ) = @_;
100 return $class->SUPER::new($params);
103 =head3 fixup_cardnumber
105 Autogenerate next cardnumber from highest value found in database
107 =cut
109 sub fixup_cardnumber {
110 my ( $self ) = @_;
111 my $max = Koha::Patrons->search({
112 cardnumber => {-regexp => '^-?[0-9]+$'}
113 }, {
114 select => \'CAST(cardnumber AS SIGNED)',
115 as => ['cast_cardnumber']
116 })->_resultset->get_column('cast_cardnumber')->max;
117 $self->cardnumber(($max || 0) +1);
120 =head3 trim_whitespace
122 trim whitespace from data which has some non-whitespace in it.
123 Could be moved to Koha::Object if need to be reused
125 =cut
127 sub trim_whitespaces {
128 my( $self ) = @_;
130 my $schema = Koha::Database->new->schema;
131 my @columns = $schema->source($self->_type)->columns;
133 for my $column( @columns ) {
134 my $value = $self->$column;
135 if ( defined $value ) {
136 $value =~ s/^\s*|\s*$//g;
137 $self->$column($value);
140 return $self;
143 =head3 plain_text_password
145 $patron->plain_text_password( $password );
147 stores a copy of the unencrypted password in the object
148 for use in code before encrypting for db
150 =cut
152 sub plain_text_password {
153 my ( $self, $password ) = @_;
154 if ( $password ) {
155 $self->{_plain_text_password} = $password;
156 return $self;
158 return $self->{_plain_text_password}
159 if $self->{_plain_text_password};
161 return;
164 =head3 store
166 Patron specific store method to cleanup record
167 and do other necessary things before saving
168 to db
170 =cut
172 sub store {
173 my ($self) = @_;
175 $self->_result->result_source->schema->txn_do(
176 sub {
177 if (
178 C4::Context->preference("autoMemberNum")
179 and ( not defined $self->cardnumber
180 or $self->cardnumber eq '' )
183 # Warning: The caller is responsible for locking the members table in write
184 # mode, to avoid database corruption.
185 # We are in a transaction but the table is not locked
186 $self->fixup_cardnumber;
189 unless( $self->category->in_storage ) {
190 Koha::Exceptions::Object::FKConstraint->throw(
191 broken_fk => 'categorycode',
192 value => $self->categorycode,
196 $self->trim_whitespaces;
198 # Set surname to uppercase if uppercasesurname is true
199 $self->surname( uc($self->surname) )
200 if C4::Context->preference("uppercasesurnames");
202 unless ( $self->in_storage ) { #AddMember
204 # Generate a valid userid/login if needed
205 $self->generate_userid
206 if not $self->userid or not $self->has_valid_userid;
208 # Add expiration date if it isn't already there
209 unless ( $self->dateexpiry ) {
210 $self->dateexpiry( $self->category->get_expiry_date );
213 # Add enrollment date if it isn't already there
214 unless ( $self->dateenrolled ) {
215 $self->dateenrolled(dt_from_string);
218 # Set the privacy depending on the patron's category
219 my $default_privacy = $self->category->default_privacy || q{};
220 $default_privacy =
221 $default_privacy eq 'default' ? 1
222 : $default_privacy eq 'never' ? 2
223 : $default_privacy eq 'forever' ? 0
224 : undef;
225 $self->privacy($default_privacy);
227 # Call any check_password plugins if password is passed
228 if ( C4::Context->preference('UseKohaPlugins')
229 && C4::Context->config("enable_plugins")
230 && $self->password )
232 my @plugins = Koha::Plugins->new()->GetPlugins({
233 method => 'check_password',
235 foreach my $plugin ( @plugins ) {
236 # This plugin hook will also be used by a plugin for the Norwegian national
237 # patron database. This is why we need to pass both the password and the
238 # borrowernumber to the plugin.
239 my $ret = $plugin->check_password(
241 password => $self->password,
242 borrowernumber => $self->borrowernumber
245 if ( $ret->{'error'} == 1 ) {
246 Koha::Exceptions::Password::Plugin->throw();
251 # Make a copy of the plain text password for later use
252 $self->plain_text_password( $self->password );
254 # Create a disabled account if no password provided
255 $self->password( $self->password
256 ? Koha::AuthUtils::hash_password( $self->password )
257 : '!' );
259 $self->borrowernumber(undef);
261 $self = $self->SUPER::store;
263 $self->add_enrolment_fee_if_needed(0);
265 logaction( "MEMBERS", "CREATE", $self->borrowernumber, "" )
266 if C4::Context->preference("BorrowersLog");
268 else { #ModMember
270 my $self_from_storage = $self->get_from_storage;
271 # FIXME We should not deal with that here, callers have to do this job
272 # Moved from ModMember to prevent regressions
273 unless ( $self->userid ) {
274 my $stored_userid = $self_from_storage->userid;
275 $self->userid($stored_userid);
278 # Password must be updated using $self->set_password
279 $self->password($self_from_storage->password);
281 if ( $self->category->categorycode ne
282 $self_from_storage->category->categorycode )
284 # Add enrolement fee on category change if required
285 $self->add_enrolment_fee_if_needed(1)
286 if C4::Context->preference('FeeOnChangePatronCategory');
288 # Clean up guarantors on category change if required
289 $self->guarantor_relationships->delete
290 if ( $self->category->category_type ne 'C'
291 && $self->category->category_type ne 'P' );
295 # Actionlogs
296 if ( C4::Context->preference("BorrowersLog") ) {
297 my $info;
298 my $from_storage = $self_from_storage->unblessed;
299 my $from_object = $self->unblessed;
300 my @skip_fields = (qw/lastseen updated_on/);
301 for my $key ( keys %{$from_storage} ) {
302 next if any { /$key/ } @skip_fields;
303 if (
305 !defined( $from_storage->{$key} )
306 && defined( $from_object->{$key} )
308 || ( defined( $from_storage->{$key} )
309 && !defined( $from_object->{$key} ) )
310 || (
311 defined( $from_storage->{$key} )
312 && defined( $from_object->{$key} )
313 && ( $from_storage->{$key} ne
314 $from_object->{$key} )
318 $info->{$key} = {
319 before => $from_storage->{$key},
320 after => $from_object->{$key}
325 if ( defined($info) ) {
326 logaction(
327 "MEMBERS",
328 "MODIFY",
329 $self->borrowernumber,
330 to_json(
331 $info,
332 { utf8 => 1, pretty => 1, canonical => 1 }
338 # Final store
339 $self = $self->SUPER::store;
343 return $self;
346 =head3 delete
348 $patron->delete
350 Delete patron's holds, lists and finally the patron.
352 Lists owned by the borrower are deleted, but entries from the borrower to
353 other lists are kept.
355 =cut
357 sub delete {
358 my ($self) = @_;
360 my $deleted;
361 $self->_result->result_source->schema->txn_do(
362 sub {
363 # Cancel Patron's holds
364 my $holds = $self->holds;
365 while( my $hold = $holds->next ){
366 $hold->cancel;
369 # Delete all lists and all shares of this borrower
370 # Consistent with the approach Koha uses on deleting individual lists
371 # Note that entries in virtualshelfcontents added by this borrower to
372 # lists of others will be handled by a table constraint: the borrower
373 # is set to NULL in those entries.
374 # NOTE:
375 # We could handle the above deletes via a constraint too.
376 # But a new BZ report 11889 has been opened to discuss another approach.
377 # Instead of deleting we could also disown lists (based on a pref).
378 # In that way we could save shared and public lists.
379 # The current table constraints support that idea now.
380 # This pref should then govern the results of other routines/methods such as
381 # Koha::Virtualshelf->new->delete too.
382 # FIXME Could be $patron->get_lists
383 $_->delete for Koha::Virtualshelves->search( { owner => $self->borrowernumber } );
385 $deleted = $self->SUPER::delete;
387 logaction( "MEMBERS", "DELETE", $self->borrowernumber, "" ) if C4::Context->preference("BorrowersLog");
390 return $deleted;
394 =head3 category
396 my $patron_category = $patron->category
398 Return the patron category for this patron
400 =cut
402 sub category {
403 my ( $self ) = @_;
404 return Koha::Patron::Category->_new_from_dbic( $self->_result->categorycode );
407 =head3 image
409 =cut
411 sub image {
412 my ( $self ) = @_;
414 return scalar Koha::Patron::Images->find( $self->borrowernumber );
417 =head3 library
419 Returns a Koha::Library object representing the patron's home library.
421 =cut
423 sub library {
424 my ( $self ) = @_;
425 return Koha::Library->_new_from_dbic($self->_result->branchcode);
428 =head3 guarantor_relationships
430 Returns Koha::Patron::Relationships object for this patron's guarantors
432 Returns the set of relationships for the patrons that are guarantors for this patron.
434 This is returned instead of a Koha::Patron object because the guarantor
435 may not exist as a patron in Koha. If this is true, the guarantors name
436 exists in the Koha::Patron::Relationship object and will have no guarantor_id.
438 =cut
440 sub guarantor_relationships {
441 my ($self) = @_;
443 return Koha::Patron::Relationships->search( { guarantee_id => $self->id } );
446 =head3 guarantee_relationships
448 Returns Koha::Patron::Relationships object for this patron's guarantors
450 Returns the set of relationships for the patrons that are guarantees for this patron.
452 The method returns Koha::Patron::Relationship objects for the sake
453 of consistency with the guantors method.
454 A guarantee by definition must exist as a patron in Koha.
456 =cut
458 sub guarantee_relationships {
459 my ($self) = @_;
461 return Koha::Patron::Relationships->search(
462 { guarantor_id => $self->id },
464 prefetch => 'guarantee',
465 order_by => { -asc => [ 'guarantee.surname', 'guarantee.firstname' ] },
470 =head3 housebound_profile
472 Returns the HouseboundProfile associated with this patron.
474 =cut
476 sub housebound_profile {
477 my ( $self ) = @_;
478 my $profile = $self->_result->housebound_profile;
479 return Koha::Patron::HouseboundProfile->_new_from_dbic($profile)
480 if ( $profile );
481 return;
484 =head3 housebound_role
486 Returns the HouseboundRole associated with this patron.
488 =cut
490 sub housebound_role {
491 my ( $self ) = @_;
493 my $role = $self->_result->housebound_role;
494 return Koha::Patron::HouseboundRole->_new_from_dbic($role) if ( $role );
495 return;
498 =head3 siblings
500 Returns the siblings of this patron.
502 =cut
504 sub siblings {
505 my ($self) = @_;
507 my @guarantors = $self->guarantor_relationships()->guarantors();
509 return unless @guarantors;
511 my @siblings =
512 map { $_->guarantee_relationships()->guarantees() } @guarantors;
514 return unless @siblings;
516 my %seen;
517 @siblings =
518 grep { !$seen{ $_->id }++ && ( $_->id != $self->id ) } @siblings;
520 return wantarray ? @siblings : Koha::Patrons->search( { borrowernumber => { -in => [ map { $_->id } @siblings ] } } );
523 =head3 merge_with
525 my $patron = Koha::Patrons->find($id);
526 $patron->merge_with( \@patron_ids );
528 This subroutine merges a list of patrons into the patron record. This is accomplished by finding
529 all related patron ids for the patrons to be merged in other tables and changing the ids to be that
530 of the keeper patron.
532 =cut
534 sub merge_with {
535 my ( $self, $patron_ids ) = @_;
537 my @patron_ids = @{ $patron_ids };
539 # Ensure the keeper isn't in the list of patrons to merge
540 @patron_ids = grep { $_ ne $self->id } @patron_ids;
542 my $schema = Koha::Database->new()->schema();
544 my $results;
546 $self->_result->result_source->schema->txn_do( sub {
547 foreach my $patron_id (@patron_ids) {
548 my $patron = Koha::Patrons->find( $patron_id );
550 next unless $patron;
552 # Unbless for safety, the patron will end up being deleted
553 $results->{merged}->{$patron_id}->{patron} = $patron->unblessed;
555 while (my ($r, $field) = each(%$RESULTSET_PATRON_ID_MAPPING)) {
556 my $rs = $schema->resultset($r)->search({ $field => $patron_id });
557 $results->{merged}->{ $patron_id }->{updated}->{$r} = $rs->count();
558 $rs->update({ $field => $self->id });
561 $patron->move_to_deleted();
562 $patron->delete();
566 return $results;
571 =head3 wants_check_for_previous_checkout
573 $wants_check = $patron->wants_check_for_previous_checkout;
575 Return 1 if Koha needs to perform PrevIssue checking, else 0.
577 =cut
579 sub wants_check_for_previous_checkout {
580 my ( $self ) = @_;
581 my $syspref = C4::Context->preference("checkPrevCheckout");
583 # Simple cases
584 ## Hard syspref trumps all
585 return 1 if ($syspref eq 'hardyes');
586 return 0 if ($syspref eq 'hardno');
587 ## Now, patron pref trumps all
588 return 1 if ($self->checkprevcheckout eq 'yes');
589 return 0 if ($self->checkprevcheckout eq 'no');
591 # More complex: patron inherits -> determine category preference
592 my $checkPrevCheckoutByCat = $self->category->checkprevcheckout;
593 return 1 if ($checkPrevCheckoutByCat eq 'yes');
594 return 0 if ($checkPrevCheckoutByCat eq 'no');
596 # Finally: category preference is inherit, default to 0
597 if ($syspref eq 'softyes') {
598 return 1;
599 } else {
600 return 0;
604 =head3 do_check_for_previous_checkout
606 $do_check = $patron->do_check_for_previous_checkout($item);
608 Return 1 if the bib associated with $ITEM has previously been checked out to
609 $PATRON, 0 otherwise.
611 =cut
613 sub do_check_for_previous_checkout {
614 my ( $self, $item ) = @_;
616 my @item_nos;
617 my $biblio = Koha::Biblios->find( $item->{biblionumber} );
618 if ( $biblio->is_serial ) {
619 push @item_nos, $item->{itemnumber};
620 } else {
621 # Get all itemnumbers for given bibliographic record.
622 @item_nos = $biblio->items->get_column( 'itemnumber' );
625 # Create (old)issues search criteria
626 my $criteria = {
627 borrowernumber => $self->borrowernumber,
628 itemnumber => \@item_nos,
631 # Check current issues table
632 my $issues = Koha::Checkouts->search($criteria);
633 return 1 if $issues->count; # 0 || N
635 # Check old issues table
636 my $old_issues = Koha::Old::Checkouts->search($criteria);
637 return $old_issues->count; # 0 || N
640 =head3 is_debarred
642 my $debarment_expiration = $patron->is_debarred;
644 Returns the date a patron debarment will expire, or undef if the patron is not
645 debarred
647 =cut
649 sub is_debarred {
650 my ($self) = @_;
652 return unless $self->debarred;
653 return $self->debarred
654 if $self->debarred =~ '^9999'
655 or dt_from_string( $self->debarred ) > dt_from_string;
656 return;
659 =head3 is_expired
661 my $is_expired = $patron->is_expired;
663 Returns 1 if the patron is expired or 0;
665 =cut
667 sub is_expired {
668 my ($self) = @_;
669 return 0 unless $self->dateexpiry;
670 return 0 if $self->dateexpiry =~ '^9999';
671 return 1 if dt_from_string( $self->dateexpiry ) < dt_from_string->truncate( to => 'day' );
672 return 0;
675 =head3 is_going_to_expire
677 my $is_going_to_expire = $patron->is_going_to_expire;
679 Returns 1 if the patron is going to expired, depending on the NotifyBorrowerDeparture pref or 0
681 =cut
683 sub is_going_to_expire {
684 my ($self) = @_;
686 my $delay = C4::Context->preference('NotifyBorrowerDeparture') || 0;
688 return 0 unless $delay;
689 return 0 unless $self->dateexpiry;
690 return 0 if $self->dateexpiry =~ '^9999';
691 return 1 if dt_from_string( $self->dateexpiry, undef, 'floating' )->subtract( days => $delay ) < dt_from_string(undef, undef, 'floating')->truncate( to => 'day' );
692 return 0;
695 =head3 set_password
697 $patron->set_password({ password => $plain_text_password [, skip_validation => 1 ] });
699 Set the patron's password.
701 =head4 Exceptions
703 The passed string is validated against the current password enforcement policy.
704 Validation can be skipped by passing the I<skip_validation> parameter.
706 Exceptions are thrown if the password is not good enough.
708 =over 4
710 =item Koha::Exceptions::Password::TooShort
712 =item Koha::Exceptions::Password::WhitespaceCharacters
714 =item Koha::Exceptions::Password::TooWeak
716 =item Koha::Exceptions::Password::Plugin (if a "check password" plugin is enabled)
718 =back
720 =cut
722 sub set_password {
723 my ( $self, $args ) = @_;
725 my $password = $args->{password};
727 unless ( $args->{skip_validation} ) {
728 my ( $is_valid, $error ) = Koha::AuthUtils::is_password_valid( $password );
730 if ( !$is_valid ) {
731 if ( $error eq 'too_short' ) {
732 my $min_length = C4::Context->preference('minPasswordLength');
733 $min_length = 3 if not $min_length or $min_length < 3;
735 my $password_length = length($password);
736 Koha::Exceptions::Password::TooShort->throw(
737 length => $password_length, min_length => $min_length );
739 elsif ( $error eq 'has_whitespaces' ) {
740 Koha::Exceptions::Password::WhitespaceCharacters->throw();
742 elsif ( $error eq 'too_weak' ) {
743 Koha::Exceptions::Password::TooWeak->throw();
748 if ( C4::Context->preference('UseKohaPlugins') && C4::Context->config("enable_plugins") ) {
749 # Call any check_password plugins
750 my @plugins = Koha::Plugins->new()->GetPlugins({
751 method => 'check_password',
753 foreach my $plugin ( @plugins ) {
754 # This plugin hook will also be used by a plugin for the Norwegian national
755 # patron database. This is why we need to pass both the password and the
756 # borrowernumber to the plugin.
757 my $ret = $plugin->check_password(
759 password => $password,
760 borrowernumber => $self->borrowernumber
763 # This plugin hook will also be used by a plugin for the Norwegian national
764 # patron database. This is why we need to call the actual plugins and then
765 # check skip_validation afterwards.
766 if ( $ret->{'error'} == 1 && !$args->{skip_validation} ) {
767 Koha::Exceptions::Password::Plugin->throw();
772 my $digest = Koha::AuthUtils::hash_password($password);
774 # We do not want to call $self->store and retrieve password from DB
775 $self->password($digest);
776 $self->login_attempts(0);
777 $self->SUPER::store;
779 logaction( "MEMBERS", "CHANGE PASS", $self->borrowernumber, "" )
780 if C4::Context->preference("BorrowersLog");
782 return $self;
786 =head3 renew_account
788 my $new_expiry_date = $patron->renew_account
790 Extending the subscription to the expiry date.
792 =cut
794 sub renew_account {
795 my ($self) = @_;
796 my $date;
797 if ( C4::Context->preference('BorrowerRenewalPeriodBase') eq 'combination' ) {
798 $date = ( dt_from_string gt dt_from_string( $self->dateexpiry ) ) ? dt_from_string : dt_from_string( $self->dateexpiry );
799 } else {
800 $date =
801 C4::Context->preference('BorrowerRenewalPeriodBase') eq 'dateexpiry'
802 ? dt_from_string( $self->dateexpiry )
803 : dt_from_string;
805 my $expiry_date = $self->category->get_expiry_date($date);
807 $self->dateexpiry($expiry_date);
808 $self->date_renewed( dt_from_string() );
809 $self->store();
811 $self->add_enrolment_fee_if_needed(1);
813 logaction( "MEMBERS", "RENEW", $self->borrowernumber, "Membership renewed" ) if C4::Context->preference("BorrowersLog");
814 return dt_from_string( $expiry_date )->truncate( to => 'day' );
817 =head3 has_overdues
819 my $has_overdues = $patron->has_overdues;
821 Returns the number of patron's overdues
823 =cut
825 sub has_overdues {
826 my ($self) = @_;
827 my $dtf = Koha::Database->new->schema->storage->datetime_parser;
828 return $self->_result->issues->search({ date_due => { '<' => $dtf->format_datetime( dt_from_string() ) } })->count;
831 =head3 track_login
833 $patron->track_login;
834 $patron->track_login({ force => 1 });
836 Tracks a (successful) login attempt.
837 The preference TrackLastPatronActivity must be enabled. Or you
838 should pass the force parameter.
840 =cut
842 sub track_login {
843 my ( $self, $params ) = @_;
844 return if
845 !$params->{force} &&
846 !C4::Context->preference('TrackLastPatronActivity');
847 $self->lastseen( dt_from_string() )->store;
850 =head3 move_to_deleted
852 my $is_moved = $patron->move_to_deleted;
854 Move a patron to the deletedborrowers table.
855 This can be done before deleting a patron, to make sure the data are not completely deleted.
857 =cut
859 sub move_to_deleted {
860 my ($self) = @_;
861 my $patron_infos = $self->unblessed;
862 delete $patron_infos->{updated_on}; #This ensures the updated_on date in deletedborrowers will be set to the current timestamp
863 return Koha::Database->new->schema->resultset('Deletedborrower')->create($patron_infos);
866 =head3 article_requests
868 my @requests = $borrower->article_requests();
869 my $requests = $borrower->article_requests();
871 Returns either a list of ArticleRequests objects,
872 or an ArtitleRequests object, depending on the
873 calling context.
875 =cut
877 sub article_requests {
878 my ( $self ) = @_;
880 $self->{_article_requests} ||= Koha::ArticleRequests->search({ borrowernumber => $self->borrowernumber() });
882 return $self->{_article_requests};
885 =head3 article_requests_current
887 my @requests = $patron->article_requests_current
889 Returns the article requests associated with this patron that are incomplete
891 =cut
893 sub article_requests_current {
894 my ( $self ) = @_;
896 $self->{_article_requests_current} ||= Koha::ArticleRequests->search(
898 borrowernumber => $self->id(),
899 -or => [
900 { status => Koha::ArticleRequest::Status::Pending },
901 { status => Koha::ArticleRequest::Status::Processing }
906 return $self->{_article_requests_current};
909 =head3 article_requests_finished
911 my @requests = $biblio->article_requests_finished
913 Returns the article requests associated with this patron that are completed
915 =cut
917 sub article_requests_finished {
918 my ( $self, $borrower ) = @_;
920 $self->{_article_requests_finished} ||= Koha::ArticleRequests->search(
922 borrowernumber => $self->id(),
923 -or => [
924 { status => Koha::ArticleRequest::Status::Completed },
925 { status => Koha::ArticleRequest::Status::Canceled }
930 return $self->{_article_requests_finished};
933 =head3 add_enrolment_fee_if_needed
935 my $enrolment_fee = $patron->add_enrolment_fee_if_needed($renewal);
937 Add enrolment fee for a patron if needed.
939 $renewal - boolean denoting whether this is an account renewal or not
941 =cut
943 sub add_enrolment_fee_if_needed {
944 my ($self, $renewal) = @_;
945 my $enrolment_fee = $self->category->enrolmentfee;
946 if ( $enrolment_fee && $enrolment_fee > 0 ) {
947 my $type = $renewal ? 'ACCOUNT_RENEW' : 'ACCOUNT';
948 $self->account->add_debit(
950 amount => $enrolment_fee,
951 user_id => C4::Context->userenv ? C4::Context->userenv->{'number'} : undef,
952 interface => C4::Context->interface,
953 library_id => C4::Context->userenv ? C4::Context->userenv->{'branch'} : undef,
954 type => $type
958 return $enrolment_fee || 0;
961 =head3 checkouts
963 my $checkouts = $patron->checkouts
965 =cut
967 sub checkouts {
968 my ($self) = @_;
969 my $checkouts = $self->_result->issues;
970 return Koha::Checkouts->_new_from_dbic( $checkouts );
973 =head3 pending_checkouts
975 my $pending_checkouts = $patron->pending_checkouts
977 This method will return the same as $self->checkouts, but with a prefetch on
978 items, biblio and biblioitems.
980 It has been introduced to replaced the C4::Members::GetPendingIssues subroutine
982 It should not be used directly, prefer to access fields you need instead of
983 retrieving all these fields in one go.
985 =cut
987 sub pending_checkouts {
988 my( $self ) = @_;
989 my $checkouts = $self->_result->issues->search(
992 order_by => [
993 { -desc => 'me.timestamp' },
994 { -desc => 'issuedate' },
995 { -desc => 'issue_id' }, # Sort by issue_id should be enough
997 prefetch => { item => { biblio => 'biblioitems' } },
1000 return Koha::Checkouts->_new_from_dbic( $checkouts );
1003 =head3 old_checkouts
1005 my $old_checkouts = $patron->old_checkouts
1007 =cut
1009 sub old_checkouts {
1010 my ($self) = @_;
1011 my $old_checkouts = $self->_result->old_issues;
1012 return Koha::Old::Checkouts->_new_from_dbic( $old_checkouts );
1015 =head3 get_overdues
1017 my $overdue_items = $patron->get_overdues
1019 Return the overdue items
1021 =cut
1023 sub get_overdues {
1024 my ($self) = @_;
1025 my $dtf = Koha::Database->new->schema->storage->datetime_parser;
1026 return $self->checkouts->search(
1028 'me.date_due' => { '<' => $dtf->format_datetime(dt_from_string) },
1031 prefetch => { item => { biblio => 'biblioitems' } },
1036 =head3 get_routing_lists
1038 my @routinglists = $patron->get_routing_lists
1040 Returns the routing lists a patron is subscribed to.
1042 =cut
1044 sub get_routing_lists {
1045 my ($self) = @_;
1046 my $routing_list_rs = $self->_result->subscriptionroutinglists;
1047 return Koha::Subscription::Routinglists->_new_from_dbic($routing_list_rs);
1050 =head3 get_age
1052 my $age = $patron->get_age
1054 Return the age of the patron
1056 =cut
1058 sub get_age {
1059 my ($self) = @_;
1060 my $today_str = dt_from_string->strftime("%Y-%m-%d");
1061 return unless $self->dateofbirth;
1062 my $dob_str = dt_from_string( $self->dateofbirth )->strftime("%Y-%m-%d");
1064 my ( $dob_y, $dob_m, $dob_d ) = split /-/, $dob_str;
1065 my ( $today_y, $today_m, $today_d ) = split /-/, $today_str;
1067 my $age = $today_y - $dob_y;
1068 if ( $dob_m . $dob_d > $today_m . $today_d ) {
1069 $age--;
1072 return $age;
1075 =head3 is_valid_age
1077 my $is_valid = $patron->is_valid_age
1079 Return 1 if patron's age is between allowed limits, returns 0 if it's not.
1081 =cut
1083 sub is_valid_age {
1084 my ($self) = @_;
1085 my $age = $self->get_age;
1087 my $patroncategory = $self->category;
1088 my ($low,$high) = ($patroncategory->dateofbirthrequired, $patroncategory->upperagelimit);
1090 return (defined($age) && (($high && ($age > $high)) or ($age < $low))) ? 0 : 1;
1093 =head3 account
1095 my $account = $patron->account
1097 =cut
1099 sub account {
1100 my ($self) = @_;
1101 return Koha::Account->new( { patron_id => $self->borrowernumber } );
1104 =head3 holds
1106 my $holds = $patron->holds
1108 Return all the holds placed by this patron
1110 =cut
1112 sub holds {
1113 my ($self) = @_;
1114 my $holds_rs = $self->_result->reserves->search( {}, { order_by => 'reservedate' } );
1115 return Koha::Holds->_new_from_dbic($holds_rs);
1118 =head3 old_holds
1120 my $old_holds = $patron->old_holds
1122 Return all the historical holds for this patron
1124 =cut
1126 sub old_holds {
1127 my ($self) = @_;
1128 my $old_holds_rs = $self->_result->old_reserves->search( {}, { order_by => 'reservedate' } );
1129 return Koha::Old::Holds->_new_from_dbic($old_holds_rs);
1132 =head3 return_claims
1134 my $return_claims = $patron->return_claims
1136 =cut
1138 sub return_claims {
1139 my ($self) = @_;
1140 my $return_claims = $self->_result->return_claims_borrowernumbers;
1141 return Koha::Checkouts::ReturnClaims->_new_from_dbic( $return_claims );
1144 =head3 notice_email_address
1146 my $email = $patron->notice_email_address;
1148 Return the email address of patron used for notices.
1149 Returns the empty string if no email address.
1151 =cut
1153 sub notice_email_address{
1154 my ( $self ) = @_;
1156 my $which_address = C4::Context->preference("AutoEmailPrimaryAddress");
1157 # if syspref is set to 'first valid' (value == OFF), look up email address
1158 if ( $which_address eq 'OFF' ) {
1159 return $self->first_valid_email_address;
1162 return $self->$which_address || '';
1165 =head3 first_valid_email_address
1167 my $first_valid_email_address = $patron->first_valid_email_address
1169 Return the first valid email address for a patron.
1170 For now, the order is defined as email, emailpro, B_email.
1171 Returns the empty string if the borrower has no email addresses.
1173 =cut
1175 sub first_valid_email_address {
1176 my ($self) = @_;
1178 return $self->email() || $self->emailpro() || $self->B_email() || q{};
1181 =head3 get_club_enrollments
1183 =cut
1185 sub get_club_enrollments {
1186 my ( $self, $return_scalar ) = @_;
1188 my $e = Koha::Club::Enrollments->search( { borrowernumber => $self->borrowernumber(), date_canceled => undef } );
1190 return $e if $return_scalar;
1192 return wantarray ? $e->as_list : $e;
1195 =head3 get_enrollable_clubs
1197 =cut
1199 sub get_enrollable_clubs {
1200 my ( $self, $is_enrollable_from_opac, $return_scalar ) = @_;
1202 my $params;
1203 $params->{is_enrollable_from_opac} = $is_enrollable_from_opac
1204 if $is_enrollable_from_opac;
1205 $params->{is_email_required} = 0 unless $self->first_valid_email_address();
1207 $params->{borrower} = $self;
1209 my $e = Koha::Clubs->get_enrollable($params);
1211 return $e if $return_scalar;
1213 return wantarray ? $e->as_list : $e;
1216 =head3 account_locked
1218 my $is_locked = $patron->account_locked
1220 Return true if the patron has reached the maximum number of login attempts
1221 (see pref FailedLoginAttempts). If login_attempts is < 0, this is interpreted
1222 as an administrative lockout (independent of FailedLoginAttempts; see also
1223 Koha::Patron->lock).
1224 Otherwise return false.
1225 If the pref is not set (empty string, null or 0), the feature is considered as
1226 disabled.
1228 =cut
1230 sub account_locked {
1231 my ($self) = @_;
1232 my $FailedLoginAttempts = C4::Context->preference('FailedLoginAttempts');
1233 return 1 if $FailedLoginAttempts
1234 and $self->login_attempts
1235 and $self->login_attempts >= $FailedLoginAttempts;
1236 return 1 if ($self->login_attempts || 0) < 0; # administrative lockout
1237 return 0;
1240 =head3 can_see_patron_infos
1242 my $can_see = $patron->can_see_patron_infos( $patron );
1244 Return true if the patron (usually the logged in user) can see the patron's infos for a given patron
1246 =cut
1248 sub can_see_patron_infos {
1249 my ( $self, $patron ) = @_;
1250 return unless $patron;
1251 return $self->can_see_patrons_from( $patron->library->branchcode );
1254 =head3 can_see_patrons_from
1256 my $can_see = $patron->can_see_patrons_from( $branchcode );
1258 Return true if the patron (usually the logged in user) can see the patron's infos from a given library
1260 =cut
1262 sub can_see_patrons_from {
1263 my ( $self, $branchcode ) = @_;
1264 my $can = 0;
1265 if ( $self->branchcode eq $branchcode ) {
1266 $can = 1;
1267 } elsif ( $self->has_permission( { borrowers => 'view_borrower_infos_from_any_libraries' } ) ) {
1268 $can = 1;
1269 } elsif ( my $library_groups = $self->library->library_groups ) {
1270 while ( my $library_group = $library_groups->next ) {
1271 if ( $library_group->parent->has_child( $branchcode ) ) {
1272 $can = 1;
1273 last;
1277 return $can;
1280 =head3 libraries_where_can_see_patrons
1282 my $libraries = $patron-libraries_where_can_see_patrons;
1284 Return the list of branchcodes(!) of libraries the patron is allowed to see other patron's infos.
1285 The branchcodes are arbitrarily returned sorted.
1286 We are supposing here that the object is related to the logged in patron (use of C4::Context::only_my_library)
1288 An empty array means no restriction, the patron can see patron's infos from any libraries.
1290 =cut
1292 sub libraries_where_can_see_patrons {
1293 my ( $self ) = @_;
1294 my $userenv = C4::Context->userenv;
1296 return () unless $userenv; # For tests, but userenv should be defined in tests...
1298 my @restricted_branchcodes;
1299 if (C4::Context::only_my_library) {
1300 push @restricted_branchcodes, $self->branchcode;
1302 else {
1303 unless (
1304 $self->has_permission(
1305 { borrowers => 'view_borrower_infos_from_any_libraries' }
1309 my $library_groups = $self->library->library_groups({ ft_hide_patron_info => 1 });
1310 if ( $library_groups->count )
1312 while ( my $library_group = $library_groups->next ) {
1313 my $parent = $library_group->parent;
1314 if ( $parent->has_child( $self->branchcode ) ) {
1315 push @restricted_branchcodes, $parent->children->get_column('branchcode');
1320 @restricted_branchcodes = ( $self->branchcode ) unless @restricted_branchcodes;
1324 @restricted_branchcodes = grep { defined $_ } @restricted_branchcodes;
1325 @restricted_branchcodes = uniq(@restricted_branchcodes);
1326 @restricted_branchcodes = sort(@restricted_branchcodes);
1327 return @restricted_branchcodes;
1330 sub has_permission {
1331 my ( $self, $flagsrequired ) = @_;
1332 return unless $self->userid;
1333 # TODO code from haspermission needs to be moved here!
1334 return C4::Auth::haspermission( $self->userid, $flagsrequired );
1337 =head3 is_adult
1339 my $is_adult = $patron->is_adult
1341 Return true if the patron has a category with a type Adult (A) or Organization (I)
1343 =cut
1345 sub is_adult {
1346 my ( $self ) = @_;
1347 return $self->category->category_type =~ /^(A|I)$/ ? 1 : 0;
1350 =head3 is_child
1352 my $is_child = $patron->is_child
1354 Return true if the patron has a category with a type Child (C)
1356 =cut
1358 sub is_child {
1359 my( $self ) = @_;
1360 return $self->category->category_type eq 'C' ? 1 : 0;
1363 =head3 has_valid_userid
1365 my $patron = Koha::Patrons->find(42);
1366 $patron->userid( $new_userid );
1367 my $has_a_valid_userid = $patron->has_valid_userid
1369 my $patron = Koha::Patron->new( $params );
1370 my $has_a_valid_userid = $patron->has_valid_userid
1372 Return true if the current userid of this patron is valid/unique, otherwise false.
1374 Note that this should be done in $self->store instead and raise an exception if needed.
1376 =cut
1378 sub has_valid_userid {
1379 my ($self) = @_;
1381 return 0 unless $self->userid;
1383 return 0 if ( $self->userid eq C4::Context->config('user') ); # DB user
1385 my $already_exists = Koha::Patrons->search(
1387 userid => $self->userid,
1389 $self->in_storage
1390 ? ( borrowernumber => { '!=' => $self->borrowernumber } )
1391 : ()
1394 )->count;
1395 return $already_exists ? 0 : 1;
1398 =head3 generate_userid
1400 my $patron = Koha::Patron->new( $params );
1401 $patron->generate_userid
1403 Generate a userid using the $surname and the $firstname (if there is a value in $firstname).
1405 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).
1407 =cut
1409 sub generate_userid {
1410 my ($self) = @_;
1411 my $offset = 0;
1412 my $firstname = $self->firstname // q{};
1413 my $surname = $self->surname // q{};
1414 #The script will "do" the following code and increment the $offset until the generated userid is unique
1415 do {
1416 $firstname =~ s/[[:digit:][:space:][:blank:][:punct:][:cntrl:]]//g;
1417 $surname =~ s/[[:digit:][:space:][:blank:][:punct:][:cntrl:]]//g;
1418 my $userid = lc(($firstname)? "$firstname.$surname" : $surname);
1419 $userid = unac_string('utf-8',$userid);
1420 $userid .= $offset unless $offset == 0;
1421 $self->userid( $userid );
1422 $offset++;
1423 } while (! $self->has_valid_userid );
1425 return $self;
1429 =head3 attributes
1431 my $attributes = $patron->attributes
1433 Return object of Koha::Patron::Attributes type with all attributes set for this patron
1435 =cut
1437 sub attributes {
1438 my ( $self ) = @_;
1439 return Koha::Patron::Attributes->search({
1440 borrowernumber => $self->borrowernumber,
1441 branchcode => $self->branchcode,
1445 =head3 lock
1447 Koha::Patrons->find($id)->lock({ expire => 1, remove => 1 });
1449 Lock and optionally expire a patron account.
1450 Remove holds and article requests if remove flag set.
1451 In order to distinguish from locking by entering a wrong password, let's
1452 call this an administrative lockout.
1454 =cut
1456 sub lock {
1457 my ( $self, $params ) = @_;
1458 $self->login_attempts( ADMINISTRATIVE_LOCKOUT );
1459 if( $params->{expire} ) {
1460 $self->dateexpiry( dt_from_string->subtract(days => 1) );
1462 $self->store;
1463 if( $params->{remove} ) {
1464 $self->holds->delete;
1465 $self->article_requests->delete;
1467 return $self;
1470 =head3 anonymize
1472 Koha::Patrons->find($id)->anonymize;
1474 Anonymize or clear borrower fields. Fields in BorrowerMandatoryField
1475 are randomized, other personal data is cleared too.
1476 Patrons with issues are skipped.
1478 =cut
1480 sub anonymize {
1481 my ( $self ) = @_;
1482 if( $self->_result->issues->count ) {
1483 warn "Exiting anonymize: patron ".$self->borrowernumber." still has issues";
1484 return;
1486 # Mandatory fields come from the corresponding pref, but email fields
1487 # are removed since scrambled email addresses only generate errors
1488 my $mandatory = { map { (lc $_, 1); } grep { !/email/ }
1489 split /\s*\|\s*/, C4::Context->preference('BorrowerMandatoryField') };
1490 $mandatory->{userid} = 1; # needed since sub store does not clear field
1491 my @columns = $self->_result->result_source->columns;
1492 @columns = grep { !/borrowernumber|branchcode|categorycode|^date|password|flags|updated_on|lastseen|lang|login_attempts|anonymized/ } @columns;
1493 push @columns, 'dateofbirth'; # add this date back in
1494 foreach my $col (@columns) {
1495 $self->_anonymize_column($col, $mandatory->{lc $col} );
1497 $self->anonymized(1)->store;
1500 sub _anonymize_column {
1501 my ( $self, $col, $mandatory ) = @_;
1502 my $col_info = $self->_result->result_source->column_info($col);
1503 my $type = $col_info->{data_type};
1504 my $nullable = $col_info->{is_nullable};
1505 my $val;
1506 if( $type =~ /char|text/ ) {
1507 $val = $mandatory
1508 ? Koha::Token->new->generate({ pattern => '\w{10}' })
1509 : $nullable
1510 ? undef
1511 : q{};
1512 } elsif( $type =~ /integer|int$|float|dec|double/ ) {
1513 $val = $nullable ? undef : 0;
1514 } elsif( $type =~ /date|time/ ) {
1515 $val = $nullable ? undef : dt_from_string;
1517 $self->$col($val);
1520 =head3 add_guarantor
1522 my @relationships = $patron->add_guarantor(
1524 borrowernumber => $borrowernumber,
1525 relationships => $relationship,
1529 Adds a new guarantor to a patron.
1531 =cut
1533 sub add_guarantor {
1534 my ( $self, $params ) = @_;
1536 my $guarantor_id = $params->{guarantor_id};
1537 my $relationship = $params->{relationship};
1539 return Koha::Patron::Relationship->new(
1541 guarantee_id => $self->id,
1542 guarantor_id => $guarantor_id,
1543 relationship => $relationship
1545 )->store();
1548 =head3 to_api
1550 my $json = $patron->to_api;
1552 Overloaded method that returns a JSON representation of the Koha::Patron object,
1553 suitable for API output.
1555 =cut
1557 sub to_api {
1558 my ( $self ) = @_;
1560 my $json_patron = $self->SUPER::to_api;
1562 $json_patron->{restricted} = ( $self->is_debarred )
1563 ? Mojo::JSON->true
1564 : Mojo::JSON->false;
1566 return $json_patron;
1569 =head3 to_api_mapping
1571 This method returns the mapping for representing a Koha::Patron object
1572 on the API.
1574 =cut
1576 sub to_api_mapping {
1577 return {
1578 borrowernotes => 'staff_notes',
1579 borrowernumber => 'patron_id',
1580 branchcode => 'library_id',
1581 categorycode => 'category_id',
1582 checkprevcheckout => 'check_previous_checkout',
1583 contactfirstname => undef, # Unused
1584 contactname => undef, # Unused
1585 contactnote => 'altaddress_notes',
1586 contacttitle => undef, # Unused
1587 dateenrolled => 'date_enrolled',
1588 dateexpiry => 'expiry_date',
1589 dateofbirth => 'date_of_birth',
1590 debarred => undef, # replaced by 'restricted'
1591 debarredcomment => undef, # calculated, API consumers will use /restrictions instead
1592 emailpro => 'secondary_email',
1593 flags => undef, # permissions manipulation handled in /permissions
1594 gonenoaddress => 'incorrect_address',
1595 guarantorid => 'guarantor_id',
1596 lastseen => 'last_seen',
1597 lost => 'patron_card_lost',
1598 opacnote => 'opac_notes',
1599 othernames => 'other_name',
1600 password => undef, # password manipulation handled in /password
1601 phonepro => 'secondary_phone',
1602 relationship => 'relationship_type',
1603 sex => 'gender',
1604 smsalertnumber => 'sms_number',
1605 sort1 => 'statistics_1',
1606 sort2 => 'statistics_2',
1607 streetnumber => 'street_number',
1608 streettype => 'street_type',
1609 zipcode => 'postal_code',
1610 B_address => 'altaddress_address',
1611 B_address2 => 'altaddress_address2',
1612 B_city => 'altaddress_city',
1613 B_country => 'altaddress_country',
1614 B_email => 'altaddress_email',
1615 B_phone => 'altaddress_phone',
1616 B_state => 'altaddress_state',
1617 B_streetnumber => 'altaddress_street_number',
1618 B_streettype => 'altaddress_street_type',
1619 B_zipcode => 'altaddress_postal_code',
1620 altcontactaddress1 => 'altcontact_address',
1621 altcontactaddress2 => 'altcontact_address2',
1622 altcontactaddress3 => 'altcontact_city',
1623 altcontactcountry => 'altcontact_country',
1624 altcontactfirstname => 'altcontact_firstname',
1625 altcontactphone => 'altcontact_phone',
1626 altcontactsurname => 'altcontact_surname',
1627 altcontactstate => 'altcontact_state',
1628 altcontactzipcode => 'altcontact_postal_code'
1632 =head2 Internal methods
1634 =head3 _type
1636 =cut
1638 sub _type {
1639 return 'Borrower';
1642 =head1 AUTHORS
1644 Kyle M Hall <kyle@bywatersolutions.com>
1645 Alex Sassmannshausen <alex.sassmannshausen@ptfs-europe.com>
1646 Martin Renvoize <martin.renvoize@ptfs-europe.com>
1648 =cut