Bug 30477: Add new UNIMARC installer translation files
[koha.git] / members / memberentry.pl
1 #!/usr/bin/perl
2
3 # Copyright 2006 SAN OUEST PROVENCE et Paul POULAIN
4 # Copyright 2010 BibLibre
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 # pragma
22 use Modern::Perl;
23
24 # external modules
25 use CGI qw ( -utf8 );
26
27 # internal modules
28 use C4::Auth qw( get_template_and_user haspermission );
29 use C4::Context;
30 use C4::Output qw( output_and_exit output_and_exit_if_error output_html_with_http_headers );
31 use C4::Members qw( checkcardnumber get_cardnumber_length );
32 use C4::Koha qw( GetAuthorisedValues );
33 use C4::Letters qw( GetPreparedLetter EnqueueLetter SendQueuedMessages );
34 use C4::Form::MessagingPreferences;
35 use Koha::AuthUtils;
36 use Koha::AuthorisedValues;
37 use Koha::Email;
38 use Koha::Patron::Debarments qw( AddDebarment DelDebarment GetDebarments );
39 use Koha::Cities;
40 use Koha::DateUtils qw( dt_from_string output_pref );
41 use Koha::Libraries;
42 use Koha::Patrons;
43 use Koha::Patron::Attribute::Types;
44 use Koha::Patron::Categories;
45 use Koha::Patron::HouseboundRole;
46 use Koha::Patron::HouseboundRoles;
47 use Koha::Plugins;
48 use Koha::Token;
49 use Koha::SMS::Providers;
50
51 my $input = CGI->new;
52 my %data;
53
54 my $dbh = C4::Context->dbh;
55
56 my ($template, $loggedinuser, $cookie)
57     = get_template_and_user({template_name => "members/memberentrygen.tt",
58            query => $input,
59            type => "intranet",
60            flagsrequired => {borrowers => 'edit_borrowers'},
61        });
62
63 my $borrowernumber = $input->param('borrowernumber');
64 my $patron         = Koha::Patrons->find($borrowernumber);
65
66 if ( $borrowernumber and not $patron ) {
67     output_and_exit( $input, $cookie, $template,  'unknown_patron' );
68 }
69
70 if ( C4::Context->preference('SMSSendDriver') eq 'Email' ) {
71     my @providers = Koha::SMS::Providers->search->as_list;
72     $template->param( sms_providers => \@providers );
73 }
74
75 my $actionType     = $input->param('actionType') || '';
76 my $modify         = $input->param('modify');
77 my $delete         = $input->param('delete');
78 my $op             = $input->param('op');
79 my $destination    = $input->param('destination');
80 my $cardnumber     = $input->param('cardnumber');
81 my $check_member   = $input->param('check_member');
82 my $nodouble       = $input->param('nodouble');
83 my $duplicate      = $input->param('duplicate');
84 my $quickadd       = $input->param('quickadd');
85 $nodouble = 1 if ($op eq 'modify' or $op eq 'duplicate');    # FIXME hack to represent fact that if we're
86                                      # modifying an existing patron, it ipso facto
87                                      # isn't a duplicate.  Marking FIXME because this
88                                      # script needs to be refactored.
89 my $nok           = $input->param('nok');
90 my $step          = $input->param('step') || 0;
91 my @errors;
92 my $borrower_data;
93 my $NoUpdateLogin;
94 my $NoUpdateEmail;
95 my $userenv = C4::Context->userenv;
96 my @messages;
97
98 ## Deal with guarantor stuff
99 $template->param( relationships => $patron->guarantor_relationships ) if $patron;
100
101 my @relations = split /\|/, C4::Context->preference('borrowerRelationship'), -1;
102 @relations = ('') unless @relations;
103 my $empty_relationship_allowed = grep {$_ eq ""} @relations;
104 $template->param( empty_relationship_allowed => $empty_relationship_allowed );
105
106 my $guarantor_id = $input->param('guarantor_id');
107 my $guarantor = undef;
108 $guarantor = Koha::Patrons->find( $guarantor_id ) if $guarantor_id;
109 $template->param( guarantor => $guarantor );
110
111 my @delete_guarantor = $input->multi_param('delete_guarantor');
112 foreach my $id ( @delete_guarantor ) {
113     my $r = Koha::Patron::Relationships->find( $id );
114     $r->delete() if $r;
115 }
116
117 ## Deal with debarments
118 $template->param(
119     debarments => scalar GetDebarments( { borrowernumber => $borrowernumber } ) );
120 my @debarments_to_remove = $input->multi_param('remove_debarment');
121 foreach my $d ( @debarments_to_remove ) {
122     DelDebarment( $d );
123 }
124 if ( $input->param('add_debarment') ) {
125
126     my $expiration = $input->param('debarred_expiration');
127     $expiration =
128       $expiration
129       ? dt_from_string($expiration)->ymd
130       : undef;
131
132     AddDebarment(
133         {
134             borrowernumber => $borrowernumber,
135             type           => 'MANUAL',
136             comment        => scalar $input->param('debarred_comment'),
137             expiration     => $expiration,
138         }
139     );
140 }
141
142 $template->param("uppercasesurnames" => C4::Context->preference('uppercasesurnames'));
143
144 # function to designate mandatory fields (visually with css)
145 my $check_BorrowerMandatoryField=C4::Context->preference("BorrowerMandatoryField");
146 my @field_check=split(/\|/,$check_BorrowerMandatoryField);
147 foreach (@field_check) {
148     $template->param( "mandatory$_" => 1 );
149 }
150 # function to designate unwanted fields
151 my $check_BorrowerUnwantedField=C4::Context->preference("BorrowerUnwantedField");
152 @field_check=split(/\|/,$check_BorrowerUnwantedField);
153 foreach (@field_check) {
154     next unless m/\w/o;
155     $template->param( "no$_" => 1 );
156 }
157 $template->param( "add" => 1 ) if ( $op eq 'add' );
158 $template->param( "quickadd" => 1 ) if ( $quickadd );
159 $template->param( "duplicate" => 1 ) if ( $op eq 'duplicate' );
160 $template->param( "checked" => 1 ) if ( defined($nodouble) && $nodouble eq 1 );
161 if ( $op eq 'modify' or $op eq 'save' or $op eq 'duplicate' ) {
162     my $logged_in_user = Koha::Patrons->find( $loggedinuser );
163     output_and_exit_if_error( $input, $cookie, $template, { module => 'members', logged_in_user => $logged_in_user, current_patron => $patron } );
164
165     # check permission to modify email info.
166     if ( $patron->is_superlibrarian && !$logged_in_user->is_superlibrarian ) {
167         $NoUpdateEmail = 1;
168     }
169
170     $borrower_data = $patron->unblessed;
171     $borrower_data->{category_type} = $patron->category->category_type;
172 }
173
174 my $categorycode  = $input->param('categorycode') || $borrower_data->{'categorycode'};
175 my $category_type = $input->param('category_type') || '';
176 unless ($category_type or !($categorycode)){
177     my $borrowercategory = Koha::Patron::Categories->find($categorycode);
178     $category_type    = $borrowercategory->category_type;
179     my $category_name = $borrowercategory->description;
180     $template->param("categoryname"=>$category_name);
181 }
182 $category_type="A" unless $category_type; # FIXME we should display a error message instead of a 500 error !
183
184 # if a add or modify is requested => check validity of data.
185 %data = %$borrower_data if ($borrower_data);
186
187 # initialize %newdata
188 my %newdata;                                                                             # comes from $input->param()
189 if ( $op eq 'insert' || $op eq 'modify' || $op eq 'save' || $op eq 'duplicate' ) {
190     my @names = ( $borrower_data && $op ne 'save' ) ? keys %$borrower_data : $input->param();
191     foreach my $key (@names) {
192         if (defined $input->param($key)) {
193             $newdata{$key} = $input->param($key);
194         }
195     }
196
197     foreach (qw(dateenrolled dateexpiry dateofbirth)) {
198         next unless exists $newdata{$_};
199         my $userdate = $newdata{$_} or next;
200
201         my $formatteddate = eval { output_pref({ dt => dt_from_string( $userdate ), dateformat => 'iso', dateonly => 1 } ); };
202         if ( $formatteddate ) {
203             $newdata{$_} = $formatteddate;
204         } else {
205             $template->param( "ERROR_$_" => 1 );
206             push(@errors,"ERROR_$_");
207         }
208     }
209
210     # check permission to modify login info.
211     if (ref($borrower_data) && ($borrower_data->{'category_type'} eq 'S') && ! (C4::Auth::haspermission($userenv->{'id'},{'staffaccess'=>1})) )  {
212         $NoUpdateLogin = 1;
213     }
214 }
215
216 # remove keys from %newdata that is not part of patron's attributes
217 {
218     my @keys_to_delete = (
219         qr/^(borrowernumber|date_renewed|debarred|debarredcomment|flags|privacy|updated_on|lastseen|login_attempts|overdrive_auth_token|anonymized)$/, # Bug 28935
220         qr/^BorrowerMandatoryField$/,
221         qr/^category_type$/,
222         qr/^check_member$/,
223         qr/^destination$/,
224         qr/^nodouble$/,
225         qr/^op$/,
226         qr/^save$/,
227         qr/^updtype$/,
228         qr/^SMSnumber$/,
229         qr/^setting_extended_patron_attributes$/,
230         qr/^setting_messaging_prefs$/,
231         qr/^digest$/,
232         qr/^modify$/,
233         qr/^step$/,
234         qr/^\d+$/,
235         qr/^\d+-DAYS/,
236         qr/^patron_attr_/,
237         qr/^csrf_token$/,
238         qr/^add_debarment$/, qr/^debarred_comment$/,qr/^debarred_expiration$/, qr/^remove_debarment$/, # We already dealt with debarments previously
239         qr/^housebound_chooser$/, qr/^housebound_deliverer$/,
240         qr/^select_city$/,
241         qr/^new_guarantor_/,
242         qr/^guarantor_firstname$/,
243         qr/^guarantor_surname$/,
244         qr/^delete_guarantor$/,
245     );
246     push @keys_to_delete, map { qr/^$_$/ } split( /\s*\|\s*/, C4::Context->preference('BorrowerUnwantedField') || q{} );
247     for my $regexp (@keys_to_delete) {
248         for (keys %newdata) {
249             delete($newdata{$_}) if /$regexp/;
250         }
251     }
252 }
253
254 # Test uniqueness of surname, firstname and dateofbirth
255 if ( ( $op eq 'insert' ) and !$nodouble ) {
256     my @dup_fields = split '\|', C4::Context->preference('PatronDuplicateMatchingAddFields');
257     my $conditions;
258     for my $f ( @dup_fields ) {
259         $conditions->{$f} = $newdata{$f} if $newdata{$f};
260     }
261     $nodouble = 1;
262     my $patrons = Koha::Patrons->search($conditions); # FIXME Should be search_limited?
263     if ( $patrons->count > 0) {
264         $nodouble = 0;
265         $check_member = $patrons->next->borrowernumber;
266
267
268         my @new_guarantors;
269         my @new_guarantor_id           = $input->multi_param('new_guarantor_id');
270         my @new_guarantor_relationship = $input->multi_param('new_guarantor_relationship');
271         foreach my $gid ( @new_guarantor_id ) {
272             my $patron = Koha::Patrons->find( $gid );
273             my $relationship = shift( @new_guarantor_relationship );
274             next unless $patron;
275             my $g = { patron => $patron, relationship => $relationship };
276             push( @new_guarantors, $g );
277         }
278         $template->param( new_guarantors => \@new_guarantors );
279     }
280 }
281
282 ###############test to take the right zipcode, country and city name ##############
283 # set only if parameter was passed from the form
284 $newdata{'city'}    = $input->param('city')    if defined($input->param('city'));
285 $newdata{'zipcode'} = $input->param('zipcode') if defined($input->param('zipcode'));
286 $newdata{'country'} = $input->param('country') if defined($input->param('country'));
287
288 $newdata{'lang'}    = $input->param('lang')    if defined($input->param('lang'));
289
290 # builds default userid
291 # userid input text may be empty or missing because of syspref BorrowerUnwantedField
292 if ( ( defined $newdata{'userid'} && $newdata{'userid'} eq '' ) || $check_BorrowerUnwantedField =~ /userid/ && !defined $data{'userid'} ) {
293     my $fake_patron = Koha::Patron->new;
294     $fake_patron->userid($patron->userid) if $patron; # editing
295     if ( ( defined $newdata{'firstname'} || $category_type eq 'I' ) && ( defined $newdata{'surname'} ) ) {
296         # Full page edit, firstname and surname input zones are present
297         $fake_patron->firstname($newdata{firstname});
298         $fake_patron->surname($newdata{surname});
299         $fake_patron->generate_userid;
300         $newdata{'userid'} = $fake_patron->userid;
301     }
302     elsif ( ( defined $data{'firstname'} || $category_type eq 'I' ) && ( defined $data{'surname'} ) ) {
303         # Partial page edit (access through "Details"/"Library details" tab), firstname and surname input zones are not used
304         # Still, if the userid field is erased, we can create a new userid with available firstname and surname
305         # FIXME clean thiscode newdata vs data is very confusing
306         $fake_patron->firstname($data{firstname});
307         $fake_patron->surname($data{surname});
308         $fake_patron->generate_userid;
309         $newdata{'userid'} = $fake_patron->userid;
310     }
311     else {
312         $newdata{'userid'} = $data{'userid'};
313     }
314 }
315
316 my $extended_patron_attributes;
317 if ($op eq 'save' || $op eq 'insert'){
318
319     output_and_exit( $input, $cookie, $template,  'wrong_csrf_token' )
320         unless Koha::Token->new->check_csrf({
321             session_id => scalar $input->cookie('CGISESSID'),
322             token  => scalar $input->param('csrf_token'),
323         });
324
325     # If the cardnumber is blank, treat it as null.
326     $newdata{'cardnumber'} = undef if $newdata{'cardnumber'} =~ /^\s*$/;
327
328     my $new_barcode = $newdata{'cardnumber'};
329     Koha::Plugins->call( 'patron_barcode_transform', \$new_barcode );
330
331     $newdata{'cardnumber'} = $new_barcode;
332
333     if (my $error_code = checkcardnumber( $newdata{cardnumber}, $borrowernumber )){
334         push @errors, $error_code == 1
335             ? 'ERROR_cardnumber_already_exists'
336             : $error_code == 2
337                 ? 'ERROR_cardnumber_length'
338                 : ()
339     }
340
341     my $dateofbirth;
342     if ($op eq 'save' && $step == 3) {
343         $dateofbirth = $patron->dateofbirth;
344     }
345     else {
346         $dateofbirth = $newdata{dateofbirth};
347     }
348
349     if ( $dateofbirth ) {
350         my $patron = Koha::Patron->new({ dateofbirth => $dateofbirth });
351         my $age = $patron->get_age;
352         my $borrowercategory = Koha::Patron::Categories->find($categorycode);
353         my ($low,$high) = ($borrowercategory->dateofbirthrequired, $borrowercategory->upperagelimit);
354         if (($high && ($age > $high)) or ($age < $low)) {
355             push @errors, 'ERROR_age_limitations';
356             $template->param( age_low => $low);
357             $template->param( age_high => $high);
358         }
359     }
360   
361   if (C4::Context->preference("IndependentBranches")) {
362     unless ( C4::Context->IsSuperLibrarian() ){
363       unless (!$newdata{'branchcode'} || $userenv->{branch} eq $newdata{'branchcode'}){
364         push @errors, "ERROR_branch";
365       }
366     }
367   }
368   # Check if the 'userid' is unique. 'userid' might not always be present in
369   # the edited values list when editing certain sub-forms. Get it straight
370   # from the DB if absent.
371   my $userid = $newdata{ userid } // $borrower_data->{ userid };
372   my $p = $borrowernumber ? Koha::Patrons->find( $borrowernumber ) : Koha::Patron->new();
373   $p->userid( $userid );
374   unless ( $p->has_valid_userid ) {
375     push @errors, "ERROR_login_exist";
376   }
377
378   my $password = $input->param('password');
379   my $password2 = $input->param('password2');
380   push @errors, "ERROR_password_mismatch" if ( $password ne $password2 );
381
382   if ( $password and $password ne '****' ) {
383       my ( $is_valid, $error ) = Koha::AuthUtils::is_password_valid( $password, Koha::Patron::Categories->find($categorycode) );
384       unless ( $is_valid ) {
385           push @errors, 'ERROR_password_too_short' if $error eq 'too_short';
386           push @errors, 'ERROR_password_too_weak' if $error eq 'too_weak';
387           push @errors, 'ERROR_password_has_whitespaces' if $error eq 'has_whitespaces';
388       }
389   }
390
391   # Validate emails
392   my $emailprimary = $input->param('email');
393   my $emailsecondary = $input->param('emailpro');
394   my $emailalt = $input->param('B_email');
395
396   if ($emailprimary) {
397       push (@errors, "ERROR_bad_email") unless Koha::Email->is_valid($emailprimary);
398   }
399   if ($emailsecondary) {
400       push (@errors, "ERROR_bad_email_secondary") unless Koha::Email->is_valid($emailsecondary);
401   }
402   if ($emailalt) {
403       push (@errors, "ERROR_bad_email_alternative") unless Koha::Email->is_valid($emailalt);
404   }
405
406   if (C4::Context->preference('ExtendedPatronAttributes') and $input->param('setting_extended_patron_attributes')) {
407       $extended_patron_attributes = parse_extended_patron_attributes($input);
408       for my $attr ( @$extended_patron_attributes ) {
409           $attr->{borrowernumber} = $borrowernumber if $borrowernumber;
410           my $attribute = Koha::Patron::Attribute->new($attr);
411           if ( !$attribute->unique_ok ) {
412               push @errors, "ERROR_extended_unique_id_failed";
413               my $attr_type = Koha::Patron::Attribute::Types->find($attr->{code});
414               $template->param(
415                   ERROR_extended_unique_id_failed_code => $attr->{code},
416                   ERROR_extended_unique_id_failed_value => $attr->{attribute},
417                   ERROR_extended_unique_id_failed_description => $attr_type->description()
418               );
419           }
420       }
421   }
422 }
423 elsif ( $borrowernumber ) {
424     $extended_patron_attributes = Koha::Patrons->find($borrowernumber)->extended_attributes->unblessed;
425 }
426
427 if ( ($op eq 'modify' || $op eq 'insert' || $op eq 'save'|| $op eq 'duplicate') and ($step == 0 or $step == 3 )){
428     unless ($newdata{'dateexpiry'}){
429         my $patron_category = Koha::Patron::Categories->find( $newdata{categorycode} );
430         $newdata{'dateexpiry'} = $patron_category->get_expiry_date( $newdata{dateenrolled} ) if $patron_category;
431     }
432 }
433
434 # BZ 14683: Do not mixup mobile [read: other phone] with smsalertnumber
435 my $sms = $input->param('SMSnumber');
436 if ( defined $sms ) {
437     $newdata{smsalertnumber} = $sms;
438 }
439
440 ###  Error checks should happen before this line.
441 $nok = $nok || scalar(@errors);
442 if ((!$nok) and $nodouble and ($op eq 'insert' or $op eq 'save')){
443     my $success;
444         if ($op eq 'insert'){
445                 # we know it's not a duplicate borrowernumber or there would already be an error
446         delete $newdata{password2};
447         $patron = eval { Koha::Patron->new(\%newdata)->store };
448         if ( $@ ) {
449             # FIXME Urgent error handling here, we cannot fail without relevant feedback
450             # Lot of code will need to be removed from this script to handle exceptions raised by Koha::Patron->store
451             warn "Patron creation failed! - $@"; # Maybe we must die instead of just warn
452             push @messages, {error => 'error_on_insert_patron'};
453             $op = "add";
454         } else {
455             $success = 1;
456             add_guarantors( $patron, $input );
457             $borrowernumber = $patron->borrowernumber;
458             $newdata{'borrowernumber'} = $borrowernumber;
459             delete $newdata{password};
460         }
461
462         # If 'AutoEmailNewUser' syspref is on, email user their account details from the 'notice' that matches the user's branchcode.
463         if ( C4::Context->preference("AutoEmailNewUser") ) {
464             #look for defined primary email address, if blank - attempt to use borr.email and borr.emailpro instead
465             my $emailaddr = $patron->notice_email_address;
466             # if we manage to find a valid email address, send notice 
467             if ($emailaddr) {
468                 eval {
469                     my $letter = GetPreparedLetter(
470                         module      => 'members',
471                         letter_code => 'WELCOME',
472                         branchcode  => $patron->branchcode,,
473                         lang        => $patron->lang || 'default',
474                         tables      => {
475                             'branches'  => $patron->branchcode,
476                             'borrowers' => $patron->borrowernumber,
477                         },
478                         want_librarian => 1,
479                     ) or return;
480
481                     my $message_id = EnqueueLetter(
482                         {
483                             letter                 => $letter,
484                             borrowernumber         => $patron->id,
485                             to_address             => $emailaddr,
486                             message_transport_type => 'email'
487                         }
488                     );
489                     SendQueuedMessages({ message_id => $message_id });
490                 };
491                 if ($@) {
492                     $template->param( error_alert => $@ );
493                 }
494             }
495         }
496
497         if ( $patron && (C4::Context->preference('EnhancedMessagingPreferences') and $input->param('setting_messaging_prefs')) ) {
498             C4::Form::MessagingPreferences::handle_form_action($input, { borrowernumber => $borrowernumber }, $template, 1, $newdata{'categorycode'});
499         }
500
501         # Create HouseboundRole if necessary.
502         # Borrower did not exist, so HouseboundRole *cannot* yet exist.
503         my ( $hsbnd_chooser, $hsbnd_deliverer ) = ( 0, 0 );
504         $hsbnd_chooser = 1 if $input->param('housebound_chooser');
505         $hsbnd_deliverer = 1 if $input->param('housebound_deliverer');
506         # Only create a HouseboundRole if patron has a role.
507         if ( $patron && ( $hsbnd_chooser || $hsbnd_deliverer ) ) {
508             Koha::Patron::HouseboundRole->new({
509                 borrowernumber_id    => $borrowernumber,
510                 housebound_chooser   => $hsbnd_chooser,
511                 housebound_deliverer => $hsbnd_deliverer,
512             })->store;
513         }
514
515     } elsif ($op eq 'save') {
516
517         if ($NoUpdateLogin) {
518             delete $newdata{'password'};
519             delete $newdata{'userid'};
520         }
521
522         $patron = Koha::Patrons->find( $borrowernumber );
523
524         if ($NoUpdateEmail) {
525             delete $newdata{'email'};
526             delete $newdata{'emailpro'};
527             delete $newdata{'B_email'};
528         }
529
530         delete $newdata{password2};
531
532         eval {
533             $patron->set(\%newdata)->store if scalar(keys %newdata) > 1; # bug 4508 - avoid crash if we're not
534                                                                     # updating any columns in the borrowers table,
535                                                                     # which can happen if we're only editing the
536                                                                     # patron attributes or messaging preferences sections
537         };
538         if ( $@ ) {
539             warn "Patron modification failed! - $@"; # Maybe we must die instead of just warn
540             push @messages, {error => 'error_on_update_patron'};
541             $op = "modify";
542         } else {
543
544             $success = 1;
545             # Update or create our HouseboundRole if necessary.
546             my $housebound_role = Koha::Patron::HouseboundRoles->find($borrowernumber);
547             my ( $hsbnd_chooser, $hsbnd_deliverer ) = ( 0, 0 );
548             $hsbnd_chooser = 1 if $input->param('housebound_chooser');
549             $hsbnd_deliverer = 1 if $input->param('housebound_deliverer');
550             if ( $housebound_role ) {
551                 if ( $hsbnd_chooser || $hsbnd_deliverer ) {
552                     # Update our HouseboundRole.
553                     $housebound_role
554                         ->housebound_chooser($hsbnd_chooser)
555                         ->housebound_deliverer($hsbnd_deliverer)
556                         ->store;
557                 } else {
558                     $housebound_role->delete; # No longer needed.
559                 }
560             } else {
561                 # Only create a HouseboundRole if patron has a role.
562                 if ( $hsbnd_chooser || $hsbnd_deliverer ) {
563                     $housebound_role = Koha::Patron::HouseboundRole->new({
564                         borrowernumber_id    => $borrowernumber,
565                         housebound_chooser   => $hsbnd_chooser,
566                         housebound_deliverer => $hsbnd_deliverer,
567                     })->store;
568                 }
569             }
570
571             # should never raise an exception as password validity is checked above
572             my $password = $newdata{password};
573             if ( $password and $password ne '****' ) {
574                 $patron->set_password({ password => $password });
575             }
576
577             add_guarantors( $patron, $input );
578             if (C4::Context->preference('EnhancedMessagingPreferences') and $input->param('setting_messaging_prefs')) {
579                 C4::Form::MessagingPreferences::handle_form_action($input, { borrowernumber => $borrowernumber }, $template);
580             }
581         }
582     }
583
584     if ( $success ) {
585         if (C4::Context->preference('ExtendedPatronAttributes') and $input->param('setting_extended_patron_attributes')) {
586             $patron->extended_attributes->filter_by_branch_limitations->delete;
587             $patron->extended_attributes($extended_patron_attributes);
588         }
589
590         if ( $destination eq 'circ' and not C4::Auth::haspermission( C4::Context->userenv->{id}, { circulate => 'circulate_remaining_permissions' } ) ) {
591             # If we want to redirect to circulation.pl and need to check if the logged in user has the necessary permission
592             $destination = 'not_circ';
593         }
594         print scalar( $destination eq "circ" )
595           ? $input->redirect(
596             "/cgi-bin/koha/circ/circulation.pl?borrowernumber=$borrowernumber")
597           : $input->redirect(
598             "/cgi-bin/koha/members/moremember.pl?borrowernumber=$borrowernumber"
599           );
600         exit; # You can only send 1 redirect!  After that, content or other headers don't matter.
601     }
602 }
603
604 if ($delete){
605         print $input->redirect("/cgi-bin/koha/deletemem.pl?member=$borrowernumber");
606         exit;           # same as above
607 }
608
609 if ($nok or !$nodouble){
610     $op="add" if ($op eq "insert");
611     $op="modify" if ($op eq "save");
612     %data=%newdata; 
613     $template->param( updtype => ($op eq 'add' ?'I':'M'));      # used to check for $op eq "insert"... but we just changed $op!
614     unless ($step){  
615         $template->param( step_1 => 1,step_2 => 1,step_3 => 1, step_4 => 1, step_5 => 1, step_6 => 1, step_7 => 1 );
616     }  
617
618 if (C4::Context->preference("IndependentBranches")) {
619     my $userenv = C4::Context->userenv;
620     if ( !C4::Context->IsSuperLibrarian() && $data{'branchcode'} ) {
621         unless ($userenv->{branch} eq $data{'branchcode'}){
622             print $input->redirect("/cgi-bin/koha/members/members-home.pl");
623             exit;
624         }
625     }
626 }
627
628 # Define the fields to be pre-filled in guarantee records
629 my $prefillguarantorfields=C4::Context->preference("PrefillGuaranteeField");
630 my @prefill_fields=split(/\,/,$prefillguarantorfields);
631
632 if ($op eq 'add'){
633     if ($guarantor_id) {
634         foreach (@prefill_fields) {
635             $newdata{$_} = $guarantor->$_;
636         }
637     }
638     $template->param( updtype => 'I', step_1=>1, step_2=>1, step_3=>1, step_4=>1, step_5 => 1, step_6 => 1, step_7 => 1);
639 }
640 if ($op eq "modify")  {
641     $template->param( updtype => 'M',modify => 1 );
642     $template->param( step_1=>1, step_2=>1, step_3=>1, step_4=>1, step_5 => 1, step_6 => 1, step_7 => 1) unless $step;
643     if ( $step == 4 ) {
644         $template->param( categorycode => $borrower_data->{'categorycode'} );
645     }
646 }
647 if ( $op eq "duplicate" ) {
648     $template->param( updtype => 'I' );
649     $template->param( step_1 => 1, step_2 => 1, step_3 => 1, step_4 => 1, step_5 => 1, step_6 => 1, step_7 => 1 ) unless $step;
650     $data{'cardnumber'} = "";
651 }
652
653 if(!defined($data{'sex'})){
654     $template->param( none => 1);
655 } elsif($data{'sex'} eq 'F'){
656     $template->param( female => 1);
657 } elsif ($data{'sex'} eq 'M'){
658     $template->param(  male => 1);
659 } elsif ($data{'sex'} eq 'O') {
660     $template->param( other => 1);
661 } else {
662     $template->param(  none => 1);
663 }
664
665 ##Now all the data to modify a member.
666
667 my @typeloop;
668 my $no_categories = 1;
669 my $no_add;
670 foreach my $category_type (qw(C A S P I X)) {
671     my $patron_categories = Koha::Patron::Categories->search_with_library_limits({ category_type => $category_type }, {order_by => ['categorycode']});
672     $no_categories = 0 if $patron_categories->count > 0;
673
674     my @categoryloop;
675     while ( my $patron_category = $patron_categories->next ) {
676         push @categoryloop,
677           { 'categorycode' => $patron_category->categorycode,
678             'categoryname' => $patron_category->description,
679             'effective_min_password_length' => $patron_category->effective_min_password_length,
680             'effective_require_strong_password' => $patron_category->effective_require_strong_password,
681             'categorycodeselected' =>
682               ( defined($categorycode) && $patron_category->categorycode eq $categorycode ),
683           };
684     }
685     my %typehash;
686     $typehash{'typename'} = $category_type;
687     my $typedescription = "typename_" . $typehash{'typename'};
688     $typehash{'categoryloop'} = \@categoryloop;
689     push @typeloop,
690       { 'typename'       => $category_type,
691         $typedescription => 1,
692         'categoryloop'   => \@categoryloop
693       };
694 }
695 $template->param(
696     typeloop      => \@typeloop,
697     no_categories => $no_categories,
698 );
699
700 my $cities = Koha::Cities->search( {}, { order_by => 'city_name' } );
701 $template->param(
702     cities    => $cities,
703 );
704
705 my $default_borrowertitle = '';
706 unless ( $op eq 'duplicate' ) { $default_borrowertitle=$data{'title'} }
707
708 my @relationships = split /,|\|/, C4::Context->preference('borrowerRelationship');
709 my @relshipdata;
710 while (@relationships) {
711   my $relship = shift @relationships || '';
712   my %row = ('relationship' => $relship);
713   if (defined($data{'relationship'}) and $data{'relationship'} eq $relship) {
714     $row{'selected'}=' selected';
715   } else {
716     $row{'selected'}='';
717   }
718   push(@relshipdata, \%row);
719 }
720
721 my %flags = (
722     'gonenoaddress' => ['gonenoaddress'],
723     'lost'          => ['lost']
724 );
725
726 my @flagdata;
727 foreach ( keys(%flags) ) {
728     my $key = $_;
729     my %row = (
730         'key'  => $key,
731         'name' => $flags{$key}[0]
732     );
733     if ( $data{$key} ) {
734         $row{'yes'} = ' checked';
735         $row{'no'}  = '';
736     }
737     else {
738         $row{'yes'} = '';
739         $row{'no'}  = ' checked';
740     }
741     push @flagdata, \%row;
742 }
743
744 # get Branch Loop
745 # in modify mod: userbranch value comes from borrowers table
746 # in add    mod: userbranch value comes from branches table (ip correspondence)
747
748 my $userbranch = '';
749 if (C4::Context->userenv && C4::Context->userenv->{'branch'}) {
750     $userbranch = C4::Context->userenv->{'branch'};
751 }
752
753 if (defined ($data{'branchcode'}) and ( $op eq 'modify' || $op eq 'duplicate' || ( $op eq 'add' && $category_type eq 'C' ) )) {
754     $userbranch = $data{'branchcode'};
755 }
756 $template->param( userbranch => $userbranch );
757
758 if ( Koha::Libraries->search->count < 1 ){
759     $no_add = 1;
760     $template->param(no_branches => 1);
761 }
762 if($no_categories){
763     $no_add = 1;
764     $template->param(no_categories => 1);
765 }
766 $template->param(no_add => $no_add);
767 # --------------------------------------------------------------------------------------------------------
768
769 $template->param( sort1 => $data{'sort1'});
770 $template->param( sort2 => $data{'sort2'});
771 $template->param( autorenew => $data{'autorenew'});
772
773 if ($nok) {
774     foreach my $error (@errors) {
775         $template->param($error) || $template->param( $error => 1);
776     }
777     $template->param(nok => 1);
778 }
779   
780   #Formatting data for display    
781   
782 if (!defined($data{'dateenrolled'}) or $data{'dateenrolled'} eq ''){
783   $data{'dateenrolled'} = output_pref({ dt => dt_from_string, dateformat => 'iso', dateonly => 1 });
784 }
785 if ( $op eq 'duplicate' ) {
786     $data{'dateenrolled'} = output_pref({ dt => dt_from_string, dateformat => 'iso', dateonly => 1 });
787     my $patron_category = Koha::Patron::Categories->find( $data{categorycode} );
788     $data{dateexpiry} = $patron_category->get_expiry_date( $data{dateenrolled} );
789 }
790 if (C4::Context->preference('uppercasesurnames')) {
791     $data{'surname'} &&= uc( $data{'surname'} );
792     $data{'contactname'} &&= uc( $data{'contactname'} );
793 }
794
795 foreach (qw(dateenrolled dateexpiry dateofbirth)) {
796     if ( $data{$_} ) {
797        $data{$_} = eval { output_pref({ dt => dt_from_string( $data{$_} ), dateonly => 1 } ); };  # back to syspref for display
798     }
799     $template->param( $_ => $data{$_});
800 }
801
802 if ( C4::Context->preference('ExtendedPatronAttributes') ) {
803     patron_attributes_form( $template, $extended_patron_attributes, $op );
804 }
805
806 if (C4::Context->preference('EnhancedMessagingPreferences')) {
807     if ($op eq 'add') {
808         C4::Form::MessagingPreferences::set_form_values({ categorycode => $categorycode }, $template);
809     } else {
810         C4::Form::MessagingPreferences::set_form_values({ borrowernumber => $borrowernumber }, $template);
811     }
812     $template->param(SMSSendDriver => C4::Context->preference("SMSSendDriver"));
813     $template->param(SMSnumber     => $data{'smsalertnumber'} );
814     $template->param(TalkingTechItivaPhone => C4::Context->preference("TalkingTechItivaPhoneNotification"));
815 }
816
817 $template->param( "show_guarantor" => ( $category_type =~ /A|I|S|X/ ) ? 0 : 1 ); # associate with step to know where you are
818 $template->param( borrower_data => \%data );
819 $template->param( "step_$step"  => 1) if $step; # associate with step to know where u are
820 $template->param(  step  => $step   ) if $step; # associate with step to know where u are
821
822 $template->param(
823   BorrowerMandatoryField => C4::Context->preference("BorrowerMandatoryField"),#field to test with javascript
824   category_type => $category_type,#to know the category type of the borrower
825   "$category_type"  => 1,# associate with step to know where u are
826   destination   => $destination,#to know wher u come from and wher u must go in redirect
827   check_member    => $check_member,#to know if the borrower already exist(=>1) or not (=>0) 
828   "op$op"   => 1);
829
830 $template->param(
831   patron => $patron ? $patron : \%newdata, # Used by address include templates now
832   nodouble  => $nodouble,
833   borrowernumber  => $borrowernumber, #register number
834   relshiploop => \@relshipdata,
835   btitle=> $default_borrowertitle,
836   flagloop  => \@flagdata,
837   category_type =>$category_type,
838   modify          => $modify,
839   nok     => $nok,#flag to know if an error
840   NoUpdateLogin =>  $NoUpdateLogin,
841   NoUpdateEmail =>  $NoUpdateEmail,
842   );
843
844 # Generate CSRF token
845 $template->param( csrf_token =>
846       Koha::Token->new->generate_csrf( { session_id => scalar $input->cookie('CGISESSID'), } ),
847 );
848
849 # HouseboundModule data
850 $template->param(
851     housebound_role  => Koha::Patron::HouseboundRoles->find($borrowernumber),
852 );
853
854 if(defined($data{'flags'})){
855   $template->param(flags=>$data{'flags'});
856 }
857 if(defined($data{'contacttitle'})){
858   $template->param("contacttitle_" . $data{'contacttitle'} => "SELECTED");
859 }
860
861
862 my ( $min, $max ) = C4::Members::get_cardnumber_length();
863 if ( defined $min ) {
864     $template->param(
865         minlength_cardnumber => $min,
866         maxlength_cardnumber => $max
867     );
868 }
869
870 if ( C4::Context->preference('TranslateNotices') ) {
871     my $translated_languages = C4::Languages::getTranslatedLanguages( 'opac', C4::Context->preference('template') );
872     $template->param( languages => $translated_languages );
873 }
874
875 $template->param( messages => \@messages );
876 output_html_with_http_headers $input, $cookie, $template->output;
877
878 sub parse_extended_patron_attributes {
879     my ($input) = @_;
880     my @patron_attr = grep { /^patron_attr_\d+$/ } $input->multi_param();
881
882     my @attr = ();
883     my %dups = ();
884     foreach my $key (@patron_attr) {
885         my $value = $input->param($key);
886         next unless defined($value) and $value ne '';
887         my $code     = $input->param("${key}_code");
888         next if exists $dups{$code}->{$value};
889         $dups{$code}->{$value} = 1;
890         push @attr, { code => $code, attribute => $value };
891     }
892     return \@attr;
893 }
894
895 sub patron_attributes_form {
896     my $template = shift;
897     my $attributes = shift;
898     my $op = shift;
899
900     my $library_id = C4::Context->userenv ? C4::Context->userenv->{'branch'} : undef;
901     my $attribute_types = Koha::Patron::Attribute::Types->search_with_library_limits({}, {}, $library_id);
902     if ( $attribute_types->count == 0 ) {
903         $template->param(no_patron_attribute_types => 1);
904         return;
905     }
906
907     # map patron's attributes into a more convenient structure
908     my %attr_hash = ();
909     foreach my $attr (@$attributes) {
910         push @{ $attr_hash{$attr->{code}} }, $attr;
911     }
912
913     my @attribute_loop = ();
914     my $i = 0;
915     my %items_by_class;
916     while ( my ( $attr_type ) = $attribute_types->next ) {
917         my $entry = {
918             class             => $attr_type->class(),
919             code              => $attr_type->code(),
920             description       => $attr_type->description(),
921             repeatable        => $attr_type->repeatable(),
922             category          => $attr_type->authorised_value_category(),
923             category_code     => $attr_type->category_code(),
924             mandatory         => $attr_type->mandatory(),
925         };
926         if (exists $attr_hash{$attr_type->code()}) {
927             foreach my $attr (@{ $attr_hash{$attr_type->code()} }) {
928                 my $newentry = { %$entry };
929                 $newentry->{value} = $attr->{attribute};
930                 $newentry->{use_dropdown} = 0;
931                 if ($attr_type->authorised_value_category()) {
932                     $newentry->{use_dropdown} = 1;
933                     $newentry->{auth_val_loop} = GetAuthorisedValues($attr_type->authorised_value_category(), $attr->{attribute});
934                 }
935                 $i++;
936                 undef $newentry->{value} if ($attr_type->unique_id() && $op eq 'duplicate');
937                 $newentry->{form_id} = "patron_attr_$i";
938                 push @{$items_by_class{$attr_type->class()}}, $newentry;
939             }
940         } else {
941             $i++;
942             my $newentry = { %$entry };
943             if ($attr_type->authorised_value_category()) {
944                 $newentry->{use_dropdown} = 1;
945                 $newentry->{auth_val_loop} = GetAuthorisedValues($attr_type->authorised_value_category());
946             }
947             $newentry->{form_id} = "patron_attr_$i";
948             push @{$items_by_class{$attr_type->class()}}, $newentry;
949         }
950     }
951     for my $class ( sort keys %items_by_class ) {
952         my $av = Koha::AuthorisedValues->search({ category => 'PA_CLASS', authorised_value => $class });
953         my $lib = $av->count ? $av->next->lib : $class;
954         push @attribute_loop, {
955             class => $class,
956             items => $items_by_class{$class},
957             lib   => $lib,
958         }
959     }
960
961     $template->param(patron_attributes => \@attribute_loop);
962
963 }
964
965 sub add_guarantors {
966     my ( $patron, $input ) = @_;
967
968     my @new_guarantor_id           = $input->multi_param('new_guarantor_id');
969     my @new_guarantor_relationship = $input->multi_param('new_guarantor_relationship');
970
971     for ( my $i = 0 ; $i < scalar @new_guarantor_id; $i++ ) {
972         my $guarantor_id = $new_guarantor_id[$i];
973         my $relationship = $new_guarantor_relationship[$i];
974
975         next unless $guarantor_id;
976
977         $patron->add_guarantor(
978             {
979                 guarantor_id => $guarantor_id,
980                 relationship => $relationship,
981             }
982         );
983     }
984 }
985
986 # Local Variables:
987 # tab-width: 8
988 # End: