Bug 9978: Replace license header with the correct license (GPLv3+)
[koha-equinox.git] / cataloguing / value_builder / callnumber-KU.pl
1 #!/usr/bin/perl
2
3 # Copyright 2012 CatalystIT Ltd
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 User must supply a letter prefix (unspecified length) followed by an empty space followed by a "number".
31 "Number" is 4 character long, and is either a number sequence which is 01 padded.
32 If input does not conform with this format any processing is omitted.
33
34 Some examples of legal values that trigger auto allocation:
35
36 AAA 0  - returns first unused number AAA 0xxx starting with AAA 0001
37 BBB 12 - returns first unused number BBB 12xx starting with BBB 1201
38 CCC QW - returns first unused number CCC QWxx starting with CCC QW01
39
40 =cut
41
42 sub plugin_javascript {
43     my ($dbh,$record,$tagslib,$field_number,$tabloop) = @_;
44     my $res="
45     <script type='text/javascript'>
46         function Clic$field_number() {
47                 var code = document.getElementById('$field_number');
48                 var url = '../cataloguing/plugin_launcher.pl?plugin_name=callnumber-KU.pl&code=' + code.value;
49                 var req = \$.get(url);
50                 req.done(function(resp){
51                     code.value = resp;
52                     return 1;
53                 });
54             return 1;
55         }
56     </script>
57     ";
58
59     return ($field_number,$res);
60 }
61
62 my $BASE_CALLNUMBER_RE = qr/^(\w+) (\w+)$/;
63 sub plugin {
64     my ($input) = @_;
65     my $code = $input->param('code');
66
67     my ($template, $loggedinuser, $cookie) = get_template_and_user({
68         template_name   => "cataloguing/value_builder/ajax.tt",
69         query           => $input,
70         type            => "intranet",
71         authnotrequired => 0,
72         flagsrequired   => {editcatalogue => '*'},
73         debug           => 1,
74     });
75
76     my $ret;
77     my ($alpha, $num) = ($code =~ $BASE_CALLNUMBER_RE);
78     if (defined $num) { # otherwise no point
79         my ($num_alpha, $num_num) = ($num =~ m/^(\D+)?(\d+)?$/);
80         $num_alpha ||= '';
81         my $pad_len = 4 - length($num);
82
83         if ($pad_len > 0) {
84             my $num_padded = $num_num;
85             $num_padded .= "0" x ($pad_len - 1) if $pad_len > 1;
86             $num_padded .= "1";
87             my $padded = "$alpha $num_alpha" . $num_padded;
88
89             my $dbh = C4::Context->dbh;
90             if ( my $first = $dbh->selectrow_array("SELECT itemcallnumber
91                                                     FROM items
92                                                     WHERE itemcallnumber = ?", undef, $padded) ) {
93                 my $icn = $dbh->selectcol_arrayref("SELECT DISTINCT itemcallnumber
94                                                     FROM items
95                                                     WHERE itemcallnumber LIKE ?
96                                                       AND itemcallnumber >   ?
97                                                     ORDER BY itemcallnumber", undef, "$alpha $num_alpha%", $first);
98                 my $next = $num_padded + 1;
99                 my $len = length($num_padded);
100                 foreach (@$icn) {
101                     my ($num1) = ( m/(\d+)$/o );
102                     if ($num1 > $next) { # a hole in numbering found, stop
103                         last;
104                     }
105                     $next++;
106                 }
107                 $ret = "$alpha $num_alpha" . sprintf("%0${len}d", $next) if length($next) <= $len; # no overflow
108             }
109             else {
110                 $ret = $padded;
111             }
112         }
113     }
114
115     $template->param(
116         return => $ret || $code
117     );
118     output_html_with_http_headers $input, $cookie, $template->output;
119 }