* moving prepare / execute to ? form.
[koha.git] / C4 / Search.pm
1 package C4::Search;
2
3 # Copyright 2000-2002 Katipo Communications
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 with
17 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
18 # Suite 330, Boston, MA  02111-1307 USA
19
20 use strict;
21 require Exporter;
22 use DBI;
23 use C4::Context;
24 use C4::Reserves2;
25         # FIXME - C4::Search uses C4::Reserves2, which uses C4::Search.
26         # So Perl complains that all of the functions here get redefined.
27
28 use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
29
30 # set the version for version checking
31 $VERSION = 0.02;
32
33 =head1 NAME
34
35 C4::Search - Functions for searching the Koha catalog and other databases
36
37 =head1 SYNOPSIS
38
39   use C4::Search;
40
41   my ($count, @results) = catalogsearch($env, $type, $search, $num, $offset);
42
43 =head1 DESCRIPTION
44
45 This module provides the searching facilities for the Koha catalog and
46 other databases.
47
48 C<&catalogsearch> is a front end to all the other searches. Depending
49 on what is passed to it, it calls the appropriate search function.
50
51 =head1 FUNCTIONS
52
53 =over 2
54
55 =cut
56
57 @ISA = qw(Exporter);
58 @EXPORT = qw(&CatSearch &BornameSearch &ItemInfo &KeywordSearch &subsearch
59 &itemdata &bibdata &GetItems &borrdata &itemnodata &itemcount
60 &borrdata2 &NewBorrowerNumber &bibitemdata &borrissues
61 &getboracctrecord &ItemType &itemissues &subject &subtitle
62 &addauthor &bibitems &barcodes &findguarantees &allissues
63 &findguarantor &getwebsites &getwebbiblioitems &catalogsearch &itemcount2
64 &isbnsearch &breedingsearch);
65 # make all your functions, whether exported or not;
66
67 =item findguarantees
68
69   ($num_children, $children_arrayref) = &findguarantees($parent_borrno);
70   $child0_cardno = $children_arrayref->[0]{"cardnumber"};
71   $child0_borrno = $children_arrayref->[0]{"borrowernumber"};
72
73 C<&findguarantees> takes a borrower number (e.g., that of a patron
74 with children) and looks up the borrowers who are guaranteed by that
75 borrower (i.e., the patron's children).
76
77 C<&findguarantees> returns two values: an integer giving the number of
78 borrowers guaranteed by C<$parent_borrno>, and a reference to an array
79 of references to hash, which gives the actual results.
80
81 =cut
82 #'
83 sub findguarantees{
84   my ($bornum)=@_;
85   my $dbh = C4::Context->dbh;
86   my $query="select cardnumber,borrowernumber from borrowers where
87   guarantor='$bornum'";
88   my $sth=$dbh->prepare($query);
89   $sth->execute;
90
91   my @dat;
92   while (my $data = $sth->fetchrow_hashref)
93   {
94     push @dat, $data;
95   }
96   $sth->finish;
97   return (scalar(@dat), \@dat);
98 }
99
100 =item findguarantor
101
102   $guarantor = &findguarantor($borrower_no);
103   $guarantor_cardno = $guarantor->{"cardnumber"};
104   $guarantor_surname = $guarantor->{"surname"};
105   ...
106
107 C<&findguarantor> takes a borrower number (presumably that of a child
108 patron), finds the guarantor for C<$borrower_no> (the child's parent),
109 and returns the record for the guarantor.
110
111 C<&findguarantor> returns a reference-to-hash. Its keys are the fields
112 from the C<borrowers> database table;
113
114 =cut
115 #'
116 sub findguarantor{
117   my ($bornum)=@_;
118   my $dbh = C4::Context->dbh;
119   my $query="select guarantor from borrowers where
120   borrowernumber='$bornum'";
121   my $sth=$dbh->prepare($query);
122   $sth->execute;
123   my $data=$sth->fetchrow_hashref;
124   $sth->finish;
125   $query="Select * from borrowers where
126   borrowernumber='$data->{'guarantor'}'";
127   $sth=$dbh->prepare($query);
128   $sth->execute;
129   $data=$sth->fetchrow_hashref;
130   $sth->finish;
131   return($data);
132 }
133
134 =item NewBorrowerNumber
135
136   $num = &NewBorrowerNumber();
137
138 Allocates a new, unused borrower number, and returns it.
139
140 =cut
141 #'
142 # FIXME - This is identical to C4::Circulation::Borrower::NewBorrowerNumber.
143 # Pick one and stick with it. Preferably use the other one. This function
144 # doesn't belong in C4::Search.
145 sub NewBorrowerNumber {
146   my $dbh = C4::Context->dbh;
147   my $sth=$dbh->prepare("Select max(borrowernumber) from borrowers");
148   $sth->execute;
149   my $data=$sth->fetchrow_hashref;
150   $sth->finish;
151   $data->{'max(borrowernumber)'}++;
152   return($data->{'max(borrowernumber)'});
153 }
154
155 =item catalogsearch
156
157   ($count, @results) = &catalogsearch($env, $type, $search, $num, $offset);
158
159 This is primarily a front-end to other, more specialized catalog
160 search functions: if C<$search-E<gt>{itemnumber}> or
161 C<$search-E<gt>{isbn}> is given, C<&catalogsearch> uses a precise
162 C<&CatSearch>. If $search->{subject} is given, it runs a subject
163 C<&CatSearch>. If C<$search-E<gt>{keyword}> is given, it runs a
164 C<&KeywordSearch>. Otherwise, it runs a loose C<&CatSearch>.
165
166 If C<$env-E<gt>{itemcount}> is 1, then C<&catalogsearch> also counts
167 the items for each result, and adds several keys:
168
169 =over 4
170
171 =item C<itemcount>
172
173 The total number of copies of this book.
174
175 =item C<locationhash>
176
177 This is a reference-to-hash; the keys are the names of branches where
178 this book may be found, and the values are the number of copies at
179 that branch.
180
181 =item C<location>
182
183 A descriptive string saying where the book is located, and how many
184 copies there are, if greater than 1.
185
186 =item C<subject2>
187
188 The book's subject, with spaces replaced with C<%20>, presumably for
189 HTML.
190
191 =back
192
193 =cut
194 #'
195 sub catalogsearch {
196         my ($env,$type,$search,$num,$offset)=@_;
197         my $dbh = C4::Context->dbh;
198         #  foreach my $key (%$search){
199         #    $search->{$key}=$dbh->quote($search->{$key});
200         #  }
201         my ($count,@results);
202         #  print STDERR "Doing a search \n";
203         if ($search->{'itemnumber'} ne '' || $search->{'isbn'} ne ''){
204                 print STDERR "Doing a precise search\n";
205                 ($count,@results)=CatSearch($env,'precise',$search,$num,$offset);
206         } elsif ($search->{'subject'} ne ''){
207                 ($count,@results)=CatSearch($env,'subject',$search,$num,$offset);
208         } elsif ($search->{'keyword'} ne ''){
209                 ($count,@results)=&KeywordSearch($env,'keyword',$search,$num,$offset);
210         } else {
211                 ($count,@results)=CatSearch($env,'loose',$search,$num,$offset);
212
213         }
214         if ($env->{itemcount} eq '1') {
215                 foreach my $data (@results){
216                         my ($counts) = itemcount2($env, $data->{'biblionumber'}, 'intra');
217                         my $subject2=$data->{'subject'};
218                         $subject2=~ s/ /%20/g;
219                         $data->{'itemcount'}=$counts->{'total'};
220                         my $totalitemcounts=0;
221                         foreach my $key (keys %$counts){
222                                 if ($key ne 'total'){   # FIXME - Should ignore 'order', too.
223                                         #$data->{'location'}.="$key $counts->{$key} ";
224                                         $totalitemcounts+=$counts->{$key};
225                                         $data->{'locationhash'}->{$key}=$counts->{$key};
226                                 }
227                         }
228                         my $locationtext='';
229                         my $notavailabletext='';
230                         foreach (sort keys %{$data->{'locationhash'}}) {
231                                 if ($_ eq 'notavailable') {
232                                         $notavailabletext="Not available";
233                                         my $c=$data->{'locationhash'}->{$_};
234                                         if ($totalitemcounts>1) {
235                                         $notavailabletext.=" ($c)";
236                                         }
237                                 } else {
238                                         $locationtext.="$_";
239                                         my $c=$data->{'locationhash'}->{$_};
240                                         if ($totalitemcounts>1) {
241                                         $locationtext.=" ($c), ";
242                                         }
243                                 }
244                         }
245                         if ($notavailabletext) {
246                                 $locationtext.=$notavailabletext;
247                         } else {
248                                 $locationtext=~s/, $//;
249                         }
250                         $data->{'location'}=$locationtext;
251                         $data->{'subject2'}=$subject2;
252                 }
253         }
254         return ($count,@results);
255 }
256
257 =item KeywordSearch
258
259   $search = { "keyword" => "One or more keywords",
260               "class"   => "VID|CD",    # Limit search to fiction and CDs
261               "dewey"   => "813",
262          };
263   ($count, @results) = &KeywordSearch($env, $type, $search, $num, $offset);
264
265 C<&KeywordSearch> searches the catalog by keyword: given a string
266 (C<$search-E<gt>{"keyword"}> consisting of a space-separated list of
267 keywords, it looks for books that contain any of those keywords in any
268 of a number of places.
269
270 C<&KeywordSearch> looks for keywords in the book title (and subtitle),
271 series name, notes (both C<biblio.notes> and C<biblioitems.notes>),
272 and subjects.
273
274 C<$search-E<gt>{"class"}> can be set to a C<|> (pipe)-separated list of
275 item class codes (e.g., "F" for fiction, "JNF" for junior nonfiction,
276 etc.). In this case, the search will be restricted to just those
277 classes.
278
279 If C<$search-E<gt>{"class"}> is not specified, you may specify
280 C<$search-E<gt>{"dewey"}>. This will restrict the search to that
281 particular Dewey Decimal Classification category. Setting
282 C<$search-E<gt>{"dewey"}> to "513" will return books about arithmetic,
283 whereas setting it to "5" will return all books with Dewey code 5I<xx>
284 (Science and Mathematics).
285
286 C<$env> and C<$type> are ignored.
287
288 C<$offset> and C<$num> specify the subset of results to return.
289 C<$num> specifies the number of results to return, and C<$offset> is
290 the number of the first result. Thus, setting C<$offset> to 100 and
291 C<$num> to 5 will return results 100 through 104 inclusive.
292
293 =cut
294 #'
295 sub KeywordSearch {
296   my ($env,$type,$search,$num,$offset)=@_;
297   my $dbh = C4::Context->dbh;
298   $search->{'keyword'}=~ s/ +$//;
299   $search->{'keyword'}=~ s/'/\\'/;
300   my @key=split(' ',$search->{'keyword'});
301                 # FIXME - Naive users might enter comma-separated
302                 # words, e.g., "training, animal". Ought to cope with
303                 # this.
304   my $count=@key;
305   my $i=1;
306   my %biblionumbers;            # Set of biblionumbers returned by the
307                                 # various searches.
308
309   # FIXME - Ought to filter the stopwords out of the list of keywords.
310   #     @key = map { !defined($stopwords{$_}) } @key;
311
312   # FIXME - The way this code is currently set up, it looks for all of
313   # the keywords first in (title, notes, seriestitle), then in the
314   # subtitle, then in the subject. Thus, if you look for keywords
315   # "science fiction", this search won't find a book with
316   #     title    = "How to write fiction"
317   #     subtitle = "A science-based approach"
318   # Is this the desired effect? If not, then the first SQL query
319   # should look in the biblio, subtitle, and subject tables all at
320   # once. The way the first query is built can accomodate this easily.
321
322   # Look for keywords in table 'biblio'.
323
324   # Build an SQL query that finds each of the keywords in any of the
325   # title, biblio.notes, or seriestitle. To do this, we'll build up an
326   # array of clauses, one for each keyword.
327   my $query;                    # The SQL query
328   my @clauses = ();             # The search clauses
329
330   $query = <<EOT;               # Beginning of the query
331         SELECT  biblionumber
332         FROM    biblio
333         WHERE
334 EOT
335   foreach my $keyword (@key)
336   {
337     my @subclauses = ();        # Subclauses, one for each field we're
338                                 # searching on
339
340     # For each field we're searching on, create a subclause that'll
341     # match the current keyword in the current field.
342     foreach my $field (qw(title notes seriestitle))
343     {
344       push @subclauses,
345         "$field LIKE '\Q$keyword\E%' OR $field LIKE '% \Q$keyword\E%'";
346     }
347     # (Yes, this could have been done as
348     #   @subclauses = map {...} qw(field1 field2 ...)
349     # )but I think this way is more readable.
350
351     # Construct the current clause by joining the subclauses.
352     push @clauses, "(" . join(")\n\tOR (", @subclauses) . ")";
353   }
354   # Now join all of the clauses together and append to the query.
355   $query .= "(" . join(")\nAND (", @clauses) . ")";
356
357   # FIXME - Perhaps use $sth->bind_columns() ? Documented as the most
358   # efficient way to fetch data.
359   my $sth=$dbh->prepare($query);
360   $sth->execute;
361   while (my @res = $sth->fetchrow_array) {
362     for (@res)
363     {
364         $biblionumbers{$_} = 1;         # Add these results to the set
365     }
366   }
367   $sth->finish;
368
369   # Now look for keywords in the 'bibliosubtitle' table.
370
371   # Again, we build a list of clauses from the keywords.
372   @clauses = ();
373   $query = "SELECT biblionumber FROM bibliosubtitle WHERE ";
374   foreach my $keyword (@key)
375   {
376     push @clauses,
377         "subtitle LIKE '\Q$keyword\E%' OR subtitle like '% \Q$keyword\E%'";
378   }
379   $query .= "(" . join(") AND (", @clauses) . ")";
380
381   $sth=$dbh->prepare($query);
382   $sth->execute;
383   while (my @res = $sth->fetchrow_array) {
384     for (@res)
385     {
386         $biblionumbers{$_} = 1;         # Add these results to the set
387     }
388   }
389   $sth->finish;
390
391   # Look for the keywords in the notes for individual items
392   # ('biblioitems.notes')
393
394   # Again, we build a list of clauses from the keywords.
395   @clauses = ();
396   $query = "SELECT biblionumber FROM biblioitems WHERE ";
397   foreach my $keyword (@key)
398   {
399     push @clauses,
400         "notes LIKE '\Q$keyword\E%' OR notes like '% \Q$keyword\E%'";
401   }
402   $query .= "(" . join(") AND (", @clauses) . ")";
403
404   $sth=$dbh->prepare($query);
405   $sth->execute;
406   while (my @res = $sth->fetchrow_array) {
407     for (@res)
408     {
409         $biblionumbers{$_} = 1;         # Add these results to the set
410     }
411   }
412   $sth->finish;
413
414   # Look for keywords in the 'bibliosubject' table.
415
416   # FIXME - The other queries look for words in the desired field that
417   # begin with the individual keywords the user entered. This one
418   # searches for the literal string the user entered. Is this the
419   # desired effect?
420   # Note in particular that spaces are retained: if the user typed
421   #     science  fiction
422   # (with two spaces), this won't find the subject "science fiction"
423   # (one space). Likewise, a search for "%" will return absolutely
424   # everything.
425   # If this isn't the desired effect, see the previous searches for
426   # how to do it.
427
428   $sth=$dbh->prepare("Select biblionumber from bibliosubject where subject
429   like '%$search->{'keyword'}%' group by biblionumber");
430   $sth->execute;
431
432   while (my @res = $sth->fetchrow_array) {
433     for (@res)
434     {
435         $biblionumbers{$_} = 1;         # Add these results to the set
436     }
437   }
438   $sth->finish;
439
440   my $i2=0;
441   my $i3=0;
442   my $i4=0;
443
444   my @res2;
445   my @res = keys %biblionumbers;
446   $count=@res;
447
448   $i=0;
449 #  print "count $count";
450   if ($search->{'class'} ne ''){
451     while ($i2 <$count){
452       my $query="select * from biblio,biblioitems where
453       biblio.biblionumber='$res[$i2]' and
454       biblio.biblionumber=biblioitems.biblionumber ";
455       if ($search->{'class'} ne ''){    # FIXME - Redundant
456       my @temp=split(/\|/,$search->{'class'});
457       my $count=@temp;
458       $query.= "and ( itemtype='$temp[0]'";
459       for (my $i=1;$i<$count;$i++){
460         $query.=" or itemtype='$temp[$i]'";
461       }
462       $query.=")";
463       }
464        my $sth=$dbh->prepare($query);
465        #    print $query;
466        $sth->execute;
467        if (my $data2=$sth->fetchrow_hashref){
468          my $dewey= $data2->{'dewey'};
469          my $subclass=$data2->{'subclass'};
470          # FIXME - This next bit is bogus, because it assumes that the
471          # Dewey code is a floating-point number. It isn't. It's
472          # actually a string that mainly consists of numbers. In
473          # particular, "4" is not a valid Dewey code, although "004"
474          # is ("Data processing; Computer science"). Likewise, zeros
475          # after the decimal are significant ("575" is not the same as
476          # "575.0"; the latter is more specific). And "000" is a
477          # perfectly good Dewey code ("General works; computer
478          # science") and should not be interpreted to mean "this
479          # database entry does not have a Dewey code". That's what
480          # NULL is for.
481          $dewey=~s/\.*0*$//;
482          ($dewey == 0) && ($dewey='');
483          ($dewey) && ($dewey.=" $subclass") ;
484           $sth->finish;
485           my $end=$offset +$num;
486           if ($i4 <= $offset){
487             $i4++;
488           }
489 #         print $i4;
490           if ($i4 <=$end && $i4 > $offset){
491             $data2->{'dewey'}=$dewey;
492             $res2[$i3]=$data2;
493
494 #           $res2[$i3]="$data2->{'author'}\t$data2->{'title'}\t$data2->{'biblionumber'}\t$data2->{'copyrightdate'}\t$dewey";
495             $i3++;
496             $i4++;
497 #           print "in here $i3<br>";
498           } else {
499 #           print $end;
500           }
501           $i++;
502         }
503      $i2++;
504      }
505      $count=$i;
506
507    } else {
508   # $search->{'class'} was not specified
509
510   # FIXME - This is bogus: it makes a separate query for each
511   # biblioitem, and returns results in apparently random order. It'd
512   # be much better to combine all of the previous queries into one big
513   # one (building it up a little at a time, of course), and have that
514   # big query select all of the desired fields, instead of just
515   # 'biblionumber'.
516
517   while ($i2 < $num && $i2 < $count){
518     my $query="select * from biblio,biblioitems where
519     biblio.biblionumber='$res[$i2+$offset]' and
520     biblio.biblionumber=biblioitems.biblionumber ";
521
522     if ($search->{'dewey'} ne ''){
523       $query.= "and (dewey like '$search->{'dewey'}%') ";
524     }
525
526     my $sth=$dbh->prepare($query);
527 #    print $query;
528     $sth->execute;
529     if (my $data2=$sth->fetchrow_hashref){
530         my $dewey= $data2->{'dewey'};
531         my $subclass=$data2->{'subclass'};
532         $dewey=~s/\.*0*$//;
533         ($dewey == 0) && ($dewey='');
534         ($dewey) && ($dewey.=" $subclass") ;
535         $sth->finish;
536         $data2->{'dewey'}=$dewey;
537
538         $res2[$i]=$data2;
539 #       $res2[$i]="$data2->{'author'}\t$data2->{'title'}\t$data2->{'biblionumber'}\t$data2->{'copyrightdate'}\t$dewey";
540         $i++;
541     }
542     $i2++;
543
544   }
545   }
546
547   #$count=$i;
548   return($count,@res2);
549 }
550
551 sub KeywordSearch2 {
552   my ($env,$type,$search,$num,$offset)=@_;
553   my $dbh = C4::Context->dbh;
554   $search->{'keyword'}=~ s/ +$//;
555   $search->{'keyword'}=~ s/'/\\'/;
556   my @key=split(' ',$search->{'keyword'});
557   my $count=@key;
558   my $i=1;
559   my @results;
560   my $query ="Select * from biblio,bibliosubtitle,biblioitems where
561   biblio.biblionumber=biblioitems.biblionumber and
562   biblio.biblionumber=bibliosubtitle.biblionumber and
563   (((title like '$key[0]%' or title like '% $key[0]%')";
564   while ($i < $count){
565     $query .= " and (title like '$key[$i]%' or title like '% $key[$i]%')";
566     $i++;
567   }
568   $query.= ") or ((subtitle like '$key[0]%' or subtitle like '% $key[0]%')";
569   for ($i=1;$i<$count;$i++){
570     $query.= " and (subtitle like '$key[$i]%' or subtitle like '% $key[$i]%')";
571   }
572   $query.= ") or ((seriestitle like '$key[0]%' or seriestitle like '% $key[0]%')";
573   for ($i=1;$i<$count;$i++){
574     $query.=" and (seriestitle like '$key[$i]%' or seriestitle like '% $key[$i]%')";
575   }
576   $query.= ") or ((biblio.notes like '$key[0]%' or biblio.notes like '% $key[0]%')";
577   for ($i=1;$i<$count;$i++){
578     $query.=" and (biblio.notes like '$key[$i]%' or biblio.notes like '% $key[$i]%')";
579   }
580   $query.= ") or ((biblioitems.notes like '$key[0]%' or biblioitems.notes like '% $key[0]%')";
581   for ($i=1;$i<$count;$i++){
582     $query.=" and (biblioitems.notes like '$key[$i]%' or biblioitems.notes like '% $key[$i]%')";
583   }
584   if ($search->{'keyword'} =~ /new zealand/i){
585     $query.= "or (title like 'nz%' or title like '% nz %' or title like '% nz' or subtitle like 'nz%'
586     or subtitle like '% nz %' or subtitle like '% nz' or author like 'nz %'
587     or author like '% nz %' or author like '% nz')"
588   }
589   if ($search->{'keyword'} eq  'nz' || $search->{'keyword'} eq 'NZ' ||
590   $search->{'keyword'} =~ /nz /i || $search->{'keyword'} =~ / nz /i ||
591   $search->{'keyword'} =~ / nz/i){
592     $query.= "or (title like 'new zealand%' or title like '% new zealand %'
593     or title like '% new zealand' or subtitle like 'new zealand%' or
594     subtitle like '% new zealand %'
595     or subtitle like '% new zealand' or author like 'new zealand%'
596     or author like '% new zealand %' or author like '% new zealand' or
597     seriestitle like 'new zealand%' or seriestitle like '% new zealand %'
598     or seriestitle like '% new zealand')"
599   }
600   $query .= "))";
601   if ($search->{'class'} ne ''){
602     my @temp=split(/\|/,$search->{'class'});
603     my $count=@temp;
604     $query.= "and ( itemtype='$temp[0]'";
605     for (my $i=1;$i<$count;$i++){
606       $query.=" or itemtype='$temp[$i]'";
607      }
608   $query.=")";
609   }
610   if ($search->{'dewey'} ne ''){
611     $query.= "and (dewey like '$search->{'dewey'}%') ";
612   }
613    $query.="group by biblio.biblionumber";
614    #$query.=" order by author,title";
615 #  print $query;
616   my $sth=$dbh->prepare($query);
617   $sth->execute;
618   $i=0;
619   while (my $data=$sth->fetchrow_hashref){
620 #    my $sti=$dbh->prepare("select dewey,subclass from biblioitems where biblionumber=$data->{'biblionumber'}
621 #    ");
622 #    $sti->execute;
623 #    my ($dewey, $subclass) = $sti->fetchrow;
624     my $dewey=$data->{'dewey'};
625     my $subclass=$data->{'subclass'};
626     $dewey=~s/\.*0*$//;
627     ($dewey == 0) && ($dewey='');
628     ($dewey) && ($dewey.=" $subclass");
629 #    $sti->finish;
630     $results[$i]="$data->{'author'}\t$data->{'title'}\t$data->{'biblionumber'}\t$data->{'copyrightdate'}\t$dewey";
631 #      print $results[$i];
632     $i++;
633   }
634   $sth->finish;
635   $sth=$dbh->prepare("Select biblionumber from bibliosubject where subject
636   like '%$search->{'keyword'}%' group by biblionumber");
637   $sth->execute;
638   while (my $data=$sth->fetchrow_hashref){
639     $query="Select * from biblio,biblioitems where
640     biblio.biblionumber=$data->{'biblionumber'} and
641     biblio.biblionumber=biblioitems.biblionumber ";
642     if ($search->{'class'} ne ''){
643       my @temp=split(/\|/,$search->{'class'});
644       my $count=@temp;
645       $query.= " and ( itemtype='$temp[0]'";
646       for (my $i=1;$i<$count;$i++){
647         $query.=" or itemtype='$temp[$i]'";
648       }
649       $query.=")";
650
651     }
652     if ($search->{'dewey'} ne ''){
653       $query.= "and (dewey like '$search->{'dewey'}%') ";
654     }
655     my $sth2=$dbh->prepare($query);
656     $sth2->execute;
657 #    print $query;
658     while (my $data2=$sth2->fetchrow_hashref){
659       my $dewey= $data2->{'dewey'};
660       my $subclass=$data2->{'subclass'};
661       $dewey=~s/\.*0*$//;
662       ($dewey == 0) && ($dewey='');
663       ($dewey) && ($dewey.=" $subclass") ;
664 #      $sti->finish;
665        $results[$i]="$data2->{'author'}\t$data2->{'title'}\t$data2->{'biblionumber'}\t$data2->{'copyrightdate'}\t$dewey";
666 #      print $results[$i];
667       $i++;
668     }
669     $sth2->finish;
670   }
671   my $i2=1;
672   @results=sort @results;
673   my @res;
674   $count=@results;
675   $i=1;
676   if ($count > 0){
677     $res[0]=$results[0];
678   }
679   while ($i2 < $count){
680     if ($results[$i2] ne $res[$i-1]){
681       $res[$i]=$results[$i2];
682       $i++;
683     }
684     $i2++;
685   }
686   $i2=0;
687   my @res2;
688   $count=@res;
689   while ($i2 < $num && $i2 < $count){
690     $res2[$i2]=$res[$i2+$offset];
691 #    print $res2[$i2];
692     $i2++;
693   }
694   $sth->finish;
695 #  $i--;
696 #  $i++;
697   return($i,@res2);
698 }
699
700 =item CatSearch
701
702   ($count, @results) = &CatSearch($env, $type, $search, $num, $offset);
703
704 C<&CatSearch> searches the Koha catalog. It returns a list whose first
705 element is the number of returned results, and whose subsequent
706 elements are the results themselves.
707
708 Each returned element is a reference-to-hash. Most of the keys are
709 simply the fields from the C<biblio> table in the Koha database, but
710 the following keys may also be present:
711
712 =over 4
713
714 =item C<illustrator>
715
716 The book's illustrator.
717
718 =item C<publisher>
719
720 The publisher.
721
722 =back
723
724 C<$env> is ignored.
725
726 C<$type> may be C<subject>, C<loose>, or C<precise>. This controls the
727 high-level behavior of C<&CatSearch>, as described below.
728
729 In many cases, the description below says that a certain field in the
730 database must match the search string. In these cases, it means that
731 the beginning of some word in the field must match the search string.
732 Thus, an author search for "sm" will return books whose author is
733 "John Smith" or "Mike Smalls", but not "Paul Grossman", since the "sm"
734 does not occur at the beginning of a word.
735
736 Note that within each search mode, the criteria are and-ed together.
737 That is, if you perform a loose search on the author "Jerome" and the
738 title "Boat", the search will only return books by Jerome containing
739 "Boat" in the title.
740
741 It is not possible to cross modes, e.g., set the author to "Asimov"
742 and the subject to "Math" in hopes of finding books on math by Asimov.
743
744 =head2 Loose search
745
746 If C<$type> is set to C<loose>, the following search criteria may be
747 used:
748
749 =over 4
750
751 =item C<$search-E<gt>{author}>
752
753 The search string is a space-separated list of words. Each word must
754 match either the C<author> or C<additionalauthors> field.
755
756 =item C<$search-E<gt>{title}>
757
758 Each word in the search string must match the book title. If no author
759 is specified, the book subtitle will also be searched.
760
761 =item C<$search-E<gt>{abstract}>
762
763 Searches for the given search string in the book's abstract.
764
765 =item C<$search-E<gt>{'date-before'}>
766
767 Searches for books whose copyright date matches the search string.
768 That is, setting C<$search-E<gt>{'date-before'}> to "1985" will find
769 books written in 1985, and setting it to "198" will find books written
770 between 1980 and 1989.
771
772 =item C<$search-E<gt>{title}>
773
774 Searches by title are also affected by the value of
775 C<$search-E<gt>{"ttype"}>; if it is set to C<exact>, then the book
776 title, (one of) the series titleZ<>(s), or (one of) the unititleZ<>(s) must
777 match the search string exactly (the subtitle is not searched).
778
779 If C<$search-E<gt>{"ttype"}> is set to anything other than C<exact>,
780 each word in the search string must match the title, subtitle,
781 unititle, or series title.
782
783 =item C<$search-E<gt>{class}>
784
785 Restricts the search to certain item classes. The value of
786 C<$search-E<gt>{"class"}> is a | (pipe)-separated list of item types.
787 Thus, setting it to "F" restricts the search to fiction, and setting
788 it to "CD|CAS" will only look in compact disks and cassettes.
789
790 =item C<$search-E<gt>{dewey}>
791
792 Searches for books whose Dewey Decimal Classification code matches the
793 search string. That is, setting C<$search-E<gt>{"dewey"}> to "5" will
794 search for all books in 5I<xx> (Science and mathematics), setting it
795 to "54" will search for all books in 54I<x> (Chemistry), and setting
796 it to "546" will search for books on inorganic chemistry.
797
798 =item C<$search-E<gt>{publisher}>
799
800 Searches for books whose publisher contains the search string (unlike
801 other search criteria, C<$search-E<gt>{publisher}> is a string, not a
802 set of words.
803
804 =back
805
806 =head2 Subject search
807
808 If C<$type> is set to C<subject>, the following search criterion may
809 be used:
810
811 =over 4
812
813 =item C<$search-E<gt>{subject}>
814
815 The search string is a space-separated list of words, each of which
816 must match the book's subject.
817
818 Special case: if C<$search-E<gt>{subject}> is set to C<nz>,
819 C<&CatSearch> will search for books whose subject is "New Zealand".
820 However, setting C<$search-E<gt>{subject}> to C<"nz football"> will
821 search for books on "nz" and "football", not books on "New Zealand"
822 and "football".
823
824 =back
825
826 =head2 Precise search
827
828 If C<$type> is set to C<precise>, the following search criteria may be
829 used:
830
831 =over 4
832
833 =item C<$search-E<gt>{item}>
834
835 Searches for books whose barcode exactly matches the search string.
836
837 =item C<$search-E<gt>{isbn}>
838
839 Searches for books whose ISBN exactly matches the search string.
840
841 =back
842
843 For a loose search, if an author was specified, the results are
844 ordered by author and title. If no author was specified, the results
845 are ordered by title.
846
847 For other (non-loose) searches, if a subject was specified, the
848 results are ordered alphabetically by subject.
849
850 In all other cases (e.g., loose search by keyword), the results are
851 not ordered.
852
853 =cut
854 #'
855 sub CatSearch  {
856         my ($env,$type,$search,$num,$offset)=@_;
857         warn "type = $type";
858         my $dbh = C4::Context->dbh;
859         my $query = '';
860         my @results;
861
862         # Why not just use quotemeta to escape all questionable characters,
863         # not just single-quotes? Because that would also escape spaces,
864         # which would cause titles/authors/illustrators with a space to
865         # become unsearchable (Bug 197)
866
867         for my $field ('title', 'author', 'illustrator') {
868             $search->{$field} =~ s/['"]/\\\1/g;
869         }
870
871         my $title = lc($search->{'title'});
872         if ($type eq 'loose') {
873                 if ($search->{'author'} ne ''){
874                         my @key=split(' ',$search->{'author'});
875                         my $count=@key;
876                         my $i=1;
877                         $query="select *,biblio.author,biblio.biblionumber from
878                                                         biblio
879                                                         left join additionalauthors
880                                                         on additionalauthors.biblionumber =biblio.biblionumber
881                                                         where
882                                                         ((biblio.author like '$key[0]%' or biblio.author like '% $key[0]%' or
883                                                         additionalauthors.author like '$key[0]%' or additionalauthors.author
884                                                         like '% $key[0]%'
885                                                                 )";
886                         while ($i < $count){
887                                         $query .= " and (
888                                                                         biblio.author like '$key[$i]%' or biblio.author like '% $key[$i]%' or
889                                                                         additionalauthors.author like '$key[$i]%' or additionalauthors.author like '% $key[$i]%'
890                                                                         )";
891                                 $i++;
892                         }
893                         $query .= ")";
894                         if ($search->{'title'} ne ''){
895                                 my @key=split(' ',$search->{'title'});
896                                 my $count=@key;
897                                 my $i=0;
898                                 $query.= " and (((title like '$key[0]%' or title like '% $key[0]%' or title like '% $key[0]')";
899                                 while ($i<$count){
900                                         $query .= " and (title like '$key[$i]%' or title like '% $key[$i]%' or title like '% $key[$i]')";
901                                         $i++;
902                                 }
903                                 $query.=") or ((seriestitle like '$key[0]%' or seriestitle like '% $key[0]%' or seriestitle like '% $key[0]')";
904                                 for ($i=1;$i<$count;$i++){
905                                         $query.=" and (seriestitle like '$key[$i]%' or seriestitle like '% $key[$i]%')";
906                                         }
907                                 $query.=") or ((unititle like '$key[0]%' or unititle like '% $key[0]%' or unititle like '% $key[0]')";
908                                 for ($i=1;$i<$count;$i++){
909                                         $query.=" and (unititle like '$key[$i]%' or unititle like '% $key[$i]%')";
910                                         }
911                                 $query .= "))";
912                                 #$query=$query. " and (title like '%$search->{'title'}%'
913                                 #or seriestitle like '%$search->{'title'}%')";
914                         }
915                         if ($search->{'abstract'} ne ''){
916                                 $query.= " and (abstract like '%$search->{'abstract'}%')";
917                         }
918                         if ($search->{'date-before'} ne ''){
919                                 $query.= " and (copyrightdate like '%$search->{'date-before'}%')";
920                         }
921                         $query.=" group by biblio.biblionumber";
922                 } else {
923                         if ($search->{'title'} ne '') {
924                                 if ($search->{'ttype'} eq 'exact'){
925                                         $query="select * from biblio
926                                         where
927                                         (biblio.title='$search->{'title'}' or (biblio.unititle = '$search->{'title'}'
928                                         or biblio.unititle like '$search->{'title'} |%' or
929                                         biblio.unititle like '%| $search->{'title'} |%' or
930                                         biblio.unititle like '%| $search->{'title'}') or
931                                         (biblio.seriestitle = '$search->{'title'}' or
932                                         biblio.seriestitle like '$search->{'title'} |%' or
933                                         biblio.seriestitle like '%| $search->{'title'} |%' or
934                                         biblio.seriestitle like '%| $search->{'title'}')
935                                         )";
936                                 } else {
937                                         my @key=split(' ',$search->{'title'});
938                                         my $count=@key;
939                                         my $i=1;
940                                         $query="select biblio.biblionumber,author,title,unititle,notes,abstract,serial,seriestitle,copyrightdate,timestamp,subtitle from biblio
941                                         left join bibliosubtitle on
942                                         biblio.biblionumber=bibliosubtitle.biblionumber
943                                         where
944                                         (((title like '$key[0]%' or title like '% $key[0]%' or title like '% $key[0]')";
945                                         while ($i<$count){
946                                                 $query .= " and (title like '$key[$i]%' or title like '% $key[$i]%' or title like '% $key[$i]')";
947                                                 $i++;
948                                         }
949                                         $query.=") or ((subtitle like '$key[0]%' or subtitle like '% $key[0]%' or subtitle like '% $key[0]')";
950                                         for ($i=1;$i<$count;$i++){
951                                                 $query.=" and (subtitle like '$key[$i]%' or subtitle like '% $key[$i]%' or subtitle like '% $key[$i]')";
952                                         }
953                                         $query.=") or ((seriestitle like '$key[0]%' or seriestitle like '% $key[0]%' or seriestitle like '% $key[0]')";
954                                         for ($i=1;$i<$count;$i++){
955                                                 $query.=" and (seriestitle like '$key[$i]%' or seriestitle like '% $key[$i]%')";
956                                         }
957                                         $query.=") or ((unititle like '$key[0]%' or unititle like '% $key[0]%' or unititle like '% $key[0]')";
958                                         for ($i=1;$i<$count;$i++){
959                                                 $query.=" and (unititle like '$key[$i]%' or unititle like '% $key[$i]%')";
960                                         }
961                                         $query .= "))";
962                                 }
963                                 if ($search->{'abstract'} ne ''){
964                                         $query.= " and (abstract like '%$search->{'abstract'}%')";
965                                 }
966                                 if ($search->{'date-before'} ne ''){
967                                         $query.= " and (copyrightdate like '%$search->{'date-before'}%')";
968                                 }
969                         } elsif ($search->{'class'} ne ''){
970                                 $query="select * from biblioitems,biblio where biblio.biblionumber=biblioitems.biblionumber";
971                                 my @temp=split(/\|/,$search->{'class'});
972                                 my $count=@temp;
973                                 $query.= " and ( itemtype='$temp[0]'";
974                                 for (my $i=1;$i<$count;$i++){
975                                         $query.=" or itemtype='$temp[$i]'";
976                                 }
977                                 $query.=")";
978                                 if ($search->{'illustrator'} ne ''){
979                                         $query.=" and illus like '%".$search->{'illustrator'}."%' ";
980                                 }
981                                 if ($search->{'dewey'} ne ''){
982                                         $query.=" and biblioitems.dewey like '$search->{'dewey'}%'";
983                                 }
984                         } elsif ($search->{'dewey'} ne ''){
985                                 $query="select * from biblioitems,biblio
986                                 where biblio.biblionumber=biblioitems.biblionumber
987                                 and biblioitems.dewey like '$search->{'dewey'}%'";
988                         } elsif ($search->{'illustrator'} ne '') {
989                                         $query="select * from biblioitems,biblio
990                                 where biblio.biblionumber=biblioitems.biblionumber
991                                 and biblioitems.illus like '%".$search->{'illustrator'}."%'";
992                         } elsif ($search->{'publisher'} ne ''){
993                                 $query.= "Select * from biblio,biblioitems where biblio.biblionumber
994                                 =biblioitems.biblionumber and (publishercode like '%$search->{'publisher'}%')";
995                         } elsif ($search->{'abstract'} ne ''){
996                                 $query.= "Select * from biblio where abstract like '%$search->{'abstract'}%'";
997                         } elsif ($search->{'date-before'} ne ''){
998                                 $query.= "Select * from biblio where copyrightdate like '%$search->{'date-before'}%'";
999                         }
1000                         $query .=" group by biblio.biblionumber";
1001                 }
1002         }
1003         if ($type eq 'subject'){
1004                 my @key=split(' ',$search->{'subject'});
1005                 my $count=@key;
1006                 my $i=1;
1007                 $query="select * from bibliosubject, biblioitems where 
1008 (bibliosubject.biblionumber = biblioitems.biblionumber) and ( subject like              
1009 '$key[0]%' or subject like '% $key[0]%' or subject like '% $key[0]' or subject 
1010 like '%($key[0])%')";           while ($i<$count){                      $query.=" and (subject like 
1011 '$key[$i]%' or subject like '% $key[$i]%'                       or subject like '% $key[$i]'
1012                         or subject like '%($key[$i])%')";
1013                         $i++;
1014                 }
1015
1016                 # FIXME - Wouldn't it be better to fix the database so that if a
1017                 # book has a subject "NZ", then it also gets added the subject
1018                 # "New Zealand"?
1019                 # This can also be generalized by adding a table of subject
1020                 # synonyms to the database: just declare "NZ" to be a synonym for
1021                 # "New Zealand", "SF" a synonym for both "Science fiction" and
1022                 # "Fantastic fiction", etc.
1023
1024                 if (lc($search->{'subject'}) eq 'nz'){
1025                         $query.= " or (subject like 'NEW ZEALAND %' or subject like '% NEW ZEALAND %'
1026                         or subject like '% NEW ZEALAND' or subject like '%(NEW ZEALAND)%' ) ";
1027                 } elsif ( $search->{'subject'} =~ /^nz /i || $search->{'subject'} =~ / nz /i || $search->{'subject'} =~ / nz$/i){
1028                         $query=~ s/ nz/ NEW ZEALAND/ig;
1029                         $query=~ s/nz /NEW ZEALAND /ig;
1030                         $query=~ s/\(nz\)/\(NEW ZEALAND\)/gi;
1031                 }
1032         }
1033         if ($type eq 'precise'){
1034                 if ($search->{'itemnumber'} ne ''){
1035                         $query="select * from items,biblio ";
1036                         my $search2=uc $search->{'itemnumber'};
1037                         $query=$query." where
1038                         items.biblionumber=biblio.biblionumber
1039                         and barcode='$search2'";
1040                                         # FIXME - .= <<EOT;
1041                 }
1042                 if ($search->{'isbn'} ne ''){
1043                         my $search2=uc $search->{'isbn'};
1044                         my $query1 = "select * from biblioitems where isbn='$search2'";
1045                         my $sth1=$dbh->prepare($query1);
1046                 #       print STDERR "$query1\n";
1047                         $sth1->execute;
1048                         my $i2=0;
1049                         while (my $data=$sth1->fetchrow_hashref) {
1050                                 $query="select * from biblioitems,biblio where
1051                                         biblio.biblionumber = $data->{'biblionumber'}
1052                                         and biblioitems.biblionumber = biblio.biblionumber";
1053                                 my $sth=$dbh->prepare($query);
1054                                 $sth->execute;
1055                                 # FIXME - There's already a $data in this scope.
1056                                 my $data=$sth->fetchrow_hashref;
1057                                 my ($dewey, $subclass) = ($data->{'dewey'}, $data->{'subclass'});
1058                                 # FIXME - The following assumes that the Dewey code is a
1059                                 # floating-point number. It isn't: it's a string.
1060                                 $dewey=~s/\.*0*$//;
1061                                 ($dewey == 0) && ($dewey='');
1062                                 ($dewey) && ($dewey.=" $subclass");
1063                                 $data->{'dewey'}=$dewey;
1064                                 $results[$i2]=$data;
1065                         #           $results[$i2]="$data->{'author'}\t$data->{'title'}\t$data->{'biblionumber'}\t$data->{'copyrightdate'}\t$dewey\t$data->{'isbn'}\t$data->{'itemtype'}";
1066                                 $i2++;
1067                                 $sth->finish;
1068                         }
1069                         $sth1->finish;
1070                 }
1071         }
1072         if ($type ne 'precise' && $type ne 'subject'){
1073                 if ($search->{'author'} ne ''){
1074                         $query .= " order by biblio.author,title";
1075                 } else {
1076                         $query .= " order by title";
1077                 }
1078         } else {
1079                 if ($type eq 'subject'){
1080                         $query .= " order by subject";
1081                 }
1082         }
1083         my $sth=$dbh->prepare($query);
1084         $sth->execute;
1085         my $count=1;
1086         my $i=0;
1087         my $limit= $num+$offset;
1088         while (my $data=$sth->fetchrow_hashref){
1089                 my $query="select dewey,subclass,publishercode from biblioitems where biblionumber=$data->{'biblionumber'}";
1090                 if ($search->{'class'} ne ''){
1091                         my @temp=split(/\|/,$search->{'class'});
1092                         my $count=@temp;
1093                         $query.= " and ( itemtype='$temp[0]'";
1094                         for (my $i=1;$i<$count;$i++){
1095                         $query.=" or itemtype='$temp[$i]'";
1096                         }
1097                         $query.=")";
1098                 }
1099                 if ($search->{'dewey'} ne ''){
1100                         $query.=" and dewey='$search->{'dewey'}' ";
1101                 }
1102                 if ($search->{'illustrator'} ne ''){
1103                         $query.=" and illus like '%".$search->{'illustrator'}."%' ";
1104                 }
1105                 if ($search->{'publisher'} ne ''){
1106                         $query.= " and (publishercode like '%$search->{'publisher'}%')";
1107                 }
1108                 my $sti=$dbh->prepare($query);
1109                 $sti->execute;
1110                 my $dewey;
1111                 my $subclass;
1112                 my $true=0;
1113                 my $publishercode;
1114                 my $bibitemdata;
1115                 if ($bibitemdata = $sti->fetchrow_hashref() || $type eq 'subject'){
1116                         $true=1;
1117                         $dewey=$bibitemdata->{'dewey'};
1118                         $subclass=$bibitemdata->{'subclass'};
1119                         $publishercode=$bibitemdata->{'publishercode'};
1120                 }
1121                 #  print STDERR "$dewey $subclass $publishercode\n";
1122                 # FIXME - The Dewey code is a string, not a number.
1123                 $dewey=~s/\.*0*$//;
1124                 ($dewey == 0) && ($dewey='');
1125                 ($dewey) && ($dewey.=" $subclass");
1126                 $data->{'dewey'}=$dewey;
1127                 $data->{'publishercode'}=$publishercode;
1128                 $sti->finish;
1129                 if ($true == 1){
1130                         if ($count > $offset && $count <= $limit){
1131                                 $results[$i]=$data;
1132                                 $i++;
1133                         }
1134                         $count++;
1135                 }
1136         }
1137         $sth->finish;
1138         $count--;
1139         return($count,@results);
1140 }
1141
1142 sub updatesearchstats{
1143   my ($dbh,$query)=@_;
1144
1145 }
1146
1147 =item subsearch
1148
1149   @results = &subsearch($env, $subject);
1150
1151 Searches for books that have a subject that exactly matches
1152 C<$subject>.
1153
1154 C<&subsearch> returns an array of results. Each element of this array
1155 is a string, containing the book's title, author, and biblionumber,
1156 separated by tabs.
1157
1158 C<$env> is ignored.
1159
1160 =cut
1161 #'
1162 sub subsearch {
1163   my ($env,$subject)=@_;
1164   my $dbh = C4::Context->dbh;
1165   $subject=$dbh->quote($subject);
1166   my $query="Select * from biblio,bibliosubject where
1167   biblio.biblionumber=bibliosubject.biblionumber and
1168   bibliosubject.subject=$subject group by biblio.biblionumber
1169   order by biblio.title";
1170   my $sth=$dbh->prepare($query);
1171   $sth->execute;
1172   my $i=0;
1173 #  print $query;
1174   my @results;
1175   while (my $data=$sth->fetchrow_hashref){
1176     push @results, $data;
1177     $i++;
1178   }
1179   $sth->finish;
1180   return(@results);
1181 }
1182
1183 =item ItemInfo
1184
1185   @results = &ItemInfo($env, $biblionumber, $type);
1186
1187 Returns information about books with the given biblionumber.
1188
1189 C<$type> may be either C<intra> or anything else. If it is not set to
1190 C<intra>, then the search will exclude lost, very overdue, and
1191 withdrawn items.
1192
1193 C<$env> is ignored.
1194
1195 C<&ItemInfo> returns a list of references-to-hash. Each element
1196 contains a number of keys. Most of them are table items from the
1197 C<biblio>, C<biblioitems>, C<items>, and C<itemtypes> tables in the
1198 Koha database. Other keys include:
1199
1200 =over 4
1201
1202 =item C<$data-E<gt>{branchname}>
1203
1204 The name (not the code) of the branch to which the book belongs.
1205
1206 =item C<$data-E<gt>{datelastseen}>
1207
1208 This is simply C<items.datelastseen>, except that while the date is
1209 stored in YYYY-MM-DD format in the database, here it is converted to
1210 DD/MM/YYYY format. A NULL date is returned as C<//>.
1211
1212 =item C<$data-E<gt>{datedue}>
1213
1214 =item C<$data-E<gt>{class}>
1215
1216 This is the concatenation of C<biblioitems.classification>, the book's
1217 Dewey code, and C<biblioitems.subclass>.
1218
1219 =item C<$data-E<gt>{ocount}>
1220
1221 I think this is the number of copies of the book available.
1222
1223 =item C<$data-E<gt>{order}>
1224
1225 If this is set, it is set to C<One Order>.
1226
1227 =back
1228
1229 =cut
1230 #'
1231 sub ItemInfo {
1232     my ($env,$biblionumber,$type) = @_;
1233     my $dbh   = C4::Context->dbh;
1234     my $query = "SELECT * FROM items, biblio, biblioitems, itemtypes
1235                   WHERE items.biblionumber = ?
1236                     AND biblioitems.biblioitemnumber = items.biblioitemnumber
1237                     AND biblioitems.itemtype = itemtypes.itemtype
1238                     AND biblio.biblionumber = items.biblionumber";
1239   if ($type ne 'intra'){
1240     $query .= " and ((items.itemlost<>1 and items.itemlost <> 2)
1241     or items.itemlost is NULL)
1242     and (wthdrawn <> 1 or wthdrawn is NULL)";
1243   }
1244   $query .= " order by items.dateaccessioned desc";
1245     #warn $query;
1246   my $sth=$dbh->prepare($query);
1247   $sth->execute($biblionumber);
1248   my $i=0;
1249   my @results;
1250 #  print $query;
1251   while (my $data=$sth->fetchrow_hashref){
1252     my $iquery = "Select * from issues
1253     where itemnumber = '$data->{'itemnumber'}'
1254     and returndate is null";
1255     my $datedue = '';
1256     my $isth=$dbh->prepare($iquery);
1257     $isth->execute;
1258     if (my $idata=$isth->fetchrow_hashref){
1259       # FIXME - The date ought to be properly parsed, and printed
1260       # according to local convention.
1261       my @temp=split('-',$idata->{'date_due'});
1262       $datedue = "$temp[2]/$temp[1]/$temp[0]";
1263     }
1264     if ($data->{'itemlost'} eq '2'){
1265         $datedue='Very Overdue';
1266     }
1267     if ($data->{'itemlost'} eq '1'){
1268         $datedue='Lost';
1269     }
1270     if ($data->{'wthdrawn'} eq '1'){
1271         $datedue="Cancelled";
1272     }
1273     if ($datedue eq ''){
1274         $datedue="Available";
1275         my ($restype,$reserves)=CheckReserves($data->{'itemnumber'});
1276         if ($restype){
1277             $datedue=$restype;
1278         }
1279     }
1280     $isth->finish;
1281 #get branch information.....
1282     my $bquery = "SELECT * FROM branches
1283                           WHERE branchcode = '$data->{'holdingbranch'}'";
1284     my $bsth=$dbh->prepare($bquery);
1285     $bsth->execute;
1286     if (my $bdata=$bsth->fetchrow_hashref){
1287         $data->{'branchname'} = $bdata->{'branchname'};
1288     }
1289
1290     my $class = $data->{'classification'};
1291     my $dewey = $data->{'dewey'};
1292     $dewey =~ s/0+$//;
1293     if ($dewey eq "000.") { $dewey = "";};      # FIXME - "000" is general
1294                                                 # books about computer science
1295     if ($dewey < 10){$dewey='00'.$dewey;}
1296     if ($dewey < 100 && $dewey > 10){$dewey='0'.$dewey;}
1297     if ($dewey <= 0){
1298       $dewey='';
1299     }
1300     $dewey=~ s/\.$//;
1301     $class .= $dewey;
1302     if ($dewey ne ''){
1303       $class .= $data->{'subclass'};
1304     }
1305  #   $results[$i]="$data->{'title'}\t$data->{'barcode'}\t$datedue\t$data->{'branchname'}\t$data->{'dewey'}";
1306     # FIXME - If $data->{'datelastseen'} is NULL, perhaps it'd be prettier
1307     # to leave it empty, rather than convert it to "//".
1308     # Also ideally this should use the local format for displaying dates.
1309     my @temp=split('-',$data->{'datelastseen'});
1310     my $date="$temp[2]/$temp[1]/$temp[0]";
1311     $data->{'datelastseen'}=$date;
1312     $data->{'datedue'}=$datedue;
1313     $data->{'class'}=$class;
1314     $results[$i]=$data;
1315     $i++;
1316   }
1317  $sth->finish;
1318   my $query2="Select * from aqorders where biblionumber=$biblionumber";
1319   my $sth2=$dbh->prepare($query2);
1320   $sth2->execute;
1321   my $data;
1322   my $ocount;
1323   if ($data=$sth2->fetchrow_hashref){
1324     $ocount=$data->{'quantity'} - $data->{'quantityreceived'};
1325     if ($ocount > 0){
1326       $data->{'ocount'}=$ocount;
1327       $data->{'order'}="One Order";
1328       $results[$i]=$data;
1329     }
1330   }
1331   $sth2->finish;
1332
1333   return(@results);
1334 }
1335
1336 =item GetItems
1337
1338   @results = &GetItems($env, $biblionumber);
1339
1340 Returns information about books with the given biblionumber.
1341
1342 C<$env> is ignored.
1343
1344 C<&GetItems> returns an array of strings. Each element is a
1345 tab-separated list of values: biblioitemnumber, itemtype,
1346 classification, Dewey number, subclass, ISBN, volume, number, and
1347 itemdata.
1348
1349 Itemdata, in turn, is a string of the form
1350 "I<barcode>C<[>I<holdingbranch>C<[>I<flags>" where I<flags> contains
1351 the string C<NFL> if the item is not for loan, and C<LOST> if the item
1352 is lost.
1353
1354 =cut
1355 #'
1356 sub GetItems {
1357    my ($env,$biblionumber)=@_;
1358    #debug_msg($env,"GetItems");
1359    my $dbh = C4::Context->dbh;
1360    my $query = "Select * from biblioitems where (biblionumber = $biblionumber)";
1361    #debug_msg($env,$query);
1362    my $sth=$dbh->prepare($query);
1363    $sth->execute;
1364    #debug_msg($env,"executed query");
1365    my $i=0;
1366    my @results;
1367    while (my $data=$sth->fetchrow_hashref) {
1368       #debug_msg($env,$data->{'biblioitemnumber'});
1369       my $dewey = $data->{'dewey'};
1370       $dewey =~ s/0+$//;
1371       my $line = $data->{'biblioitemnumber'}."\t".$data->{'itemtype'};
1372       $line .= "\t$data->{'classification'}\t$dewey";
1373       $line .= "\t$data->{'subclass'}\t$data->{isbn}";
1374       $line .= "\t$data->{'volume'}\t$data->{number}";
1375       my $isth= $dbh->prepare("select * from items where biblioitemnumber = $data->{'biblioitemnumber'}");
1376       $isth->execute;
1377       while (my $idata = $isth->fetchrow_hashref) {
1378         my $iline = $idata->{'barcode'}."[".$idata->{'holdingbranch'}."[";
1379         if ($idata->{'notforloan'} == 1) {
1380           $iline .= "NFL ";
1381         }
1382         if ($idata->{'itemlost'} == 1) {
1383           $iline .= "LOST ";
1384         }
1385         $line .= "\t$iline";
1386       }
1387       $isth->finish;
1388       $results[$i] = $line;
1389       $i++;
1390    }
1391    $sth->finish;
1392    return(@results);
1393 }
1394
1395 =item itemdata
1396
1397   $item = &itemdata($barcode);
1398
1399 Looks up the item with the given barcode, and returns a
1400 reference-to-hash containing information about that item. The keys of
1401 the hash are the fields from the C<items> and C<biblioitems> tables in
1402 the Koha database.
1403
1404 =cut
1405 #'
1406 sub itemdata {
1407   my ($barcode)=@_;
1408   my $dbh = C4::Context->dbh;
1409   my $query="Select * from items,biblioitems where barcode='$barcode'
1410   and items.biblioitemnumber=biblioitems.biblioitemnumber";
1411 #  print $query;
1412   my $sth=$dbh->prepare($query);
1413   $sth->execute;
1414   my $data=$sth->fetchrow_hashref;
1415   $sth->finish;
1416   return($data);
1417 }
1418
1419 =item bibdata
1420
1421   $data = &bibdata($biblionumber, $type);
1422
1423 Returns information about the book with the given biblionumber.
1424
1425 C<$type> is ignored.
1426
1427 C<&bibdata> returns a reference-to-hash. The keys are the fields in
1428 the C<biblio>, C<biblioitems>, and C<bibliosubtitle> tables in the
1429 Koha database.
1430
1431 In addition, C<$data-E<gt>{subject}> is the list of the book's
1432 subjects, separated by C<" , "> (space, comma, space).
1433
1434 If there are multiple biblioitems with the given biblionumber, only
1435 the first one is considered.
1436
1437 =cut
1438 #'
1439 sub bibdata {
1440     my ($bibnum, $type) = @_;
1441     my $dbh   = C4::Context->dbh;
1442     my $query = "Select *, biblio.notes
1443     from biblio, biblioitems
1444     left join bibliosubtitle on
1445     biblio.biblionumber = bibliosubtitle.biblionumber
1446     where biblio.biblionumber = $bibnum
1447     and biblioitems.biblionumber = $bibnum";
1448     my $sth   = $dbh->prepare($query);
1449     my $data;
1450
1451     $sth->execute;
1452     $data  = $sth->fetchrow_hashref;
1453     $sth->finish;
1454
1455     $query = "Select * from bibliosubject where biblionumber = '$bibnum'";
1456     $sth   = $dbh->prepare($query);
1457     $sth->execute;
1458     while (my $dat = $sth->fetchrow_hashref){
1459         $data->{'subject'} .= " , $dat->{'subject'}";
1460     } # while
1461
1462     $sth->finish;
1463     return($data);
1464 } # sub bibdata
1465
1466 =item bibitemdata
1467
1468   $itemdata = &bibitemdata($biblioitemnumber);
1469
1470 Looks up the biblioitem with the given biblioitemnumber. Returns a
1471 reference-to-hash. The keys are the fields from the C<biblio>,
1472 C<biblioitems>, and C<itemtypes> tables in the Koha database, except
1473 that C<biblioitems.notes> is given as C<$itemdata-E<gt>{bnotes}>.
1474
1475 =cut
1476 #'
1477 sub bibitemdata {
1478     my ($bibitem) = @_;
1479     my $dbh   = C4::Context->dbh;
1480     my $query = "Select *,biblioitems.notes as bnotes from biblio, biblioitems,itemtypes
1481 where biblio.biblionumber = biblioitems.biblionumber
1482 and biblioitemnumber = $bibitem
1483 and biblioitems.itemtype = itemtypes.itemtype";
1484     my $sth   = $dbh->prepare($query);
1485     my $data;
1486
1487     $sth->execute;
1488
1489     $data = $sth->fetchrow_hashref;
1490
1491     $sth->finish;
1492     return($data);
1493 } # sub bibitemdata
1494
1495 =item subject
1496
1497   ($count, $subjects) = &subject($biblionumber);
1498
1499 Looks up the subjects of the book with the given biblionumber. Returns
1500 a two-element list. C<$subjects> is a reference-to-array, where each
1501 element is a subject of the book, and C<$count> is the number of
1502 elements in C<$subjects>.
1503
1504 =cut
1505 #'
1506 sub subject {
1507   my ($bibnum)=@_;
1508   my $dbh = C4::Context->dbh;
1509   my $query="Select * from bibliosubject where biblionumber=$bibnum";
1510   my $sth=$dbh->prepare($query);
1511   $sth->execute;
1512   my @results;
1513   my $i=0;
1514   while (my $data=$sth->fetchrow_hashref){
1515     $results[$i]=$data;
1516     $i++;
1517   }
1518   $sth->finish;
1519   return($i,\@results);
1520 }
1521
1522 =item addauthor
1523
1524   ($count, $authors) = &addauthors($biblionumber);
1525
1526 Looks up the additional authors for the book with the given
1527 biblionumber.
1528
1529 Returns a two-element list. C<$authors> is a reference-to-array, where
1530 each element is an additional author, and C<$count> is the number of
1531 elements in C<$authors>.
1532
1533 =cut
1534 #'
1535 sub addauthor {
1536   my ($bibnum)=@_;
1537   my $dbh = C4::Context->dbh;
1538   my $query="Select * from additionalauthors where biblionumber=$bibnum";
1539   my $sth=$dbh->prepare($query);
1540   $sth->execute;
1541   my @results;
1542   my $i=0;
1543   while (my $data=$sth->fetchrow_hashref){
1544     $results[$i]=$data;
1545     $i++;
1546   }
1547   $sth->finish;
1548   return($i,\@results);
1549 }
1550
1551 =item subtitle
1552
1553   ($count, $subtitles) = &subtitle($biblionumber);
1554
1555 Looks up the subtitles for the book with the given biblionumber.
1556
1557 Returns a two-element list. C<$subtitles> is a reference-to-array,
1558 where each element is a subtitle, and C<$count> is the number of
1559 elements in C<$subtitles>.
1560
1561 =cut
1562 #'
1563 sub subtitle {
1564   my ($bibnum)=@_;
1565   my $dbh = C4::Context->dbh;
1566   my $query="Select * from bibliosubtitle where biblionumber=$bibnum";
1567   my $sth=$dbh->prepare($query);
1568   $sth->execute;
1569   my @results;
1570   my $i=0;
1571   while (my $data=$sth->fetchrow_hashref){
1572     $results[$i]=$data;
1573     $i++;
1574   }
1575   $sth->finish;
1576   return($i,\@results);
1577 }
1578
1579 =item itemissues
1580
1581   @issues = &itemissues($biblioitemnumber, $biblio);
1582
1583 Looks up information about who has borrowed the bookZ<>(s) with the
1584 given biblioitemnumber.
1585
1586 C<$biblio> is ignored.
1587
1588 C<&itemissues> returns an array of references-to-hash. The keys
1589 include the fields from the C<items> table in the Koha database.
1590 Additional keys include:
1591
1592 =over 4
1593
1594 =item C<date_due>
1595
1596 If the item is currently on loan, this gives the due date.
1597
1598 If the item is not on loan, then this is either "Available" or
1599 "Cancelled", if the item has been withdrawn.
1600
1601 =item C<card>
1602
1603 If the item is currently on loan, this gives the card number of the
1604 patron who currently has the item.
1605
1606 =item C<timestamp0>, C<timestamp1>, C<timestamp2>
1607
1608 These give the timestamp for the last three times the item was
1609 borrowed.
1610
1611 =item C<card0>, C<card1>, C<card2>
1612
1613 The card number of the last three patrons who borrowed this item.
1614
1615 =item C<borrower0>, C<borrower1>, C<borrower2>
1616
1617 The borrower number of the last three patrons who borrowed this item.
1618
1619 =back
1620
1621 =cut
1622 #'
1623 sub itemissues {
1624     my ($bibitem, $biblio)=@_;
1625     my $dbh   = C4::Context->dbh;
1626     my $query = "Select * from items where
1627 items.biblioitemnumber = '$bibitem'";
1628     # FIXME - If this function die()s, the script will abort, and the
1629     # user won't get anything; depending on how far the script has
1630     # gotten, the user might get a blank page. It would be much better
1631     # to at least print an error message. The easiest way to do this
1632     # is to set $SIG{__DIE__}.
1633     my $sth   = $dbh->prepare($query)
1634       || die $dbh->errstr;
1635     my $i     = 0;
1636     my @results;
1637
1638     $sth->execute
1639       || die $sth->errstr;
1640
1641     while (my $data = $sth->fetchrow_hashref) {
1642         # Find out who currently has this item.
1643         # FIXME - Wouldn't it be better to do this as a left join of
1644         # some sort? Currently, this code assumes that if
1645         # fetchrow_hashref() fails, then the book is on the shelf.
1646         # fetchrow_hashref() can fail for any number of reasons (e.g.,
1647         # database server crash), not just because no items match the
1648         # search criteria.
1649         my $query2 = "select * from issues,borrowers
1650 where itemnumber = $data->{'itemnumber'}
1651 and returndate is NULL
1652 and issues.borrowernumber = borrowers.borrowernumber";
1653         my $sth2   = $dbh->prepare($query2);
1654
1655         $sth2->execute;
1656         if (my $data2 = $sth2->fetchrow_hashref) {
1657             $data->{'date_due'} = $data2->{'date_due'};
1658             $data->{'card'}     = $data2->{'cardnumber'};
1659         } else {
1660             if ($data->{'wthdrawn'} eq '1') {
1661                 $data->{'date_due'} = 'Cancelled';
1662             } else {
1663                 $data->{'date_due'} = 'Available';
1664             } # else
1665         } # else
1666
1667         $sth2->finish;
1668
1669         # Find the last 3 people who borrowed this item.
1670         $query2 = "select * from issues, borrowers
1671                                                 where itemnumber = ?
1672                                                                         and issues.borrowernumber = borrowers.borrowernumber
1673                                                                         and returndate is not NULL
1674                                                                         order by returndate desc,timestamp desc";
1675 warn "$query2";
1676         $sth2 = $dbh->prepare($query2) || die $dbh->errstr;
1677         $sth2->execute($data->{'itemnumber'}) || die $sth2->errstr;
1678         for (my $i2 = 0; $i2 < 2; $i2++) { # FIXME : error if there is less than 3 pple borrowing this item
1679             if (my $data2 = $sth2->fetchrow_hashref) {
1680                 $data->{"timestamp$i2"} = $data2->{'timestamp'};
1681                 $data->{"card$i2"}      = $data2->{'cardnumber'};
1682                 $data->{"borrower$i2"}  = $data2->{'borrowernumber'};
1683             } # if
1684         } # for
1685
1686         $sth2->finish;
1687         $results[$i] = $data;
1688         $i++;
1689     }
1690
1691     $sth->finish;
1692     return(@results);
1693 }
1694
1695 =item itemnodata
1696
1697   $item = &itemnodata($env, $dbh, $biblioitemnumber);
1698
1699 Looks up the item with the given biblioitemnumber.
1700
1701 C<$env> and C<$dbh> are ignored.
1702
1703 C<&itemnodata> returns a reference-to-hash whose keys are the fields
1704 from the C<biblio>, C<biblioitems>, and C<items> tables in the Koha
1705 database.
1706
1707 =cut
1708 #'
1709 sub itemnodata {
1710   my ($env,$dbh,$itemnumber) = @_;
1711   $dbh = C4::Context->dbh;
1712   my $query="Select * from biblio,items,biblioitems
1713     where items.itemnumber = '$itemnumber'
1714     and biblio.biblionumber = items.biblionumber
1715     and biblioitems.biblioitemnumber = items.biblioitemnumber";
1716   my $sth=$dbh->prepare($query);
1717 #  print $query;
1718   $sth->execute;
1719   my $data=$sth->fetchrow_hashref;
1720   $sth->finish;
1721   return($data);
1722 }
1723
1724 =item BornameSearch
1725
1726   ($count, $borrowers) = &BornameSearch($env, $searchstring, $type);
1727
1728 Looks up patrons (borrowers) by name.
1729
1730 C<$env> and C<$type> are ignored.
1731
1732 C<$searchstring> is a space-separated list of search terms. Each term
1733 must match the beginning a borrower's surname, first name, or other
1734 name.
1735
1736 C<&BornameSearch> returns a two-element list. C<$borrowers> is a
1737 reference-to-array; each element is a reference-to-hash, whose keys
1738 are the fields of the C<borrowers> table in the Koha database.
1739 C<$count> is the number of elements in C<$borrowers>.
1740
1741 =cut
1742 #'
1743 #used by member enquiries from the intranet
1744 #called by member.pl
1745 sub BornameSearch  {
1746   my ($env,$searchstring,$type)=@_;
1747   my $dbh = C4::Context->dbh;
1748   $searchstring=~ s/\'/\\\'/g;
1749   my @data=split(' ',$searchstring);
1750   my $count=@data;
1751   my $query="Select * from borrowers
1752   where ((surname like \"$data[0]%\" or surname like \"% $data[0]%\"
1753   or firstname  like \"$data[0]%\" or firstname like \"% $data[0]%\"
1754   or othernames like \"$data[0]%\" or othernames like \"% $data[0]%\")
1755   ";
1756   for (my $i=1;$i<$count;$i++){
1757     $query=$query." and (surname like \"$data[$i]%\" or surname like \"% $data[$i]%\"
1758     or firstname  like \"$data[$i]%\" or firstname like \"% $data[$i]%\"
1759     or othernames like \"$data[$i]%\" or othernames like \"% $data[$i]%\")";
1760                         # FIXME - .= <<EOT;
1761   }
1762   $query=$query.") or cardnumber = \"$searchstring\"
1763   order by surname,firstname";
1764                         # FIXME - .= <<EOT;
1765 #  print $query,"\n";
1766   my $sth=$dbh->prepare($query);
1767   $sth->execute;
1768   my @results;
1769   my $cnt=0;
1770   while (my $data=$sth->fetchrow_hashref){
1771     push(@results,$data);
1772     $cnt ++;
1773   }
1774 #  $sth->execute;
1775   $sth->finish;
1776   return ($cnt,\@results);
1777 }
1778
1779 =item borrdata
1780
1781   $borrower = &borrdata($cardnumber, $borrowernumber);
1782
1783 Looks up information about a patron (borrower) by either card number
1784 or borrower number. If $borrowernumber is specified, C<&borrdata>
1785 searches by borrower number; otherwise, it searches by card number.
1786
1787 C<&borrdata> returns a reference-to-hash whose keys are the fields of
1788 the C<borrowers> table in the Koha database.
1789
1790 =cut
1791 #'
1792 sub borrdata {
1793   my ($cardnumber,$bornum)=@_;
1794   $cardnumber = uc $cardnumber;
1795   my $dbh = C4::Context->dbh;
1796   my $query;
1797   if ($bornum eq ''){
1798     $query="Select * from borrowers where cardnumber='$cardnumber'";
1799   } else {
1800       $query="Select * from borrowers where borrowernumber='$bornum'";
1801   }
1802   #print $query;
1803   my $sth=$dbh->prepare($query);
1804   $sth->execute;
1805   my $data=$sth->fetchrow_hashref;
1806   $sth->finish;
1807   return($data);
1808 }
1809
1810 =item borrissues
1811
1812   ($count, $issues) = &borrissues($borrowernumber);
1813
1814 Looks up what the patron with the given borrowernumber has borrowed.
1815
1816 C<&borrissues> returns a two-element array. C<$issues> is a
1817 reference-to-array, where each element is a reference-to-hash; the
1818 keys are the fields from the C<issues>, C<biblio>, and C<items> tables
1819 in the Koha database. C<$count> is the number of elements in
1820 C<$issues>.
1821
1822 =cut
1823 #'
1824 sub borrissues {
1825   my ($bornum)=@_;
1826   my $dbh = C4::Context->dbh;
1827   my $query;
1828   $query="Select * from issues,biblio,items where borrowernumber='$bornum' and
1829 items.itemnumber=issues.itemnumber and
1830 items.biblionumber=biblio.biblionumber and issues.returndate is NULL order
1831 by date_due";
1832   #print $query;
1833   my $sth=$dbh->prepare($query);
1834     $sth->execute;
1835   my @result;
1836   while (my $data = $sth->fetchrow_hashref) {
1837     push @result, $data;
1838   }
1839   $sth->finish;
1840   return(scalar(@result), \@result);
1841 }
1842
1843 =item allissues
1844
1845   ($count, $issues) = &allissues($borrowernumber, $sortkey, $limit);
1846
1847 Looks up what the patron with the given borrowernumber has borrowed,
1848 and sorts the results.
1849
1850 C<$sortkey> is the name of a field on which to sort the results. This
1851 should be the name of a field in the C<issues>, C<biblio>,
1852 C<biblioitems>, or C<items> table in the Koha database.
1853
1854 C<$limit> is the maximum number of results to return.
1855
1856 C<&allissues> returns a two-element array. C<$issues> is a
1857 reference-to-array, where each element is a reference-to-hash; the
1858 keys are the fields from the C<issues>, C<biblio>, C<biblioitems>, and
1859 C<items> tables of the Koha database. C<$count> is the number of
1860 elements in C<$issues>
1861
1862 =cut
1863 #'
1864 sub allissues {
1865   my ($bornum,$order,$limit)=@_;
1866   my $dbh = C4::Context->dbh;
1867   my $query;
1868   $query="Select * from issues,biblio,items,biblioitems
1869   where borrowernumber='$bornum' and
1870   items.biblioitemnumber=biblioitems.biblioitemnumber and
1871   items.itemnumber=issues.itemnumber and
1872   items.biblionumber=biblio.biblionumber";
1873   $query.=" order by $order";
1874   if ($limit !=0){
1875     $query.=" limit $limit";
1876   }
1877   #print $query;
1878   my $sth=$dbh->prepare($query);
1879   $sth->execute;
1880   my @result;
1881   my $i=0;
1882   while (my $data=$sth->fetchrow_hashref){
1883     $result[$i]=$data;;
1884     $i++;
1885   }
1886   $sth->finish;
1887   return($i,\@result);
1888 }
1889
1890 =item borrdata2
1891
1892   ($borrowed, $due, $fine) = &borrdata2($env, $borrowernumber);
1893
1894 Returns aggregate data about items borrowed by the patron with the
1895 given borrowernumber.
1896
1897 C<$env> is ignored.
1898
1899 C<&borrdata2> returns a three-element array. C<$borrowed> is the
1900 number of books the patron currently has borrowed. C<$due> is the
1901 number of overdue items the patron currently has borrowed. C<$fine> is
1902 the total fine currently due by the borrower.
1903
1904 =cut
1905 #'
1906 sub borrdata2 {
1907   my ($env,$bornum)=@_;
1908   my $dbh = C4::Context->dbh;
1909   my $query="Select count(*) from issues where borrowernumber='$bornum' and
1910     returndate is NULL";
1911     # print $query;
1912   my $sth=$dbh->prepare($query);
1913   $sth->execute;
1914   my $data=$sth->fetchrow_hashref;
1915   $sth->finish;
1916   $sth=$dbh->prepare("Select count(*) from issues where
1917     borrowernumber='$bornum' and date_due < now() and returndate is NULL");
1918   $sth->execute;
1919   my $data2=$sth->fetchrow_hashref;
1920   $sth->finish;
1921   $sth=$dbh->prepare("Select sum(amountoutstanding) from accountlines where
1922     borrowernumber='$bornum'");
1923   $sth->execute;
1924   my $data3=$sth->fetchrow_hashref;
1925   $sth->finish;
1926
1927 return($data2->{'count(*)'},$data->{'count(*)'},$data3->{'sum(amountoutstanding)'});
1928 }
1929
1930 =item getboracctrecord
1931
1932   ($count, $acctlines, $total) = &getboracctrecord($env, $borrowernumber);
1933
1934 Looks up accounting data for the patron with the given borrowernumber.
1935
1936 C<$env> is ignored.
1937
1938 (FIXME - I'm not at all sure what this is about.)
1939
1940 C<&getboracctrecord> returns a three-element array. C<$acctlines> is a
1941 reference-to-array, where each element is a reference-to-hash; the
1942 keys are the fields of the C<accountlines> table in the Koha database.
1943 C<$count> is the number of elements in C<$acctlines>. C<$total> is the
1944 total amount outstanding for all of the account lines.
1945
1946 =cut
1947 #'
1948 sub getboracctrecord {
1949    my ($env,$params) = @_;
1950    my $dbh = C4::Context->dbh;
1951    my @acctlines;
1952    my $numlines=0;
1953    my $query= "Select * from accountlines where
1954 borrowernumber=? order by date desc,timestamp desc";
1955    my $sth=$dbh->prepare($query);
1956 #   print $query;
1957    $sth->execute($params->{'borrowernumber'});
1958    my $total=0;
1959    while (my $data=$sth->fetchrow_hashref){
1960 #      if ($data->{'itemnumber'} ne ''){
1961 #        $query="Select * from items,biblio where items.itemnumber=
1962 #       '$data->{'itemnumber'}' and biblio.biblionumber=items.biblionumber";
1963 #       my $sth2=$dbh->prepare($query);
1964 #       $sth2->execute;
1965 #       my $data2=$sth2->fetchrow_hashref;
1966 #       $sth2->finish;
1967 #       $data=$data2;
1968  #     }
1969       $acctlines[$numlines] = $data;
1970       $numlines++;
1971       $total += $data->{'amountoutstanding'};
1972    }
1973    $sth->finish;
1974    return ($numlines,\@acctlines,$total);
1975 }
1976
1977 =item itemcount
1978
1979   ($count, $lcount, $nacount, $fcount, $scount, $lostcount,
1980   $mending, $transit,$ocount) =
1981     &itemcount($env, $biblionumber, $type);
1982
1983 Counts the number of items with the given biblionumber, broken down by
1984 category.
1985
1986 C<$env> is ignored.
1987
1988 If C<$type> is not set to C<intra>, lost, very overdue, and withdrawn
1989 items will not be counted.
1990
1991 C<&itemcount> returns a nine-element list:
1992
1993 C<$count> is the total number of items with the given biblionumber.
1994
1995 C<$lcount> is the number of items at the Levin branch.
1996
1997 C<$nacount> is the number of items that are neither borrowed, lost,
1998 nor withdrawn (and are therefore presumably on a shelf somewhere).
1999
2000 C<$fcount> is the number of items at the Foxton branch.
2001
2002 C<$scount> is the number of items at the Shannon branch.
2003
2004 C<$lostcount> is the number of lost and very overdue items.
2005
2006 C<$mending> is the number of items at the Mending branch (being
2007 mended?).
2008
2009 C<$transit> is the number of items at the Transit branch (in transit
2010 between branches?).
2011
2012 C<$ocount> is the number of items that haven't arrived yet
2013 (aqorders.quantity - aqorders.quantityreceived).
2014
2015 =cut
2016 #'
2017
2018 # FIXME - There's also a &C4::Biblio::itemcount.
2019 # Since they're all exported, acqui/acquire.pl doesn't compile with -w.
2020 sub itemcount {
2021   my ($env,$bibnum,$type)=@_;
2022   my $dbh = C4::Context->dbh;
2023   my $query="Select * from items where
2024   biblionumber=$bibnum ";
2025   if ($type ne 'intra'){
2026     $query.=" and ((itemlost <>1 and itemlost <> 2) or itemlost is NULL) and
2027     (wthdrawn <> 1 or wthdrawn is NULL)";
2028   }
2029   my $sth=$dbh->prepare($query);
2030   #  print $query;
2031   $sth->execute;
2032   my $count=0;
2033   my $lcount=0;
2034   my $nacount=0;
2035   my $fcount=0;
2036   my $scount=0;
2037   my $lostcount=0;
2038   my $mending=0;
2039   my $transit=0;
2040   my $ocount=0;
2041   while (my $data=$sth->fetchrow_hashref){
2042     $count++;
2043     my $query2="select * from issues,items where issues.itemnumber=
2044     '$data->{'itemnumber'}' and returndate is NULL
2045     and items.itemnumber=issues.itemnumber and ((items.itemlost <>1 and
2046     items.itemlost <> 2) or items.itemlost is NULL)
2047     and (wthdrawn <> 1 or wthdrawn is NULL)";
2048
2049     my $sth2=$dbh->prepare($query2);
2050     $sth2->execute;
2051     if (my $data2=$sth2->fetchrow_hashref){
2052        $nacount++;
2053     } else {
2054       if ($data->{'holdingbranch'} eq 'C' || $data->{'holdingbranch'} eq 'LT'){
2055         $lcount++;
2056       }
2057       if ($data->{'holdingbranch'} eq 'F' || $data->{'holdingbranch'} eq 'FP'){
2058         $fcount++;
2059       }
2060       if ($data->{'holdingbranch'} eq 'S' || $data->{'holdingbranch'} eq 'SP'){
2061         $scount++;
2062       }
2063       if ($data->{'itemlost'} eq '1'){
2064         $lostcount++;
2065       }
2066       if ($data->{'itemlost'} eq '2'){
2067         $lostcount++;
2068       }
2069       if ($data->{'holdingbranch'} eq 'FM'){
2070         $mending++;
2071       }
2072       if ($data->{'holdingbranch'} eq 'TR'){
2073         $transit++;
2074       }
2075     }
2076     $sth2->finish;
2077   }
2078 #  if ($count == 0){
2079     my $query2="Select * from aqorders where biblionumber=$bibnum";
2080     my $sth2=$dbh->prepare($query2);
2081     $sth2->execute;
2082     if (my $data=$sth2->fetchrow_hashref){
2083       $ocount=$data->{'quantity'} - $data->{'quantityreceived'};
2084     }
2085 #    $count+=$ocount;
2086     $sth2->finish;
2087   $sth->finish;
2088   return ($count,$lcount,$nacount,$fcount,$scount,$lostcount,$mending,$transit,$ocount);
2089 }
2090
2091 =item itemcount2
2092
2093   $counts = &itemcount2($env, $biblionumber, $type);
2094
2095 Counts the number of items with the given biblionumber, broken down by
2096 category.
2097
2098 C<$env> is ignored.
2099
2100 C<$type> may be either C<intra> or anything else. If it is not set to
2101 C<intra>, then the search will exclude lost, very overdue, and
2102 withdrawn items.
2103
2104 C<$&itemcount2> returns a reference-to-hash, with the following fields:
2105
2106 =over 4
2107
2108 =item C<total>
2109
2110 The total number of items with this biblionumber.
2111
2112 =item C<order>
2113
2114 The number of items on order (aqorders.quantity -
2115 aqorders.quantityreceived).
2116
2117 =item I<branchname>
2118
2119 For each branch that has at least one copy of the book, C<$counts>
2120 will have a key with the branch name, giving the number of copies at
2121 that branch.
2122
2123 =back
2124
2125 =cut
2126 #'
2127 sub itemcount2 {
2128   my ($env,$bibnum,$type)=@_;
2129   my $dbh = C4::Context->dbh;
2130   my $query="Select * from items,branches where
2131   biblionumber=$bibnum and items.holdingbranch=branches.branchcode";
2132   if ($type ne 'intra'){
2133     $query.=" and ((itemlost <>1 and itemlost <> 2) or itemlost is NULL) and
2134     (wthdrawn <> 1 or wthdrawn is NULL)";
2135   }
2136   my $sth=$dbh->prepare($query);
2137   #  print $query;
2138   $sth->execute;
2139   my %counts;
2140   $counts{'total'}=0;
2141   while (my $data=$sth->fetchrow_hashref){
2142     $counts{'total'}++;
2143
2144     my $status;
2145     for my $test (
2146       [
2147         'Item Lost',
2148         'select * from items
2149           where itemnumber=?
2150             and not ((items.itemlost <>1 and items.itemlost <> 2)
2151                       or items.itemlost is NULL)'
2152       ], [
2153         'Withdrawn',
2154         'select * from items
2155           where itemnumber=? and not (wthdrawn <> 1 or wthdrawn is NULL)'
2156       ], [
2157         'On Loan', "select * from issues,items
2158           where issues.itemnumber=? and returndate is NULL
2159             and items.itemnumber=issues.itemnumber"
2160       ],
2161     ) {
2162         my($testlabel, $query2) = @$test;
2163
2164         my $sth2=$dbh->prepare($query2);
2165         $sth2->execute($data->{'itemnumber'});
2166
2167         # FIXME - fetchrow_hashref() can fail for any number of reasons
2168         # (e.g., a database server crash). Perhaps use a left join of some
2169         # sort for this?
2170         $status = $testlabel if $sth2->fetchrow_hashref;
2171         $sth2->finish;
2172     last if defined $status;
2173     }
2174     $status = $data->{'branchname'} unless defined $status;
2175     $counts{$status}++;
2176   }
2177   my $query2="Select * from aqorders where biblionumber=$bibnum and
2178   datecancellationprinted is NULL and quantity > quantityreceived";
2179   my $sth2=$dbh->prepare($query2);
2180   $sth2->execute;
2181   if (my $data=$sth2->fetchrow_hashref){
2182       $counts{'order'}=$data->{'quantity'} - $data->{'quantityreceived'};
2183   }
2184   $sth2->finish;
2185   $sth->finish;
2186   return (\%counts);
2187 }
2188
2189 =item ItemType
2190
2191   $description = &ItemType($itemtype);
2192
2193 Given an item type code, returns the description for that type.
2194
2195 =cut
2196 #'
2197
2198 # FIXME - I'm pretty sure that after the initial setup, the list of
2199 # item types doesn't change very often. Hence, it seems slow and
2200 # inefficient to make yet another database call to look up information
2201 # that'll only change every few months or years.
2202 #
2203 # Much better, I think, to automatically build a Perl file that can be
2204 # included in those scripts that require it, e.g.:
2205 #       @itemtypes = qw( ART BCD CAS CD F ... );
2206 #       %itemtypedesc = (
2207 #               ART     => "Art Prints",
2208 #               BCD     => "CD-ROM from book",
2209 #               CD      => "Compact disc (WN)",
2210 #               F       => "Free Fiction",
2211 #               ...
2212 #       );
2213 # The web server can then run a cron job to rebuild this file from the
2214 # database every hour or so.
2215 #
2216 # The same thing goes for branches, book funds, book sellers, currency
2217 # rates, printers, stopwords, and perhaps others.
2218 sub ItemType {
2219   my ($type)=@_;
2220   my $dbh = C4::Context->dbh;
2221   my $query="select description from itemtypes where itemtype='$type'";
2222   my $sth=$dbh->prepare($query);
2223   $sth->execute;
2224   my $dat=$sth->fetchrow_hashref;
2225   $sth->finish;
2226   return ($dat->{'description'});
2227 }
2228
2229 =item bibitems
2230
2231   ($count, @results) = &bibitems($biblionumber);
2232
2233 Given the biblionumber for a book, C<&bibitems> looks up that book's
2234 biblioitems (different publications of the same book, the audio book
2235 and film versions, etc.).
2236
2237 C<$count> is the number of elements in C<@results>.
2238
2239 C<@results> is an array of references-to-hash; the keys are the fields
2240 of the C<biblioitems> and C<itemtypes> tables of the Koha database. In
2241 addition, C<itemlost> indicates the availability of the item: if it is
2242 "2", then all copies of the item are long overdue; if it is "1", then
2243 all copies are lost; otherwise, there is at least one copy available.
2244
2245 =cut
2246 #'
2247 sub bibitems {
2248     my ($bibnum) = @_;
2249     my $dbh   = C4::Context->dbh;
2250     my $query = "SELECT biblioitems.*,
2251                         itemtypes.*,
2252                         MIN(items.itemlost)        as itemlost,
2253                         MIN(items.dateaccessioned) as dateaccessioned
2254                           FROM biblioitems, itemtypes, items
2255                          WHERE biblioitems.biblionumber     = ?
2256                            AND biblioitems.itemtype         = itemtypes.itemtype
2257                            AND biblioitems.biblioitemnumber = items.biblioitemnumber
2258                       GROUP BY items.biblioitemnumber";
2259     my $sth   = $dbh->prepare($query);
2260     my $count = 0;
2261     my @results;
2262     $sth->execute($bibnum);
2263     while (my $data = $sth->fetchrow_hashref) {
2264         $results[$count] = $data;
2265         $count++;
2266     } # while
2267     $sth->finish;
2268     return($count, @results);
2269 } # sub bibitems
2270
2271 =item barcodes
2272
2273   @barcodes = &barcodes($biblioitemnumber);
2274
2275 Given a biblioitemnumber, looks up the corresponding items.
2276
2277 Returns an array of references-to-hash; the keys are C<barcode> and
2278 C<itemlost>.
2279
2280 The returned items include very overdue items, but not lost ones.
2281
2282 =cut
2283 #'
2284 sub barcodes{
2285     #called from request.pl
2286     my ($biblioitemnumber)=@_;
2287     my $dbh = C4::Context->dbh;
2288     my $query="SELECT barcode, itemlost, holdingbranch FROM items
2289                            WHERE biblioitemnumber = ?
2290                              AND (wthdrawn <> 1 OR wthdrawn IS NULL)";
2291     my $sth=$dbh->prepare($query);
2292     $sth->execute($biblioitemnumber);
2293     my @barcodes;
2294     my $i=0;
2295     while (my $data=$sth->fetchrow_hashref){
2296         $barcodes[$i]=$data;
2297         $i++;
2298     }
2299     $sth->finish;
2300     return(@barcodes);
2301 }
2302
2303 =item getwebsites
2304
2305   ($count, @websites) = &getwebsites($biblionumber);
2306
2307 Looks up the web sites pertaining to the book with the given
2308 biblionumber.
2309
2310 C<$count> is the number of elements in C<@websites>.
2311
2312 C<@websites> is an array of references-to-hash; the keys are the
2313 fields from the C<websites> table in the Koha database.
2314
2315 =cut
2316 #'
2317 sub getwebsites {
2318     my ($biblionumber) = @_;
2319     my $dbh   = C4::Context->dbh;
2320     my $query = "Select * from websites where biblionumber = $biblionumber";
2321     my $sth   = $dbh->prepare($query);
2322     my $count = 0;
2323     my @results;
2324
2325     $sth->execute;
2326     while (my $data = $sth->fetchrow_hashref) {
2327         # FIXME - The URL scheme shouldn't be stripped off, at least
2328         # not here, since it's part of the URL, and will be useful in
2329         # constructing a link to the site. If you don't want the user
2330         # to see the "http://" part, strip that off when building the
2331         # HTML code.
2332         $data->{'url'} =~ s/^http:\/\///;       # FIXME - Leaning toothpick
2333                                                 # syndrome
2334         $results[$count] = $data;
2335         $count++;
2336     } # while
2337
2338     $sth->finish;
2339     return($count, @results);
2340 } # sub getwebsites
2341
2342 =item getwebbiblioitems
2343
2344   ($count, @results) = &getwebbiblioitems($biblionumber);
2345
2346 Given a book's biblionumber, looks up the web versions of the book
2347 (biblioitems with itemtype C<WEB>).
2348
2349 C<$count> is the number of items in C<@results>. C<@results> is an
2350 array of references-to-hash; the keys are the items from the
2351 C<biblioitems> table of the Koha database.
2352
2353 =cut
2354 #'
2355 sub getwebbiblioitems {
2356     my ($biblionumber) = @_;
2357     my $dbh   = C4::Context->dbh;
2358     my $query = "Select * from biblioitems where biblionumber = $biblionumber
2359 and itemtype = 'WEB'";
2360     my $sth   = $dbh->prepare($query);
2361     my $count = 0;
2362     my @results;
2363
2364     $sth->execute;
2365     while (my $data = $sth->fetchrow_hashref) {
2366         $data->{'url'} =~ s/^http:\/\///;
2367         $results[$count] = $data;
2368         $count++;
2369     } # while
2370
2371     $sth->finish;
2372     return($count, @results);
2373 } # sub getwebbiblioitems
2374
2375
2376 =item breedingsearch
2377
2378   ($count, @results) = &breedingsearch($title);
2379
2380 C<$count> is the number of items in C<@results>. C<@results> is an
2381 array of references-to-hash; the keys are the items from the
2382 C<marc_breeding> table of the Koha database.
2383
2384 =cut
2385
2386 sub breedingsearch {
2387         my ($title,$isbn) = @_;
2388         my $dbh   = C4::Context->dbh;
2389         my $count = 0;
2390         my $query;
2391         my $sth;
2392         my @results;
2393
2394         $query = "Select id,file,isbn,title,author from marc_breeding where ";
2395         if ($title) {
2396                 $query .= "title like \"$title%\"";
2397         }
2398         if ($title && $isbn) {
2399                 $query .= " and ";
2400         }
2401         if ($isbn) {
2402                 $query .= "isbn like \"$isbn%\"";
2403         }
2404         $sth   = $dbh->prepare($query);
2405         $sth->execute;
2406         while (my $data = $sth->fetchrow_hashref) {
2407                         $results[$count] = $data;
2408                         $count++;
2409         } # while
2410
2411         $sth->finish;
2412         return($count, @results);
2413 } # sub breedingsearch
2414
2415 =item isbnsearch
2416
2417   ($count, @results) = &isbnsearch($isbn,$title);
2418
2419 Given an isbn and/or a title, returns the biblios having it.
2420 Used in acqui.simple, isbnsearch.pl only
2421
2422 C<$count> is the number of items in C<@results>. C<@results> is an
2423 array of references-to-hash; the keys are the items from the
2424 C<biblioitems> table of the Koha database.
2425
2426 =cut
2427
2428 sub isbnsearch {
2429     my ($isbn,$title) = @_;
2430     my $dbh   = C4::Context->dbh;
2431     my $count = 0;
2432     my $query;
2433     my $sth;
2434     my @results;
2435
2436     $query = "Select distinct biblio.* from biblio, biblioitems where
2437                                 biblio.biblionumber = biblioitems.biblionumber";
2438         if ($isbn) {
2439                 $query .= " and isbn=".$dbh->quote($isbn);
2440         }
2441         if ($title) {
2442                 $query .= " and title like ".$dbh->quote($title."%");
2443         }
2444         warn $query;
2445     $sth   = $dbh->prepare($query);
2446
2447     $sth->execute;
2448     while (my $data = $sth->fetchrow_hashref) {
2449         $results[$count] = $data;
2450         $count++;
2451     } # while
2452
2453     $sth->finish;
2454     return($count, @results);
2455 } # sub isbnsearch
2456
2457 END { }       # module clean-up code here (global destructor)
2458
2459 1;
2460 __END__
2461
2462 =back
2463
2464 =head1 AUTHOR
2465
2466 Koha Developement team <info@koha.org>
2467
2468 =cut