Bug 32307: (follow-up) Fix gallery when Coce is enabled
[koha.git] / Koha / Patron.pm
1 package Koha::Patron;
2
3 # Copyright ByWater Solutions 2014
4 # Copyright PTFS Europe 2016
5 #
6 # This file is part of Koha.
7 #
8 # Koha is free software; you can redistribute it and/or modify it
9 # under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 3 of the License, or
11 # (at your option) any later version.
12 #
13 # Koha is distributed in the hope that it will be useful, but
14 # WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License
19 # along with Koha; if not, see <http://www.gnu.org/licenses>.
20
21 use Modern::Perl;
22
23 use List::MoreUtils qw( any uniq );
24 use JSON qw( to_json );
25 use Unicode::Normalize qw( NFKD );
26 use Try::Tiny;
27
28 use C4::Context;
29 use C4::Auth qw( checkpw_hash );
30 use C4::Log qw( logaction );
31 use Koha::Account;
32 use Koha::ArticleRequests;
33 use C4::Letters qw( GetPreparedLetter EnqueueLetter SendQueuedMessages );
34 use Koha::AuthUtils;
35 use Koha::Checkouts;
36 use Koha::CirculationRules;
37 use Koha::Club::Enrollments;
38 use Koha::Database;
39 use Koha::DateUtils qw( dt_from_string );
40 use Koha::Encryption;
41 use Koha::Exceptions::Password;
42 use Koha::Holds;
43 use Koha::CurbsidePickups;
44 use Koha::Old::Checkouts;
45 use Koha::Patron::Attributes;
46 use Koha::Patron::Categories;
47 use Koha::Patron::Debarments;
48 use Koha::Patron::HouseboundProfile;
49 use Koha::Patron::HouseboundRole;
50 use Koha::Patron::Images;
51 use Koha::Patron::Messages;
52 use Koha::Patron::Modifications;
53 use Koha::Patron::Relationships;
54 use Koha::Patron::Restrictions;
55 use Koha::Patrons;
56 use Koha::Plugins;
57 use Koha::Recalls;
58 use Koha::Result::Boolean;
59 use Koha::Subscription::Routinglists;
60 use Koha::Token;
61 use Koha::Virtualshelves;
62
63 use base qw(Koha::Object);
64
65 use constant ADMINISTRATIVE_LOCKOUT => -1;
66
67 our $RESULTSET_PATRON_ID_MAPPING = {
68     Accountline          => 'borrowernumber',
69     Aqbasketuser         => 'borrowernumber',
70     Aqbudget             => 'budget_owner_id',
71     Aqbudgetborrower     => 'borrowernumber',
72     ArticleRequest       => 'borrowernumber',
73     BorrowerDebarment    => 'borrowernumber',
74     BorrowerFile         => 'borrowernumber',
75     BorrowerModification => 'borrowernumber',
76     ClubEnrollment       => 'borrowernumber',
77     Issue                => 'borrowernumber',
78     ItemsLastBorrower    => 'borrowernumber',
79     Linktracker          => 'borrowernumber',
80     Message              => 'borrowernumber',
81     MessageQueue         => 'borrowernumber',
82     OldIssue             => 'borrowernumber',
83     OldReserve           => 'borrowernumber',
84     Rating               => 'borrowernumber',
85     Reserve              => 'borrowernumber',
86     Review               => 'borrowernumber',
87     SearchHistory        => 'userid',
88     Statistic            => 'borrowernumber',
89     Suggestion           => 'suggestedby',
90     TagAll               => 'borrowernumber',
91     Virtualshelfcontent  => 'borrowernumber',
92     Virtualshelfshare    => 'borrowernumber',
93     Virtualshelve        => 'owner',
94 };
95
96 =head1 NAME
97
98 Koha::Patron - Koha Patron Object class
99
100 =head1 API
101
102 =head2 Class Methods
103
104 =head3 new
105
106 =cut
107
108 sub new {
109     my ( $class, $params ) = @_;
110
111     return $class->SUPER::new($params);
112 }
113
114 =head3 fixup_cardnumber
115
116 Autogenerate next cardnumber from highest value found in database
117
118 =cut
119
120 sub fixup_cardnumber {
121     my ( $self ) = @_;
122
123     my $max = $self->cardnumber;
124     Koha::Plugins->call( 'patron_barcode_transform', \$max );
125
126     $max ||= Koha::Patrons->search({
127         cardnumber => {-regexp => '^-?[0-9]+$'}
128     }, {
129         select => \'CAST(cardnumber AS SIGNED)',
130         as => ['cast_cardnumber']
131     })->_resultset->get_column('cast_cardnumber')->max;
132     $self->cardnumber(($max || 0) +1);
133 }
134
135 =head3 trim_whitespace
136
137 trim whitespace from data which has some non-whitespace in it.
138 Could be moved to Koha::Object if need to be reused
139
140 =cut
141
142 sub trim_whitespaces {
143     my( $self ) = @_;
144
145     my $schema  = Koha::Database->new->schema;
146     my @columns = $schema->source($self->_type)->columns;
147
148     for my $column( @columns ) {
149         my $value = $self->$column;
150         if ( defined $value ) {
151             $value =~ s/^\s*|\s*$//g;
152             $self->$column($value);
153         }
154     }
155     return $self;
156 }
157
158 =head3 plain_text_password
159
160 $patron->plain_text_password( $password );
161
162 stores a copy of the unencrypted password in the object
163 for use in code before encrypting for db
164
165 =cut
166
167 sub plain_text_password {
168     my ( $self, $password ) = @_;
169     if ( $password ) {
170         $self->{_plain_text_password} = $password;
171         return $self;
172     }
173     return $self->{_plain_text_password}
174         if $self->{_plain_text_password};
175
176     return;
177 }
178
179 =head3 store
180
181 Patron specific store method to cleanup record
182 and do other necessary things before saving
183 to db
184
185 =cut
186
187 sub store {
188     my ($self) = @_;
189
190     $self->_result->result_source->schema->txn_do(
191         sub {
192             if (
193                 C4::Context->preference("autoMemberNum")
194                 and ( not defined $self->cardnumber
195                     or $self->cardnumber eq '' )
196               )
197             {
198                 # Warning: The caller is responsible for locking the members table in write
199                 # mode, to avoid database corruption.
200                 # We are in a transaction but the table is not locked
201                 $self->fixup_cardnumber;
202             }
203
204             unless( $self->category->in_storage ) {
205                 Koha::Exceptions::Object::FKConstraint->throw(
206                     broken_fk => 'categorycode',
207                     value     => $self->categorycode,
208                 );
209             }
210
211             $self->trim_whitespaces;
212
213             my $new_cardnumber = $self->cardnumber;
214             Koha::Plugins->call( 'patron_barcode_transform', \$new_cardnumber );
215             $self->cardnumber( $new_cardnumber );
216
217             # Set surname to uppercase if uppercasesurname is true
218             $self->surname( uc($self->surname) )
219                 if C4::Context->preference("uppercasesurnames");
220
221             $self->relationship(undef) # We do not want to store an empty string in this field
222               if defined $self->relationship
223                      and $self->relationship eq "";
224
225             unless ( $self->in_storage ) {    #AddMember
226
227                 # Generate a valid userid/login if needed
228                 $self->generate_userid
229                   if not $self->userid or not $self->has_valid_userid;
230
231                 # Add expiration date if it isn't already there
232                 unless ( $self->dateexpiry ) {
233                     $self->dateexpiry( $self->category->get_expiry_date );
234                 }
235
236                 # Add enrollment date if it isn't already there
237                 unless ( $self->dateenrolled ) {
238                     $self->dateenrolled(dt_from_string);
239                 }
240
241                 # Set the privacy depending on the patron's category
242                 my $default_privacy = $self->category->default_privacy || q{};
243                 $default_privacy =
244                     $default_privacy eq 'default' ? 1
245                   : $default_privacy eq 'never'   ? 2
246                   : $default_privacy eq 'forever' ? 0
247                   :                                                   undef;
248                 $self->privacy($default_privacy);
249
250                 # Call any check_password plugins if password is passed
251                 if ( C4::Context->config("enable_plugins") && $self->password ) {
252                     my @plugins = Koha::Plugins->new()->GetPlugins({
253                         method => 'check_password',
254                     });
255                     foreach my $plugin ( @plugins ) {
256                         # This plugin hook will also be used by a plugin for the Norwegian national
257                         # patron database. This is why we need to pass both the password and the
258                         # borrowernumber to the plugin.
259                         my $ret = $plugin->check_password(
260                             {
261                                 password       => $self->password,
262                                 borrowernumber => $self->borrowernumber
263                             }
264                         );
265                         if ( $ret->{'error'} == 1 ) {
266                             Koha::Exceptions::Password::Plugin->throw();
267                         }
268                     }
269                 }
270
271                 # Make a copy of the plain text password for later use
272                 $self->plain_text_password( $self->password );
273
274                 $self->password_expiration_date( $self->password
275                     ? $self->category->get_password_expiry_date || undef
276                     : undef );
277                 # Create a disabled account if no password provided
278                 $self->password( $self->password
279                     ? Koha::AuthUtils::hash_password( $self->password )
280                     : '!' );
281
282                 $self->borrowernumber(undef);
283
284                 $self = $self->SUPER::store;
285
286                 $self->add_enrolment_fee_if_needed(0);
287
288                 logaction( "MEMBERS", "CREATE", $self->borrowernumber, "" )
289                   if C4::Context->preference("BorrowersLog");
290             }
291             else {    #ModMember
292
293                 my $self_from_storage = $self->get_from_storage;
294                 # FIXME We should not deal with that here, callers have to do this job
295                 # Moved from ModMember to prevent regressions
296                 unless ( $self->userid ) {
297                     my $stored_userid = $self_from_storage->userid;
298                     $self->userid($stored_userid);
299                 }
300
301                 # Password must be updated using $self->set_password
302                 $self->password($self_from_storage->password);
303
304                 if ( $self->category->categorycode ne
305                     $self_from_storage->category->categorycode )
306                 {
307                     # Add enrolement fee on category change if required
308                     $self->add_enrolment_fee_if_needed(1)
309                       if C4::Context->preference('FeeOnChangePatronCategory');
310
311                     # Clean up guarantors on category change if required
312                     $self->guarantor_relationships->delete
313                       unless ( $self->category->can_be_guarantee );
314
315                 }
316
317                 # Actionlogs
318                 if ( C4::Context->preference("BorrowersLog") ) {
319                     my $info;
320                     my $from_storage = $self_from_storage->unblessed;
321                     my $from_object  = $self->unblessed;
322                     my @skip_fields  = (qw/lastseen updated_on/);
323                     for my $key ( keys %{$from_storage} ) {
324                         next if any { /$key/ } @skip_fields;
325                         if (
326                             (
327                                   !defined( $from_storage->{$key} )
328                                 && defined( $from_object->{$key} )
329                             )
330                             || ( defined( $from_storage->{$key} )
331                                 && !defined( $from_object->{$key} ) )
332                             || (
333                                    defined( $from_storage->{$key} )
334                                 && defined( $from_object->{$key} )
335                                 && ( $from_storage->{$key} ne
336                                     $from_object->{$key} )
337                             )
338                           )
339                         {
340                             $info->{$key} = {
341                                 before => $from_storage->{$key},
342                                 after  => $from_object->{$key}
343                             };
344                         }
345                     }
346
347                     if ( defined($info) ) {
348                         logaction(
349                             "MEMBERS",
350                             "MODIFY",
351                             $self->borrowernumber,
352                             to_json(
353                                 $info,
354                                 { utf8 => 1, pretty => 1, canonical => 1 }
355                             )
356                         );
357                     }
358                 }
359
360                 # Final store
361                 $self = $self->SUPER::store;
362             }
363         }
364     );
365     return $self;
366 }
367
368 =head3 delete
369
370 $patron->delete
371
372 Delete patron's holds, lists and finally the patron.
373
374 Lists owned by the borrower are deleted or ownership is transferred depending on the
375 ListOwnershipUponPatronDeletion pref, but entries from the borrower to other lists are kept.
376
377 =cut
378
379 sub delete {
380     my ($self) = @_;
381
382     my $anonymous_patron = C4::Context->preference("AnonymousPatron");
383     Koha::Exceptions::Patron::FailedDeleteAnonymousPatron->throw() if $anonymous_patron && $self->id eq $anonymous_patron;
384
385     $self->_result->result_source->schema->txn_do(
386         sub {
387             # Cancel Patron's holds
388             my $holds = $self->holds;
389             while( my $hold = $holds->next ){
390                 $hold->cancel;
391             }
392
393             # Handle lists (virtualshelves)
394             $self->virtualshelves->disown_or_delete;
395
396             # We cannot have a FK on borrower_modifications.borrowernumber, the table is also used
397             # for patron selfreg
398             $_->delete for Koha::Patron::Modifications->search( { borrowernumber => $self->borrowernumber } )->as_list;
399
400             $self->SUPER::delete;
401
402             logaction( "MEMBERS", "DELETE", $self->borrowernumber, "" ) if C4::Context->preference("BorrowersLog");
403         }
404     );
405     return $self;
406 }
407
408 =head3 category
409
410 my $patron_category = $patron->category
411
412 Return the patron category for this patron
413
414 =cut
415
416 sub category {
417     my ( $self ) = @_;
418     return Koha::Patron::Category->_new_from_dbic( $self->_result->categorycode );
419 }
420
421 =head3 image
422
423 =cut
424
425 sub image {
426     my ( $self ) = @_;
427
428     return Koha::Patron::Images->find( $self->borrowernumber );
429 }
430
431 =head3 library
432
433 Returns a Koha::Library object representing the patron's home library.
434
435 =cut
436
437 sub library {
438     my ( $self ) = @_;
439     return Koha::Library->_new_from_dbic($self->_result->branchcode);
440 }
441
442 =head3 sms_provider
443
444 Returns a Koha::SMS::Provider object representing the patron's SMS provider.
445
446 =cut
447
448 sub sms_provider {
449     my ( $self ) = @_;
450     my $sms_provider_rs = $self->_result->sms_provider;
451     return unless $sms_provider_rs;
452     return Koha::SMS::Provider->_new_from_dbic($sms_provider_rs);
453 }
454
455 =head3 guarantor_relationships
456
457 Returns Koha::Patron::Relationships object for this patron's guarantors
458
459 Returns the set of relationships for the patrons that are guarantors for this patron.
460
461 This is returned instead of a Koha::Patron object because the guarantor
462 may not exist as a patron in Koha. If this is true, the guarantors name
463 exists in the Koha::Patron::Relationship object and will have no guarantor_id.
464
465 =cut
466
467 sub guarantor_relationships {
468     my ($self) = @_;
469
470     return Koha::Patron::Relationships->search( { guarantee_id => $self->id } );
471 }
472
473 =head3 guarantee_relationships
474
475 Returns Koha::Patron::Relationships object for this patron's guarantors
476
477 Returns the set of relationships for the patrons that are guarantees for this patron.
478
479 The method returns Koha::Patron::Relationship objects for the sake
480 of consistency with the guantors method.
481 A guarantee by definition must exist as a patron in Koha.
482
483 =cut
484
485 sub guarantee_relationships {
486     my ($self) = @_;
487
488     return Koha::Patron::Relationships->search(
489         { guarantor_id => $self->id },
490         {
491             prefetch => 'guarantee',
492             order_by => { -asc => [ 'guarantee.surname', 'guarantee.firstname' ] },
493         }
494     );
495 }
496
497 =head3 relationships_debt
498
499 Returns the amount owed by the patron's guarantors *and* the other guarantees of those guarantors
500
501 =cut
502
503 sub relationships_debt {
504     my ($self, $params) = @_;
505
506     my $include_guarantors  = $params->{include_guarantors};
507     my $only_this_guarantor = $params->{only_this_guarantor};
508     my $include_this_patron = $params->{include_this_patron};
509
510     my @guarantors;
511     if ( $only_this_guarantor ) {
512         @guarantors = $self->guarantee_relationships->count ? ( $self ) : ();
513         Koha::Exceptions::BadParameter->throw( { parameter => 'only_this_guarantor' } ) unless @guarantors;
514     } elsif ( $self->guarantor_relationships->count ) {
515         # I am a guarantee, just get all my guarantors
516         @guarantors = $self->guarantor_relationships->guarantors->as_list;
517     } else {
518         # I am a guarantor, I need to get all the guarantors of all my guarantees
519         @guarantors = map { $_->guarantor_relationships->guarantors->as_list } $self->guarantee_relationships->guarantees->as_list;
520     }
521
522     my $non_issues_charges = 0;
523     my $seen = $include_this_patron ? {} : { $self->id => 1 }; # For tracking members already added to the total
524     foreach my $guarantor (@guarantors) {
525         $non_issues_charges += $guarantor->account->non_issues_charges if $include_guarantors && !$seen->{ $guarantor->id };
526
527         # We've added what the guarantor owes, not added in that guarantor's guarantees as well
528         my @guarantees = map { $_->guarantee } $guarantor->guarantee_relationships->as_list;
529         my $guarantees_non_issues_charges = 0;
530         foreach my $guarantee (@guarantees) {
531             next if $seen->{ $guarantee->id };
532             $guarantees_non_issues_charges += $guarantee->account->non_issues_charges;
533             # Mark this guarantee as seen so we don't double count a guarantee linked to multiple guarantors
534             $seen->{ $guarantee->id } = 1;
535         }
536
537         $non_issues_charges += $guarantees_non_issues_charges;
538         $seen->{ $guarantor->id } = 1;
539     }
540
541     return $non_issues_charges;
542 }
543
544 =head3 housebound_profile
545
546 Returns the HouseboundProfile associated with this patron.
547
548 =cut
549
550 sub housebound_profile {
551     my ( $self ) = @_;
552     my $profile = $self->_result->housebound_profile;
553     return Koha::Patron::HouseboundProfile->_new_from_dbic($profile)
554         if ( $profile );
555     return;
556 }
557
558 =head3 housebound_role
559
560 Returns the HouseboundRole associated with this patron.
561
562 =cut
563
564 sub housebound_role {
565     my ( $self ) = @_;
566
567     my $role = $self->_result->housebound_role;
568     return Koha::Patron::HouseboundRole->_new_from_dbic($role) if ( $role );
569     return;
570 }
571
572 =head3 siblings
573
574 Returns the siblings of this patron.
575
576 =cut
577
578 sub siblings {
579     my ($self) = @_;
580
581     my @guarantors = $self->guarantor_relationships()->guarantors()->as_list;
582
583     return unless @guarantors;
584
585     my @siblings =
586       map { $_->guarantee_relationships()->guarantees()->as_list } @guarantors;
587
588     return unless @siblings;
589
590     my %seen;
591     @siblings =
592       grep { !$seen{ $_->id }++ && ( $_->id != $self->id ) } @siblings;
593
594     return Koha::Patrons->search( { borrowernumber => { -in => [ map { $_->id } @siblings ] } } );
595 }
596
597 =head3 merge_with
598
599     my $patron = Koha::Patrons->find($id);
600     $patron->merge_with( \@patron_ids );
601
602     This subroutine merges a list of patrons into the patron record. This is accomplished by finding
603     all related patron ids for the patrons to be merged in other tables and changing the ids to be that
604     of the keeper patron.
605
606 =cut
607
608 sub merge_with {
609     my ( $self, $patron_ids ) = @_;
610
611     my $anonymous_patron = C4::Context->preference("AnonymousPatron");
612     return if $anonymous_patron && $self->id eq $anonymous_patron;
613
614     my @patron_ids = @{ $patron_ids };
615
616     # Ensure the keeper isn't in the list of patrons to merge
617     @patron_ids = grep { $_ ne $self->id } @patron_ids;
618
619     my $schema = Koha::Database->new()->schema();
620
621     my $results;
622
623     $self->_result->result_source->schema->txn_do( sub {
624         foreach my $patron_id (@patron_ids) {
625
626             next if $patron_id eq $anonymous_patron;
627
628             my $patron = Koha::Patrons->find( $patron_id );
629
630             next unless $patron;
631
632             # Unbless for safety, the patron will end up being deleted
633             $results->{merged}->{$patron_id}->{patron} = $patron->unblessed;
634
635             my $attributes = $patron->extended_attributes;
636             my $new_attributes = [
637                 map { { code => $_->code, attribute => $_->attribute } }
638                     $attributes->as_list
639             ];
640             $attributes->delete; # We need to delete before trying to merge them to prevent exception on unique and repeatable
641             for my $attribute ( @$new_attributes ) {
642                 try {
643                     $self->add_extended_attribute($attribute);
644                 } catch {
645                     # Don't block the merge if there is a non-repeatable attribute that cannot be added to the current patron.
646                     unless ( $_->isa('Koha::Exceptions::Patron::Attribute::NonRepeatable') ) {
647                         $_->rethrow;
648                     }
649                 };
650             }
651
652             while (my ($r, $field) = each(%$RESULTSET_PATRON_ID_MAPPING)) {
653                 my $rs = $schema->resultset($r)->search({ $field => $patron_id });
654                 $results->{merged}->{ $patron_id }->{updated}->{$r} = $rs->count();
655                 $rs->update({ $field => $self->id });
656                 if ( $r eq 'BorrowerDebarment' ) {
657                     Koha::Patron::Debarments::UpdateBorrowerDebarmentFlags($self->id);
658                 }
659             }
660
661             $patron->move_to_deleted();
662             $patron->delete();
663         }
664     });
665
666     return $results;
667 }
668
669
670
671 =head3 wants_check_for_previous_checkout
672
673     $wants_check = $patron->wants_check_for_previous_checkout;
674
675 Return 1 if Koha needs to perform PrevIssue checking, else 0.
676
677 =cut
678
679 sub wants_check_for_previous_checkout {
680     my ( $self ) = @_;
681     my $syspref = C4::Context->preference("checkPrevCheckout");
682
683     # Simple cases
684     ## Hard syspref trumps all
685     return 1 if ($syspref eq 'hardyes');
686     return 0 if ($syspref eq 'hardno');
687     ## Now, patron pref trumps all
688     return 1 if ($self->checkprevcheckout eq 'yes');
689     return 0 if ($self->checkprevcheckout eq 'no');
690
691     # More complex: patron inherits -> determine category preference
692     my $checkPrevCheckoutByCat = $self->category->checkprevcheckout;
693     return 1 if ($checkPrevCheckoutByCat eq 'yes');
694     return 0 if ($checkPrevCheckoutByCat eq 'no');
695
696     # Finally: category preference is inherit, default to 0
697     if ($syspref eq 'softyes') {
698         return 1;
699     } else {
700         return 0;
701     }
702 }
703
704 =head3 do_check_for_previous_checkout
705
706     $do_check = $patron->do_check_for_previous_checkout($item);
707
708 Return 1 if the bib associated with $ITEM has previously been checked out to
709 $PATRON, 0 otherwise.
710
711 =cut
712
713 sub do_check_for_previous_checkout {
714     my ( $self, $item ) = @_;
715
716     my @item_nos;
717     my $biblio = Koha::Biblios->find( $item->{biblionumber} );
718     if ( $biblio->is_serial ) {
719         push @item_nos, $item->{itemnumber};
720     } else {
721         # Get all itemnumbers for given bibliographic record.
722         @item_nos = $biblio->items->get_column( 'itemnumber' );
723     }
724
725     # Create (old)issues search criteria
726     my $criteria = {
727         borrowernumber => $self->borrowernumber,
728         itemnumber => \@item_nos,
729     };
730
731     my $delay = C4::Context->preference('CheckPrevCheckoutDelay') || 0;
732     if ($delay) {
733         my $dtf = Koha::Database->new->schema->storage->datetime_parser;
734         my $newer_than = dt_from_string()->subtract( days => $delay );
735         $criteria->{'returndate'} = { '>'   =>  $dtf->format_datetime($newer_than), };
736     }
737
738     # Check current issues table
739     my $issues = Koha::Checkouts->search($criteria);
740     return 1 if $issues->count; # 0 || N
741
742     # Check old issues table
743     my $old_issues = Koha::Old::Checkouts->search($criteria);
744     return $old_issues->count;  # 0 || N
745 }
746
747 =head3 is_debarred
748
749 my $debarment_expiration = $patron->is_debarred;
750
751 Returns the date a patron debarment will expire, or undef if the patron is not
752 debarred
753
754 =cut
755
756 sub is_debarred {
757     my ($self) = @_;
758
759     return unless $self->debarred;
760     return $self->debarred
761       if $self->debarred =~ '^9999'
762       or dt_from_string( $self->debarred ) > dt_from_string;
763     return;
764 }
765
766 =head3 is_expired
767
768 my $is_expired = $patron->is_expired;
769
770 Returns 1 if the patron is expired or 0;
771
772 =cut
773
774 sub is_expired {
775     my ($self) = @_;
776     return 0 unless $self->dateexpiry;
777     return 0 if $self->dateexpiry =~ '^9999';
778     return 1 if dt_from_string( $self->dateexpiry ) < dt_from_string->truncate( to => 'day' );
779     return 0;
780 }
781
782 =head3 password_expired
783
784 my $password_expired = $patron->password_expired;
785
786 Returns 1 if the patron's password is expired or 0;
787
788 =cut
789
790 sub password_expired {
791     my ($self) = @_;
792     return 0 unless $self->password_expiration_date;
793     return 1 if dt_from_string( $self->password_expiration_date ) <= dt_from_string->truncate( to => 'day' );
794     return 0;
795 }
796
797 =head3 is_going_to_expire
798
799 my $is_going_to_expire = $patron->is_going_to_expire;
800
801 Returns 1 if the patron is going to expired, depending on the NotifyBorrowerDeparture pref or 0
802
803 =cut
804
805 sub is_going_to_expire {
806     my ($self) = @_;
807
808     my $delay = C4::Context->preference('NotifyBorrowerDeparture') || 0;
809
810     return 0 unless $delay;
811     return 0 unless $self->dateexpiry;
812     return 0 if $self->dateexpiry =~ '^9999';
813     return 1 if dt_from_string( $self->dateexpiry, undef, 'floating' )->subtract( days => $delay ) < dt_from_string(undef, undef, 'floating')->truncate( to => 'day' );
814     return 0;
815 }
816
817 =head3 set_password
818
819     $patron->set_password({ password => $plain_text_password [, skip_validation => 1 ] });
820
821 Set the patron's password.
822
823 =head4 Exceptions
824
825 The passed string is validated against the current password enforcement policy.
826 Validation can be skipped by passing the I<skip_validation> parameter.
827
828 Exceptions are thrown if the password is not good enough.
829
830 =over 4
831
832 =item Koha::Exceptions::Password::TooShort
833
834 =item Koha::Exceptions::Password::WhitespaceCharacters
835
836 =item Koha::Exceptions::Password::TooWeak
837
838 =item Koha::Exceptions::Password::Plugin (if a "check password" plugin is enabled)
839
840 =back
841
842 =cut
843
844 sub set_password {
845     my ( $self, $args ) = @_;
846
847     my $password = $args->{password};
848
849     unless ( $args->{skip_validation} ) {
850         my ( $is_valid, $error ) = Koha::AuthUtils::is_password_valid( $password, $self->category );
851
852         if ( !$is_valid ) {
853             if ( $error eq 'too_short' ) {
854                 my $min_length = $self->category->effective_min_password_length;
855                 $min_length = 3 if not $min_length or $min_length < 3;
856
857                 my $password_length = length($password);
858                 Koha::Exceptions::Password::TooShort->throw(
859                     length => $password_length, min_length => $min_length );
860             }
861             elsif ( $error eq 'has_whitespaces' ) {
862                 Koha::Exceptions::Password::WhitespaceCharacters->throw();
863             }
864             elsif ( $error eq 'too_weak' ) {
865                 Koha::Exceptions::Password::TooWeak->throw();
866             }
867         }
868     }
869
870     if ( C4::Context->config("enable_plugins") ) {
871         # Call any check_password plugins
872         my @plugins = Koha::Plugins->new()->GetPlugins({
873             method => 'check_password',
874         });
875         foreach my $plugin ( @plugins ) {
876             # This plugin hook will also be used by a plugin for the Norwegian national
877             # patron database. This is why we need to pass both the password and the
878             # borrowernumber to the plugin.
879             my $ret = $plugin->check_password(
880                 {
881                     password       => $password,
882                     borrowernumber => $self->borrowernumber
883                 }
884             );
885             # This plugin hook will also be used by a plugin for the Norwegian national
886             # patron database. This is why we need to call the actual plugins and then
887             # check skip_validation afterwards.
888             if ( $ret->{'error'} == 1 && !$args->{skip_validation} ) {
889                 Koha::Exceptions::Password::Plugin->throw();
890             }
891         }
892     }
893
894     if ( C4::Context->preference('NotifyPasswordChange') ) {
895         my $self_from_storage = $self->get_from_storage;
896         if ( !C4::Auth::checkpw_hash( $password, $self_from_storage->password ) ) {
897             my $emailaddr = $self_from_storage->notice_email_address;
898
899             # if we manage to find a valid email address, send notice
900             if ($emailaddr) {
901                 my $letter = C4::Letters::GetPreparedLetter(
902                     module      => 'members',
903                     letter_code => 'PASSWORD_CHANGE',
904                     branchcode  => $self_from_storage->branchcode,
905                     ,
906                     lang   => $self_from_storage->lang || 'default',
907                     tables => {
908                         'branches'  => $self_from_storage->branchcode,
909                         'borrowers' => $self_from_storage->borrowernumber,
910                     },
911                     want_librarian => 1,
912                 ) or return;
913
914                 my $message_id = C4::Letters::EnqueueLetter(
915                     {
916                         letter                 => $letter,
917                         borrowernumber         => $self_from_storage->id,
918                         to_address             => $emailaddr,
919                         message_transport_type => 'email'
920                     }
921                 );
922                 C4::Letters::SendQueuedMessages( { message_id => $message_id } );
923             }
924         }
925     }
926
927     my $digest = Koha::AuthUtils::hash_password($password);
928
929     $self->password_expiration_date( $self->category->get_password_expiry_date || undef );
930
931     # We do not want to call $self->store and retrieve password from DB
932     $self->password($digest);
933     $self->login_attempts(0);
934     $self->SUPER::store;
935
936     logaction( "MEMBERS", "CHANGE PASS", $self->borrowernumber, "" )
937         if C4::Context->preference("BorrowersLog");
938
939     return $self;
940 }
941
942
943 =head3 renew_account
944
945 my $new_expiry_date = $patron->renew_account
946
947 Extending the subscription to the expiry date.
948
949 =cut
950
951 sub renew_account {
952     my ($self) = @_;
953     my $date;
954     if ( C4::Context->preference('BorrowerRenewalPeriodBase') eq 'combination' ) {
955         $date = ( dt_from_string gt dt_from_string( $self->dateexpiry ) ) ? dt_from_string : dt_from_string( $self->dateexpiry );
956     } else {
957         $date =
958             C4::Context->preference('BorrowerRenewalPeriodBase') eq 'dateexpiry'
959             ? dt_from_string( $self->dateexpiry )
960             : dt_from_string;
961     }
962     my $expiry_date = $self->category->get_expiry_date($date);
963
964     $self->dateexpiry($expiry_date);
965     $self->date_renewed( dt_from_string() );
966     $self->store();
967
968     $self->add_enrolment_fee_if_needed(1);
969
970     logaction( "MEMBERS", "RENEW", $self->borrowernumber, "Membership renewed" ) if C4::Context->preference("BorrowersLog");
971     return dt_from_string( $expiry_date )->truncate( to => 'day' );
972 }
973
974 =head3 has_overdues
975
976 my $has_overdues = $patron->has_overdues;
977
978 Returns the number of patron's overdues
979
980 =cut
981
982 sub has_overdues {
983     my ($self) = @_;
984     my $dtf = Koha::Database->new->schema->storage->datetime_parser;
985     return $self->_result->issues->search({ date_due => { '<' => $dtf->format_datetime( dt_from_string() ) } })->count;
986 }
987
988 =head3 track_login
989
990     $patron->track_login;
991     $patron->track_login({ force => 1 });
992
993     Tracks a (successful) login attempt.
994     The preference TrackLastPatronActivity must be enabled. Or you
995     should pass the force parameter.
996
997 =cut
998
999 sub track_login {
1000     my ( $self, $params ) = @_;
1001     return if
1002         !$params->{force} &&
1003         !C4::Context->preference('TrackLastPatronActivity');
1004     $self->lastseen( dt_from_string() )->store;
1005 }
1006
1007 =head3 move_to_deleted
1008
1009 my $is_moved = $patron->move_to_deleted;
1010
1011 Move a patron to the deletedborrowers table.
1012 This can be done before deleting a patron, to make sure the data are not completely deleted.
1013
1014 =cut
1015
1016 sub move_to_deleted {
1017     my ($self) = @_;
1018     my $patron_infos = $self->unblessed;
1019     delete $patron_infos->{updated_on}; #This ensures the updated_on date in deletedborrowers will be set to the current timestamp
1020     return Koha::Database->new->schema->resultset('Deletedborrower')->create($patron_infos);
1021 }
1022
1023 =head3 can_request_article
1024
1025     if ( $patron->can_request_article( $library->id ) ) { ... }
1026
1027 Returns true if the patron can request articles. As limits apply for the patron
1028 on the same day, those completed the same day are considered as current.
1029
1030 A I<library_id> can be passed as parameter, falling back to userenv if absent.
1031
1032 =cut
1033
1034 sub can_request_article {
1035     my ($self, $library_id) = @_;
1036
1037     $library_id //= C4::Context->userenv ? C4::Context->userenv->{'branch'} : undef;
1038
1039     my $rule = Koha::CirculationRules->get_effective_rule(
1040         {
1041             branchcode   => $library_id,
1042             categorycode => $self->categorycode,
1043             rule_name    => 'open_article_requests_limit'
1044         }
1045     );
1046
1047     my $limit = ($rule) ? $rule->rule_value : undef;
1048
1049     return 1 unless defined $limit;
1050
1051     my $count = Koha::ArticleRequests->search(
1052         [   { borrowernumber => $self->borrowernumber, status => [ 'REQUESTED', 'PENDING', 'PROCESSING' ] },
1053             { borrowernumber => $self->borrowernumber, status => 'COMPLETED', updated_on => { '>=' => \'CAST(NOW() AS DATE)' } },
1054         ]
1055     )->count;
1056     return $count < $limit ? 1 : 0;
1057 }
1058
1059 =head3 article_request_fee
1060
1061     my $fee = $patron->article_request_fee(
1062         {
1063           [ library_id => $library->id, ]
1064         }
1065     );
1066
1067 Returns the fee to be charged to the patron when it places an article request.
1068
1069 A I<library_id> can be passed as parameter, falling back to userenv if absent.
1070
1071 =cut
1072
1073 sub article_request_fee {
1074     my ($self, $params) = @_;
1075
1076     my $library_id = $params->{library_id};
1077
1078     $library_id //= C4::Context->userenv ? C4::Context->userenv->{'branch'} : undef;
1079
1080     my $rule = Koha::CirculationRules->get_effective_rule(
1081         {
1082             branchcode   => $library_id,
1083             categorycode => $self->categorycode,
1084             rule_name    => 'article_request_fee'
1085         }
1086     );
1087
1088     my $fee = ($rule) ? $rule->rule_value + 0 : 0;
1089
1090     return $fee;
1091 }
1092
1093 =head3 add_article_request_fee_if_needed
1094
1095     my $fee = $patron->add_article_request_fee_if_needed(
1096         {
1097           [ item_id    => $item->id,
1098             library_id => $library->id, ]
1099         }
1100     );
1101
1102 If an article request fee needs to be charged, it adds a debit to the patron's
1103 account.
1104
1105 Returns the fee line.
1106
1107 A I<library_id> can be passed as parameter, falling back to userenv if absent.
1108
1109 =cut
1110
1111 sub add_article_request_fee_if_needed {
1112     my ($self, $params) = @_;
1113
1114     my $library_id = $params->{library_id};
1115     my $item_id    = $params->{item_id};
1116
1117     $library_id //= C4::Context->userenv ? C4::Context->userenv->{'branch'} : undef;
1118
1119     my $amount = $self->article_request_fee(
1120         {
1121             library_id => $library_id,
1122         }
1123     );
1124
1125     my $debit_line;
1126
1127     if ( $amount > 0 ) {
1128         $debit_line = $self->account->add_debit(
1129             {
1130                 amount     => $amount,
1131                 user_id    => C4::Context->userenv ? C4::Context->userenv->{'number'} : undef,
1132                 interface  => C4::Context->interface,
1133                 library_id => $library_id,
1134                 type       => 'ARTICLE_REQUEST',
1135                 item_id    => $item_id,
1136             }
1137         );
1138     }
1139
1140     return $debit_line;
1141 }
1142
1143 =head3 article_requests
1144
1145     my $article_requests = $patron->article_requests;
1146
1147 Returns the patron article requests.
1148
1149 =cut
1150
1151 sub article_requests {
1152     my ($self) = @_;
1153
1154     return Koha::ArticleRequests->_new_from_dbic( scalar $self->_result->article_requests );
1155 }
1156
1157 =head3 add_enrolment_fee_if_needed
1158
1159 my $enrolment_fee = $patron->add_enrolment_fee_if_needed($renewal);
1160
1161 Add enrolment fee for a patron if needed.
1162
1163 $renewal - boolean denoting whether this is an account renewal or not
1164
1165 =cut
1166
1167 sub add_enrolment_fee_if_needed {
1168     my ($self, $renewal) = @_;
1169     my $enrolment_fee = $self->category->enrolmentfee;
1170     if ( $enrolment_fee && $enrolment_fee > 0 ) {
1171         my $type = $renewal ? 'ACCOUNT_RENEW' : 'ACCOUNT';
1172         $self->account->add_debit(
1173             {
1174                 amount     => $enrolment_fee,
1175                 user_id    => C4::Context->userenv ? C4::Context->userenv->{'number'} : undef,
1176                 interface  => C4::Context->interface,
1177                 library_id => C4::Context->userenv ? C4::Context->userenv->{'branch'} : undef,
1178                 type       => $type
1179             }
1180         );
1181     }
1182     return $enrolment_fee || 0;
1183 }
1184
1185 =head3 checkouts
1186
1187 my $checkouts = $patron->checkouts
1188
1189 =cut
1190
1191 sub checkouts {
1192     my ($self) = @_;
1193     my $checkouts = $self->_result->issues;
1194     return Koha::Checkouts->_new_from_dbic( $checkouts );
1195 }
1196
1197 =head3 pending_checkouts
1198
1199 my $pending_checkouts = $patron->pending_checkouts
1200
1201 This method will return the same as $self->checkouts, but with a prefetch on
1202 items, biblio and biblioitems.
1203
1204 It has been introduced to replaced the C4::Members::GetPendingIssues subroutine
1205
1206 It should not be used directly, prefer to access fields you need instead of
1207 retrieving all these fields in one go.
1208
1209 =cut
1210
1211 sub pending_checkouts {
1212     my( $self ) = @_;
1213     my $checkouts = $self->_result->issues->search(
1214         {},
1215         {
1216             order_by => [
1217                 { -desc => 'me.timestamp' },
1218                 { -desc => 'issuedate' },
1219                 { -desc => 'issue_id' }, # Sort by issue_id should be enough
1220             ],
1221             prefetch => { item => { biblio => 'biblioitems' } },
1222         }
1223     );
1224     return Koha::Checkouts->_new_from_dbic( $checkouts );
1225 }
1226
1227 =head3 old_checkouts
1228
1229 my $old_checkouts = $patron->old_checkouts
1230
1231 =cut
1232
1233 sub old_checkouts {
1234     my ($self) = @_;
1235     my $old_checkouts = $self->_result->old_issues;
1236     return Koha::Old::Checkouts->_new_from_dbic( $old_checkouts );
1237 }
1238
1239 =head3 overdues
1240
1241 my $overdue_items = $patron->overdues
1242
1243 Return the overdue items
1244
1245 =cut
1246
1247 sub overdues {
1248     my ($self) = @_;
1249     my $dtf = Koha::Database->new->schema->storage->datetime_parser;
1250     return $self->checkouts->search(
1251         {
1252             'me.date_due' => { '<' => $dtf->format_datetime(dt_from_string) },
1253         },
1254         {
1255             prefetch => { item => { biblio => 'biblioitems' } },
1256         }
1257     );
1258 }
1259
1260
1261 =head3 restrictions
1262
1263   my $restrictions = $patron->restrictions;
1264
1265 Returns the patron restrictions.
1266
1267 =cut
1268
1269 sub restrictions {
1270     my ($self) = @_;
1271     my $restrictions_rs = $self->_result->restrictions;
1272     return Koha::Patron::Restrictions->_new_from_dbic($restrictions_rs);
1273 }
1274
1275 =head3 get_routing_lists
1276
1277 my $routinglists = $patron->get_routing_lists
1278
1279 Returns the routing lists a patron is subscribed to.
1280
1281 =cut
1282
1283 sub get_routing_lists {
1284     my ($self) = @_;
1285     my $routing_list_rs = $self->_result->subscriptionroutinglists;
1286     return Koha::Subscription::Routinglists->_new_from_dbic($routing_list_rs);
1287 }
1288
1289 =head3 get_age
1290
1291     my $age = $patron->get_age
1292
1293 Return the age of the patron
1294
1295 =cut
1296
1297 sub get_age {
1298     my ($self)    = @_;
1299
1300     return unless $self->dateofbirth;
1301
1302     my $date_of_birth = dt_from_string( $self->dateofbirth );
1303     my $today         = dt_from_string->truncate( to => 'day' );
1304
1305     return $today->subtract_datetime( $date_of_birth )->years;
1306 }
1307
1308 =head3 is_valid_age
1309
1310 my $is_valid = $patron->is_valid_age
1311
1312 Return 1 if patron's age is between allowed limits, returns 0 if it's not.
1313
1314 =cut
1315
1316 sub is_valid_age {
1317     my ($self) = @_;
1318     my $age = $self->get_age;
1319
1320     my $patroncategory = $self->category;
1321     my ($low,$high) = ($patroncategory->dateofbirthrequired, $patroncategory->upperagelimit);
1322
1323     return (defined($age) && (($high && ($age > $high)) or ($low && ($age < $low)))) ? 0 : 1;
1324 }
1325
1326 =head3 account
1327
1328 my $account = $patron->account
1329
1330 =cut
1331
1332 sub account {
1333     my ($self) = @_;
1334     return Koha::Account->new( { patron_id => $self->borrowernumber } );
1335 }
1336
1337 =head3 holds
1338
1339 my $holds = $patron->holds
1340
1341 Return all the holds placed by this patron
1342
1343 =cut
1344
1345 sub holds {
1346     my ($self) = @_;
1347     my $holds_rs = $self->_result->reserves->search( {}, { order_by => 'reservedate' } );
1348     return Koha::Holds->_new_from_dbic($holds_rs);
1349 }
1350
1351 =head3 old_holds
1352
1353 my $old_holds = $patron->old_holds
1354
1355 Return all the historical holds for this patron
1356
1357 =cut
1358
1359 sub old_holds {
1360     my ($self) = @_;
1361     my $old_holds_rs = $self->_result->old_reserves->search( {}, { order_by => 'reservedate' } );
1362     return Koha::Old::Holds->_new_from_dbic($old_holds_rs);
1363 }
1364
1365 =head3 curbside_pickups
1366
1367 my $curbside_pickups = $patron->curbside_pickups;
1368
1369 Return all the curbside pickups for this patron
1370
1371 =cut
1372
1373 sub curbside_pickups {
1374     my ($self) = @_;
1375     my $curbside_pickups_rs = $self->_result->curbside_pickups_borrowernumbers->search;
1376     return Koha::CurbsidePickups->_new_from_dbic($curbside_pickups_rs);
1377 }
1378
1379 =head3 return_claims
1380
1381 my $return_claims = $patron->return_claims
1382
1383 =cut
1384
1385 sub return_claims {
1386     my ($self) = @_;
1387     my $return_claims = $self->_result->return_claims_borrowernumbers;
1388     return Koha::Checkouts::ReturnClaims->_new_from_dbic( $return_claims );
1389 }
1390
1391 =head3 notice_email_address
1392
1393   my $email = $patron->notice_email_address;
1394
1395 Return the email address of patron used for notices.
1396 Returns the empty string if no email address.
1397
1398 =cut
1399
1400 sub notice_email_address{
1401     my ( $self ) = @_;
1402
1403     my $which_address = C4::Context->preference("AutoEmailPrimaryAddress");
1404     # if syspref is set to 'first valid' (value == OFF), look up email address
1405     if ( $which_address eq 'OFF' ) {
1406         return $self->first_valid_email_address;
1407     }
1408
1409     return $self->$which_address || '';
1410 }
1411
1412 =head3 first_valid_email_address
1413
1414 my $first_valid_email_address = $patron->first_valid_email_address
1415
1416 Return the first valid email address for a patron.
1417 For now, the order  is defined as email, emailpro, B_email.
1418 Returns the empty string if the borrower has no email addresses.
1419
1420 =cut
1421
1422 sub first_valid_email_address {
1423     my ($self) = @_;
1424
1425     return $self->email() || $self->emailpro() || $self->B_email() || q{};
1426 }
1427
1428 =head3 get_club_enrollments
1429
1430 =cut
1431
1432 sub get_club_enrollments {
1433     my ( $self ) = @_;
1434
1435     return Koha::Club::Enrollments->search( { borrowernumber => $self->borrowernumber(), date_canceled => undef } );
1436 }
1437
1438 =head3 get_enrollable_clubs
1439
1440 =cut
1441
1442 sub get_enrollable_clubs {
1443     my ( $self, $is_enrollable_from_opac ) = @_;
1444
1445     my $params;
1446     $params->{is_enrollable_from_opac} = $is_enrollable_from_opac
1447       if $is_enrollable_from_opac;
1448     $params->{is_email_required} = 0 unless $self->first_valid_email_address();
1449
1450     $params->{borrower} = $self;
1451
1452     return Koha::Clubs->get_enrollable($params);
1453 }
1454
1455 =head3 account_locked
1456
1457 my $is_locked = $patron->account_locked
1458
1459 Return true if the patron has reached the maximum number of login attempts
1460 (see pref FailedLoginAttempts). If login_attempts is < 0, this is interpreted
1461 as an administrative lockout (independent of FailedLoginAttempts; see also
1462 Koha::Patron->lock).
1463 Otherwise return false.
1464 If the pref is not set (empty string, null or 0), the feature is considered as
1465 disabled.
1466
1467 =cut
1468
1469 sub account_locked {
1470     my ($self) = @_;
1471     my $FailedLoginAttempts = C4::Context->preference('FailedLoginAttempts');
1472     return 1 if $FailedLoginAttempts
1473           and $self->login_attempts
1474           and $self->login_attempts >= $FailedLoginAttempts;
1475     return 1 if ($self->login_attempts || 0) < 0; # administrative lockout
1476     return 0;
1477 }
1478
1479 =head3 can_see_patron_infos
1480
1481 my $can_see = $patron->can_see_patron_infos( $patron );
1482
1483 Return true if the patron (usually the logged in user) can see the patron's infos for a given patron
1484
1485 =cut
1486
1487 sub can_see_patron_infos {
1488     my ( $self, $patron ) = @_;
1489     return unless $patron;
1490     return $self->can_see_patrons_from( $patron->branchcode );
1491 }
1492
1493 =head3 can_see_patrons_from
1494
1495 my $can_see = $patron->can_see_patrons_from( $branchcode );
1496
1497 Return true if the patron (usually the logged in user) can see the patron's infos from a given library
1498
1499 =cut
1500
1501 sub can_see_patrons_from {
1502     my ( $self, $branchcode ) = @_;
1503
1504     return $self->can_see_things_from(
1505         {
1506             branchcode => $branchcode,
1507             permission => 'borrowers',
1508             subpermission => 'view_borrower_infos_from_any_libraries',
1509         }
1510     );
1511 }
1512
1513 =head3 can_edit_item
1514
1515 my $can_edit = $patron->can_edit_item( $item );
1516
1517 Return true if the patron (usually the logged in user) can edit the given item
1518
1519 The parameter can be a Koha::Item, an item hashref, or a branchcode.
1520
1521 =cut
1522
1523 sub can_edit_item {
1524     my ( $self, $item ) = @_;
1525
1526     my $userenv = C4::Context->userenv();
1527
1528     my $ref = ref($item);
1529
1530     my $branchcode =
1531         $ref eq 'Koha::Item' ? $item->homebranch
1532       : $ref eq 'HASH'       ? $item->{homebranch}
1533       : $ref eq q{}          ? $item
1534       :                        undef;
1535
1536     return unless $branchcode;
1537
1538     return 1 if C4::Context->IsSuperLibrarian();
1539
1540     if ( $userenv && C4::Context->preference('IndependentBranches') ) {
1541         return $userenv->{branch} eq $branchcode;
1542     }
1543
1544     return $self->can_edit_items_from($branchcode);
1545 }
1546
1547 =head3 can_edit_items_from
1548
1549     my $can_edit = $patron->can_edit_items_from( $branchcode );
1550
1551 Return true if the I<Koha::Patron> can edit items from the given branchcode
1552
1553 =cut
1554
1555 sub can_edit_items_from {
1556     my ( $self, $branchcode ) = @_;
1557
1558     return $self->can_see_things_from(
1559         {
1560             branchcode    => $branchcode,
1561             permission    => 'editcatalogue',
1562             subpermission => 'edit_any_item',
1563         }
1564     );
1565 }
1566
1567 =head3 libraries_where_can_edit_items
1568
1569     my $libraries = $patron->libraries_where_can_edit_items;
1570
1571 Return the list of branchcodes(!) of libraries the patron is allowed to items for.
1572 The branchcodes are arbitrarily returned sorted.
1573 We are supposing here that the object is related to the logged in patron (use of C4::Context::only_my_library)
1574
1575 An empty array means no restriction, the user can edit any item.
1576
1577 =cut
1578
1579 sub libraries_where_can_edit_items {
1580     my ($self) = @_;
1581
1582     return $self->libraries_where_can_see_things(
1583         {
1584             permission    => 'editcatalogue',
1585             subpermission => 'edit_any_item',
1586             group_feature => 'ft_limit_item_editing',
1587         }
1588     );
1589 }
1590
1591 =head3 libraries_where_can_see_patrons
1592
1593 my $libraries = $patron->libraries_where_can_see_patrons;
1594
1595 Return the list of branchcodes(!) of libraries the patron is allowed to see other patron's infos.
1596 The branchcodes are arbitrarily returned sorted.
1597 We are supposing here that the object is related to the logged in patron (use of C4::Context::only_my_library)
1598
1599 An empty array means no restriction, the patron can see patron's infos from any libraries.
1600
1601 =cut
1602
1603 sub libraries_where_can_see_patrons {
1604     my ($self) = @_;
1605
1606     return $self->libraries_where_can_see_things(
1607         {
1608             permission    => 'borrowers',
1609             subpermission => 'view_borrower_infos_from_any_libraries',
1610             group_feature => 'ft_hide_patron_info',
1611         }
1612     );
1613 }
1614
1615 =head3 can_see_things_from
1616
1617 my $can_see = $patron->can_see_things_from( $branchcode );
1618
1619 Return true if the I<Koha::Patron> can perform some action on the given thing
1620
1621 =cut
1622
1623 sub can_see_things_from {
1624     my ( $self, $params ) = @_;
1625     my $branchcode    = $params->{branchcode};
1626     my $permission    = $params->{permission};
1627     my $subpermission = $params->{subpermission};
1628
1629     my $can = 0;
1630     if ( $self->branchcode eq $branchcode ) {
1631         $can = 1;
1632     } elsif ( $self->has_permission( { $permission => $subpermission } ) ) {
1633         $can = 1;
1634     } elsif ( my $library_groups = $self->library->library_groups ) {
1635         while ( my $library_group = $library_groups->next ) {
1636             if ( $library_group->parent->has_child( $branchcode ) ) {
1637                 $can = 1;
1638                 last;
1639             }
1640         }
1641     }
1642     return $can;
1643 }
1644
1645 =head3 can_log_into
1646
1647 my $can_log_into = $patron->can_log_into( $library );
1648
1649 Given a I<Koha::Library> object, it returns a boolean representing
1650 the fact the patron can log into a the library.
1651
1652 =cut
1653
1654 sub can_log_into {
1655     my ( $self, $library ) = @_;
1656
1657     my $can = 0;
1658
1659     if ( C4::Context->preference('IndependentBranches') ) {
1660         $can = 1
1661           if $self->is_superlibrarian
1662           or $self->branchcode eq $library->id;
1663     }
1664     else {
1665         # no restrictions
1666         $can = 1;
1667     }
1668
1669    return $can;
1670 }
1671
1672 =head3 libraries_where_can_see_things
1673
1674     my $libraries = $patron->libraries_where_can_see_things;
1675
1676 Returns a list of libraries where an aribitarary action is allowed to be taken by the logged in librarian
1677 against an object based on some branchcode related to the object ( patron branchcode, item homebranch, etc ).
1678
1679 We are supposing here that the object is related to the logged in librarian (use of C4::Context::only_my_library)
1680
1681 An empty array means no restriction, the thing can see thing's infos from any libraries.
1682
1683 =cut
1684
1685 sub libraries_where_can_see_things {
1686     my ( $self, $params ) = @_;
1687     my $permission    = $params->{permission};
1688     my $subpermission = $params->{subpermission};
1689     my $group_feature = $params->{group_feature};
1690
1691     my $userenv = C4::Context->userenv;
1692
1693     return () unless $userenv; # For tests, but userenv should be defined in tests...
1694
1695     my @restricted_branchcodes;
1696     if (C4::Context::only_my_library) {
1697         push @restricted_branchcodes, $self->branchcode;
1698     }
1699     else {
1700         unless (
1701             $self->has_permission(
1702                 { $permission => $subpermission }
1703             )
1704           )
1705         {
1706             my $library_groups = $self->library->library_groups({ $group_feature => 1 });
1707             if ( $library_groups->count )
1708             {
1709                 while ( my $library_group = $library_groups->next ) {
1710                     my $parent = $library_group->parent;
1711                     if ( $parent->has_child( $self->branchcode ) ) {
1712                         push @restricted_branchcodes, $parent->children->get_column('branchcode');
1713                     }
1714                 }
1715             }
1716
1717             @restricted_branchcodes = ( $self->branchcode ) unless @restricted_branchcodes;
1718         }
1719     }
1720
1721     @restricted_branchcodes = grep { defined $_ } @restricted_branchcodes;
1722     @restricted_branchcodes = uniq(@restricted_branchcodes);
1723     @restricted_branchcodes = sort(@restricted_branchcodes);
1724     return @restricted_branchcodes;
1725 }
1726
1727 =head3 has_permission
1728
1729 my $permission = $patron->has_permission($required);
1730
1731 See C4::Auth::haspermission for details of syntax for $required
1732
1733 =cut
1734
1735 sub has_permission {
1736     my ( $self, $flagsrequired ) = @_;
1737     return unless $self->userid;
1738     # TODO code from haspermission needs to be moved here!
1739     return C4::Auth::haspermission( $self->userid, $flagsrequired );
1740 }
1741
1742 =head3 is_superlibrarian
1743
1744   my $is_superlibrarian = $patron->is_superlibrarian;
1745
1746 Return true if the patron is a superlibrarian.
1747
1748 =cut
1749
1750 sub is_superlibrarian {
1751     my ($self) = @_;
1752     return $self->has_permission( { superlibrarian => 1 } ) ? 1 : 0;
1753 }
1754
1755 =head3 is_adult
1756
1757 my $is_adult = $patron->is_adult
1758
1759 Return true if the patron has a category with a type Adult (A) or Organization (I)
1760
1761 =cut
1762
1763 sub is_adult {
1764     my ( $self ) = @_;
1765     return $self->category->category_type =~ /^(A|I)$/ ? 1 : 0;
1766 }
1767
1768 =head3 is_child
1769
1770 my $is_child = $patron->is_child
1771
1772 Return true if the patron has a category with a type Child (C)
1773
1774 =cut
1775
1776 sub is_child {
1777     my( $self ) = @_;
1778     return $self->category->category_type eq 'C' ? 1 : 0;
1779 }
1780
1781 =head3 has_valid_userid
1782
1783 my $patron = Koha::Patrons->find(42);
1784 $patron->userid( $new_userid );
1785 my $has_a_valid_userid = $patron->has_valid_userid
1786
1787 my $patron = Koha::Patron->new( $params );
1788 my $has_a_valid_userid = $patron->has_valid_userid
1789
1790 Return true if the current userid of this patron is valid/unique, otherwise false.
1791
1792 Note that this should be done in $self->store instead and raise an exception if needed.
1793
1794 =cut
1795
1796 sub has_valid_userid {
1797     my ($self) = @_;
1798
1799     return 0 unless $self->userid;
1800
1801     return 0 if ( $self->userid eq C4::Context->config('user') );    # DB user
1802
1803     my $already_exists = Koha::Patrons->search(
1804         {
1805             userid => $self->userid,
1806             (
1807                 $self->in_storage
1808                 ? ( borrowernumber => { '!=' => $self->borrowernumber } )
1809                 : ()
1810             ),
1811         }
1812     )->count;
1813     return $already_exists ? 0 : 1;
1814 }
1815
1816 =head3 generate_userid
1817
1818 my $patron = Koha::Patron->new( $params );
1819 $patron->generate_userid
1820
1821 Generate a userid using the $surname and the $firstname (if there is a value in $firstname).
1822
1823 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).
1824
1825 =cut
1826
1827 sub generate_userid {
1828     my ($self) = @_;
1829     my $offset = 0;
1830     my $firstname = $self->firstname // q{};
1831     my $surname = $self->surname // q{};
1832     #The script will "do" the following code and increment the $offset until the generated userid is unique
1833     do {
1834       $firstname =~ s/[[:digit:][:space:][:blank:][:punct:][:cntrl:]]//g;
1835       $surname =~ s/[[:digit:][:space:][:blank:][:punct:][:cntrl:]]//g;
1836       my $userid = lc(($firstname)? "$firstname.$surname" : $surname);
1837       $userid = NFKD( $userid );
1838       $userid =~ s/\p{NonspacingMark}//g;
1839       $userid .= $offset unless $offset == 0;
1840       $self->userid( $userid );
1841       $offset++;
1842      } while (! $self->has_valid_userid );
1843
1844      return $self;
1845 }
1846
1847 =head3 add_extended_attribute
1848
1849 =cut
1850
1851 sub add_extended_attribute {
1852     my ($self, $attribute) = @_;
1853
1854     return Koha::Patron::Attribute->new(
1855         {
1856             %$attribute,
1857             ( borrowernumber => $self->borrowernumber ),
1858         }
1859     )->store;
1860
1861 }
1862
1863 =head3 extended_attributes
1864
1865 Return object of Koha::Patron::Attributes type with all attributes set for this patron
1866
1867 Or setter FIXME
1868
1869 =cut
1870
1871 sub extended_attributes {
1872     my ( $self, $attributes ) = @_;
1873     if ($attributes) {    # setter
1874         my $schema = $self->_result->result_source->schema;
1875         $schema->txn_do(
1876             sub {
1877                 # Remove the existing one
1878                 $self->extended_attributes->filter_by_branch_limitations->delete;
1879
1880                 # Insert the new ones
1881                 my $new_types = {};
1882                 for my $attribute (@$attributes) {
1883                     $self->add_extended_attribute($attribute);
1884                     $new_types->{$attribute->{code}} = 1;
1885                 }
1886
1887                 # Check globally mandatory types
1888                 my @required_attribute_types =
1889                     Koha::Patron::Attribute::Types->search(
1890                         {
1891                             mandatory => 1,
1892                             category_code => [ undef, $self->categorycode ],
1893                             'borrower_attribute_types_branches.b_branchcode' =>
1894                               undef,
1895                         },
1896                         { join => 'borrower_attribute_types_branches' }
1897                     )->get_column('code');
1898                 for my $type ( @required_attribute_types ) {
1899                     Koha::Exceptions::Patron::MissingMandatoryExtendedAttribute->throw(
1900                         type => $type,
1901                     ) if !$new_types->{$type};
1902                 }
1903             }
1904         );
1905     }
1906
1907     my $rs = $self->_result->borrower_attributes;
1908     # We call search to use the filters in Koha::Patron::Attributes->search
1909     return Koha::Patron::Attributes->_new_from_dbic($rs)->search;
1910 }
1911
1912 =head3 messages
1913
1914     my $messages = $patron->messages;
1915
1916 Return the message attached to the patron.
1917
1918 =cut
1919
1920 sub messages {
1921     my ( $self ) = @_;
1922     my $messages_rs = $self->_result->messages_borrowernumbers->search;
1923     return Koha::Patron::Messages->_new_from_dbic($messages_rs);
1924 }
1925
1926 =head3 lock
1927
1928     Koha::Patrons->find($id)->lock({ expire => 1, remove => 1 });
1929
1930     Lock and optionally expire a patron account.
1931     Remove holds and article requests if remove flag set.
1932     In order to distinguish from locking by entering a wrong password, let's
1933     call this an administrative lockout.
1934
1935 =cut
1936
1937 sub lock {
1938     my ( $self, $params ) = @_;
1939     $self->login_attempts( ADMINISTRATIVE_LOCKOUT );
1940     if( $params->{expire} ) {
1941         $self->dateexpiry( dt_from_string->subtract(days => 1) );
1942     }
1943     $self->store;
1944     if( $params->{remove} ) {
1945         $self->holds->delete;
1946         $self->article_requests->delete;
1947     }
1948     return $self;
1949 }
1950
1951 =head3 anonymize
1952
1953     Koha::Patrons->find($id)->anonymize;
1954
1955     Anonymize or clear borrower fields. Fields in BorrowerMandatoryField
1956     are randomized, other personal data is cleared too.
1957     Patrons with issues are skipped.
1958
1959 =cut
1960
1961 sub anonymize {
1962     my ( $self ) = @_;
1963     if( $self->_result->issues->count ) {
1964         warn "Exiting anonymize: patron ".$self->borrowernumber." still has issues";
1965         return;
1966     }
1967     # Mandatory fields come from the corresponding pref, but email fields
1968     # are removed since scrambled email addresses only generate errors
1969     my $mandatory = { map { (lc $_, 1); } grep { !/email/ }
1970         split /\s*\|\s*/, C4::Context->preference('BorrowerMandatoryField') };
1971     $mandatory->{userid} = 1; # needed since sub store does not clear field
1972     my @columns = $self->_result->result_source->columns;
1973     @columns = grep { !/borrowernumber|branchcode|categorycode|^date|password|flags|updated_on|lastseen|lang|login_attempts|anonymized|auth_method/ } @columns;
1974     push @columns, 'dateofbirth'; # add this date back in
1975     foreach my $col (@columns) {
1976         $self->_anonymize_column($col, $mandatory->{lc $col} );
1977     }
1978     $self->anonymized(1)->store;
1979 }
1980
1981 sub _anonymize_column {
1982     my ( $self, $col, $mandatory ) = @_;
1983     my $col_info = $self->_result->result_source->column_info($col);
1984     my $type = $col_info->{data_type};
1985     my $nullable = $col_info->{is_nullable};
1986     my $val;
1987     if( $type =~ /char|text/ ) {
1988         $val = $mandatory
1989             ? Koha::Token->new->generate({ pattern => '\w{10}' })
1990             : $nullable
1991             ? undef
1992             : q{};
1993     } elsif( $type =~ /integer|int$|float|dec|double/ ) {
1994         $val = $nullable ? undef : 0;
1995     } elsif( $type =~ /date|time/ ) {
1996         $val = $nullable ? undef : dt_from_string;
1997     }
1998     $self->$col($val);
1999 }
2000
2001 =head3 add_guarantor
2002
2003     my $relationship = $patron->add_guarantor(
2004         {
2005             borrowernumber => $borrowernumber,
2006             relationships  => $relationship,
2007         }
2008     );
2009
2010     Adds a new guarantor to a patron.
2011
2012 =cut
2013
2014 sub add_guarantor {
2015     my ( $self, $params ) = @_;
2016
2017     my $guarantor_id = $params->{guarantor_id};
2018     my $relationship = $params->{relationship};
2019
2020     return Koha::Patron::Relationship->new(
2021         {
2022             guarantee_id => $self->id,
2023             guarantor_id => $guarantor_id,
2024             relationship => $relationship
2025         }
2026     )->store();
2027 }
2028
2029 =head3 get_extended_attribute
2030
2031 my $attribute_value = $patron->get_extended_attribute( $code );
2032
2033 Return the attribute for the code passed in parameter.
2034
2035 It not exist it returns undef
2036
2037 Note that this will not work for repeatable attribute types.
2038
2039 Maybe you certainly not want to use this method, it is actually only used for SHOW_BARCODE
2040 (which should be a real patron's attribute (not extended)
2041
2042 =cut
2043
2044 sub get_extended_attribute {
2045     my ( $self, $code, $value ) = @_;
2046     my $rs = $self->_result->borrower_attributes;
2047     return unless $rs;
2048     my $attribute = $rs->search({ code => $code, ( $value ? ( attribute => $value ) : () ) });
2049     return unless $attribute->count;
2050     return $attribute->next;
2051 }
2052
2053 =head3 to_api
2054
2055     my $json = $patron->to_api;
2056
2057 Overloaded method that returns a JSON representation of the Koha::Patron object,
2058 suitable for API output.
2059
2060 =cut
2061
2062 sub to_api {
2063     my ( $self, $params ) = @_;
2064
2065     my $json_patron = $self->SUPER::to_api( $params );
2066
2067     $json_patron->{restricted} = ( $self->is_debarred )
2068                                     ? Mojo::JSON->true
2069                                     : Mojo::JSON->false;
2070
2071     return $json_patron;
2072 }
2073
2074 =head3 to_api_mapping
2075
2076 This method returns the mapping for representing a Koha::Patron object
2077 on the API.
2078
2079 =cut
2080
2081 sub to_api_mapping {
2082     return {
2083         borrowernotes       => 'staff_notes',
2084         borrowernumber      => 'patron_id',
2085         branchcode          => 'library_id',
2086         categorycode        => 'category_id',
2087         checkprevcheckout   => 'check_previous_checkout',
2088         contactfirstname    => undef,                     # Unused
2089         contactname         => undef,                     # Unused
2090         contactnote         => 'altaddress_notes',
2091         contacttitle        => undef,                     # Unused
2092         dateenrolled        => 'date_enrolled',
2093         dateexpiry          => 'expiry_date',
2094         dateofbirth         => 'date_of_birth',
2095         debarred            => undef,                     # replaced by 'restricted'
2096         debarredcomment     => undef,    # calculated, API consumers will use /restrictions instead
2097         emailpro            => 'secondary_email',
2098         flags               => undef,    # permissions manipulation handled in /permissions
2099         gonenoaddress       => 'incorrect_address',
2100         lastseen            => 'last_seen',
2101         lost                => 'patron_card_lost',
2102         opacnote            => 'opac_notes',
2103         othernames          => 'other_name',
2104         password            => undef,            # password manipulation handled in /password
2105         phonepro            => 'secondary_phone',
2106         relationship        => 'relationship_type',
2107         sex                 => 'gender',
2108         smsalertnumber      => 'sms_number',
2109         sort1               => 'statistics_1',
2110         sort2               => 'statistics_2',
2111         autorenew_checkouts => 'autorenew_checkouts',
2112         streetnumber        => 'street_number',
2113         streettype          => 'street_type',
2114         zipcode             => 'postal_code',
2115         B_address           => 'altaddress_address',
2116         B_address2          => 'altaddress_address2',
2117         B_city              => 'altaddress_city',
2118         B_country           => 'altaddress_country',
2119         B_email             => 'altaddress_email',
2120         B_phone             => 'altaddress_phone',
2121         B_state             => 'altaddress_state',
2122         B_streetnumber      => 'altaddress_street_number',
2123         B_streettype        => 'altaddress_street_type',
2124         B_zipcode           => 'altaddress_postal_code',
2125         altcontactaddress1  => 'altcontact_address',
2126         altcontactaddress2  => 'altcontact_address2',
2127         altcontactaddress3  => 'altcontact_city',
2128         altcontactcountry   => 'altcontact_country',
2129         altcontactfirstname => 'altcontact_firstname',
2130         altcontactphone     => 'altcontact_phone',
2131         altcontactsurname   => 'altcontact_surname',
2132         altcontactstate     => 'altcontact_state',
2133         altcontactzipcode   => 'altcontact_postal_code',
2134         password_expiration_date => undef,
2135         primary_contact_method => undef,
2136         secret              => undef,
2137         auth_method         => undef,
2138     };
2139 }
2140
2141 =head3 queue_notice
2142
2143     Koha::Patrons->queue_notice({ letter_params => $letter_params, message_name => 'DUE'});
2144     Koha::Patrons->queue_notice({ letter_params => $letter_params, message_transports => \@message_transports });
2145     Koha::Patrons->queue_notice({ letter_params => $letter_params, message_transports => \@message_transports, test_mode => 1 });
2146
2147     Queue messages to a patron. Can pass a message that is part of the message_attributes
2148     table or supply the transport to use.
2149
2150     If passed a message name we retrieve the patrons preferences for transports
2151     Otherwise we use the supplied transport. In the case of email or sms we fall back to print if
2152     we have no address/number for sending
2153
2154     $letter_params is a hashref of the values to be passed to GetPreparedLetter
2155
2156     test_mode will only report which notices would be sent, but nothing will be queued
2157
2158 =cut
2159
2160 sub queue_notice {
2161     my ( $self, $params ) = @_;
2162     my $letter_params = $params->{letter_params};
2163     my $test_mode = $params->{test_mode};
2164
2165     return unless $letter_params;
2166     return unless exists $params->{message_name} xor $params->{message_transports}; # We only want one of these
2167
2168     my $library = Koha::Libraries->find( $letter_params->{branchcode} );
2169     my $from_email_address = $library->from_email_address;
2170
2171     my @message_transports;
2172     my $letter_code;
2173     $letter_code = $letter_params->{letter_code};
2174     if( $params->{message_name} ){
2175         my $messaging_prefs = C4::Members::Messaging::GetMessagingPreferences( {
2176                 borrowernumber => $letter_params->{borrowernumber},
2177                 message_name => $params->{message_name}
2178         } );
2179         @message_transports = ( keys %{ $messaging_prefs->{transports} } );
2180         $letter_code = $messaging_prefs->{transports}->{$message_transports[0]} unless $letter_code;
2181     } else {
2182         @message_transports = @{$params->{message_transports}};
2183     }
2184     return unless defined $letter_code;
2185     $letter_params->{letter_code} = $letter_code;
2186     my $print_sent = 0;
2187     my %return;
2188     foreach my $mtt (@message_transports){
2189         next if ($mtt eq 'itiva' and C4::Context->preference('TalkingTechItivaPhoneNotification') );
2190         # Notice is handled by TalkingTech_itiva_outbound.pl
2191         if (   ( $mtt eq 'email' and not $self->notice_email_address )
2192             or ( $mtt eq 'sms'   and not $self->smsalertnumber )
2193             or ( $mtt eq 'phone' and not $self->phone ) )
2194         {
2195             push @{ $return{fallback} }, $mtt;
2196             $mtt = 'print';
2197         }
2198         next if $mtt eq 'print' && $print_sent;
2199         $letter_params->{message_transport_type} = $mtt;
2200         my $letter = C4::Letters::GetPreparedLetter( %$letter_params );
2201         C4::Letters::EnqueueLetter({
2202             letter => $letter,
2203             borrowernumber => $self->borrowernumber,
2204             from_address   => $from_email_address,
2205             message_transport_type => $mtt
2206         }) unless $test_mode;
2207         push @{$return{sent}}, $mtt;
2208         $print_sent = 1 if $mtt eq 'print';
2209     }
2210     return \%return;
2211 }
2212
2213 =head3 safe_to_delete
2214
2215     my $result = $patron->safe_to_delete;
2216     if ( $result eq 'has_guarantees' ) { ... }
2217     elsif ( $result ) { ... }
2218     else { # cannot delete }
2219
2220 This method tells if the Koha:Patron object can be deleted. Possible return values
2221
2222 =over 4
2223
2224 =item 'ok'
2225
2226 =item 'has_checkouts'
2227
2228 =item 'has_debt'
2229
2230 =item 'has_guarantees'
2231
2232 =item 'is_anonymous_patron'
2233
2234 =back
2235
2236 =cut
2237
2238 sub safe_to_delete {
2239     my ($self) = @_;
2240
2241     my $anonymous_patron = C4::Context->preference('AnonymousPatron');
2242
2243     my $error;
2244
2245     if ( $anonymous_patron && $self->id eq $anonymous_patron ) {
2246         $error = 'is_anonymous_patron';
2247     }
2248     elsif ( $self->checkouts->count ) {
2249         $error = 'has_checkouts';
2250     }
2251     elsif ( $self->account->outstanding_debits->total_outstanding > 0 ) {
2252         $error = 'has_debt';
2253     }
2254     elsif ( $self->guarantee_relationships->count ) {
2255         $error = 'has_guarantees';
2256     }
2257
2258     if ( $error ) {
2259         return Koha::Result::Boolean->new(0)->add_message({ message => $error });
2260     }
2261
2262     return Koha::Result::Boolean->new(1);
2263 }
2264
2265 =head3 recalls
2266
2267     my $recalls = $patron->recalls;
2268
2269 Return the patron's recalls.
2270
2271 =cut
2272
2273 sub recalls {
2274     my ( $self ) = @_;
2275
2276     return Koha::Recalls->search({ patron_id => $self->borrowernumber });
2277 }
2278
2279 =head3 account_balance
2280
2281     my $balance = $patron->account_balance
2282
2283 Return the patron's account balance
2284
2285 =cut
2286
2287 sub account_balance {
2288     my ($self) = @_;
2289     return $self->account->balance;
2290 }
2291
2292 =head3 notify_library_of_registration
2293
2294 $patron->notify_library_of_registration( $email_patron_registrations );
2295
2296 Send patron registration email to library if EmailPatronRegistrations system preference is enabled.
2297
2298 =cut
2299
2300 sub notify_library_of_registration {
2301     my ( $self, $email_patron_registrations ) = @_;
2302
2303     if (
2304         my $letter = C4::Letters::GetPreparedLetter(
2305             module      => 'members',
2306             letter_code => 'OPAC_REG',
2307             branchcode  => $self->branchcode,
2308             lang        => $self->lang || 'default',
2309             tables      => {
2310                 'borrowers' => $self->borrowernumber
2311             },
2312         )
2313     ) {
2314         my $to_address;
2315         if ( $email_patron_registrations eq "BranchEmailAddress" ) {
2316             my $library = Koha::Libraries->find( $self->branchcode );
2317             $to_address = $library->inbound_email_address;
2318         }
2319         elsif ( $email_patron_registrations eq "KohaAdminEmailAddress" ) {
2320             $to_address = C4::Context->preference('ReplytoDefault')
2321             || C4::Context->preference('KohaAdminEmailAddress');
2322         }
2323         else {
2324             $to_address =
2325                 C4::Context->preference('EmailAddressForPatronRegistrations')
2326                 || C4::Context->preference('ReplytoDefault')
2327                 || C4::Context->preference('KohaAdminEmailAddress');
2328         }
2329
2330         my $message_id = C4::Letters::EnqueueLetter(
2331             {
2332                 letter                 => $letter,
2333                 borrowernumber         => $self->borrowernumber,
2334                 to_address             => $to_address,
2335                 message_transport_type => 'email'
2336             }
2337         ) or warn "can't enqueue letter $letter";
2338         if ( $message_id ) {
2339             return 1;
2340         }
2341     }
2342 }
2343
2344 =head3 has_messaging_preference
2345
2346 my $bool = $patron->has_messaging_preference({
2347     message_name => $message_name, # A value from message_attributes.message_name
2348     message_transport_type => $message_transport_type, # email, sms, phone, itiva, etc...
2349     wants_digest => $wants_digest, # 1 if you are looking for the digest version, don't pass if you just want either
2350 });
2351
2352 =cut
2353
2354 sub has_messaging_preference {
2355     my ( $self, $params ) = @_;
2356
2357     my $message_name           = $params->{message_name};
2358     my $message_transport_type = $params->{message_transport_type};
2359     my $wants_digest           = $params->{wants_digest};
2360
2361     return $self->_result->search_related_rs(
2362         'borrower_message_preferences',
2363         $params,
2364         {
2365             prefetch =>
2366               [ 'borrower_message_transport_preferences', 'message_attribute' ]
2367         }
2368     )->count;
2369 }
2370
2371 =head3 can_patron_change_staff_only_lists
2372
2373 $patron->can_patron_change_staff_only_lists;
2374
2375 Return 1 if a patron has 'Superlibrarian' or 'Catalogue' permission.
2376 Otherwise, return 0.
2377
2378 =cut
2379
2380 sub can_patron_change_staff_only_lists {
2381     my ( $self, $params ) = @_;
2382     return 1 if C4::Auth::haspermission( $self->userid, { 'catalogue' => 1 });
2383     return 0;
2384 }
2385
2386 =head3 encode_secret
2387
2388   $patron->encode_secret($secret32);
2389
2390 Secret (TwoFactorAuth expects it in base32 format) is encrypted.
2391 You still need to call ->store.
2392
2393 =cut
2394
2395 sub encode_secret {
2396     my ( $self, $secret ) = @_;
2397     if( $secret ) {
2398         return $self->secret( Koha::Encryption->new->encrypt_hex($secret) );
2399     }
2400     return $self->secret($secret);
2401 }
2402
2403 =head3 decoded_secret
2404
2405   my $secret32 = $patron->decoded_secret;
2406
2407 Decode the patron secret. We expect to get back a base32 string, but this
2408 is not checked here. Caller of encode_secret is responsible for that.
2409
2410 =cut
2411
2412 sub decoded_secret {
2413     my ( $self ) = @_;
2414     if( $self->secret ) {
2415         return Koha::Encryption->new->decrypt_hex( $self->secret );
2416     }
2417     return $self->secret;
2418 }
2419
2420 =head3 virtualshelves
2421
2422     my $shelves = $patron->virtualshelves;
2423
2424 =cut
2425
2426 sub virtualshelves {
2427     my $self = shift;
2428     return Koha::Virtualshelves->_new_from_dbic( scalar $self->_result->virtualshelves );
2429 }
2430
2431 =head2 Internal methods
2432
2433 =head3 _type
2434
2435 =cut
2436
2437 sub _type {
2438     return 'Borrower';
2439 }
2440
2441 =head1 AUTHORS
2442
2443 Kyle M Hall <kyle@bywatersolutions.com>
2444 Alex Sassmannshausen <alex.sassmannshausen@ptfs-europe.com>
2445 Martin Renvoize <martin.renvoize@ptfs-europe.com>
2446
2447 =cut
2448
2449 1;