Bug 4461: (follow-up) Redirect to 404 if OPACProblemReport not enabled
[koha.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 C4::Auth;    # get_template_and_user
23 use C4::Output;
24 use C4::Members;
25 use C4::Letters;
26 use Koha::ProblemReport;
27 use Koha::DateUtils;
28 use Koha::Libraries;
29 use Koha::Patrons;
30
31 my $input = new CGI;
32
33 my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
34     {
35         template_name   => "opac-reportproblem.tt",
36         type            => "opac",
37         query           => $input,
38         authnotrequired => 0,
39     }
40 );
41
42 if ( !C4::Context->preference('OPACReportProblem') ){
43     print $input->redirect("/cgi-bin/koha/errors/404.pl");
44 }
45
46 my $problempage = $ENV{HTTP_REFERER};
47 my $member = Koha::Patrons->find($borrowernumber);
48 my $username = $member->userid;
49 my $branchcode = $member->branchcode;
50 my $library = Koha::Libraries->find($branchcode);
51 my $recipients = 2;
52
53 if (
54     ( !defined($library->branchreplyto) || $library->branchreplyto eq '' ) &&
55     ( C4::Context->preference('ReplytoDefault') eq '' ) &&
56     ( !defined($library->branchemail) || $library->branchemail eq '' )
57     ) {
58     $template->param( nolibemail => 1 );
59     $recipients--;
60 }
61
62 my $koha_admin = C4::Context->preference('KohaAdminEmailAddress');
63 if ( $koha_admin eq '' ) {
64     $template->param( noadminemail => 1 );
65     $recipients--;
66 }
67
68 $template->param(
69     username => $username,
70     probpage => $problempage,
71 );
72
73 my $op = $input->param('op') || '';
74 if ( $op eq 'addreport' ) {
75
76     if ( $recipients == 0 ){
77         print $input->redirect("/cgi-bin/koha/opac-reportproblem?norecipients=1.pl");
78         exit;
79     }
80
81     my $subject = $input->param('subject');
82     my $message = $input->param('message');
83     my $place = $input->param('place');
84     my $recipient = $input->param('recipient') || 'library';
85     my $problem = Koha::ProblemReport->new({ title => $subject, content => $message, borrowernumber => $borrowernumber, branchcode => $branchcode, username => $username, problempage => $place, recipient => $recipient, reportdate => dt_from_string() })->store;
86     $template->param(
87         recipient => $recipient,
88         successfuladd => 1,
89         probpage => $place,
90     );
91
92     my $problemreport = $problem->unblessed;
93     $problemreport->{code} = 'PROBLEM_REPORT';
94     $problemreport->{content} .= "\nUsername: $username";
95     $problemreport->{content} .= "\nProblem page: $place";
96     my $transport = 'email';
97
98     my $from_address = $member->email || $member->emailpro || $member->B_email || $koha_admin;
99
100     if ( $recipient eq 'admin' ) {
101         C4::Letters::EnqueueLetter({
102             letter                 => $problemreport,
103             borrowernumber         => $borrowernumber,
104             message_transport_type => $transport,
105             to_address             => $koha_admin,
106             from_address           => $from_address,
107         });
108     } else {
109         my  $to_address = $library->branchreplyto ||
110             C4::Context->preference('ReplytoDefault') ||
111             $library->branchemail;
112         C4::Letters::EnqueueLetter({
113             letter                 => $problemreport,
114             borrowernumber         => $borrowernumber,
115             message_transport_type => $transport,
116             to_address             => $to_address,
117             from_address           => $from_address,
118         });
119     }
120 }
121
122 output_html_with_http_headers $input, $cookie, $template->output;