3 # Copyright 2006 Katipo Communications
5 # This file is part of Koha.
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>.
35 my $biblionumber = $query->param('biblionumber');
36 my $review = $query->param('review');
37 my $reviewid = $query->param('reviewid');
38 my ( $template, $borrowernumber, $cookie ) = get_template_and_user
(
40 template_name
=> "opac-review.tt",
43 authnotrequired
=> ( C4
::Context
->preference("OpacPublic") ?
1 : 0 ),
47 # FIXME: need to allow user to delete their own comment(s)
49 my ( $clean, @errors, $savedreview );
50 my $biblio = Koha
::Biblios
->find( $biblionumber );
53 push @errors, { nobiblio
=> 1 };
54 } elsif( $reviewid ) { # edit existing one, check on creator
55 $savedreview = Koha
::Reviews
->search({ reviewid
=> $reviewid, borrowernumber
=> $borrowernumber })->next;
56 push @errors, { unauthorized
=> 1 } if !$savedreview;
57 } else { # this check prevents adding multiple comments
58 # FIXME biblionumber, borrowernumber should be a unique key of reviews
59 $savedreview = Koha
::Reviews
->search({ biblionumber
=> $biblionumber, borrowernumber
=> $borrowernumber })->next;
60 $review = $savedreview?
$savedreview->review: $review;
63 if( !@errors && defined $review ) {
64 if ($review !~ /\S/) {
65 push @errors, {empty
=>1};
67 $clean = C4
::Scrubber
->new('comment')->scrub($review);
69 push @errors, {scrubbed_all
=>1};
71 if ($clean ne $review) {
72 push @errors, {scrubbed
=>$clean};
74 my $js_ok_review = $clean;
75 $js_ok_review =~ s/"/"/g; # probably redundant w/ TMPL ESCAPE=JS
76 $template->param(clean_review
=>$js_ok_review);
82 datereviewed
=> dt_from_string
86 $reviewid = Koha
::Review
->new(
87 { biblionumber
=> $biblionumber,
88 borrowernumber
=> $borrowernumber,
90 datereviewed
=> dt_from_string
94 unless (@errors){ $template->param(WINDOW_CLOSE
=>1); }
98 (@errors ) and $template->param( ERRORS
=>\
@errors);
99 ($cgi_debug) and $template->param(cgi_debug
=>1 );
101 $review ||= $savedreview->review if $savedreview;
103 'biblionumber' => $biblionumber,
104 'borrowernumber' => $borrowernumber,
106 'reviewid' => $reviewid || 0,
107 'title' => $biblio->title,
110 output_html_with_http_headers
$query, $cookie, $template->output;