rel_3_0 moved to HEAD
[koha.git] / authorities / blinddetail-linker.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 MARC::Record;
50 use C4::Koha;
51
52
53 my $query=new CGI;
54
55 my $dbh=C4::Context->dbh;
56
57 my $authid = $query->param('authid');
58 my $index = $query->param('index');
59 my $authtypecode=$query->param('authtypecode');
60  $authtypecode = &AUTHfind_authtypecode($dbh,$authid) if !$authtypecode;
61 my $tagslib = &AUTHgettagslib($dbh,1,$authtypecode);
62 my ($linkidfield,$linkidsubfield)=AUTHfind_marc_from_kohafield($dbh,"auth_header.linkid",$authtypecode);
63 my $auth_type = AUTHgetauth_type($authtypecode);
64
65 my $record =AUTHgetauthority($dbh,$authid);
66 # open template
67 my ($template, $loggedinuser, $cookie)
68                 = get_template_and_user({template_name => "authorities/blinddetail-linker.tmpl",
69                              query => $query,
70                              type => "intranet",
71                              authnotrequired => 0,
72                              flagsrequired => {editauthorities => 1},
73                              debug => 1,
74                              });
75
76 # fill arrays
77 my @loop_data =();
78 my $tag;
79 my @loop_data =();
80 if ($authid) {
81
82         foreach my $field ($record->field($auth_type->{auth_tag_to_report})) {
83                         my @subfields_data;
84                         my @subf=$field->subfields;
85                 # loop through each subfield
86                 for my $i (0..$#subf) {
87                         $subf[$i][0] = "@" unless $subf[$i][0];
88                         my %subfield_data;
89                         $subfield_data{marc_value}=$subf[$i][1];
90                         $subfield_data{marc_subfield}=$subf[$i][0];
91                         $subfield_data{marc_tag}=$field->tag();
92                         push(@subfields_data, \%subfield_data);
93                 }
94                 if ($#subfields_data>=0) {
95                         my %tag_data;
96                         $tag_data{tag}=$field->tag().' -'. $tagslib->{$field->tag()}->{lib};
97                         $tag_data{subfield} = \@subfields_data;
98                         push (@loop_data, \%tag_data);
99                 }
100         }
101 } else {
102 # authid is empty => the user want to empty the entry.
103         my @subfields_data;
104         foreach my $subfield ('a'..'z') {
105                         my %subfield_data;
106                         $subfield_data{marc_value}='';
107                         $subfield_data{marc_subfield}=$subfield;
108                         push(@subfields_data, \%subfield_data);
109                 
110                 }
111         
112 #       if ($#subfields_data>=0) {
113                 my %tag_data;
114 #                       $tag_data{tag}=$field->tag().' -'. $tagslib->{$field->tag()}->{lib};
115                 $tag_data{subfield} = \@subfields_data;
116                 push (@loop_data, \%tag_data);
117 #       }
118 }
119
120 $template->param("0XX" =>\@loop_data);
121
122
123
124 $template->param(authid => $authid?$authid:"",linkidsubfield=>$linkidsubfield, linkidfield=>$linkidfield,index => $index);
125 output_html_with_http_headers $query, $cookie, $template->output;
126