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>.
24 use C4
::Auth
; # get_template_and_user
27 use Koha
::ProblemReport
;
30 use Koha
::Util
::Navigation
;
36 my ( $template, $borrowernumber, $cookie ) = get_template_and_user
(
38 template_name
=> "opac-reportproblem.tt",
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;
60 username
=> $username,
61 problempage
=> $referer,
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';
75 my $schema = Koha
::Database
->new->schema;
78 my $problem = Koha
::ProblemReport
->new(
82 borrowernumber
=> $borrowernumber,
83 branchcode
=> $patron->branchcode,
84 username
=> $username,
85 problempage
=> $problempage,
86 recipient
=> $recipient,
90 # send notice to library
91 my $letter = C4
::Letters
::GetPreparedLetter
(
93 letter_code
=> 'PROBLEM_REPORT',
94 branchcode
=> $problem->branchcode,
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
({
107 borrowernumber
=> $borrowernumber,
108 message_transport_type
=> $transport,
109 to_address
=> $library->inbound_email_address,
110 reply_address
=> $reply_address,
113 C4
::Letters
::EnqueueLetter
({
115 borrowernumber
=> $borrowernumber,
116 message_transport_type
=> $transport,
117 to_address
=> C4
::Context
->preference('KohaAdminEmailAddress'),
118 reply_address
=> $reply_address,
124 code
=> 'success_on_send',
128 recipient
=> $recipient,
134 warn "Something wrong happened when sending the report problem: $_";
137 code
=> 'error_on_send',
142 $template->param( messages
=> \
@messages );
144 output_html_with_http_headers
$input, $cookie, $template->output;