Bug 9978: Replace license header with the correct license (GPLv3+)
[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
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
11 #
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
19
20 use strict;
21 use warnings;
22 use C4::Auth;
23 use CGI qw ( -utf8 );
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_javascript {
40     my ($dbh,$record,$tagslib,$field_number,$tabloop) = @_;
41     my $res="
42     <script type='text/javascript'>
43         function Blur$field_number() {
44                 var code = document.getElementById('$field_number');
45                 var url = '../cataloguing/plugin_launcher.pl?plugin_name=callnumber.pl&code=' + code.value;
46                 var req = \$.get(url);
47                 req.done(function(resp){
48                     code.value = resp;
49                     return 1;
50                 });
51                 return 1;
52         }
53
54     </script>
55     ";
56
57     return ($field_number,$res);
58 }
59
60 sub plugin {
61     my ($input) = @_;
62     my $code = $input->param('code');
63
64     my ($template, $loggedinuser, $cookie) = get_template_and_user({
65         template_name   => "cataloguing/value_builder/ajax.tt",
66         query           => $input,
67         type            => "intranet",
68         authnotrequired => 0,
69         flagsrequired   => {editcatalogue => '*'},
70         debug           => 1,
71     });
72
73     my $dbh = C4::Context->dbh;
74     # If the textbox is empty, we return a simple incremented callnumber
75     if ( $code eq "" ) {
76         my $sth = $dbh->prepare("SELECT MAX(CAST(itemcallnumber AS SIGNED)) FROM items");
77         $sth->execute;
78     
79         if ( my $max = $sth->fetchrow ) {
80             $template->param(
81                 return => $max+1,
82             );
83         }
84     # If a prefix is submited, we look for the highest itemcallnumber with this prefix, and return it incremented
85     } elsif ( $code =~ m/^[A-Z.\-']+$/ ) {
86         my $sth = $dbh->prepare("SELECT MAX(CAST(SUBSTRING_INDEX(itemcallnumber,' ',-1) AS SIGNED)) FROM items WHERE itemcallnumber LIKE ?");
87         $sth->execute($code.' %');
88         if ( my $max = $sth->fetchrow ) {
89             $template->param(
90                 return => $code.' '.($max+1)
91             );
92         }
93         else {
94             $template->param(
95                 return => $code.' 1'
96             );
97         }
98
99     # The user entered a custom value, we don't touch it, this could be handled in js
100     } else {
101         $template->param(
102             return => $code
103         );
104     }
105     output_html_with_http_headers $input, $cookie, $template->output;
106 }