adding authentification with Auth.pm
[koha.git] / value_builder / unimarc_field_225a.pl
1 #!/usr/bin/perl
2
3 # $Id$
4
5 # Copyright 2000-2002 Katipo Communications
6 #
7 # This file is part of Koha.
8 #
9 # Koha is free software; you can redistribute it and/or modify it under the
10 # terms of the GNU General Public License as published by the Free Software
11 # Foundation; either version 2 of the License, or (at your option) any later
12 # version.
13 #
14 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
15 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
16 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License along with
19 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
20 # Suite 330, Boston, MA  02111-1307 USA
21
22 use strict;
23 use C4::Auth;
24 use CGI;
25 use C4::Context;
26 use HTML::Template;
27 use C4::Search;
28 use C4::Output;
29
30 sub plugin_parameters {
31 my ($dbh,$record,$tagslib,$i,$tabloop) = @_;
32 return "";
33 }
34 sub plugin_javascript {
35 my ($dbh,$record,$tagslib,$i,$tabloop) = @_;
36 my $function_name= "100".(int(rand(100000))+1);
37 my $res="
38 <script>
39 function Focus$function_name(subfield_managed) {
40 return 1;
41 }
42
43 function Blur$function_name(subfield_managed) {
44         return 1;
45 }
46
47 function Clic$function_name(index) {
48 // find the 010a value and the 210c. it will be used in the popup to find possibles collections
49         var isbn_found;
50         for (i=0 ; i<document.f.field_value.length ; i++) {
51                 if (document.f.tag[i].value == '010' && document.f.subfield[i].value == 'a') {
52                         isbn_found=document.f.field_value[i].value;
53                 }
54         }
55         var editor_found;
56         for (i=0 ; i<document.f.field_value.length ; i++) {
57                 if (document.f.tag[i].value == '210' && document.f.subfield[i].value == 'c') {
58                         editor_found=document.f.field_value[i].value;
59                 }
60         }
61
62         defaultvalue=document.f.field_value[index].value;
63         newin=window.open(\"../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');
64
65 }
66 </script>
67 ";
68
69 return ($function_name,$res);
70 }
71 sub plugin {
72 my ($input) = @_;
73         my %env;
74
75 #       my $input = new CGI;
76         my $index= $input->param('index');
77         my $result= $input->param('result');
78         my $editor_found = $input->param('editor_found');
79         my $isbn_found = $input->param('isbn_found');
80         my $dbh = C4::Context->dbh;
81         my $authoritysep = C4::Context->preference("authoritysep");
82         my ($template, $loggedinuser, $cookie)
83         = get_template_and_user({template_name => "value_builder/unimarc_field_225a.tmpl",
84                                         query => $input,
85                                         type => "intranet",
86                                         authnotrequired => 0,
87                                         flagsrequired => {parameters => 1},
88                                         debug => 1,
89                                         });
90 # builds collection list : search isbn and editor, in parent, then load collections from bibliothesaurus table
91         my $sth = $dbh->prepare("select stdlib from bibliothesaurus where father=? and category='EDITORS'");
92         my @splited = split //, $isbn_found;
93         my $isbn_rebuild='';
94         my @collections;
95         foreach my $x (@splited) {
96                 $isbn_rebuild.=$x;
97                 $sth->execute("$isbn_rebuild $authoritysep $editor_found $authoritysep");
98                 while (my ($line)= $sth->fetchrow) {
99                         push @collections,$line;
100                 }
101         }
102 #       my @collections = ["test"];
103         my $collection =CGI::scrolling_list(-name=>'f1',
104                                                                                                 -values=> \@collections,
105                                                                                                 -default=>"$result",
106                                                                                                 -size=>1,
107                                                                                                 -multiple=>0,
108                                                                                                 );
109         $template->param(index => $index,
110                                                         collection => $collection);
111         print $input->header(-cookie => $cookie),$template->output;
112 }
113
114 1;