a02910e76c4c6afb4b12094441707ee06ec5b9aa
[koha.git] / cataloguing / value_builder / unimarc_field_225a.pl
1 #!/usr/bin/perl
2
3
4 # Copyright 2000-2002 Katipo Communications
5 #
6 # This file is part of Koha.
7 #
8 # Koha is free software; you can redistribute it and/or modify it under the
9 # terms of the GNU General Public License as published by the Free Software
10 # Foundation; either version 2 of the License, or (at your option) any later
11 # version.
12 #
13 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
14 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
15 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License along with
18 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
19 # Suite 330, Boston, MA  02111-1307 USA
20
21 =head1 SYNOPSIS
22
23 This plugin is used to map isbn/editor with collection.
24 It need :
25   in thesaurus, a category named EDITORS
26   in this category, datas must be entered like following :
27   isbn separator editor separator collection.
28   for example :
29   2204 -- Cerf -- Cogitatio fidei
30   2204 -- Cerf -- Le Magistere de l'Eglise
31   2204 -- Cerf -- Lectio divina
32   2204 -- Cerf -- Lire la Bible
33   2204 -- Cerf -- Pour lire
34   2204 -- Cerf -- Sources chretiennes
35
36   when the user clic on ... on 225a line, the popup shows the list of collections from the selected editor
37   if the biblio has no isbn, then the search if done on editor only
38   If the biblio ha an isbn, the search is done on isbn and editor. It's faster.
39
40 =over 2
41
42 =cut
43
44 use strict;
45 use C4::Auth;
46 use CGI;
47 use C4::Context;
48
49 use C4::AuthoritiesMarc;
50 use C4::Output;
51
52 =head1
53
54 plugin_parameters : other parameters added when the plugin is called by the dopop function
55
56 =cut
57
58 sub plugin_parameters {
59     my ( $dbh, $record, $tagslib, $i, $tabloop ) = @_;
60     return "";
61 }
62
63 sub plugin_javascript {
64     my ( $dbh, $record, $tagslib, $field_number, $tabloop ) = @_;
65     my $function_name = $field_number;
66     my $res = "
67     <script type=\"text/javascript\">
68         function Focus$function_name(subfield_managed) {
69             return 1;
70         }
71     
72         function Blur$function_name(subfield_managed) {
73             return 1;
74         }
75     
76         function Clic$function_name(index) {
77         // find the 010a value and the 210c. it will be used in the popup to find possibles collections
78             var isbn_found   = 0;
79             var editor_found = 0;
80             
81             var inputs = document.getElementsByTagName('input');
82             
83             for(var i=0 , len=inputs.length ; i \< len ; i++ ){
84                 if(inputs[i].id.match(/^tag_010_subfield_a_.*/)){
85                     isbn_found = inputs[i].value;
86                 }
87                 if(inputs[i].id.match(/^tag_210_subfield_c_.*/)){
88                     editor_found = inputs[i].value;
89                 }
90                 if(editor_found && isbn_found){
91                     break;
92                 }
93             }
94                     
95             defaultvalue = document.getElementById(\"$field_number\").value;
96             window.open(\"../cataloguing/plugin_launcher.pl?plugin_name=unimarc_field_225a.pl&index=\"+index+\"&result=\"+defaultvalue+\"&editor_found=\"+editor_found,\"unimarc225a\",'width=500,height=200,toolbar=false,scrollbars=no');
97     
98         }
99     </script>
100 ";
101
102     return ( $function_name, $res );
103 }
104
105 sub plugin {
106     my ($input)      = @_;
107     my $index        = $input->param('index');
108     my $result       = $input->param('result');
109     my $editor_found = $input->param('editor_found');
110     my $authoritysep = C4::Context->preference("authoritysep");
111     
112     my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
113         {
114             template_name =>
115               "cataloguing/value_builder/unimarc_field_225a.tmpl",
116             query           => $input,
117             type            => "intranet",
118             authnotrequired => 0,
119             flagsrequired   => { editcatalogue => '*' },
120             debug           => 1,
121         }
122     );
123
124 # builds collection list : search isbn and editor, in parent, then load collections from bibliothesaurus table
125 # if there is an isbn, complete search
126     my @collections;
127     
128     my @value     = ($editor_found,"","");
129     my @tags      = ("mainentry","","");
130     my @and_or    = ('and','','');
131     my @operator  = ('is','','');
132     my @excluding = ('','','');
133     
134     
135     my ($results,$total) = SearchAuthorities( \@tags,\@and_or,
136                                             \@excluding, \@operator, \@value,
137                                             0, 20,"EDITORS", "HeadingAsc");
138     foreach my $editor (@$results){
139         my $authority = GetAuthority($editor->{authid});
140         foreach my $col ($authority->subfield('200','c')){
141             push @collections, $col;
142         }
143             
144     } 
145     @collections = sort @collections;
146     #   my @collections = ["test"];
147     my $collection = CGI::scrolling_list(
148         -name     => 'f1',
149         -values   => \@collections,
150         -default  => "$result",
151         -size     => 1,
152         -multiple => 0,
153     );
154     $template->param(
155         index      => $index,
156         collection => $collection
157     );
158     output_html_with_http_headers $input, $cookie, $template->output;
159 }
160
161 1;