(bug #3398) fix unimarc 210c plugin
[koha.git] / cataloguing / value_builder / unimarc_field_210c.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
22 use C4::AuthoritiesMarc;
23 use C4::Auth;
24 use C4::Context;
25 use C4::Output;
26 use CGI;
27 use C4::Search;
28 use MARC::Record;
29 use C4::Koha;
30
31 ###TODO To rewrite in order to use SearchAuthorities
32
33 =head1
34
35 plugin_parameters : other parameters added when the plugin is called by the dopop function
36
37 =cut
38 sub plugin_parameters {
39 my ($dbh,$record,$tagslib,$i,$tabloop) = @_;
40 return "";
41 }
42
43 =head1
44
45 plugin_javascript : the javascript function called when the user enters the subfield.
46 contain 3 javascript functions :
47 * one called when the field is entered (OnFocus). Named FocusXXX
48 * one called when the field is leaved (onBlur). Named BlurXXX
49 * one called when the ... link is clicked (<a href="javascript:function">) named ClicXXX
50
51 returns :
52 * XXX
53 * a variable containing the 3 scripts.
54 the 3 scripts are inserted after the <input> in the html code
55
56 =cut
57 sub plugin_javascript {
58 my ($dbh,$record,$tagslib,$field_number,$tabloop) = @_;
59 my $function_name= $field_number;
60 #---- build editors list.
61 #---- the editor list is built from the "EDITORS" thesaurus
62 #---- this thesaurus category must be filled as follow :
63 #---- 200$a for isbn
64 #---- 200$b for editor
65 #---- 200$c (repeated) for collections
66  my $sth 
67 = $dbh->prepare("select auth_subfield_table.authid,subfieldvalue from auth_subfield_table 
68                         left join auth_header on auth_subfield_table.authid=auth_header.authid
69                         where authtypecode='EDITORS' and tag='200' and subfieldcode='a'");
70  my $sth2
71  = $dbh->prepare("select subfieldvalue from auth_subfield_table where tag='200' and subfieldcode='b' and authid=?");
72 $sth->execute;
73 my @editors;
74 my $authoritysep = C4::Context->preference("authoritysep");
75 while (my ($authid,$isbn) = $sth->fetchrow) {
76     $sth2->execute($authid);
77     my ($editor) = $sth2->fetchrow;
78     push(@editors,"$isbn $authoritysep $editor");
79 }
80 my $res  = "
81 <script type=\"text/javascript\">
82 function Focus$function_name(index) {
83 var isbn_array = [ ";
84 foreach my $editor (@editors) {
85     my @arr = split (/ $authoritysep /,$editor);
86     $res .='["'.$arr[0].'","'.$arr[1].'","'.$arr[2].'"],';
87 }
88 chop $res;
89 $res .= "
90 ];
91     // search isbn subfield. it''s 010a
92     var isbn_found;
93     var nb_fields = document.f.field_value.length;
94     for (i=0 ; i< nb_fields; i++) {
95         if (document.f.tag[i].value == '010' && document.f.subfield[i].value == 'a') {
96             isbn_found=document.f.field_value[i].value;
97             break;
98         }
99     }
100     try{
101         isbn_found.getAttribute('value'); // throw an exception if doesn't (if no 010a)
102     }
103     catch(e){
104         return;
105     }
106     for (i=0;i<=isbn_array.length;i++) {
107         if (isbn_found.substr(0,isbn_array[i][0].length) == isbn_array[i][0]) {
108             document.f.field_value[index].value =isbn_array[i][1];
109         }
110     }
111 }
112
113 function Blur$function_name(subfield_managed) {
114     return 1;
115 }
116
117 function Clic$function_name(subfield_managed) {
118     defaultvalue=escape(document.getElementById(\"$field_number\").value);
119     newin=window.open(\"../cataloguing/plugin_launcher.pl?plugin_name=unimarc_field_210c.pl&index=\"+subfield_managed,\"unimarc 225a\",'width=500,height=600,toolbar=false,scrollbars=yes');
120 }
121 </script>
122 ";
123 return ($function_name,$res);
124 }
125
126 =head1
127
128 plugin : the true value_builded. The screen that is open in the popup window.
129
130 =cut
131
132 sub plugin {
133 my ($input) = @_;
134     my $query=new CGI;
135     my $op = $query->param('op');
136     my $authtypecode = $query->param('authtypecode');
137     my $index = $query->param('index');
138     my $category = $query->param('category');
139     my $resultstring = $query->param('result');
140     my $dbh = C4::Context->dbh;
141     
142     my $startfrom=$query->param('startfrom');
143     $startfrom=0 if(!defined $startfrom);
144     my ($template, $loggedinuser, $cookie);
145     my $resultsperpage;
146     
147     my $authtypes = getauthtypes;
148     my @authtypesloop;
149     foreach my $thisauthtype (keys %$authtypes) {
150         my $selected = 1 if $thisauthtype eq $authtypecode;
151         my %row =(value => $thisauthtype,
152                     selected => $selected,
153                     authtypetext => $authtypes->{$thisauthtype}{'authtypetext'},
154                 index => $index,
155                 );
156         push @authtypesloop, \%row;
157     }
158
159     if ($op eq "do_search") {
160         my @marclist = $query->param('marclist');
161         my @and_or = $query->param('and_or');
162         my @excluding = $query->param('excluding');
163         my @operator = $query->param('operator');
164         my @value = $query->param('value');
165         my $orderby   = $query->param('orderby');
166         
167         $resultsperpage= $query->param('resultsperpage');
168         $resultsperpage = 19 if(!defined $resultsperpage);
169     
170         # builds tag and subfield arrays
171         my @tags;
172     
173         my ($results,$total) = SearchAuthorities( \@tags,\@and_or,
174                                             \@excluding, \@operator, \@value,
175                                             $startfrom*$resultsperpage, $resultsperpage,$authtypecode, $orderby);
176                                             
177         ($template, $loggedinuser, $cookie)
178             = get_template_and_user({template_name => "cataloguing/value_builder/unimarc_field_210c.tmpl",
179                     query => $query,
180                     type => 'intranet',
181                     authnotrequired => 0,
182                     flagsrequired => {editcatalogue => 1},
183                     debug => 1,
184                     });
185     
186         # multi page display gestion
187         my $displaynext=0;
188         my $displayprev=$startfrom;
189         if(($total - (($startfrom+1)*($resultsperpage))) > 0 ) {
190             $displaynext = 1;
191         }
192     
193         my @numbers = ();
194     
195         if ($total>$resultsperpage) {
196             for (my $i=1; $i<$total/$resultsperpage+1; $i++) {
197                 if ($i<16) {
198                     my $highlight=0;
199                     ($startfrom==($i-1)) && ($highlight=1);
200                     push @numbers, { number => $i,
201                         highlight => $highlight ,
202                         startfrom => ($i-1)};
203                 }
204             }
205         }
206     
207         my $from = $startfrom*$resultsperpage+1;
208         my $to;
209     
210         if($total < (($startfrom+1)*$resultsperpage)) {
211             $to = $total;
212         } else {
213             $to = (($startfrom+1)*$resultsperpage);
214         }
215         my $link="../cataloguing/plugin_launcher.pl?plugin_name=unimarc_field_210c.pl&amp;authtypecode=EDITORS&and_or=$and_or&amp;marclist=$marclist&amp;operator=$operator&amp;orderby=$orderby&amp;excluding=$excluding&amp;".join("&amp;",map {"value=".$_} @value)."&amp;op=do_search&amp;type=intranet&amp;index=$index";
216         warn "$link ,".getnbpages($total, $resultsperpage);
217         $template->param(result => $results) if $results;
218         $template->param('index' => $query->param('index'));
219         $template->param(startfrom=> $startfrom,
220                                 displaynext=> $displaynext,
221                                 displayprev=> $displayprev,
222                                 resultsperpage => $resultsperpage,
223                                 startfromnext => $startfrom+1,
224                                 startfromprev => $startfrom-1,
225                                 total=>$total,
226                                 from=>$from,
227                                 to=>$to,
228                                 numbers=>\@numbers,
229                                 authtypecode =>$authtypecode,
230                                 resultstring =>$value[0],
231                                 pagination_bar => pagination_bar(
232                                     $link,
233                                     getnbpages($total, $resultsperpage),
234                                     $startfrom,
235                                     'startfrom'
236                                 ),
237                                 );
238     } else {
239         ($template, $loggedinuser, $cookie)
240             = get_template_and_user({template_name => "cataloguing/value_builder/unimarc_field_210c.tmpl",
241                     query => $query,
242                     type => 'intranet',
243                     authnotrequired => 0,
244                     flagsrequired => {editcatalogue => 1},
245                     debug => 1,
246                     });
247     
248         $template->param(index => $index,
249                         resultstring => $resultstring
250                         );
251     }
252     
253     $template->param(authtypesloop => \@authtypesloop);
254     $template->param(category => $category);
255     
256     # Print the page
257     output_html_with_http_headers $query, $cookie, $template->output;
258 }
259
260 1;