Bug 21903: (follow-up) koha-dump can export uploaded and temporary uploaded files
[koha.git] / catalogue / ISBDdetail.pl
1 #!/usr/bin/perl
2
3 # Copyright 2000-2002 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 =head1 NAME
21
22 ISBDdetail.pl : script to show a biblio in ISBD format
23
24 =head1 SYNOPSIS
25
26 =cut
27
28 =head1 DESCRIPTION
29
30 This script needs a biblionumber as parameter 
31
32 =head1 FUNCTIONS
33
34 =cut
35
36 use Modern::Perl;
37
38 use HTML::Entities;
39 use C4::Auth qw( get_template_and_user );
40 use C4::Context;
41 use C4::Output qw( output_html_with_http_headers );
42 use CGI qw ( -utf8 );
43 use C4::Biblio qw( GetBiblioData GetFrameworkCode GetISBDView GetMarcBiblio );
44 use C4::Serials qw( CountSubscriptionFromBiblionumber GetSubscription GetSubscriptionsFromBiblionumber );
45 use C4::Search qw( z3950_search_args enabled_staff_search_views );
46
47 use Koha::Biblios;
48 use Koha::Patrons;
49 use Koha::RecordProcessor;
50 use Koha::Virtualshelves;
51
52
53 my $query = CGI->new;
54 my $dbh = C4::Context->dbh;
55
56 my $biblionumber = $query->param('biblionumber');
57 $biblionumber = HTML::Entities::encode($biblionumber);
58
59 # open template
60 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
61     {
62         template_name => "catalogue/ISBDdetail.tt",
63         query         => $query,
64         type          => "intranet",
65         flagsrequired   => { catalogue => 1 },
66     }
67 );
68
69 if ( not defined $biblionumber ) {
70        # biblionumber invalid -> report and exit
71        $template->param( unknownbiblionumber => 1,
72                                 biblionumber => $biblionumber
73        );
74        output_html_with_http_headers $query, $cookie, $template->output;
75        exit;
76 }
77
78 my $record = GetMarcBiblio({
79     biblionumber => $biblionumber,
80     embed_items  => 1 });
81
82 if ( not defined $record ) {
83        # biblionumber invalid -> report and exit
84        $template->param( unknownbiblionumber => 1,
85                                 biblionumber => $biblionumber
86        );
87        output_html_with_http_headers $query, $cookie, $template->output;
88        exit;
89 }
90
91 my $biblio = Koha::Biblios->find( $biblionumber );
92 my $framework = GetFrameworkCode( $biblionumber );
93 my $record_processor = Koha::RecordProcessor->new({
94     filters => 'ViewPolicy',
95     options => {
96         interface => 'intranet',
97         frameworkcode => $framework
98     },
99 });
100 $record_processor->process($record);
101
102 my $res = GetISBDView({
103     'record'    => $record,
104     'template'  => 'intranet',
105     'framework' => $framework,
106 });
107
108 if($query->cookie("holdfor")){ 
109     my $holdfor_patron = Koha::Patrons->find( $query->cookie("holdfor") );
110     $template->param(
111         holdfor        => $query->cookie("holdfor"),
112         holdfor_patron => $holdfor_patron,
113     );
114 }
115
116 if( $query->cookie("searchToOrder") ){
117     my ( $basketno, $vendorid ) = split( /\//, $query->cookie("searchToOrder") );
118     $template->param(
119         searchtoorder_basketno => $basketno,
120         searchtoorder_vendorid => $vendorid
121     );
122 }
123
124 # count of item linked with biblio
125 my $itemcount = $biblio->items->count;
126 $template->param( count => $itemcount);
127 my $subscriptionsnumber = CountSubscriptionFromBiblionumber($biblionumber);
128  
129 if ($subscriptionsnumber) {
130     my $subscriptions     = GetSubscriptionsFromBiblionumber($biblionumber);
131     my $subscriptiontitle = $subscriptions->[0]{'bibliotitle'};
132     $template->param(
133         subscriptionsnumber => $subscriptionsnumber,
134         subscriptiontitle   => $subscriptiontitle,
135     );
136 }
137
138 # get biblionumbers stored in the cart
139 my @cart_list;
140
141 if($query->cookie("intranet_bib_list")){
142     my $cart_list = $query->cookie("intranet_bib_list");
143     @cart_list = split(/\//, $cart_list);
144     if ( grep {$_ eq $biblionumber} @cart_list) {
145         $template->param( incart => 1 );
146     }
147 }
148
149 my $some_private_shelves = Koha::Virtualshelves->get_some_shelves(
150     {
151         borrowernumber => $loggedinuser,
152         add_allowed    => 1,
153         public         => 0,
154     }
155 );
156 my $some_public_shelves = Koha::Virtualshelves->get_some_shelves(
157     {
158         borrowernumber => $loggedinuser,
159         add_allowed    => 1,
160         public         => 1,
161     }
162 );
163
164
165 $template->param(
166     add_to_some_private_shelves => $some_private_shelves,
167     add_to_some_public_shelves  => $some_public_shelves,
168 );
169
170 $template->param (
171     ISBD                => $res,
172     biblionumber        => $biblionumber,
173     isbdview            => 1,
174     z3950_search_params => C4::Search::z3950_search_args(GetBiblioData($biblionumber)),
175     ocoins => $biblio->get_coins,
176     C4::Search::enabled_staff_search_views,
177     searchid            => scalar $query->param('searchid'),
178     biblio              => $biblio,
179 );
180
181 my $holds = $biblio->holds;
182 $template->param( holdcount => $holds->count );
183
184 output_html_with_http_headers $query, $cookie, $template->output;
185