Head & rel_2_2 merged
[koha.git] / authorities / blinddetail-biblio-search.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 under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 2 of the License, or (at your option) any later
10 # version.
11 #
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License along with
17 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
18 # Suite 330, Boston, MA  02111-1307 USA
19
20 =head1 NAME
21
22 etail.pl : script to show an authority in MARC format
23
24 =head1 SYNOPSIS
25
26
27 =head1 DESCRIPTION
28
29 This script needs an authid
30
31 It shows the authority in a (nice) MARC format depending on authority MARC
32 parameters tables.
33
34 =head1 FUNCTIONS
35
36 =over 2
37
38 =cut
39
40
41 use strict;
42 require Exporter;
43 use C4::AuthoritiesMarc;
44 use C4::Auth;
45 use C4::Context;
46 use C4::Output;
47 use C4::Interface::CGI::Output;
48 use CGI;
49 use C4::Search;
50 use MARC::Record;
51 use C4::Koha;
52 use HTML::Template;
53
54 my $query=new CGI;
55
56 my $dbh=C4::Context->dbh;
57
58 my $authid = $query->param('authid');
59 my $index = $query->param('index');
60 my $tagid = $query->param('tagid');
61 my $authtypecode = &AUTHfind_authtypecode($dbh,$authid);
62 my $tagslib = &AUTHgettagslib($dbh,1,$authtypecode);
63
64 my $auth_type = AUTHgetauth_type($authtypecode);
65 # warn "XX = ".$auth_type->{auth_tag_to_report};
66
67 my $record =AUTHgetauthority($dbh,$authid);
68 # open template
69 my ($template, $loggedinuser, $cookie)
70                 = get_template_and_user({template_name => "authorities/blinddetail-biblio-search.tmpl",
71                              query => $query,
72                              type => "intranet",
73                              authnotrequired => 0,
74                              flagsrequired => {catalogue => 1},
75                              debug => 1,
76                              });
77
78 # fill arrays
79 my @loop_data =();
80 my $tag;
81 my @loop_data =();
82 if ($authid) {
83         foreach my $field ($record->field($auth_type->{auth_tag_to_report})) {
84                 my @subfields_data;
85                 my @subf=$field->subfields;
86                 # loop through each subfield
87                 my %result;
88                 for my $i (0..$#subf) {
89                         $subf[$i][0] = "@" unless $subf[$i][0];
90                         $result{$subf[$i][0]}.=$subf[$i][1]."|";
91                 }
92                 foreach (keys %result) {
93                         my %subfield_data;
94                         chop $result{$_};
95                         $subfield_data{marc_value}=$result{$_};
96                         $subfield_data{marc_subfield}=$_;
97 #                       $subfield_data{marc_tag}=$field->tag();
98                         push(@subfields_data, \%subfield_data);
99                 }
100                 if ($#subfields_data>=0) {
101                         my %tag_data;
102                         $tag_data{tag}=$field->tag().' -'. $tagslib->{$field->tag()}->{lib};
103                         $tag_data{subfield} = \@subfields_data;
104                         push (@loop_data, \%tag_data);
105                 }
106         }
107 } else {
108 # authid is empty => the user want to empty the entry.
109         my @subfields_data;
110         foreach my $subfield ('a'..'z') {
111                         my %subfield_data;
112                         $subfield_data{marc_value}='';
113                         $subfield_data{marc_subfield}=$subfield;
114                         push(@subfields_data, \%subfield_data);
115                 }
116 #       if ($#subfields_data>=0) {
117                 my %tag_data;
118 #                       $tag_data{tag}=$field->tag().' -'. $tagslib->{$field->tag()}->{lib};
119                 $tag_data{subfield} = \@subfields_data;
120                 push (@loop_data, \%tag_data);
121 #       }
122 }
123
124 $template->param("0XX" =>\@loop_data);
125
126 # my $authtypes = getauthtypes;
127 # my @authtypesloop;
128 # foreach my $thisauthtype (keys %$authtypes) {
129 #       my $selected = 1 if $thisauthtype eq $authtypecode;
130 #       my %row =(value => $thisauthtype,
131 #                               selected => $selected,
132 #                               authtypetext => $authtypes->{$thisauthtype}{'authtypetext'},
133 #                       );
134 #       push @authtypesloop, \%row;
135 # }
136
137 $template->param(authid => $authid?$authid:"",
138 #                               authtypesloop => \@authtypesloop,
139                                 index => $index,
140                                 tagid => $tagid,
141                                 intranetcolorstylesheet => C4::Context->preference("intranetcolorstylesheet"),
142                 intranetstylesheet => C4::Context->preference("intranetstylesheet"),
143                 IntranetNav => C4::Context->preference("IntranetNav"),
144                                 );
145 output_html_with_http_headers $query, $cookie, $template->output;
146