3 # Copyright 2018 Rijksmuseum
5 # This file is part of Koha.
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 3 of the License, or (at your option) any later
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License along
17 # with Koha; if not, write to the Free Software Foundation, Inc.,
18 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23 use C4
::Auth qw
/get_template_and_user/;
24 use C4
::Output qw
/output_html_with_http_headers/;
25 use Koha
::DateUtils qw
/dt_from_string/;
26 use Koha
::Patron
::Consents
;
29 use constant GDPR_PROCESSING
=> 'GDPR_PROCESSING';
32 my $op = $query->param('op') // q{};
33 my $gdpr_check = $query->param('gdpr_processing') // q{};
35 my ( $template, $borrowernumber, $cookie ) = get_template_and_user
({
36 template_name
=> "opac-patron-consent.tt",
42 my $patron = Koha
::Patrons
->find($borrowernumber);
43 my $gdpr_proc_consent;
44 if( C4
::Context
->preference('GDPR_Policy') ) {
45 $gdpr_proc_consent = Koha
::Patron
::Consents
->search({
46 borrowernumber
=> $borrowernumber,
47 type
=> GDPR_PROCESSING
,
49 $gdpr_proc_consent //= Koha
::Patron
::Consent
->new({
50 borrowernumber
=> $borrowernumber,
51 type
=> GDPR_PROCESSING
,
56 if( $op eq 'gdpr_proc_save' && $gdpr_proc_consent ) {
57 if( $gdpr_check eq 'agreed' ) {
58 $gdpr_proc_consent->given_on( dt_from_string
() );
59 $gdpr_proc_consent->refused_on( undef );
60 } elsif( $gdpr_check eq 'disagreed' ) {
61 $gdpr_proc_consent->given_on( undef );
62 $gdpr_proc_consent->refused_on( dt_from_string
() );
64 $gdpr_proc_consent->store;
67 # If user refused GDPR consent and we enforce GDPR, logout (when saving)
68 if( $op =~ /save/ && C4
::Context
->preference('GDPR_Policy') eq 'Enforced' && $gdpr_proc_consent->refused_on )
70 print $query->redirect('/cgi-bin/koha/opac-main.pl?logout.x=1');
74 $template->param( patron
=> $patron );
75 if( $gdpr_proc_consent ) {
77 gdpr_proc_consent
=> $gdpr_proc_consent->given_on // q{},
78 gdpr_proc_refusal
=> $gdpr_proc_consent->refused_on // q{},
82 output_html_with_http_headers
$query, $cookie, $template->output, undef, { force_no_caching
=> 1 };