#!/usr/bin/perl
use strict;
require Exporter;
use CGI;
use C4::Search;
use C4::Auth;
use C4::Label;
use C4::Interface::CGI::Output;
use HTML::Template;

my $query=new CGI;
my ($template, $borrowernumber, $cookie) 
    = get_template_and_user({template_name => "opac-detail.tmpl",
			     query => $query,
			     type => "opac",
			     authnotrequired => 1,
			     flagsrequired => {borrow => 1},
			     });

my $biblionumber=$query->param('bib');
$template->param(biblionumber => $biblionumber);


# change back when ive fixed request.pl
my @items                                 = &ItemInfo(undef, $biblionumber, 'opac');
my $dat                                   = &bibdata($biblionumber);
my ($authorcount, $addauthor)             = &addauthor($biblionumber);
my ($webbiblioitemcount, @webbiblioitems) = &getwebbiblioitems($biblionumber);
my ($websitecount, @websites)             = &getwebsites($biblionumber);

$dat->{'count'}=@items;

$dat->{'additional'}=$addauthor->[0]->{'author'};
for (my $i = 1; $i < $authorcount; $i++) {
        $dat->{'additional'} .= "|" . $addauthor->[$i]->{'author'};
} # for

my $norequests = 1;
foreach my $itm (@items) {
    $norequests = 0 unless $itm->{'notforloan'};
    $itm->{$itm->{'publictype'}} = 1;
}

$template->param(norequests => $norequests);

my @results = ($dat,);

my $resultsarray=\@results;
my $itemsarray=\@items;
my $webarray=\@webbiblioitems;
my $sitearray=\@websites;

$template->param(BIBLIO_RESULTS => $resultsarray);
$template->param(ITEM_RESULTS => $itemsarray);
$template->param(WEB_RESULTS => $webarray);
$template->param(SITE_RESULTS => $sitearray);

# Text labels

$template->param(TEXT_AUTHOR => gettextlabel("TEXT_AUTHOR"));
$template->param(TEXT_AVAILABLE => gettextlabel("TEXT_AVAILABLE"));
$template->param(TEXT_BARCODE => gettextlabel("TEXT_BARCODE"));
$template->param(TEXT_BIBLIO_RECORD => gettextlabel("TEXT_BIBLIO_RECORD"));
$template->param(TEXT_CLASS => gettextlabel("TEXT_CLASS"));
$template->param(TEXT_COPYRIGHT => gettextlabel("TEXT_COPYRIGHT"));
$template->param(TEXT_DATE_DUE => gettextlabel("TEXT_DATE_DUE"));
$template->param(TEXT_ITEMTYPE => gettextlabel("TEXT_ITEMTYPE"));
$template->param(TEXT_LAST_SEEN => gettextlabel("TEXT_LAST_SEEN"));
$template->param(TEXT_LOCATION => gettextlabel("TEXT_LOCATION"));
$template->param(TEXT_LOGGED_IN_AS => gettextlabel("TEXT_LOGGED_IN_AS"));
$template->param(TEXT_LOGOUT => gettextlabel("TEXT_LOGOUT"));
$template->param(TEXT_LOG_IN_TO_KOHA => gettextlabel("TEXT_LOG_IN_TO_KOHA"));
$template->param(TEXT_MEMBERS_HOME => gettextlabel("TEXT_MEMBERS_HOME"));
$template->param(TEXT_NBITEMS => gettextlabel("TEXT_NBITEMS"));
$template->param(TEXT_ONLINE => gettextlabel("TEXT_ONLINE"));
$template->param(TEXT_REQUEST => gettextlabel("TEXT_REQUEST"));
$template->param(TEXT_SUBJECT => gettextlabel("TEXT_SUBJECT"));
$template->param(TEXT_SUBTITLE => gettextlabel("TEXT_SUBTITLE"));
$template->param(TEXT_WEBSITE => gettextlabel("TEXT_WEBSITE"));


output_html_with_http_headers $query, $cookie, $template->output;

