(bug #4491) fix weird code in search scripts
[koha.git] / opac / opac-search.pl
1 #!/usr/bin/perl
2 # Script to perform searching
3 # Mostly copied from search.pl, see POD there
4 use strict;            # always use
5 use warnings;
6 ## STEP 1. Load things that are used in both search page and
7 # results page and decide which template to load, operations 
8 # to perform, etc.
9 ## load Koha modules
10 use C4::Context;
11 use C4::Output;
12 use C4::Auth qw(:DEFAULT get_session);
13 use C4::Search;
14 use C4::Biblio;  # GetBiblioData
15 use C4::Koha;
16 use C4::Tags qw(get_tags);
17 use POSIX qw(ceil floor strftime);
18 use C4::Branch; # GetBranches
19
20 # create a new CGI object
21 # FIXME: no_undef_params needs to be tested
22 use CGI qw('-no_undef_params');
23 my $cgi = new CGI;
24
25 BEGIN {
26         if (C4::Context->preference('BakerTaylorEnabled')) {
27                 require C4::External::BakerTaylor;
28                 import C4::External::BakerTaylor qw(&image_url &link_url);
29         }
30 }
31
32 my ($template,$borrowernumber,$cookie);
33
34 # decide which template to use
35 my $template_name;
36 my $template_type = 'basic';
37 my @params = $cgi->param("limit");
38
39 my $format = $cgi->param("format") || '';
40 my $build_grouped_results = C4::Context->preference('OPACGroupResults');
41 if ($format =~ /(rss|atom|opensearchdescription)/) {
42         $template_name = 'opac-opensearch.tmpl';
43 }
44 elsif ($build_grouped_results) {
45     $template_name = 'opac-results-grouped.tmpl';
46 }
47 elsif ((@params>=1) || ($cgi->param("q")) || ($cgi->param('multibranchlimit')) || ($cgi->param('limit-yr')) ) {
48         $template_name = 'opac-results.tmpl';
49 }
50 else {
51     $template_name = 'opac-advsearch.tmpl';
52     $template_type = 'advsearch';
53 }
54 # load the template
55 ($template, $borrowernumber, $cookie) = get_template_and_user({
56     template_name => $template_name,
57     query => $cgi,
58     type => "opac",
59     authnotrequired => 1,
60     }
61 );
62
63 if ($format eq 'rss2' or $format eq 'opensearchdescription' or $format eq 'atom') {
64         $template->param($format => 1);
65     $template->param(timestamp => strftime("%Y-%m-%dT%H:%M:%S-00:00", gmtime)) if ($format eq 'atom'); 
66     # FIXME - the timestamp is a hack - the biblio update timestamp should be used for each
67     # entry, but not sure if that's worth an extra database query for each bib
68 }
69 if (C4::Context->preference("marcflavour") eq "UNIMARC" ) {
70     $template->param('UNIMARC' => 1);
71 }
72 elsif (C4::Context->preference("marcflavour") eq "MARC21" ) {
73     $template->param('usmarc' => 1);
74 }
75 $template->param( 'AllowOnShelfHolds' => C4::Context->preference('AllowOnShelfHolds') );
76
77 if (C4::Context->preference('BakerTaylorEnabled')) {
78         $template->param(
79                 BakerTaylorEnabled  => 1,
80                 BakerTaylorImageURL => &image_url(),
81                 BakerTaylorLinkURL  => &link_url(),
82                 BakerTaylorBookstoreURL => C4::Context->preference('BakerTaylorBookstoreURL'),
83         );
84 }
85 if (C4::Context->preference('TagsEnabled')) {
86         $template->param(TagsEnabled => 1);
87         foreach (qw(TagsShowOnList TagsInputOnList)) {
88                 C4::Context->preference($_) and $template->param($_ => 1);
89         }
90 }
91
92 ## URI Re-Writing
93 # Deprecated, but preserved because it's interesting :-)
94 # The same thing can be accomplished with mod_rewrite in
95 # a more elegant way
96 #                  
97 #my $rewrite_flag;
98 #my $uri = $cgi->url(-base => 1);
99 #my $relative_url = $cgi->url(-relative=>1);
100 #$uri.="/".$relative_url."?";
101 #warn "URI:$uri";
102 #my @cgi_params_list = $cgi->param();
103 #my $url_params = $cgi->Vars;
104 #
105 #for my $each_param_set (@cgi_params_list) {
106 #    $uri.= join "",  map "\&$each_param_set=".$_, split("\0",$url_params->{$each_param_set}) if $url_params->{$each_param_set};
107 #}
108 #warn "New URI:$uri";
109 # Only re-write a URI if there are params or if it already hasn't been re-written
110 #unless (($cgi->param('r')) || (!$cgi->param()) ) {
111 #    print $cgi->redirect(     -uri=>$uri."&r=1",
112 #                            -cookie => $cookie);
113 #    exit;
114 #}
115
116 # load the branches
117 my $mybranch = ( C4::Context->preference('SearchMyLibraryFirst') && C4::Context->userenv && C4::Context->userenv->{branch} ) ? C4::Context->userenv->{branch} : '';
118 my $branches = GetBranches();   # used later in *getRecords, probably should be internalized by those functions after caching in C4::Branch is established
119 $template->param(
120     branchloop       => GetBranchesLoop($mybranch, 0),
121     searchdomainloop => GetBranchCategories(undef,'searchdomain'),
122 );
123
124 # load the Type stuff
125 my $itemtypes = GetItemTypes;
126 # the index parameter is different for item-level itemtypes
127 my $itype_or_itemtype = (C4::Context->preference("item-level_itypes"))?'itype':'itemtype';
128 my @itemtypesloop;
129 my $selected=1;
130 my $cnt;
131 my $advanced_search_types = C4::Context->preference("AdvancedSearchTypes");
132
133 if (!$advanced_search_types or $advanced_search_types eq 'itemtypes') {
134         foreach my $thisitemtype ( sort {$itemtypes->{$a}->{'description'} cmp $itemtypes->{$b}->{'description'} } keys %$itemtypes ) {
135             my %row =(  number=>$cnt++,
136                 ccl => "$itype_or_itemtype,phr",
137                 code => $thisitemtype,
138                 selected => $selected,
139                 description => $itemtypes->{$thisitemtype}->{'description'},
140                 count5 => $cnt % 4,
141                 imageurl=> getitemtypeimagelocation( 'opac', $itemtypes->{$thisitemtype}->{'imageurl'} ),
142             );
143         $selected = 0; # set to zero after first pass through
144         push @itemtypesloop, \%row;
145         }
146 } else {
147     my $advsearchtypes = GetAuthorisedValues($advanced_search_types);
148         for my $thisitemtype (@$advsearchtypes) {
149             my %row =(
150                     number=>$cnt++,
151                     ccl => $advanced_search_types,
152                     code => $thisitemtype->{authorised_value},
153                     selected => $selected,
154                     description => $thisitemtype->{'lib'},
155                     count5 => $cnt % 4,
156                     imageurl=> getitemtypeimagelocation( 'opac', $thisitemtype->{'imageurl'} ),
157                 );
158             push @itemtypesloop, \%row;
159         }
160 }
161 $template->param(itemtypeloop => \@itemtypesloop);
162
163 # # load the itypes (Called item types in the template -- just authorized values for searching)
164 # my ($itypecount,@itype_loop) = GetCcodes();
165 # $template->param(itypeloop=>\@itype_loop,);
166
167 # The following should only be loaded if we're bringing up the advanced search template
168 if ( $template_type eq 'advsearch' ) {
169
170     # load the servers (used for searching -- to do federated searching, etc.)
171     my $primary_servers_loop;# = displayPrimaryServers();
172     $template->param(outer_servers_loop =>  $primary_servers_loop,);
173     
174     my $secondary_servers_loop;# = displaySecondaryServers();
175     $template->param(outer_sup_servers_loop => $secondary_servers_loop,);
176
177     # set the default sorting
178     my $default_sort_by = C4::Context->preference('OPACdefaultSortField')."_".C4::Context->preference('OPACdefaultSortOrder') 
179         if (C4::Context->preference('OPACdefaultSortField') && C4::Context->preference('OPACdefaultSortOrder'));
180     $template->param($default_sort_by => 1);
181
182     # determine what to display next to the search boxes (ie, boolean option
183     # shouldn't appear on the first one, scan indexes should, adding a new
184     # box should only appear on the last, etc.
185     my @search_boxes_array;
186     my $search_boxes_count = C4::Context->preference("OPACAdvSearchInputCount") || 3;
187     for (my $i=1;$i<=$search_boxes_count;$i++) {
188         # if it's the first one, don't display boolean option, but show scan indexes
189         if ($i==1) {
190             push @search_boxes_array,
191                 {
192                 scan_index => 1,
193                 };
194         
195         }
196         # if it's the last one, show the 'add field' box
197         elsif ($i==$search_boxes_count) {
198             push @search_boxes_array,
199                 {
200                 boolean => 1,
201                 add_field => 1,
202                 };
203         }
204         else {
205             push @search_boxes_array,
206                 {
207                 boolean => 1,
208                 };
209         }
210
211     }
212     $template->param(uc(C4::Context->preference("marcflavour")) => 1,   # we already did this for UNIMARC
213                                           advsearch => 1,
214                       search_boxes_loop => \@search_boxes_array);
215
216 # use the global setting by default
217         if ( C4::Context->preference("expandedSearchOption") == 1 ) {
218                 $template->param( expanded_options => C4::Context->preference("expandedSearchOption") );
219         }
220         # but let the user override it
221         if (defined $cgi->param('expanded_options')) {
222             if ( ($cgi->param('expanded_options') == 0) || ($cgi->param('expanded_options') == 1 ) ) {
223             $template->param( expanded_options => $cgi->param('expanded_options'));
224             }
225         }
226     output_html_with_http_headers $cgi, $cookie, $template->output;
227     exit;
228 }
229
230 ### OK, if we're this far, we're performing an actual search
231
232 # Fetch the paramater list as a hash in scalar context:
233 #  * returns paramater list as tied hash ref
234 #  * we can edit the values by changing the key
235 #  * multivalued CGI paramaters are returned as a packaged string separated by "\0" (null)
236 my $params = $cgi->Vars;
237 my $tag;
238 $tag = $params->{tag} if $params->{tag};
239
240 # Params that can have more than one value
241 # sort by is used to sort the query
242 # in theory can have more than one but generally there's just one
243 my @sort_by;
244 my $default_sort_by = C4::Context->preference('OPACdefaultSortField')."_".C4::Context->preference('OPACdefaultSortOrder') 
245     if (C4::Context->preference('OPACdefaultSortField') && C4::Context->preference('OPACdefaultSortOrder'));
246
247 @sort_by = $cgi->param('sort_by');
248 $sort_by[0] = $default_sort_by if !$sort_by[0] && defined($default_sort_by);
249 foreach my $sort (@sort_by) {
250     $template->param($sort => 1);   # FIXME: security hole.  can set any TMPL_VAR here
251 }
252 $template->param('sort_by' => $sort_by[0]);
253
254 # Use the servers defined, or just search our local catalog(default)
255 my @servers = $cgi->param('server');
256 unless (@servers) {
257     #FIXME: this should be handled using Context.pm
258     @servers = ("biblioserver");
259     # @servers = C4::Context->config("biblioserver");
260 }
261
262 # operators include boolean and proximity operators and are used
263 # to evaluate multiple operands
264 my @operators = $cgi->param('op');
265
266 # indexes are query qualifiers, like 'title', 'author', etc. They
267 # can be single or multiple parameters separated by comma: kw,right-Truncation 
268 my @indexes = $cgi->param('idx');
269
270 # if a simple index (only one)  display the index used in the top search box
271 if ($indexes[0] && !$indexes[1]) {
272     $template->param("ms_".$indexes[0] => 1);
273 }
274 # an operand can be a single term, a phrase, or a complete ccl query
275 my @operands = $cgi->param('q');
276
277 # if a simple search, display the value in the search box
278 if ($operands[0] && !$operands[1]) {
279     $template->param(ms_value => $operands[0]);
280 }
281
282 # limits are use to limit to results to a pre-defined category such as branch or language
283 my @limits = $cgi->param('limit');
284
285 if($params->{'multibranchlimit'}) {
286 push @limits, join(" or ", map { "branch: $_ "}  @{GetBranchesInCategory($params->{'multibranchlimit'})}) ;
287 }
288
289 my $available;
290 foreach my $limit(@limits) {
291     if ($limit =~/available/) {
292         $available = 1;
293     }
294 }
295 $template->param(available => $available);
296
297 # append year limits if they exist
298 if ($params->{'limit-yr'}) {
299     if ($params->{'limit-yr'} =~ /\d{4}-\d{4}/) {
300         my ($yr1,$yr2) = split(/-/, $params->{'limit-yr'});
301         push @limits, "yr,st-numeric,ge=$yr1 and yr,st-numeric,le=$yr2";
302     }
303     elsif ($params->{'limit-yr'} =~ /\d{4}/) {
304         push @limits, "yr,st-numeric=$params->{'limit-yr'}";
305     }
306     else {
307         #FIXME: Should return a error to the user, incorect date format specified
308     }
309 }
310
311 # Params that can only have one value
312 my $scan = $params->{'scan'};
313 my $count = C4::Context->preference('OPACnumSearchResults') || 20;
314 my $results_per_page = $params->{'count'} || $count;
315 my $offset = $params->{'offset'} || 0;
316 my $page = $cgi->param('page') || 1;
317 $offset = ($page-1)*$results_per_page if $page>1;
318 my $hits;
319 my $expanded_facet = $params->{'expand'};
320
321 # Define some global variables
322 my ($error,$query,$simple_query,$query_cgi,$query_desc,$limit,$limit_cgi,$limit_desc,$stopwords_removed,$query_type);
323
324 my @results;
325
326 ## I. BUILD THE QUERY
327 ( $error,$query,$simple_query,$query_cgi,$query_desc,$limit,$limit_cgi,$limit_desc,$stopwords_removed,$query_type) = buildQuery(\@operators,\@operands,\@indexes,\@limits,\@sort_by);
328
329 sub _input_cgi_parse ($) { 
330     my @elements;
331     for my $this_cgi ( split('&',shift) ) {
332         next unless $this_cgi;
333         $this_cgi =~ /(.*?)=(.*)/;
334         push @elements, { input_name => $1, input_value => $2 };
335     }
336     return @elements;
337 }
338
339 ## parse the query_cgi string and put it into a form suitable for <input>s
340 my @query_inputs = _input_cgi_parse($query_cgi);
341 $template->param ( QUERY_INPUTS => \@query_inputs );
342
343 ## parse the limit_cgi string and put it into a form suitable for <input>s
344 my @limit_inputs = $limit_cgi ? _input_cgi_parse($limit_cgi) : ();
345
346 # add OPAC 'hidelostitems'
347 if (C4::Context->preference('hidelostitems') == 1) {
348     # either lost ge 0 or no value in the lost register
349     $query ="($query) and ( (lost,st-numeric <= 0) or ( allrecords,AlwaysMatches='' not lost,AlwaysMatches='') )";
350 }
351
352 # add OPAC suppression - requires at least one item indexed with Suppress
353 if (C4::Context->preference('OpacSuppression')) {
354     $query = "($query) not Suppress=1";
355 }
356
357 $template->param ( LIMIT_INPUTS => \@limit_inputs );
358
359 ## II. DO THE SEARCH AND GET THE RESULTS
360 my $total = 0; # the total results for the whole set
361 my $facets; # this object stores the faceted results that display on the left-hand of the results page
362 my @results_array;
363 my $results_hashref;
364
365 if ($tag) {
366         $query_cgi = "tag=" .$tag . "&" . $query_cgi;
367         my $taglist = get_tags({term=>$tag, approved=>1});
368         $results_hashref->{biblioserver}->{hits} = scalar (@$taglist);
369         my @biblist  = (map {GetBiblioData($_->{biblionumber})} @$taglist);
370         my @marclist = (map {$_->{marc}} @biblist );
371         $DEBUG and printf STDERR "taglist (%s biblionumber)\nmarclist (%s records)\n", scalar(@$taglist), scalar(@marclist);
372         $results_hashref->{biblioserver}->{RECORDS} = \@marclist;
373         # FIXME: tag search and standard search should work together, not exclusively
374         # FIXME: No facets for tags search.
375 }
376 elsif (C4::Context->preference('NoZebra')) {
377     eval {
378         ($error, $results_hashref, $facets) = NZgetRecords($query,$simple_query,\@sort_by,\@servers,$results_per_page,$offset,$expanded_facet,$branches,$query_type,$scan);
379     };
380 } elsif ($build_grouped_results) {
381     eval {
382         ($error, $results_hashref, $facets) = C4::Search::pazGetRecords($query,$simple_query,\@sort_by,\@servers,$results_per_page,$offset,$expanded_facet,$branches,$query_type,$scan);
383     };
384 } else {
385     eval {
386         ($error, $results_hashref, $facets) = getRecords($query,$simple_query,\@sort_by,\@servers,$results_per_page,$offset,$expanded_facet,$branches,$query_type,$scan);
387     };
388 }
389 # use Data::Dumper; print STDERR "-" x 25, "\n", Dumper($results_hashref);
390 if ($@ || $error) {
391     $template->param(query_error => $error.$@);
392     output_html_with_http_headers $cgi, $cookie, $template->output;
393     exit;
394 }
395
396 # At this point, each server has given us a result set
397 # now we build that set for template display
398 my @sup_results_array;
399 for (my $i=0;$i<=@servers;$i++) {
400     my $server = $servers[$i];
401     if ($server =~/biblioserver/) { # this is the local bibliographic server
402         $hits = $results_hashref->{$server}->{"hits"};
403         my $page = $cgi->param('page') || 0;
404         my @newresults;
405         if ($build_grouped_results) {
406             foreach my $group (@{ $results_hashref->{$server}->{"GROUPS"} }) {
407                 # because pazGetRecords handles retieving only the records
408                 # we want as specified by $offset and $results_per_page,
409                 # we need to set the offset parameter of searchResults to 0
410                 my @group_results = searchResults( $query_desc, $group->{'group_count'},$results_per_page, 0, $scan,
411                                                    @{ $group->{"RECORDS"} });
412                 push @newresults, { group_label => $group->{'group_label'}, GROUP_RESULTS => \@group_results };
413             }
414         } else {
415             @newresults = searchResults( $query_desc,$hits,$results_per_page,$offset,$scan,@{$results_hashref->{$server}->{"RECORDS"}});
416         }
417                 my $tag_quantity;
418                 if (C4::Context->preference('TagsEnabled') and
419                         $tag_quantity = C4::Context->preference('TagsShowOnList')) {
420                         foreach (@newresults) {
421                                 my $bibnum = $_->{biblionumber} or next;
422                                 $_->{itemsissued} = CountItemsIssued( $bibnum );
423                                 $_ ->{'TagLoop'} = get_tags({biblionumber=>$bibnum, approved=>1, 'sort'=>'-weight',
424                                                                                 limit=>$tag_quantity });
425                         }
426                 }
427                 foreach (@newresults) {
428                         $_->{'coins'} = GetCOinSBiblio($_->{'biblionumber'});
429                         my $clean = $_->{isbn} or next;
430                         unless (
431                                 $clean =~ /\b(\d{13})\b/ or
432                                 $clean =~ /\b(\d{10})\b/ or 
433                                 $clean =~ /\b(\d{9}X)\b/i
434                         ) {
435                                 next;
436                         }
437                         $_ ->{'clean_isbn'} = $1;
438                 }
439       
440         if ($results_hashref->{$server}->{"hits"}){
441             $total = $total + $results_hashref->{$server}->{"hits"};
442         }
443         ## If there's just one result, redirect to the detail page
444         if ($total == 1) {         
445             my $biblionumber=$newresults[0]->{biblionumber};
446             if (C4::Context->preference('BiblioDefaultView') eq 'isbd') {
447                 print $cgi->redirect("/cgi-bin/koha/opac-ISBDdetail.pl?biblionumber=$biblionumber");
448             } elsif  (C4::Context->preference('BiblioDefaultView') eq 'marc') {
449                 print $cgi->redirect("/cgi-bin/koha/opac-MARCdetail.pl?biblionumber=$biblionumber");
450             } else {
451                 print $cgi->redirect("/cgi-bin/koha/opac-detail.pl?biblionumber=$biblionumber");
452             } 
453             exit;
454         }
455         if ($hits) {
456             $template->param(total => $hits);
457             my $limit_cgi_not_availablity = $limit_cgi;
458             $limit_cgi_not_availablity =~ s/&limit=available//g if defined $limit_cgi_not_availablity;
459             $template->param(limit_cgi_not_availablity => $limit_cgi_not_availablity);
460             $template->param(limit_cgi => $limit_cgi);
461             $template->param(query_cgi => $query_cgi);
462             $template->param(query_desc => $query_desc);
463             $template->param(limit_desc => $limit_desc);
464             if ($query_desc || $limit_desc) {
465                 $template->param(searchdesc => 1);
466             }
467             $template->param(stopwords_removed => "@$stopwords_removed") if $stopwords_removed;
468             $template->param(results_per_page =>  $results_per_page);
469             $template->param(SEARCH_RESULTS => \@newresults,
470                                 OPACItemsResultsDisplay => (C4::Context->preference("OPACItemsResultsDisplay") eq "itemdetails"?1:0),
471                             );
472             ## Build the page numbers on the bottom of the page
473             my @page_numbers;
474             # total number of pages there will be
475             my $pages = ceil($hits / $results_per_page);
476             # default page number
477             my $current_page_number = 1;
478             $current_page_number = ($offset / $results_per_page + 1) if $offset;
479             my $previous_page_offset = $offset - $results_per_page unless ($offset - $results_per_page <0);
480             my $next_page_offset = $offset + $results_per_page;
481             # If we're within the first 10 pages, keep it simple
482             #warn "current page:".$current_page_number;
483             if ($current_page_number < 10) {
484                 # just show the first 10 pages
485                 # Loop through the pages
486                 my $pages_to_show = 10;
487                 $pages_to_show = $pages if $pages<10;
488                 for ($i=1; $i<=$pages_to_show;$i++) {
489                     # the offset for this page
490                     my $this_offset = (($i*$results_per_page)-$results_per_page);
491                     # the page number for this page
492                     my $this_page_number = $i;
493                     # it should only be highlighted if it's the current page
494                     my $highlight = 1 if ($this_page_number == $current_page_number);
495                     # put it in the array
496                     push @page_numbers, { offset => $this_offset, pg => $this_page_number, highlight => $highlight, sort_by => join " ",@sort_by };
497                                 
498                 }
499                         
500             }
501             # now, show twenty pages, with the current one smack in the middle
502             else {
503                 for ($i=$current_page_number; $i<=($current_page_number + 20 );$i++) {
504                     my $this_offset = ((($i-9)*$results_per_page)-$results_per_page);
505                     my $this_page_number = $i-9;
506                     my $highlight = 1 if ($this_page_number == $current_page_number);
507                     if ($this_page_number <= $pages) {
508                         push @page_numbers, { offset => $this_offset, pg => $this_page_number, highlight => $highlight, sort_by => join " ",@sort_by };
509                     }
510                 }
511                         
512             }
513             $template->param(   PAGE_NUMBERS => \@page_numbers,
514                                 previous_page_offset => $previous_page_offset) unless $pages < 2;
515             $template->param(next_page_offset => $next_page_offset) unless $pages eq $current_page_number;
516          }
517         # no hits
518         else {
519             $template->param(searchdesc => 1,query_desc => $query_desc,limit_desc => $limit_desc);
520         }
521     } # end of the if local
522     # asynchronously search the authority server
523     elsif ($server =~/authorityserver/) { # this is the local authority server
524         my @inner_sup_results_array;
525         for my $sup_record ( @{$results_hashref->{$server}->{"RECORDS"}} ) {
526             my $marc_record_object = MARC::Record->new_from_usmarc($sup_record);
527             my $title_field = $marc_record_object->field(100);
528              warn "Authority Found: ".$marc_record_object->as_formatted();
529             push @inner_sup_results_array, {
530                 'title' => $title_field->subfield('a'),
531                 'link' => "&amp;idx=an&amp;q=".$marc_record_object->field('001')->as_string(),
532             };
533         }
534         my $servername = $server;
535         push @sup_results_array, {  servername => $servername,
536                                     inner_sup_results_loop => \@inner_sup_results_array} if @inner_sup_results_array;
537     }
538     # FIXME: can add support for other targets as needed here
539     $template->param(           outer_sup_results_loop => \@sup_results_array);
540 } #/end of the for loop
541 #$template->param(FEDERATED_RESULTS => \@results_array);
542
543 $template->param(
544             #classlist => $classlist,
545             total => $total,
546             opacfacets => 1,
547             facets_loop => $facets,
548             scan => $scan,
549             search_error => $error,
550 );
551
552 if ($query_desc || $limit_desc) {
553     $template->param(searchdesc => 1);
554 }
555
556 # VI. BUILD THE TEMPLATE
557 # NOTE: not using application/atom+xml or application/rss+xml beccause of Internet Explorer 6;
558 # see bug 2078.
559 my $content_type = ($cgi->param('format') && $cgi->param('format') =~ /rss|atom/) ? "application/xml" :
560                    "text/html";
561
562 # Build drop-down list for 'Add To:' menu...
563 my $session = get_session($cgi->cookie("CGISESSID"));
564 my @addpubshelves;
565 my $pubshelves = $session->param('pubshelves');
566 my $barshelves = $session->param('barshelves');
567 foreach my $shelf (@$pubshelves) {
568         next if ( ($shelf->{'owner'} != ($borrowernumber ? $borrowernumber : -1)) && ($shelf->{'category'} < 3) );
569         push (@addpubshelves, $shelf);
570 }
571
572 if (@addpubshelves) {
573         $template->param( addpubshelves     => scalar (@addpubshelves));
574         $template->param( addpubshelvesloop => \@addpubshelves);
575 }
576
577 if (defined $barshelves) {
578         $template->param( addbarshelves     => scalar (@$barshelves));
579         $template->param( addbarshelvesloop => $barshelves);
580 }
581
582 my $content_type = ($format eq 'rss' or $format eq 'atom') ? $format : 'html';
583
584 output_html_with_http_headers $cgi, $cookie, $template->output, $content_type;