MARC authority management (continued)
[koha.git] / authorities / detail.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 C4::Biblio;
53 # use C4::Catalogue;
54 use HTML::Template;
55
56 my $query=new CGI;
57
58 my $dbh=C4::Context->dbh;
59
60 my $authid = $query->param('authid');
61 my $authtypecode = &AUTHfind_authtypecode($dbh,$authid);
62 my $tagslib = &AUTHgettagslib($dbh,1,$authtypecode);
63
64 my $record =AUTHgetauthority($dbh,$authid);
65 # open template
66 my ($template, $loggedinuser, $cookie)
67                 = get_template_and_user({template_name => "authorities/detail.tmpl",
68                              query => $query,
69                              type => "intranet",
70                              authnotrequired => 0,
71                              flagsrequired => {catalogue => 1},
72                              debug => 1,
73                              });
74
75 # fill arrays
76 my @loop_data =();
77 my $tag;
78 # loop through each tab 0 through 9
79 # for (my $tabloop = 0; $tabloop<=10;$tabloop++) {
80 # loop through each tag
81         my @fields = $record->fields();
82         my @loop_data =();
83         foreach my $field (@fields) {
84                         my @subfields_data;
85                 # if tag <10, there's no subfield, use the "@" trick
86                 if ($field->tag()<10) {
87 #                       next if ($tagslib->{$field->tag()}->{'@'}->{tab}  ne $tabloop);
88                         next if ($tagslib->{$field->tag()}->{'@'}->{hidden});
89                         my %subfield_data;
90                         $subfield_data{marc_lib}=$tagslib->{$field->tag()}->{'@'}->{lib};
91                         $subfield_data{marc_value}=$field->data();
92                         $subfield_data{marc_subfield}='@';
93                         $subfield_data{marc_tag}=$field->tag();
94                         push(@subfields_data, \%subfield_data);
95                 } else {
96                         my @subf=$field->subfields;
97         # loop through each subfield
98                         for my $i (0..$#subf) {
99                                 $subf[$i][0] = "@" unless $subf[$i][0];
100 #                               next if ($tagslib->{$field->tag()}->{$subf[$i][0]}->{tab}  ne $tabloop);
101                                 next if ($tagslib->{$field->tag()}->{$subf[$i][0]}->{hidden});
102                                 my %subfield_data;
103                                 $subfield_data{marc_lib}=$tagslib->{$field->tag()}->{$subf[$i][0]}->{lib};
104                                 if ($tagslib->{$field->tag()}->{$subf[$i][0]}->{isurl}) {
105                                         $subfield_data{marc_value}="<a href=\"$subf[$i][1]\">$subf[$i][1]</a>";
106                                 } else {
107                                         $subfield_data{marc_value}=$subf[$i][1];
108                                 }
109                                 $subfield_data{marc_subfield}=$subf[$i][0];
110                                 $subfield_data{marc_tag}=$field->tag();
111                                 push(@subfields_data, \%subfield_data);
112                         }
113                 }
114                 if ($#subfields_data>=0) {
115                         my %tag_data;
116                         $tag_data{tag}=$field->tag().' -'. $tagslib->{$field->tag()}->{lib};
117                         $tag_data{subfield} = \@subfields_data;
118                         push (@loop_data, \%tag_data);
119                 }
120         }
121         $template->param("0XX" =>\@loop_data);
122 # }
123 # now, build item tab !
124 # the main difference is that datas are in lines and not in columns : thus, we build the <th> first, then the values...
125 # loop through each tag
126 # warning : we may have differents number of columns in each row. Thus, we first build a hash, complete it if necessary
127 # then construct template.
128 # my @fields = $record->fields();
129 # my %witness; #---- stores the list of subfields used at least once, with the "meaning" of the code
130 # my @big_array;
131 # foreach my $field (@fields) {
132 #       next if ($field->tag()<10);
133 #       my @subf=$field->subfields;
134 #       my %this_row;
135 # # loop through each subfield
136 #       for my $i (0..$#subf) {
137 #               next if ($tagslib->{$field->tag()}->{$subf[$i][0]}->{tab}  ne 10);
138 #               $witness{$subf[$i][0]} = $tagslib->{$field->tag()}->{$subf[$i][0]}->{lib};
139 #               $this_row{$subf[$i][0]} =$subf[$i][1];
140 #       }
141 #       if (%this_row) {
142 #               push(@big_array, \%this_row);
143 #       }
144 # }
145 # #fill big_row with missing datas
146 # foreach my $subfield_code  (keys(%witness)) {
147 #       for (my $i=0;$i<=$#big_array;$i++) {
148 #               $big_array[$i]{$subfield_code}="&nbsp;" unless ($big_array[$i]{$subfield_code});
149 #       }
150 # }
151 # # now, construct template !
152 # my @item_value_loop;
153 # my @header_value_loop;
154 # for (my $i=0;$i<=$#big_array; $i++) {
155 #       my $items_data;
156 #       foreach my $subfield_code (keys(%witness)) {
157 #               $items_data .="<td>".$big_array[$i]{$subfield_code}."</td>";
158 #       }
159 #       my %row_data;
160 #       $row_data{item_value} = $items_data;
161 #       push(@item_value_loop,\%row_data);
162 # }
163 # foreach my $subfield_code (keys(%witness)) {
164 #       my %header_value;
165 #       $header_value{header_value} = $witness{$subfield_code};
166 #       push(@header_value_loop, \%header_value);
167 # }
168
169 my $authtypes = getauthtypes;
170 my @authtypesloop;
171 foreach my $thisauthtype (keys %$authtypes) {
172         my $selected = 1 if $thisauthtype eq $authtypecode;
173         my %row =(value => $thisauthtype,
174                                 selected => $selected,
175                                 authtypetext => $authtypes->{$thisauthtype}{'authtypetext'},
176                         );
177         push @authtypesloop, \%row;
178 }
179
180 $template->param(authid => $authid,
181                                 authtypesloop => \@authtypesloop);
182 output_html_with_http_headers $query, $cookie, $template->output;
183