Bug 4461: Correctly deal with encoding/escaping chars
[koha-ffzg.git] / opac / opac-reportproblem.pl
1 #!/usr/bin/perl
2
3 # This file is part of Koha.
4 #
5 # Copyright 2019 Aleisha Amohia <aleisha@catalyst.net.nz>
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 use Modern::Perl;
21 use CGI qw ( -utf8 );
22 use Try::Tiny;
23
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;
33
34 my $input = new CGI;
35
36 my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
37     {
38         template_name   => "opac-reportproblem.tt",
39         type            => "opac",
40         query           => $input,
41         authnotrequired => 0,
42     }
43 );
44
45 if (   !C4::Context->preference('OPACReportProblem')
46     || !C4::Context->preference('KohaAdminEmailAddress') )
47 {
48     print $input->redirect("/cgi-bin/koha/errors/404.pl");
49 }
50
51 my $referer = Koha::Util::Navigation::local_referer($input );
52 $referer = Encode::decode_utf8 uri_unescape $referer,
53
54 my $patron = Koha::Patrons->find($borrowernumber);
55 my $username = $patron->userid;
56 my $branchcode = $patron->branchcode;
57 my $library = Koha::Libraries->find($branchcode);
58 my @messages;
59
60 $template->param(
61     username    => $username,
62     problempage => $referer,
63     library     => $library,
64 );
65
66 my $op = $input->param('op') || '';
67 if ( $op eq 'addreport' ) {
68
69     my $subject = $input->param('subject');
70     my $message = $input->param('message');
71     my $problempage = $input->param('problempage');
72     $problempage = Encode::decode_utf8 uri_unescape $problempage;
73     my $recipient = $input->param('recipient') || 'admin';
74
75     try {
76         my $schema = Koha::Database->new->schema;
77         $schema->txn_do(
78             sub {
79                 my $problem = Koha::ProblemReport->new(
80                     {
81                         title          => $subject,
82                         content        => $message,
83                         borrowernumber => $borrowernumber,
84                         branchcode     => $branchcode,
85                         username       => $username,
86                         problempage    => $problempage,
87                         recipient      => $recipient,
88                     }
89                 )->store;
90
91                 # send notice to library
92                 my $letter = C4::Letters::GetPreparedLetter(
93                     module => 'members',
94                     letter_code => 'PROBLEM_REPORT',
95                     branchcode => $problem->branchcode,
96                     tables => {
97                         'problem_reports', $problem->reportid
98                     }
99                 );
100
101                 my $transport = 'email';
102                 my $reply_address = $patron->email || $patron->emailpro || $patron->B_email;
103
104                 if ( $recipient eq 'library' and defined($library->inbound_email_address) and $library->inbound_email_address ne C4::Context->preference('KohaAdminEmailAddress') ) {
105                     # the problem report is intended for a librarian and will be received at a library email address
106                     C4::Letters::EnqueueLetter({
107                         letter                 => $letter,
108                         borrowernumber         => $borrowernumber,
109                         message_transport_type => $transport,
110                         to_address             => $library->inbound_email_address,
111                         reply_address          => $reply_address,
112                     });
113                 } else {
114                     C4::Letters::EnqueueLetter({
115                         letter                 => $letter,
116                         borrowernumber         => $borrowernumber,
117                         message_transport_type => $transport,
118                         to_address             => C4::Context->preference('KohaAdminEmailAddress'),
119                         reply_address          => $reply_address,
120                     });
121                 }
122
123                 push @messages, {
124                     type => 'info',
125                     code => 'success_on_send',
126                 };
127
128                 $template->param(
129                     recipient => $recipient,
130                 );
131             }
132         );
133     }
134     catch {
135         warn "Something wrong happened when sending the report problem: $_";
136         push @messages, {
137             type => 'error',
138             code => 'error_on_send',
139         };
140     }
141 }
142
143 $template->param( messages => \@messages );
144
145 output_html_with_http_headers $input, $cookie, $template->output;