b3239fdf9e787c0fc0982043e4513e8d4cb0ff93
[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::Search;
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+\"&isbn_found=\"+isbn_found+\"&editor_found=\"+editor_found,\"unimarc 225a\",'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 $isbn_found   = $input->param('isbn_found');
111     my $dbh          = C4::Context->dbh;
112     my $authoritysep = C4::Context->preference("authoritysep");
113     my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
114         {
115             template_name =>
116               "cataloguing/value_builder/unimarc_field_225a.tmpl",
117             query           => $input,
118             type            => "intranet",
119             authnotrequired => 0,
120             flagsrequired   => { editcatalogue => 1 },
121             debug           => 1,
122         }
123     );
124
125 # builds collection list : search isbn and editor, in parent, then load collections from bibliothesaurus table
126 # if there is an isbn, complete search
127     my @collections;
128     if ($isbn_found) {
129         my $sth = $dbh->prepare(
130             "SELECT auth_subfield_table.authid,subfieldvalue
131             FROM   auth_subfield_table
132             LEFT JOIN auth_header ON auth_subfield_table.authid = auth_header.authid 
133             WHERE authtypecode='EDITORS' 
134                AND tag='200'
135                AND subfieldcode='a'
136                AND subfieldvalue=?"
137         );
138         my $sth2 =
139           $dbh->prepare(
140             "SELECT subfieldvalue
141              FROM auth_subfield_table 
142              WHERE tag='200'
143              AND subfieldcode='c'
144              AND authid=?
145              ORDER BY subfieldvalue"
146           );
147         my @splited = split //, $isbn_found;
148         my $isbn_rebuild = '';
149         foreach my $x (@splited) {
150             $isbn_rebuild .= $x;
151             $sth->execute($isbn_rebuild);
152             my ($authid) = $sth->fetchrow;
153             $sth2->execute($authid);
154             while ( my ($line) = $sth2->fetchrow ) {
155                 push @collections, $line;
156             }
157         }
158     }
159     else {
160         my $sth = $dbh->prepare(
161             "SELECT auth_subfield_table.authid,subfieldvalue
162              FROM auth_subfield_table
163              LEFT JOIN auth_header ON auth_subfield_table.authid = auth_header.authid 
164              WHERE authtypecode='EDITORS'
165                AND tag='200'
166                AND subfieldcode='b'
167                AND subfieldvalue=?"
168         );
169         my $sth2 =
170           $dbh->prepare(
171             "SELECT subfieldvalue
172              FROM auth_subfield_table
173              WHERE tag='200'
174                 AND subfieldcode='c'
175                 AND authid=?
176              ORDER BY subfieldvalue"
177           );
178         $sth->execute($editor_found);
179         my ($authid) = $sth->fetchrow;
180         $sth2->execute($authid);
181         while ( my ($line) = $sth2->fetchrow ) {
182             push @collections, $line;
183         }
184     }
185
186     #   my @collections = ["test"];
187     my $collection = CGI::scrolling_list(
188         -name     => 'f1',
189         -values   => \@collections,
190         -default  => "$result",
191         -size     => 1,
192         -multiple => 0,
193     );
194     $template->param(
195         index      => $index,
196         collection => $collection
197     );
198     output_html_with_http_headers $input, $cookie, $template->output;
199 }
200
201 1;