Bug 15839: Koha::Reviews - Remove savereview
[koha.git] / opac / opac-review.pl
1 #!/usr/bin/perl
2
3 # Copyright 2006 Katipo Communications
4 #
5 # This file is part of Koha.
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;
23 use C4::Koha;
24 use C4::Output;
25 use C4::Biblio;
26 use C4::Scrubber;
27 use C4::Debug;
28 use Koha::DateUtils;
29 use Koha::Review;
30 use Koha::Reviews;
31
32 my $query        = new CGI;
33 my $biblionumber = $query->param('biblionumber');
34 my $review       = $query->param('review');
35 my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
36     {
37         template_name   => "opac-review.tt",
38         query           => $query,
39         type            => "opac",
40         authnotrequired => ( C4::Context->preference("OpacPublic") ? 1 : 0 ),
41     }
42 );
43
44 # FIXME: need to allow user to delete their own comment(s)
45
46 my $biblio = GetBiblioData($biblionumber);
47 # FIXME biblionumber, borrowernumber should be a unique key of reviews
48 my $savedreview = Koha::Reviews->search({ biblionumber => $biblionumber, borrowernumber => $borrowernumber })->next;
49 my ($clean, @errors);
50 if (defined $review) {
51         if ($review !~ /\S/) {
52                 push @errors, {empty=>1};
53         } else {
54                 $clean = C4::Scrubber->new('comment')->scrub($review);
55                 if ($clean !~ /\S/) {
56                         push @errors, {scrubbed_all=>1};
57                 } else {
58                         if ($clean ne $review) {
59                                 push @errors, {scrubbed=>$clean};
60                         }
61                         my $js_ok_review = $clean;
62                         $js_ok_review =~ s/"/&quot;/g;  # probably redundant w/ TMPL ESCAPE=JS
63                         $template->param(clean_review=>$js_ok_review);
64             if ($savedreview) {
65                 $savedreview->set(
66                     {
67                         review        => $clean,
68                         approved      => 0,
69                         datereviewed  => dt_from_string
70                     }
71                 )->store;
72             } else {
73                 Koha::Review->new(
74                     {   biblionumber   => $biblionumber,
75                         borrowernumber => $borrowernumber,
76                         review         => $clean,
77                     }
78                 )->store;
79             }
80                         unless (@errors){ $template->param(WINDOW_CLOSE=>1); }
81                 }
82         }
83 }
84 (@errors   ) and $template->param(   ERRORS=>\@errors);
85 ($cgi_debug) and $template->param(cgi_debug=>1       );
86 $review = $clean;
87 $review ||= $savedreview->review if $savedreview;
88 $template->param(
89     'biblionumber'   => $biblionumber,
90     'borrowernumber' => $borrowernumber,
91     'review'         => $review,
92         'reviewid'       => scalar $query->param('reviewid') || 0,
93     'title'          => $biblio->{'title'},
94 );
95
96 output_html_with_http_headers $query, $cookie, $template->output;
97