Merge remote branch 'kc/new/biblibre_reports' into kcmaster
[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
17 # with Koha; if not, write to the Free Software Foundation, Inc.,
18 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19
20 =head1 NAME
21
22 blinddetail-biblio-search.pl : script to show an authority in MARC format
23
24 =head1 SYNOPSIS
25
26 =cut
27
28 =head1 DESCRIPTION
29
30 This script needs an authid
31
32 It shows the authority in a (nice) MARC format depending on authority MARC
33 parameters tables.
34
35 =head1 FUNCTIONS
36
37 =cut
38
39 use strict;
40 use warnings;
41
42 use C4::AuthoritiesMarc;
43 use C4::Auth;
44 use C4::Context;
45 use C4::Output;
46 use CGI;
47 use MARC::Record;
48 use C4::Koha;
49
50 my $query = new CGI;
51
52 my $dbh = C4::Context->dbh;
53
54 my $authid       = $query->param('authid');
55 my $index        = $query->param('index');
56 my $tagid        = $query->param('tagid');
57 my $authtypecode = &GetAuthTypeCode($authid);
58 my $tagslib      = &GetTagsLabels( 1, $authtypecode );
59
60 my $auth_type = GetAuthType($authtypecode);
61 my $record;
62 if ($authid) {
63     $record = GetAuthority($authid);
64 }
65
66 # open template
67 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
68     {
69         template_name   => "authorities/blinddetail-biblio-search.tmpl",
70         query           => $query,
71         type            => "intranet",
72         authnotrequired => 0,
73         flagsrequired   => { editcatalogue => 'edit_catalogue' },
74     }
75 );
76
77 # fill arrays
78 my @loop_data = ();
79 if ($authid) {
80     foreach my $field ( $record->field( $auth_type->{auth_tag_to_report} ) ) {
81         my @subfields_data;
82         my @subf = $field->subfields;
83
84         # loop through each subfield
85         my %result;
86         for my $i ( 0 .. $#subf ) {
87             $subf[$i][0] = "@" unless $subf[$i][0];
88             $result{ $subf[$i][0] } .= $subf[$i][1] . "|";
89         }
90         foreach ( keys %result ) {
91             my %subfield_data;
92             chop $result{$_};
93             $subfield_data{marc_value}    = $result{$_};
94             $subfield_data{marc_subfield} = $_;
95
96             # $subfield_data{marc_tag}=$field->tag();
97             push( @subfields_data, \%subfield_data );
98         }
99         if ( $#subfields_data >= 0 ) {
100             my %tag_data;
101             $tag_data{tag} = $field->tag() . ' -' . $tagslib->{ $field->tag() }->{lib};
102             $tag_data{subfield} = \@subfields_data;
103             push( @loop_data, \%tag_data );
104         }
105     }
106 } else {
107     # authid is empty => the user want to empty the entry.
108     $template->param( "clear" => 1 );
109 #     warn Data::Dumper::Dumper(\@loop_data);
110 }
111
112 $template->param( "0XX" => \@loop_data );
113
114 $template->param(
115     authid => $authid ? $authid : "",
116     index  => $index,
117     tagid  => $tagid,
118 );
119
120 output_html_with_http_headers $query, $cookie, $template->output;
121