X-Git-Url: http://koha-dev.rot13.org:8081/gitweb/?a=blobdiff_plain;f=opac%2Fopac-privacy.pl;h=81d59585124914b96e8057790a9b082b27f4dce9;hb=577a237a3f15a5a3c2e27761a900994e439affcf;hp=22fe694e58596d07f6f19fb276cc908191c07a26;hpb=6dd368e2c83ceb90fda622fbbd669ef0e6783656;p=srvgit diff --git a/opac/opac-privacy.pl b/opac/opac-privacy.pl index 22fe694e58..81d5958512 100755 --- a/opac/opac-privacy.pl +++ b/opac/opac-privacy.pl @@ -3,71 +3,107 @@ # # copyright 2009, BibLibre, paul.poulain@biblibre.com # -# Koha is free software; you can redistribute it and/or modify it under the -# terms of the GNU General Public License as published by the Free Software -# Foundation; either version 2 of the License, or (at your option) any later -# version. +# Koha is free software; you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3 of the License, or +# (at your option) any later version. # -# Koha is distributed in the hope that it will be useful, but WITHOUT ANY -# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR -# A PARTICULAR PURPOSE. See the GNU General Public License for more details. +# Koha is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. # -# You should have received a copy of the GNU General Public License along -# with Koha; if not, write to the Free Software Foundation, Inc., -# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. +# You should have received a copy of the GNU General Public License +# along with Koha; if not, see . -use strict; -use CGI; +use Modern::Perl; +use CGI qw ( -utf8 ); -use C4::Auth; # checkauth, getborrowernumber. +use C4::Auth qw( get_template_and_user ); use C4::Context; -use C4::Circulation; -use C4::Members; -use C4::Output; -use C4::Dates; +use C4::Output qw( output_html_with_http_headers ); +use Koha::Patrons; -my $query = new CGI; -my $dbh = C4::Context->dbh; +my $query = CGI->new; + +# if OPACPrivacy is disabled, leave immediately +if ( ! C4::Context->preference('OPACPrivacy') || ! C4::Context->preference('opacreadinghistory') ) { + print $query->redirect("/cgi-bin/koha/errors/404.pl"); + exit; +} my ( $template, $borrowernumber, $cookie ) = get_template_and_user( { - template_name => "opac-privacy.tmpl", + template_name => "opac-privacy.tt", query => $query, type => "opac", - authnotrequired => 0, - flagsrequired => { borrow => 1 }, - debug => 1, } ); -my $op = $query->param("op"); -my $privacy = $query->param("privacy"); +my $op = $query->param("op"); +my $privacy = $query->param("privacy"); +my $privacy_guarantor_checkouts = $query->param("privacy_guarantor_checkouts"); +my $privacy_guarantor_fines = $query->param("privacy_guarantor_fines"); -if ($op eq "update_privacy") -{ - ModPrivacy($borrowernumber,$privacy); - $template->param('privacy_updated' => 1); +my $patron = Koha::Patrons->find( $borrowernumber ); + +if ( $op eq "update_privacy" ) { + if ( $patron ) { + $patron->set({ + privacy => $privacy, + privacy_guarantor_checkouts => defined $privacy_guarantor_checkouts?$privacy_guarantor_checkouts:$patron->privacy_guarantor_checkouts, + privacy_guarantor_fines => defined $privacy_guarantor_fines?$privacy_guarantor_fines:$patron->privacy_guarantor_fines, + })->store; + $template->param( 'privacy_updated' => 1 ); + } } -if ($op eq "delete_record") { - # delete all reading records for items returned - # uses a hardcoded date ridiculously far in the future - my ($rows,$err_history_not_deleted) = AnonymiseIssueHistory('2999-12-12',$borrowernumber); - # confirm the user the deletion has been done - if ( !$err_history_not_deleted ) { - $template->param( 'deleted' => 1 ); +elsif ( $op eq "delete_record" ) { + + my $holds = $query->param('holds'); + my $checkouts = $query->param('checkouts'); + my $all = $query->param('all'); + + $template->param( delete_all_quested => 1 ) + if $all; + + if ( $all or $checkouts ) { + + # delete all reading records for items returned + my $rows = eval { $patron->old_checkouts->anonymize + 0 }; + + $template->param( + ( + $@ ? ( error_deleting_checkouts_history => 1 ) + : $rows ? ( deleted_checkouts => int($rows) ) + : ( no_checkouts_to_delete => 1 ) + ), + delete_checkouts_requested => 1, + ); } - else { - $template->param( 'err_history_not_deleted' => 1 ); + + if ( $all or $holds ) { + + my $rows = eval { $patron->old_holds->anonymize + 0 }; + + $template->param( + ( + $@ ? ( error_deleting_holds_history => 1 ) + : $rows ? ( deleted_holds => int($rows) ) + : ( no_holds_to_delete => 1 ) + ), + delete_holds_requested => 1, + ); } } -# get borrower privacy .... -my ( $borr ) = GetMemberDetails( $borrowernumber ); - -$template->param( 'Ask_data' => '1', - 'privacy'.$borr->{'privacy'} => 1, - 'firstname' => $borr->{'firstname'}, - 'surname' => $borr->{'surname'}, - 'privacyview' => 1, + +$template->param( + 'Ask_data' => 1, + 'privacy' . $patron->privacy() => 1, + 'privacyview' => 1, + 'borrower' => $patron, + 'surname' => $patron->surname, + 'firstname' => $patron->firstname, + 'has_guarantor_flag' => $patron->guarantor_relationships->guarantors->_resultset->count ); -output_html_with_http_headers $query, $cookie, $template->output; +output_html_with_http_headers $query, $cookie, $template->output, undef, { force_no_caching => 1 };