NEW feature : RSS feeds. See POD & koha-devel for details
[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 under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 2 of the License, or (at your option) any later
10 # version.
11 #
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License along with
17 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
18 # Suite 330, Boston, MA  02111-1307 USA
19
20 use strict;
21 require Exporter;
22 use CGI;
23 use C4::Auth;
24 use C4::Koha;
25 use C4::Output;
26 use C4::Circulation;
27 use C4::Review;
28 use C4::Biblio;
29
30 my $query        = new CGI;
31 my $biblionumber = $query->param('biblionumber');
32 my $type         = $query->param('type');
33 my $review       = $query->param('review');
34 my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
35     {
36         template_name   => "opac-review.tmpl",
37         query           => $query,
38         type            => "opac",
39         authnotrequired => 1,
40     }
41 );
42
43 my $biblio = GetBiblioData( $biblionumber);
44
45 my $savedreview = getreview( $biblionumber, $borrowernumber );
46 if ( $type eq 'save' ) {
47     savereview( $biblionumber, $borrowernumber, $review );
48 }
49 if ( $type eq 'update' ) {
50     updatereview( $biblionumber, $borrowernumber, $review );
51 }
52 if ($savedreview) {
53     $type = "update";
54 }
55 else {
56     $type = "save";
57 }
58 my $reviewdata = $savedreview->{'review'};
59 $template->param(
60     'biblionumber'   => $biblionumber,
61     'borrowernumber' => $borrowernumber,
62     'type'           => $type,
63     'review'         => $reviewdata,
64     'title'          => $biblio->{'title'},
65 );
66
67 # get the record
68 my $order  = $query->param('order');
69 my $order2 = $order;
70 if ( $order2 eq '' ) {
71     $order2 = "date_due desc";
72 }
73 my $limit = $query->param('limit');
74 if ( $limit eq 'full' ) {
75     $limit = 0;
76 }
77 else {
78     $limit = 50;
79 }
80
81 output_html_with_http_headers $query, $cookie, $template->output;
82