Bug 30477: Add new UNIMARC installer translation files
[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     delete $patron_attrs->{extended_attributes};
71     my $patron = Koha::Patron->new( $patron_attrs )->store;
72
73     Koha::Patron::Consent->new({ borrowernumber => $patron->borrowernumber, type => 'GDPR_PROCESSING', given_on => $consent_dt })->store if $consent_dt;
74
75     if ($patron) {
76         if( $m->extended_attributes ){
77             $m->borrowernumber( $patron->borrowernumber);
78             $m->changed_fields(['extended_attributes']);
79             $m->approve();
80         } else {
81             $m->delete();
82         }
83         C4::Form::MessagingPreferences::handle_form_action($cgi, { borrowernumber => $patron->borrowernumber }, $template, 1, C4::Context->preference('PatronSelfRegistrationDefaultCategory') ) if C4::Context->preference('EnhancedMessagingPreferences');
84
85         $template->param( password_cleartext => $patron->plain_text_password );
86         $template->param( borrower => $patron );
87
88         # If 'AutoEmailNewUser' syspref is on, email user their account details from the 'notice' that matches the user's branchcode.
89         if ( C4::Context->preference("AutoEmailNewUser") ) {
90             # Look up correct email address taking AutoEmailPrimaryAddress into account
91             my $emailaddr = $patron->notice_email_address;
92             # if we manage to find a valid email address, send notice
93             if ($emailaddr) {
94                 eval {
95                     my $letter = GetPreparedLetter(
96                         module      => 'members',
97                         letter_code => 'WELCOME',
98                         branchcode  => $patron->branchcode,,
99                         lang        => $patron->lang || 'default',
100                         tables      => {
101                             'branches'  => $patron->branchcode,
102                             'borrowers' => $patron->borrowernumber,
103                         },
104                         want_librarian => 1,
105                     ) or return;
106
107                     my $message_id = EnqueueLetter(
108                         {
109                             letter                 => $letter,
110                             borrowernumber         => $patron->id,
111                             to_address             => $emailaddr,
112                             message_transport_type => 'email'
113                         }
114                     );
115                     SendQueuedMessages({ message_id => $message_id });
116                 };
117             }
118         }
119
120         $template->param(
121             PatronSelfRegistrationAdditionalInstructions =>
122               C4::Context->preference(
123                 'PatronSelfRegistrationAdditionalInstructions')
124         );
125
126         my ($theme, $news_lang, $availablethemes) = C4::Templates::themelanguage(C4::Context->config('opachtdocs'),'opac-registration-confirmation.tt','opac',$cgi);
127         $template->param( news_lang => $news_lang );
128     }
129
130 }
131 else {
132     ( $template, $borrowernumber, $cookie ) = get_template_and_user(
133         {
134             template_name   => "opac-registration-invalid.tt",
135             type            => "opac",
136             query           => $cgi,
137             authnotrequired => 1,
138         }
139     );
140 }
141
142 output_html_with_http_headers $cgi, $cookie, $template->output;