Bug 30214: (QA follow-up) Clarify code comment
[koha.git] / opac / opac-registration-verify.pl
1 #!/usr/bin/perl
2
3 # This file is part of Koha.
4 #
5 # Koha is free software; you can redistribute it and/or modify it
6 # under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version.
9 #
10 # Koha is distributed in the hope that it will be useful, but
11 # WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with Koha; if not, see <http://www.gnu.org/licenses>.
17
18 use Modern::Perl;
19
20 use CGI qw ( -utf8 );
21
22 use C4::Auth qw( get_template_and_user );
23 use C4::Output qw( output_html_with_http_headers );
24 use C4::Letters qw( GetPreparedLetter EnqueueLetter SendQueuedMessages );
25 use C4::Members;
26 use C4::Form::MessagingPreferences;
27 use Koha::AuthUtils;
28 use Koha::Patrons;
29 use Koha::Patron::Consent;
30 use Koha::Patron::Modifications;
31 use Koha::Patron::Categories;
32
33 my $cgi = CGI->new;
34 my $dbh = C4::Context->dbh;
35
36 unless ( C4::Context->preference('PatronSelfRegistration') ) {
37     print $cgi->redirect("/cgi-bin/koha/opac-main.pl");
38     exit;
39 }
40
41 my $token = $cgi->param('token');
42 my $m = Koha::Patron::Modifications->find( { verification_token => $token } );
43
44 my ( $template, $borrowernumber, $cookie );
45
46 if (
47     $m # The token exists and the email is unique if requested
48     and not(
49             C4::Context->preference('PatronSelfRegistrationEmailMustBeUnique')
50         and Koha::Patrons->search( { email => $m->email } )->count
51     )
52   )
53 {
54     ( $template, $borrowernumber, $cookie ) = get_template_and_user(
55         {
56             template_name   => "opac-registration-confirmation.tt",
57             type            => "opac",
58             query           => $cgi,
59             authnotrequired => 1,
60         }
61     );
62
63     my $patron_attrs = $m->unblessed;
64     $patron_attrs->{password} ||= Koha::AuthUtils::generate_password(Koha::Patron::Categories->find($patron_attrs->{categorycode}));
65     my $consent_dt = delete $patron_attrs->{gdpr_proc_consent};
66     $patron_attrs->{categorycode} ||= C4::Context->preference('PatronSelfRegistrationDefaultCategory');
67     delete $patron_attrs->{timestamp};
68     delete $patron_attrs->{verification_token};
69     delete $patron_attrs->{changed_fields};
70     my $patron = Koha::Patron->new( $patron_attrs )->store;
71
72     Koha::Patron::Consent->new({ borrowernumber => $patron->borrowernumber, type => 'GDPR_PROCESSING', given_on => $consent_dt })->store if $consent_dt;
73
74     if ($patron) {
75         $m->delete();
76         C4::Form::MessagingPreferences::handle_form_action($cgi, { borrowernumber => $patron->borrowernumber }, $template, 1, C4::Context->preference('PatronSelfRegistrationDefaultCategory') ) if C4::Context->preference('EnhancedMessagingPreferences');
77
78         $template->param( password_cleartext => $patron->plain_text_password );
79         $template->param( borrower => $patron );
80
81         # If 'AutoEmailOpacUser' syspref is on, email user their account details from the 'notice' that matches the user's branchcode.
82         if ( C4::Context->preference("AutoEmailOpacUser") ) {
83             # Look up correct email address taking AutoEmailPrimaryAddress into account
84             my $emailaddr = $patron->notice_email_address;
85             # if we manage to find a valid email address, send notice
86             if ($emailaddr) {
87                 eval {
88                     my $letter = GetPreparedLetter(
89                         module      => 'members',
90                         letter_code => 'ACCTDETAILS',
91                         branchcode  => $patron->branchcode,,
92                         lang        => $patron->lang || 'default',
93                         tables      => {
94                             'branches'  => $patron->branchcode,
95                             'borrowers' => $patron->borrowernumber,
96                         },
97                         want_librarian => 1,
98                     ) or return;
99
100                     my $message_id = EnqueueLetter(
101                         {
102                             letter                 => $letter,
103                             borrowernumber         => $patron->id,
104                             to_address             => $emailaddr,
105                             message_transport_type => 'email'
106                         }
107                     );
108                     SendQueuedMessages({ message_id => $message_id });
109                 };
110             }
111         }
112
113         $template->param(
114             PatronSelfRegistrationAdditionalInstructions =>
115               C4::Context->preference(
116                 'PatronSelfRegistrationAdditionalInstructions')
117         );
118
119         my ($theme, $news_lang, $availablethemes) = C4::Templates::themelanguage(C4::Context->config('opachtdocs'),'opac-registration-confirmation.tt','opac',$cgi);
120         $template->param( news_lang => $news_lang );
121     }
122
123 }
124 else {
125     ( $template, $borrowernumber, $cookie ) = get_template_and_user(
126         {
127             template_name   => "opac-registration-invalid.tt",
128             type            => "opac",
129             query           => $cgi,
130             authnotrequired => 1,
131         }
132     );
133 }
134
135 output_html_with_http_headers $cgi, $cookie, $template->output;