Bug 9773 - Replace YUI AJAX calls in cataloging plugins with jQuery
[koha.git] / cataloguing / value_builder / callnumber.pl
1 #!/usr/bin/perl
2
3 # Copyright 2010 BibLibre SARL
4 #
5 # This file is part of Koha.
6 #
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 2 of the License, or (at your option) any later
10 # version.
11 #
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License along
17 # with Koha; if not, write to the Free Software Foundation, Inc.,
18 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19
20 use strict;
21 use warnings;
22 use C4::Auth;
23 use CGI;
24 use C4::Context;
25
26 =head1 DESCRIPTION
27
28 Is used for callnumber computation.
29
30 If the user send an empty string, we return a simple incremented callnumber.
31 If a prefix is submited, we look for the highest callnumber with this prefix, and return it incremented.
32 In this case, a callnumber has this form : "PREFIX 0009678570".
33  - PREFIX is an upercase word
34  - a space separator
35  - 10 digits, with leading 0s if needed
36
37 =cut
38
39 sub plugin_parameters {
40 }
41
42 sub plugin_javascript {
43     my ($dbh,$record,$tagslib,$field_number,$tabloop) = @_;
44     my $res="
45     <script type='text/javascript'>
46         function Focus$field_number() {
47             return 1;
48         }
49
50         function Blur$field_number() {
51                 var code = document.getElementById('$field_number');
52                 var url = '../cataloguing/plugin_launcher.pl?plugin_name=callnumber.pl&code=' + code.value;
53                 var req = \$.get(url);
54                 req.done(function(resp){
55                     code.value = resp;
56                     return 1;
57                 });
58                 return 1;
59         }
60
61         function Clic$field_number() {
62             return 1;
63         }
64     </script>
65     ";
66
67     return ($field_number,$res);
68 }
69
70 sub plugin {
71     my ($input) = @_;
72     my $code = $input->param('code');
73
74     my ($template, $loggedinuser, $cookie) = get_template_and_user({
75         template_name   => "cataloguing/value_builder/ajax.tmpl",
76         query           => $input,
77         type            => "intranet",
78         authnotrequired => 0,
79         flagsrequired   => {editcatalogue => '*'},
80         debug           => 1,
81     });
82
83     my $dbh = C4::Context->dbh;
84     # If the textbox is empty, we return a simple incremented callnumber
85     if ( $code eq "" ) {
86         my $sth = $dbh->prepare("SELECT MAX(CAST(itemcallnumber AS SIGNED)) FROM items");
87         $sth->execute;
88     
89         if ( my $max = $sth->fetchrow ) {
90             $template->param(
91                 return => $max+1,
92             );
93         }
94     # If a prefix is submited, we look for the highest itemcallnumber with this prefix, and return it incremented
95     } elsif ( $code =~ m/^[A-Z.\-']+$/ ) {
96         my $sth = $dbh->prepare("SELECT MAX(CAST(SUBSTRING_INDEX(itemcallnumber,' ',-1) AS SIGNED)) FROM items WHERE itemcallnumber LIKE ?");
97         $sth->execute($code.' %');
98         if ( my $max = $sth->fetchrow ) {
99             $template->param(
100                 return => $code.' '.($max+1)
101             );
102         }
103         else {
104             $template->param(
105                 return => $code.' 1'
106             );
107         }
108
109     # The user entered a custom value, we don't touch it, this could be handled in js
110     } else {
111         $template->param(
112             return => $code
113         );
114     }
115     output_html_with_http_headers $input, $cookie, $template->output;
116 }
117
118 1;