Problem : circulation.pl cannot compile
[koha.git] / opac / opac-rss.pl
1 #!/usr/bin/perl
2
3 # Copyright 2009 SARL Biblibre
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
21 use strict;
22 use warnings;
23 use CGI;
24 use XML::RSS;
25 use C4::Items;
26 use C4::Auth;
27 use C4::Output;
28
29
30 my $query        = new CGI;
31 my @itemtype     = $query->param('itemtype');
32 my @branches     = $query->param('branch');
33
34 my @lastacq = GetLastAcquisitions( 
35  { 'branches' => \@branches, 'itemtypes' => \@itemtype }
36  , 20
37 );
38
39 my $baseurl;
40 if(C4::Context->preference('OPACBaseURL')){
41          $baseurl = "http://".C4::Context->preference('OPACBaseURL')."/cgi-bin/koha";
42 }else{
43         warn "No OPACBaseURL syspref";
44         die
45 }
46
47 my $rss = XML::RSS->new(version => '1.0');
48 $rss->channel(
49         title => "Last acquisitions",
50         link => "$baseurl/opac-main.pl",
51         , descriptions => "Last acquisitions of the library"
52         );
53
54 for my $item (@lastacq){
55         $rss->add_item(
56            title       => $item->{title},
57            link        => "$baseurl/opac-detail.pl?biblionumber=" . $item->{biblionumber},
58         );
59 }
60
61 print $query->header(
62         -type    => "xml/rss",
63         -charset => 'UTF-8',
64         -Pragma => 'no-cache',
65         -'Cache-Control' => 'no-cache',
66
67         );
68 print $rss->as_string();