Bug 25873: Ignore malformed data for Elasticsearch integer fields
[koha.git] / opac / opac-reportproblem.pl
blobb7e133c3a7f01bf74a359c683cc7ff1adf1d0e73
1 #!/usr/bin/perl
3 # This file is part of Koha.
5 # Copyright 2019 Aleisha Amohia <aleisha@catalyst.net.nz>
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 CGI qw ( -utf8 );
22 use Try::Tiny;
24 use C4::Auth; # get_template_and_user
25 use C4::Output;
26 use C4::Letters;
27 use Koha::ProblemReport;
28 use Koha::Libraries;
29 use Koha::Patrons;
30 use Koha::Util::Navigation;
31 use URI::Escape;
32 use Encode;
34 my $input = new CGI;
36 my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
38 template_name => "opac-reportproblem.tt",
39 type => "opac",
40 query => $input,
41 authnotrequired => 0,
45 if ( !C4::Context->preference('OPACReportProblem')
46 || !C4::Context->preference('KohaAdminEmailAddress') )
48 print $input->redirect("/cgi-bin/koha/errors/404.pl");
51 my $referer = Koha::Util::Navigation::local_referer($input );
52 $referer = Encode::decode_utf8 uri_unescape $referer,
54 my $patron = Koha::Patrons->find($borrowernumber);
55 my $library = $patron->library;
56 my $username = $patron->userid;
57 my @messages;
59 $template->param(
60 username => $username,
61 problempage => $referer,
62 library => $library,
65 my $op = $input->param('op') || '';
66 if ( $op eq 'addreport' ) {
68 my $subject = $input->param('subject');
69 my $message = $input->param('message');
70 my $problempage = $input->param('problempage');
71 $problempage = Encode::decode_utf8 uri_unescape $problempage;
72 my $recipient = $input->param('recipient') || 'admin';
74 try {
75 my $schema = Koha::Database->new->schema;
76 $schema->txn_do(
77 sub {
78 my $problem = Koha::ProblemReport->new(
80 title => $subject,
81 content => $message,
82 borrowernumber => $borrowernumber,
83 branchcode => $patron->branchcode,
84 username => $username,
85 problempage => $problempage,
86 recipient => $recipient,
88 )->store;
90 # send notice to library
91 my $letter = C4::Letters::GetPreparedLetter(
92 module => 'members',
93 letter_code => 'PROBLEM_REPORT',
94 branchcode => $problem->branchcode,
95 tables => {
96 'problem_reports', $problem->reportid
100 my $transport = 'email';
101 my $reply_address = $patron->email || $patron->emailpro || $patron->B_email;
103 if ( $recipient eq 'library' and defined($library->inbound_email_address) and $library->inbound_email_address ne C4::Context->preference('KohaAdminEmailAddress') ) {
104 # the problem report is intended for a librarian and will be received at a library email address
105 C4::Letters::EnqueueLetter({
106 letter => $letter,
107 borrowernumber => $borrowernumber,
108 message_transport_type => $transport,
109 to_address => $library->inbound_email_address,
110 reply_address => $reply_address,
112 } else {
113 C4::Letters::EnqueueLetter({
114 letter => $letter,
115 borrowernumber => $borrowernumber,
116 message_transport_type => $transport,
117 to_address => C4::Context->preference('KohaAdminEmailAddress'),
118 reply_address => $reply_address,
122 push @messages, {
123 type => 'info',
124 code => 'success_on_send',
127 $template->param(
128 recipient => $recipient,
133 catch {
134 warn "Something wrong happened when sending the report problem: $_";
135 push @messages, {
136 type => 'error',
137 code => 'error_on_send',
142 $template->param( messages => \@messages );
144 output_html_with_http_headers $input, $cookie, $template->output;