Bug 33036: Use Koha::Objects
[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( in_iprange get_session get_template_and_user );
33 use C4::Output qw( output_html_with_http_headers );
34 use C4::Members qw( IssueSlip );
35
36
37 my $input = CGI->new;
38 unless (C4::Context->preference('WebBasedSelfCheck')) {
39     # redirect to OPAC home if self-check is not enabled
40     print $input->redirect("/cgi-bin/koha/opac-main.pl");
41     exit;
42 }
43
44 unless ( in_iprange(C4::Context->preference('SelfCheckAllowByIPRanges')) ) {
45     # redirect to OPAC home if self-checkout not permitted from current IP
46     print $input->redirect("/cgi-bin/koha/opac-main.pl");
47     exit;
48 }
49
50 if (C4::Context->preference('AutoSelfCheckAllowed'))
51 {
52     my $AutoSelfCheckID = C4::Context->preference('AutoSelfCheckID');
53     my $AutoSelfCheckPass = C4::Context->preference('AutoSelfCheckPass');
54     $input->param(-name=>'userid',-values=>[$AutoSelfCheckID]);
55     $input->param(-name=>'password',-values=>[$AutoSelfCheckPass]);
56     $input->param(-name=>'koha_login_context',-values=>['sco']);
57 }
58 $input->param(-name=>'sco_user_login',-values=>[1]);
59
60 # patrons still need to be able to print receipts
61 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
62     {
63         template_name   => "sco/printslip.tt",
64         flagsrequired   => { self_check => "self_checkout_module" },
65         query           => $input,
66         type            => "opac",
67     }
68 );
69
70 my $jwt = $input->cookie('JWT');
71 my $patronid = $jwt ? Koha::Token->new->decode_jwt({ token => $jwt }) : undef;
72 my $patron = $patronid ? Koha::Patrons->find( { cardnumber => $patronid } ) : undef;
73
74 unless ( $patron ) {
75     print $input->header(-type => 'text/plain', -status => '403 Forbidden');
76     exit;
77 }
78
79 my $print = $input->param('print');
80 my $error = $input->param('error');
81
82 my ($slip, $is_html);
83 if (my $letter = IssueSlip (Koha::Patrons->find( $loggedinuser )->branchcode, $patron->borrowernumber, $print eq "qslip")) {
84     $slip = $letter->{content};
85     $is_html = $letter->{is_html};
86 }
87
88 $template->{VARS}->{slip} = $slip;
89 $template->{VARS}->{plain} = !$is_html;
90 $template->{VARS}->{borrowernumber} = $patron->borrowernumber;
91 $template->{VARS}->{stylesheet} = C4::Context->preference("SlipCSS");
92 $template->{VARS}->{error} = $error;
93
94 output_html_with_http_headers $input, $cookie, $template->output;