Line 0
Link Here
|
0 |
- |
1 |
#!/usr/bin/perl |
|
|
2 |
|
3 |
# This file is part of Koha. |
4 |
# |
5 |
# Copyright 2017 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 |
|
21 |
use Modern::Perl; |
22 |
use CGI qw ( -utf8 ); |
23 |
use C4::Auth; # get_template_and_user |
24 |
use C4::Output; |
25 |
use C4::Members; |
26 |
use C4::Letters; |
27 |
use Koha::ProblemReport; |
28 |
use Koha::DateUtils; |
29 |
use Koha::Libraries; |
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 |
my $problempage = $ENV{HTTP_REFERER}; |
43 |
my $member = GetMember( borrowernumber => $borrowernumber ); |
44 |
my $username = $member->{'userid'}; |
45 |
my $branchcode = $member->{'branchcode'}; |
46 |
my $library = Koha::Libraries->find($branchcode); |
47 |
if ( $library->branchemail eq undef || ! $library->branchemail ) { |
48 |
$template->param( nolibemail => 1 ); |
49 |
} |
50 |
my $koha_admin = C4::Context->preference('KohaAdminEmailAddress'); |
51 |
if ( ! $koha_admin ) { |
52 |
$template->param( noadminemail => 1 ); |
53 |
} |
54 |
my $recipient = $input->param('recipient') || 'library'; |
55 |
$template->param( |
56 |
username => $username, |
57 |
probpage => $problempage, |
58 |
); |
59 |
|
60 |
my $op = $input->param('op') || ''; |
61 |
if ( $op eq 'addreport' ) { |
62 |
my $subject = $input->param('subject'); |
63 |
my $message = $input->param('message'); |
64 |
my $place = $input->param('place'); |
65 |
my $problem = Koha::ProblemReport->new({ title => $subject, content => $message, borrowernumber => $borrowernumber, branchcode => $branchcode, username => $username, problempage => $place, recipient => $recipient, reportdate => dt_from_string() })->store; |
66 |
$template->param( |
67 |
recipient => $recipient, |
68 |
successfuladd => 1, |
69 |
probpage => $place, |
70 |
); |
71 |
|
72 |
my $problemreport = $problem->unblessed; |
73 |
$problemreport->{code} = 'PROBLEM_REPORT'; |
74 |
$problemreport->{content} .= "\nUsername: $username"; |
75 |
$problemreport->{content} .= "\nProblem page: $place"; |
76 |
my $transport = 'email'; |
77 |
|
78 |
my $from_address = $member->{email} || $member->{emailpro} || $member->{B_email} || $koha_admin; |
79 |
|
80 |
if ( $recipient eq 'admin' ) { |
81 |
C4::Letters::EnqueueLetter({ |
82 |
letter => $problemreport, |
83 |
borrowernumber => $borrowernumber, |
84 |
message_transport_type => $transport, |
85 |
to_address => $koha_admin, |
86 |
from_address => $from_address, |
87 |
}); |
88 |
} else { |
89 |
my $to_address = $library->branchemail; |
90 |
C4::Letters::EnqueueLetter({ |
91 |
letter => $problemreport, |
92 |
borrowernumber => $borrowernumber, |
93 |
message_transport_type => $transport, |
94 |
to_address => $to_address, |
95 |
from_address => $from_address, |
96 |
}); |
97 |
} |
98 |
} |
99 |
|
100 |
output_html_with_http_headers $input, $cookie, $template->output; |