Bug 4289: 'OpacPublic' feature
[koha.git] / opac / opac-basket.pl
1 #!/usr/bin/perl
2
3 # This file is part of Koha.
4 #
5 # Koha is free software; you can redistribute it and/or modify it under the
6 # terms of the GNU General Public License as published by the Free Software
7 # Foundation; either version 2 of the License, or (at your option) any later
8 # version.
9 #
10 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
11 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
12 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License along with
15 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
16 # Suite 330, Boston, MA  02111-1307 USA
17
18
19 use strict;
20 use warnings;
21 use CGI;
22 use C4::Koha;
23 use C4::Biblio;
24 use C4::Items;
25 use C4::Auth;
26 use C4::Output;
27
28 my $query = new CGI;
29
30 my ( $template, $borrowernumber, $cookie ) = get_template_and_user (
31     {
32         template_name   => "opac-basket.tmpl",
33         query           => $query,
34         type            => "opac",
35         authnotrequired => ( C4::Context->preference("OpacPublic") ? 1 : 0 ),
36         flagsrequired   => { borrow => 1 },
37     }
38 );
39
40 my $bib_list     = $query->param('bib_list');
41 my $print_basket = $query->param('print');
42 my $verbose      = $query->param('verbose');
43
44 if ($verbose)      { $template->param( verbose      => 1 ); }
45 if ($print_basket) { $template->param( print_basket => 1 ); }
46
47 my @bibs = split( /\//, $bib_list );
48 my @results;
49
50 my $num = 1;
51 my $marcflavour = C4::Context->preference('marcflavour');
52 if (C4::Context->preference('TagsEnabled')) {
53         $template->param(TagsEnabled => 1);
54         foreach (qw(TagsShowOnList TagsInputOnList)) {
55                 C4::Context->preference($_) and $template->param($_ => 1);
56         }
57 }
58
59
60 foreach my $biblionumber ( @bibs ) {
61     $template->param( biblionumber => $biblionumber );
62
63     my $dat              = &GetBiblioData($biblionumber);
64     my $record           = &GetMarcBiblio($biblionumber);
65     next unless $record;
66     my $marcnotesarray   = GetMarcNotes( $record, $marcflavour );
67     my $marcauthorsarray = GetMarcAuthors( $record, $marcflavour );
68     my $marcsubjctsarray = GetMarcSubjects( $record, $marcflavour );
69     my $marcseriesarray  = GetMarcSeries  ($record,$marcflavour);
70     my $marcurlsarray    = GetMarcUrls    ($record,$marcflavour);
71     my @items            = &GetItemsInfo( $biblionumber, 'opac' );
72     my $subtitle         = GetRecordValue('subtitle', $record, GetFrameworkCode($biblionumber));
73
74     my $hasauthors = 0;
75     if($dat->{'author'} || @$marcauthorsarray) {
76       $hasauthors = 1;
77     }
78     my $collections =  GetKohaAuthorisedValues('items.ccode',$dat->{'frameworkcode'}, 'opac');
79
80         # COinS format FIXME: for books Only
81         my $coins_format;
82         my $fmt = substr $record->leader(), 6,2;
83         my $fmts;
84         $fmts->{'am'} = 'book';
85         $dat->{ocoins_format} = $fmts->{$fmt};
86
87     if ( $num % 2 == 1 ) {
88         $dat->{'even'} = 1;
89     }
90
91     $num++;
92     $dat->{biblionumber} = $biblionumber;
93     $dat->{ITEM_RESULTS}   = \@items;
94     $dat->{MARCNOTES}      = $marcnotesarray;
95     $dat->{MARCSUBJCTS}    = $marcsubjctsarray;
96     $dat->{MARCAUTHORS}    = $marcauthorsarray;
97     $dat->{MARCSERIES}  = $marcseriesarray;
98     $dat->{MARCURLS}    = $marcurlsarray;
99     $dat->{HASAUTHORS}  = $hasauthors;
100     $dat->{subtitle} = $subtitle;
101
102     if ( C4::Context->preference("BiblioDefaultView") eq "normal" ) {
103         $dat->{dest} = "opac-detail.pl";
104     }
105     elsif ( C4::Context->preference("BiblioDefaultView") eq "marc" ) {
106         $dat->{dest} = "opac-MARCdetail.pl";
107     }
108     else {
109         $dat->{dest} = "opac-ISBDdetail.pl";
110     }
111     push( @results, $dat );
112 }
113
114 my $resultsarray = \@results;
115
116 # my $itemsarray=\@items;
117
118 $template->param(
119     bib_list => $bib_list,
120     BIBLIO_RESULTS => $resultsarray,
121 );
122
123 output_html_with_http_headers $query, $cookie, $template->output;