adding menu-tools item
[koha.git] / value_builder / unimarc_field_700_701_702.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 use C4::Authorities;
30
31 sub plugin_javascript {
32 my ($dbh,$record,$tagslib,$field_number,$tabloop) = @_;
33 my $function_name= "100".(int(rand(100000))+1);
34 my $res="
35 <script>
36 function Focus$function_name(subfield_managed) {
37 return 1;
38 }
39
40 function Blur$function_name(subfield_managed) {
41         return 1;
42 }
43
44 function Clic$function_name(index) {
45         defaultvalue=document.f.field_value[index].value;
46         newin=window.open(\"../plugin_launcher.pl?plugin_name=unimarc_field_700_701_702.pl&index=\"+index+\"&result=\"+defaultvalue,\"unimarc 700\",'width=700,height=300,toolbar=false,scrollbars=yes');
47
48 }
49 </script>
50 ";
51
52 return ($function_name,$res);
53 }
54 sub plugin {
55         my ($input) = @_;
56         my %env;
57         my $dbh = C4::Context->dbh;
58 #       my $input = new CGI;
59         my $index= $input->param('index');
60         my $result= $input->param('result');
61         my $search_string= $input->param('search_string');
62         my $op = $input->param('op');
63         my $id = $input->param('id');
64         my $insert = $input->param('insert');
65         my @freelib;
66         my %stdlib;
67         my $select_list;
68         my ($a,$b,$c,$f) ; # the 4 managed subfields.
69         if ($op eq "add") {
70                 newauthority($dbh,'NP',$insert,$insert,'',1,'');
71                 $search_string=$insert;
72         }
73         if ($op eq "select") {
74                 my $sti = $dbh->prepare("select stdlib from bibliothesaurus where id=?");
75                 $sti->execute($id);
76                 my ($freelib_text) = $sti->fetchrow_array;
77                 $result = $freelib_text;
78                 # fill the 4 managed subfields
79                 my @arr = split //,$result;
80                 my $where = 1;
81                 foreach my $x (@arr) {
82                         next if ($x eq ')');
83                         if ($x eq ',') {
84                                 $where=2;
85                                 next;
86                         }
87                         if ($x eq '(') {
88                                 if ($result =~ /.*;.*/) {
89                                         $where=3;
90                                 } else {
91                                         $where=4;
92                                 }
93                                 next;
94                         }
95                         if ($x eq ';') {
96                                 $where=4;
97                                 next;
98                         }
99                         if ($where eq 1) {
100                                 $a.=$x;
101                         }
102                         if ($where eq 2) {
103                                 $b.=$x;
104                         }
105                         if ($where eq 3) {
106                                 $c.=$x;
107                         }
108                         if ($where eq 4) {
109                                 $f.=$x;
110                         }
111                 }
112 # remove trailing blanks
113                 $a=~ s/^\s+//g;
114                 $b=~ s/^\s+//g;
115                 $c=~ s/^\s+//g;
116                 $f=~ s/^\s+//g;
117                 $a=~ s/\s+$//g;
118                 $b=~ s/\s+$//g;
119                 $c=~ s/\s+$//g;
120                 $f=~ s/^s+$//g;
121         }
122         if ($search_string) {
123         #       my $sti=$dbh->prepare("select id,freelib from bibliothesaurus where freelib like '".$search_string."%' and category ='$category'");
124                 my $sti=$dbh->prepare("select id,freelib from bibliothesaurus where match (category,freelib) AGAINST (?) and category ='NP'");
125                 $sti->execute($search_string);
126                 while (my $line=$sti->fetchrow_hashref) {
127                         $stdlib{$line->{'id'}} = "$line->{'freelib'}";
128                         push(@freelib,$line->{'id'});
129                 }
130                 $select_list= CGI::scrolling_list( -name=>'id',
131                                 -values=> \@freelib,
132                                 -default=> "",
133                                 -size=>1,
134                                 -multiple=>0,
135                                 -labels=> \%stdlib
136                                 );
137         }
138         my ($template, $loggedinuser, $cookie)
139         = get_template_and_user({template_name => "value_builder/unimarc_field_700_701_702.tmpl",
140                                         query => $input,
141                                         type => "intranet",
142                                         authnotrequired => 0,
143                                         flagsrequired => {parameters => 1},
144                                         debug => 1,
145                                         });
146 # builds collection list : search isbn and editor, in parent, then load collections from bibliothesaurus table
147         $template->param(index => $index,
148                                                         result =>$result,
149                                                         select_list => $select_list,
150                                                         search_string => $search_string?$search_string:$result,
151                                                         a => $a,
152                                                         b => $b,
153                                                         c => $c,
154                                                         f => $f,);
155         print $input->header(-cookie => $cookie),$template->output;
156 }
157
158 1;