Bug 25898: Prohibit indirect object notation
[koha.git] / opac / sco / printslip.pl
1 #!/usr/bin/perl
2
3 # Copyright 2012 ByWater Solutions
4 #
5 # This file is part of Koha.
6 #
7 # Koha is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
11 #
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
19
20 =head1 printslip.pl
21
22 Script to allow SCO patrons to print a receipt for their checkout.
23
24 It is called from sco-main.pl
25
26 =cut
27
28
29 use Modern::Perl;
30 use CGI qw ( -utf8 );
31 use C4::Context;
32 use C4::Auth qw/:DEFAULT get_session in_iprange/;
33 use C4::Output;
34 use C4::Members;
35 use C4::Koha;
36
37 my $input = CGI->new;
38 unless ( in_iprange(C4::Context->preference('SelfCheckAllowByIPRanges')) ) {
39     print $input->header(status => '403 Forbidden - functionality not available from your location');
40     exit;
41 }
42
43 my $sessionID = $input->cookie("CGISESSID");
44 my $session = get_session($sessionID);
45
46 my $print = $input->param('print');
47 my $error = $input->param('error');
48
49 # patrons still need to be able to print receipts
50 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
51     {
52         template_name   => "sco/printslip.tt",
53         query           => $input,
54         type            => "opac",
55     }
56 );
57
58 my $borrowernumber = $input->param('borrowernumber');
59 my $branch=C4::Context->userenv->{'branch'};
60 my ($slip, $is_html);
61 if (my $letter = IssueSlip ($session->param('branch') || $branch, $borrowernumber, $print eq "qslip")) {
62     $slip = $letter->{content};
63     $is_html = $letter->{is_html};
64 }
65
66 $template->{VARS}->{slip} = $slip;
67 $template->{VARS}->{plain} = !$is_html;
68 $template->{VARS}->{borrowernumber} = $borrowernumber;
69 $template->{VARS}->{stylesheet} = C4::Context->preference("SlipCSS");
70 $template->{VARS}->{error} = $error;
71
72 output_html_with_http_headers $input, $cookie, $template->output;