Bug 8007: (QA followup) Add error handling when generating the pdf
[koha.git] / opac / opac-discharge.pl
blob800222cd4b1536c98816a770cec15fd920212d11
1 #!/usr/bin/perl
3 # This file is part of Koha.
5 # Copyright 2013 BibLibre
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.
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.
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>.
20 use Modern::Perl;
21 use Carp;
23 use C4::Auth qw(:DEFAULT get_session);
24 use CGI qw( -utf8 );
25 use C4::Context;
26 use C4::Output;
27 use C4::Log;
28 use C4::Debug;
29 use C4::Branch;
30 use C4::Members;
31 use Koha::Borrower::Discharge;
32 use Koha::DateUtils;
34 my $input = new CGI;
36 my $op = $input->param("op");
38 # Getting the template and auth
39 my ( $template, $loggedinuser, $cookie ) = get_template_and_user({
40 template_name => "opac-discharge.tt",
41 query => $input,
42 type => "opac",
43 debug => 1,
44 });
46 if ( $op eq 'request' ) {
47 my $success = Koha::Borrower::Discharge::request({
48 borrowernumber => $loggedinuser,
49 });
51 if ($success) {
52 $template->param( success => 1 );
54 else {
55 $template->param( has_issues => 1 );
58 elsif ( $op eq 'get' ) {
59 eval {
60 my $pdf_path = Koha::Borrower::Discharge::generate_as_pdf({
61 borrowernumber => $loggedinuser
62 });
64 binmode(STDOUT);
65 print $input->header(
66 -type => 'application/pdf',
67 -charset => 'utf-8',
68 -attachment => "discharge_$loggedinuser.pdf",
70 open my $fh, '<', $pdf_path;
71 my @lines = <$fh>;
72 close $fh;
73 print @lines;
74 exit;
76 if ( $@ ) {
77 carp $@;
78 $template->param( messages => [ {type => 'error', code => 'unable_to_generate_pdf'} ] );
81 else {
82 my $pending = Koha::Borrower::Discharge::count({
83 borrowernumber => $loggedinuser,
84 pending => 1,
85 });
86 my $available = Koha::Borrower::Discharge::count({
87 borrowernumber => $loggedinuser,
88 validated => 1,
89 });
90 $template->param(
91 available => $available,
92 pending => $pending,
96 $template->param( dischargeview => 1 );
98 output_html_with_http_headers $input, $cookie, $template->output;