Bug 26223: include item information in OPAC ISBD view
[koha.git] / opac / opac-ISBDdetail.pl
1 #!/usr/bin/perl
2
3 # Copyright 2000-2002 Katipo Communications
4 # parts copyright 2010 BibLibre
5 #
6 # This file is part of Koha.
7 #
8 # Koha is free software; you can redistribute it and/or modify it
9 # under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 3 of the License, or
11 # (at your option) any later version.
12 #
13 # Koha is distributed in the hope that it will be useful, but
14 # WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License
19 # along with Koha; if not, see <http://www.gnu.org/licenses>.
20
21
22 =head1 NAME
23
24 opac-ISBDdetail.pl - script to show a biblio in ISBD format
25
26 =head1 DESCRIPTION
27
28 This script needs a biblionumber as parameter 
29
30 It shows the biblio
31
32 The template is in <templates_dir>/catalogue/ISBDdetail.tt.
33 this template must be divided into 11 "tabs".
34
35 The first 10 tabs present the biblio, the 11th one presents
36 the items attached to the biblio
37
38 =head1 FUNCTIONS
39
40 =cut
41
42 use Modern::Perl;
43
44 use C4::Auth qw( get_template_and_user );
45 use C4::Context;
46 use C4::Output qw( parametrized_url output_html_with_http_headers );
47 use CGI qw ( -utf8 );
48 use C4::Biblio qw(
49     CountItemsIssued
50     GetISBDView
51     GetMarcControlnumber
52     GetMarcISSN
53     TransformMarcToKoha
54 );
55 use C4::Reserves;
56 use C4::Serials qw( CountSubscriptionFromBiblionumber SearchSubscriptions GetLatestSerials );
57 use C4::Koha qw(
58     GetNormalizedEAN
59     GetNormalizedISBN
60     GetNormalizedOCLCNumber
61     GetNormalizedUPC
62 );
63 use Koha::CirculationRules;
64 use Koha::ItemTypes;
65 use Koha::Patrons;
66 use Koha::RecordProcessor;
67 use Koha::Biblios;
68
69 my $query = CGI->new();
70 my $biblionumber = $query->param('biblionumber');
71 my $biblio;
72 $biblio = Koha::Biblios->find( $biblionumber, { prefetch => [ 'metadata', 'items' ] } ) if $biblionumber;
73 if( !$biblio ) {
74     print $query->redirect('/cgi-bin/koha/errors/404.pl');
75     exit;
76 }
77
78 #open template
79 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
80     {
81         template_name   => "opac-ISBDdetail.tt",
82         query           => $query,
83         type            => "opac",
84         authnotrequired => ( C4::Context->preference("OpacPublic") ? 1 : 0 ),
85     }
86 );
87
88 my $patron = Koha::Patrons->find($loggedinuser);
89
90 my $opachiddenitems_rules = C4::Context->yaml_preference('OpacHiddenItems');
91
92 unless ( $patron and $patron->category->override_hidden_items ) {
93     # only skip this check if there's a logged in user
94     # and its category overrides OpacHiddenItems
95     if ( $biblio->hidden_in_opac({ rules => $opachiddenitems_rules }) ) {
96         print $query->redirect('/cgi-bin/koha/errors/404.pl'); # escape early
97         exit;
98     }
99 }
100
101 my $record      = $biblio->metadata->record;
102 my @items = grep { !$_->hidden_in_opac({ rules => $opachiddenitems_rules }) } @{$biblio->items->as_list} ;
103 my $marcflavour = C4::Context->preference("marcflavour");
104
105 my $record_processor = Koha::RecordProcessor->new({
106     filters => [ 'ViewPolicy', 'EmbedItems' ],
107     options => {
108         interface => 'opac',
109         frameworkcode => $biblio->frameworkcode,
110         items => \@items
111     }
112 });
113 $record_processor->process($record);
114
115 # get biblionumbers stored in the cart
116 if(my $cart_list = $query->cookie("bib_list")){
117     my @cart_list = split(/\//, $cart_list);
118     if ( grep {$_ eq $biblionumber} @cart_list) {
119         $template->param( incart => 1 );
120     }
121 }
122
123 # some useful variables for enhanced content;
124 # in each case, we're grabbing the first value we find in
125 # the record and normalizing it
126 my $upc  = GetNormalizedUPC( $record, $marcflavour );
127 my $ean  = GetNormalizedEAN( $record, $marcflavour );
128 my $oclc = GetNormalizedOCLCNumber( $record, $marcflavour );
129 my $isbn = GetNormalizedISBN( undef, $record, $marcflavour );
130 my $content_identifier_exists;
131 if ( $isbn or $ean or $oclc or $upc ) {
132     $content_identifier_exists = 1;
133 }
134 $template->param(
135     normalized_upc            => $upc,
136     normalized_ean            => $ean,
137     normalized_oclc           => $oclc,
138     normalized_isbn           => $isbn,
139     content_identifier_exists => $content_identifier_exists,
140 );
141
142 #coping with subscriptions
143 my $subscriptionsnumber = CountSubscriptionFromBiblionumber($biblionumber);
144 my $dat                 = TransformMarcToKoha( $record );
145
146 my @subscriptions       = SearchSubscriptions({ biblionumber => $biblionumber, orderby => 'title' });
147 my @subs;
148 foreach my $subscription (@subscriptions) {
149     my %cell;
150         my $serials_to_display;
151     $cell{subscriptionid}    = $subscription->{subscriptionid};
152     $cell{subscriptionnotes} = $subscription->{notes};
153     $cell{branchcode}        = $subscription->{branchcode};
154
155     #get the three latest serials.
156         $serials_to_display = $subscription->{opacdisplaycount};
157         $serials_to_display = C4::Context->preference('OPACSerialIssueDisplayCount') unless $serials_to_display;
158         $cell{opacdisplaycount} = $serials_to_display;
159     $cell{latestserials} =
160       GetLatestSerials( $subscription->{subscriptionid}, $serials_to_display );
161     push @subs, \%cell;
162 }
163
164 $template->param(
165     subscriptions       => \@subs,
166     subscriptionsnumber => $subscriptionsnumber,
167 );
168
169 my $norequests = 1;
170 my $allow_onshelf_holds;
171 my $res = GetISBDView({
172     'record'    => $record,
173     'template'  => 'opac',
174     'framework' => $biblio->frameworkcode
175 });
176
177 my $items = $biblio->items;
178 while ( my $item = $items->next ) {
179     $norequests = 0
180       if $norequests
181         && !$item->withdrawn
182         && !$item->itemlost
183         && ($item->notforloan < 0 || not $item->notforloan )
184         && !Koha::ItemTypes->find($item->effective_itemtype)->notforloan
185         && $item->itemnumber;
186
187     $allow_onshelf_holds = Koha::CirculationRules->get_onshelfholds_policy( { item => $item, patron => $patron } )
188       unless $allow_onshelf_holds;
189 }
190
191 if( $allow_onshelf_holds || CountItemsIssued($biblionumber) || $biblio->has_items_waiting_or_intransit ) {
192     $template->param( ReservableItems => 1 );
193 }
194
195 $template->param(
196     RequestOnOpac       => C4::Context->preference("RequestOnOpac"),
197     norequests   => $norequests,
198     ISBD         => $res,
199     biblio       => $biblio,
200 );
201
202 #Search for title in links
203 my $marccontrolnumber   = GetMarcControlnumber ($record, $marcflavour);
204 my $marcissns = GetMarcISSN ( $record, $marcflavour );
205 my $issn = $marcissns->[0] || '';
206
207 if (my $search_for_title = C4::Context->preference('OPACSearchForTitleIn')){
208     $dat->{title} =~ s/\/+$//; # remove trailing slash
209     $dat->{title} =~ s/\s+$//; # remove trailing space
210     $search_for_title = parametrized_url(
211         $search_for_title,
212         {
213             TITLE         => $dat->{title},
214             AUTHOR        => $dat->{author},
215             ISBN          => $isbn,
216             ISSN          => $issn,
217             CONTROLNUMBER => $marccontrolnumber,
218             BIBLIONUMBER  => $biblionumber,
219         }
220     );
221     $template->param('OPACSearchForTitleIn' => $search_for_title);
222 }
223
224 if( C4::Context->preference('ArticleRequests') ) {
225     my $itemtype = Koha::ItemTypes->find($biblio->itemtype);
226     my $artreqpossible = $patron
227         ? $biblio->can_article_request( $patron )
228         : $itemtype
229         ? $itemtype->may_article_request
230         : q{};
231     $template->param( artreqpossible => $artreqpossible );
232 }
233
234 output_html_with_http_headers $query, $cookie, $template->output;