*** empty log message ***
[koha.git] / C4 / Input.pm
1 package C4::Input; #assumes C4/Input
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 use strict;
22 require Exporter;
23 use C4::Context;
24
25 use vars qw($VERSION @ISA @EXPORT);
26
27 # set the version for version checking
28 $VERSION = 0.01;
29
30 =head1 NAME
31
32 C4::Input - Miscellaneous sanity checks
33
34 =head1 SYNOPSIS
35
36   use C4::Input;
37
38 =head1 DESCRIPTION
39
40 This module provides functions to see whether a given library card
41 number or ISBN is valid.
42
43 =head1 FUNCTIONS
44
45 =over 2
46
47 =cut
48
49 @ISA = qw(Exporter);
50 @EXPORT = qw(
51         &checkdigit &checkvalidisbn
52 );
53
54 # FIXME - This is never used.
55 #sub checkflds {
56 #  my ($env,$reqflds,$data) = @_;
57 #  my $numrflds = @$reqflds;
58 #  my @probarr;
59 #  my $i = 0;
60 #  while ($i < $numrflds) {
61 #    if ($data->{@$reqflds[$i]} eq "") {
62 #      push(@probarr, @$reqflds[$i]);
63 #    }
64 #    $i++
65 #  }
66 #  return (\@probarr);
67 #}
68
69 =item checkdigit
70
71   $valid = &checkdigit($env, $cardnumber);
72
73 Takes a card number, computes its check digit, and compares it to the
74 checkdigit at the end of C<$cardnumber>. Returns a true value iff
75 C<$cardnumber> has a valid check digit.
76
77 C<$env> is ignored.
78
79 =cut
80 #'
81 sub checkdigit {
82
83         my ($env,$infl, $nounique) =  @_;
84         $infl = uc $infl;
85
86
87         #Check to make sure the cardnumber is unique
88
89         #FIXME: We should make the error for a nonunique cardnumber
90         #different from the one where the checkdigit on the number is
91         #not correct
92
93         unless ( $nounique ) 
94         {
95                 my $dbh=C4::Context->dbh;
96                 my $query=qq{SELECT * FROM borrowers WHERE cardnumber="$infl"};
97                 my $sth=$dbh->prepare($query);
98                 $sth->execute;
99                 my %results = $sth->fetchrow_hashref();
100                 if ( $sth->rows != 0 )
101                 {
102                         return 0;
103                 }
104         }
105
106         if (C4::Context->preference("checkdigit") eq "none") {
107                 return 1;
108         } else {
109                 my @weightings = (8,4,6,3,5,2,1);
110                 my $sum;
111                 my $i = 1;
112                 my $valid = 0;
113
114                 foreach $i (1..7) {
115                         my $temp1 = $weightings[$i-1];
116                         my $temp2 = substr($infl,$i,1);
117                         $sum += $temp1 * $temp2;
118                 }
119                 my $rem = ($sum%11);
120                 if ($rem == 10) {
121                 $rem = "X";
122                 }
123                 if ($rem eq substr($infl,8,1)) {
124                         $valid = 1;
125                 }
126                 return $valid;
127         }
128 } # sub checkdigit
129
130 =item checkvalidisbn
131
132   $valid = &checkvalidisbn($isbn);
133
134 Returns a true value iff C<$isbn> is a valid ISBN: it must be ten
135 digits long (counting "X" as a digit), and must have a valid check
136 digit at the end.
137
138 =cut
139 #'
140 #--------------------------------------
141 # Determine if a number is a valid ISBN number, according to length
142 #   of 10 digits and valid checksum
143 sub checkvalidisbn {
144         use strict;
145         my ($q)=@_ ;    # Input: ISBN number
146
147         my $isbngood = 0; # Return: true or false
148
149         $q=~s/x$/X/g;           # upshift lower case X
150         $q=~s/[^X\d]//g;
151         $q=~s/X.//g;
152         
153         #return 0 if $q is not ten digits long
154         if (length($q)!=10) {
155                 return 0;
156         }
157         
158         #If we get to here, length($q) must be 10
159         my $checksum=substr($q,9,1);
160         my $isbn=substr($q,0,9);
161         my $i;
162         my $c=0;
163         for ($i=0; $i<9; $i++) {
164             my $digit=substr($q,$i,1);
165             $c+=$digit*(10-$i);
166         }
167         $c %= 11;
168         ($c==10) && ($c='X');
169         $isbngood = $c eq $checksum;
170
171         return $isbngood;
172
173 } # sub checkvalidisbn
174
175 END { }       # module clean-up code here (global destructor)
176
177 1;
178 __END__
179
180 =back
181
182 =head1 AUTHOR
183
184 Koha Developement team <info@koha.org>
185
186 =cut