Koha/opac/opac-reportproblem.pl
Jonathan Druart ffb5a071cb
Bug 4461: Better error handling
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
Signed-off-by: David Nind <david@davidnind.com>
Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
2020-04-06 11:17:32 +01:00

140 lines
4.6 KiB
Perl

#!/usr/bin/perl
# This file is part of Koha.
#
# Copyright 2019 Aleisha Amohia <aleisha@catalyst.net.nz>
#
# 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.
#
# You should have received a copy of the GNU General Public License
# along with Koha; if not, see <http://www.gnu.org/licenses>.
use Modern::Perl;
use CGI qw ( -utf8 );
use Try::Tiny;
use C4::Auth; # get_template_and_user
use C4::Output;
use C4::Letters;
use Koha::ProblemReport;
use Koha::Libraries;
use Koha::Patrons;
use Koha::Util::Navigation;
my $input = new CGI;
my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
{
template_name => "opac-reportproblem.tt",
type => "opac",
query => $input,
authnotrequired => 0,
}
);
if ( !C4::Context->preference('OPACReportProblem')
|| !C4::Context->preference('KohaAdminEmailAddress') )
{
print $input->redirect("/cgi-bin/koha/errors/404.pl");
}
my $problempage = C4::Context->preference('OPACBaseURL') . Koha::Util::Navigation::local_referer($input );
my $patron = Koha::Patrons->find($borrowernumber);
my $username = $patron->userid;
my $branchcode = $patron->branchcode;
my $library = Koha::Libraries->find($branchcode);
my @messages;
$template->param(
username => $username,
problempage => $problempage,
library => $library,
);
my $op = $input->param('op') || '';
if ( $op eq 'addreport' ) {
my $subject = $input->param('subject');
my $message = $input->param('message');
my $problempage = $input->param('problempage');
my $recipient = $input->param('recipient') || 'admin';
try {
my $schema = Koha::Database->new->schema;
$schema->txn_do(
sub {
my $problem = Koha::ProblemReport->new(
{
title => $subject,
content => $message,
borrowernumber => $borrowernumber,
branchcode => $branchcode,
username => $username,
problempage => $problempage,
recipient => $recipient,
}
)->store;
# send notice to library
my $letter = C4::Letters::GetPreparedLetter(
module => 'members',
letter_code => 'PROBLEM_REPORT',
branchcode => $problem->branchcode,
tables => {
'problem_reports', $problem->reportid
}
);
my $from_address = C4::Context->preference('KohaAdminEmailAddress');
my $transport = 'email';
if ( $recipient eq 'admin' ) {
C4::Letters::EnqueueLetter({
letter => $letter,
borrowernumber => $borrowernumber,
message_transport_type => $transport,
to_address => C4::Context->preference('KohaAdminEmailAddress'),
from_address => $from_address,
});
} else {
C4::Letters::EnqueueLetter({
letter => $letter,
borrowernumber => $borrowernumber,
message_transport_type => $transport,
to_address => $library->branchemail,
from_address => $from_address,
});
}
push @messages, {
type => 'info',
code => 'success_on_send',
};
$template->param(
recipient => $recipient,
);
}
);
}
catch {
warn "Something wrong happened when sending the report problem: $_";
push @messages, {
type => 'error',
code => 'error_on_send',
};
}
}
$template->param( messages => \@messages );
output_html_with_http_headers $input, $cookie, $template->output;