Fixed the subject search.
[koha-ffzg.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                 warn $query;
1109                 my $sti=$dbh->prepare($query);
1110                 $sti->execute;
1111                 my $dewey;
1112                 my $subclass;
1113                 my $true=0;
1114                 my $publishercode;
1115                 my $bibitemdata;
1116                 if ($bibitemdata = $sti->fetchrow_hashref() || $type eq 'subject'){
1117                         $true=1;
1118                         $dewey=$bibitemdata->{'dewey'};
1119                         $subclass=$bibitemdata->{'subclass'};
1120                         $publishercode=$bibitemdata->{'publishercode'};
1121                 }
1122                 #  print STDERR "$dewey $subclass $publishercode\n";
1123                 # FIXME - The Dewey code is a string, not a number.
1124                 $dewey=~s/\.*0*$//;
1125                 ($dewey == 0) && ($dewey='');
1126                 ($dewey) && ($dewey.=" $subclass");
1127                 $data->{'dewey'}=$dewey;
1128                 $data->{'publishercode'}=$publishercode;
1129                 $sti->finish;
1130                 if ($true == 1){
1131                         if ($count > $offset && $count <= $limit){
1132                                 $results[$i]=$data;
1133                                 $i++;
1134                         }
1135                         $count++;
1136                 }
1137         }
1138         $sth->finish;
1139         $count--;
1140         return($count,@results);
1141 }
1142
1143 sub updatesearchstats{
1144   my ($dbh,$query)=@_;
1145
1146 }
1147
1148 =item subsearch
1149
1150   @results = &subsearch($env, $subject);
1151
1152 Searches for books that have a subject that exactly matches
1153 C<$subject>.
1154
1155 C<&subsearch> returns an array of results. Each element of this array
1156 is a string, containing the book's title, author, and biblionumber,
1157 separated by tabs.
1158
1159 C<$env> is ignored.
1160
1161 =cut
1162 #'
1163 sub subsearch {
1164   my ($env,$subject)=@_;
1165   my $dbh = C4::Context->dbh;
1166   $subject=$dbh->quote($subject);
1167   my $query="Select * from biblio,bibliosubject where
1168   biblio.biblionumber=bibliosubject.biblionumber and
1169   bibliosubject.subject=$subject group by biblio.biblionumber
1170   order by biblio.title";
1171   my $sth=$dbh->prepare($query);
1172   $sth->execute;
1173   my $i=0;
1174 #  print $query;
1175   my @results;
1176   while (my $data=$sth->fetchrow_hashref){
1177     push @results, $data;
1178     $i++;
1179   }
1180   $sth->finish;
1181   return(@results);
1182 }
1183
1184 =item ItemInfo
1185
1186   @results = &ItemInfo($env, $biblionumber, $type);
1187
1188 Returns information about books with the given biblionumber.
1189
1190 C<$type> may be either C<intra> or anything else. If it is not set to
1191 C<intra>, then the search will exclude lost, very overdue, and
1192 withdrawn items.
1193
1194 C<$env> is ignored.
1195
1196 C<&ItemInfo> returns a list of references-to-hash. Each element
1197 contains a number of keys. Most of them are table items from the
1198 C<biblio>, C<biblioitems>, C<items>, and C<itemtypes> tables in the
1199 Koha database. Other keys include:
1200
1201 =over 4
1202
1203 =item C<$data-E<gt>{branchname}>
1204
1205 The name (not the code) of the branch to which the book belongs.
1206
1207 =item C<$data-E<gt>{datelastseen}>
1208
1209 This is simply C<items.datelastseen>, except that while the date is
1210 stored in YYYY-MM-DD format in the database, here it is converted to
1211 DD/MM/YYYY format. A NULL date is returned as C<//>.
1212
1213 =item C<$data-E<gt>{datedue}>
1214
1215 =item C<$data-E<gt>{class}>
1216
1217 This is the concatenation of C<biblioitems.classification>, the book's
1218 Dewey code, and C<biblioitems.subclass>.
1219
1220 =item C<$data-E<gt>{ocount}>
1221
1222 I think this is the number of copies of the book available.
1223
1224 =item C<$data-E<gt>{order}>
1225
1226 If this is set, it is set to C<One Order>.
1227
1228 =back
1229
1230 =cut
1231 #'
1232 sub ItemInfo {
1233     my ($env,$biblionumber,$type) = @_;
1234     my $dbh   = C4::Context->dbh;
1235     my $query = "SELECT * FROM items, biblio, biblioitems, itemtypes
1236                   WHERE items.biblionumber = ?
1237                     AND biblioitems.biblioitemnumber = items.biblioitemnumber
1238                     AND biblioitems.itemtype = itemtypes.itemtype
1239                     AND biblio.biblionumber = items.biblionumber";
1240   if ($type ne 'intra'){
1241     $query .= " and ((items.itemlost<>1 and items.itemlost <> 2)
1242     or items.itemlost is NULL)
1243     and (wthdrawn <> 1 or wthdrawn is NULL)";
1244   }
1245   $query .= " order by items.dateaccessioned desc";
1246     #warn $query;
1247   my $sth=$dbh->prepare($query);
1248   $sth->execute($biblionumber);
1249   my $i=0;
1250   my @results;
1251 #  print $query;
1252   while (my $data=$sth->fetchrow_hashref){
1253     my $iquery = "Select * from issues
1254     where itemnumber = '$data->{'itemnumber'}'
1255     and returndate is null";
1256     my $datedue = '';
1257     my $isth=$dbh->prepare($iquery);
1258     $isth->execute;
1259     if (my $idata=$isth->fetchrow_hashref){
1260       # FIXME - The date ought to be properly parsed, and printed
1261       # according to local convention.
1262       my @temp=split('-',$idata->{'date_due'});
1263       $datedue = "$temp[2]/$temp[1]/$temp[0]";
1264     }
1265     if ($data->{'itemlost'} eq '2'){
1266         $datedue='Very Overdue';
1267     }
1268     if ($data->{'itemlost'} eq '1'){
1269         $datedue='Lost';
1270     }
1271     if ($data->{'wthdrawn'} eq '1'){
1272         $datedue="Cancelled";
1273     }
1274     if ($datedue eq ''){
1275         $datedue="Available";
1276         my ($restype,$reserves)=CheckReserves($data->{'itemnumber'});
1277         if ($restype){
1278             $datedue=$restype;
1279         }
1280     }
1281     $isth->finish;
1282 #get branch information.....
1283     my $bquery = "SELECT * FROM branches
1284                           WHERE branchcode = '$data->{'holdingbranch'}'";
1285     my $bsth=$dbh->prepare($bquery);
1286     $bsth->execute;
1287     if (my $bdata=$bsth->fetchrow_hashref){
1288         $data->{'branchname'} = $bdata->{'branchname'};
1289     }
1290
1291     my $class = $data->{'classification'};
1292     my $dewey = $data->{'dewey'};
1293     $dewey =~ s/0+$//;
1294     if ($dewey eq "000.") { $dewey = "";};      # FIXME - "000" is general
1295                                                 # books about computer science
1296     if ($dewey < 10){$dewey='00'.$dewey;}
1297     if ($dewey < 100 && $dewey > 10){$dewey='0'.$dewey;}
1298     if ($dewey <= 0){
1299       $dewey='';
1300     }
1301     $dewey=~ s/\.$//;
1302     $class .= $dewey;
1303     if ($dewey ne ''){
1304       $class .= $data->{'subclass'};
1305     }
1306  #   $results[$i]="$data->{'title'}\t$data->{'barcode'}\t$datedue\t$data->{'branchname'}\t$data->{'dewey'}";
1307     # FIXME - If $data->{'datelastseen'} is NULL, perhaps it'd be prettier
1308     # to leave it empty, rather than convert it to "//".
1309     # Also ideally this should use the local format for displaying dates.
1310     my @temp=split('-',$data->{'datelastseen'});
1311     my $date="$temp[2]/$temp[1]/$temp[0]";
1312     $data->{'datelastseen'}=$date;
1313     $data->{'datedue'}=$datedue;
1314     $data->{'class'}=$class;
1315     $results[$i]=$data;
1316     $i++;
1317   }
1318  $sth->finish;
1319   my $query2="Select * from aqorders where biblionumber=$biblionumber";
1320   my $sth2=$dbh->prepare($query2);
1321   $sth2->execute;
1322   my $data;
1323   my $ocount;
1324   if ($data=$sth2->fetchrow_hashref){
1325     $ocount=$data->{'quantity'} - $data->{'quantityreceived'};
1326     if ($ocount > 0){
1327       $data->{'ocount'}=$ocount;
1328       $data->{'order'}="One Order";
1329       $results[$i]=$data;
1330     }
1331   }
1332   $sth2->finish;
1333
1334   return(@results);
1335 }
1336
1337 =item GetItems
1338
1339   @results = &GetItems($env, $biblionumber);
1340
1341 Returns information about books with the given biblionumber.
1342
1343 C<$env> is ignored.
1344
1345 C<&GetItems> returns an array of strings. Each element is a
1346 tab-separated list of values: biblioitemnumber, itemtype,
1347 classification, Dewey number, subclass, ISBN, volume, number, and
1348 itemdata.
1349
1350 Itemdata, in turn, is a string of the form
1351 "I<barcode>C<[>I<holdingbranch>C<[>I<flags>" where I<flags> contains
1352 the string C<NFL> if the item is not for loan, and C<LOST> if the item
1353 is lost.
1354
1355 =cut
1356 #'
1357 sub GetItems {
1358    my ($env,$biblionumber)=@_;
1359    #debug_msg($env,"GetItems");
1360    my $dbh = C4::Context->dbh;
1361    my $query = "Select * from biblioitems where (biblionumber = $biblionumber)";
1362    #debug_msg($env,$query);
1363    my $sth=$dbh->prepare($query);
1364    $sth->execute;
1365    #debug_msg($env,"executed query");
1366    my $i=0;
1367    my @results;
1368    while (my $data=$sth->fetchrow_hashref) {
1369       #debug_msg($env,$data->{'biblioitemnumber'});
1370       my $dewey = $data->{'dewey'};
1371       $dewey =~ s/0+$//;
1372       my $line = $data->{'biblioitemnumber'}."\t".$data->{'itemtype'};
1373       $line .= "\t$data->{'classification'}\t$dewey";
1374       $line .= "\t$data->{'subclass'}\t$data->{isbn}";
1375       $line .= "\t$data->{'volume'}\t$data->{number}";
1376       my $isth= $dbh->prepare("select * from items where biblioitemnumber = $data->{'biblioitemnumber'}");
1377       $isth->execute;
1378       while (my $idata = $isth->fetchrow_hashref) {
1379         my $iline = $idata->{'barcode'}."[".$idata->{'holdingbranch'}."[";
1380         if ($idata->{'notforloan'} == 1) {
1381           $iline .= "NFL ";
1382         }
1383         if ($idata->{'itemlost'} == 1) {
1384           $iline .= "LOST ";
1385         }
1386         $line .= "\t$iline";
1387       }
1388       $isth->finish;
1389       $results[$i] = $line;
1390       $i++;
1391    }
1392    $sth->finish;
1393    return(@results);
1394 }
1395
1396 =item itemdata
1397
1398   $item = &itemdata($barcode);
1399
1400 Looks up the item with the given barcode, and returns a
1401 reference-to-hash containing information about that item. The keys of
1402 the hash are the fields from the C<items> and C<biblioitems> tables in
1403 the Koha database.
1404
1405 =cut
1406 #'
1407 sub itemdata {
1408   my ($barcode)=@_;
1409   my $dbh = C4::Context->dbh;
1410   my $query="Select * from items,biblioitems where barcode='$barcode'
1411   and items.biblioitemnumber=biblioitems.biblioitemnumber";
1412 #  print $query;
1413   my $sth=$dbh->prepare($query);
1414   $sth->execute;
1415   my $data=$sth->fetchrow_hashref;
1416   $sth->finish;
1417   return($data);
1418 }
1419
1420 =item bibdata
1421
1422   $data = &bibdata($biblionumber, $type);
1423
1424 Returns information about the book with the given biblionumber.
1425
1426 C<$type> is ignored.
1427
1428 C<&bibdata> returns a reference-to-hash. The keys are the fields in
1429 the C<biblio>, C<biblioitems>, and C<bibliosubtitle> tables in the
1430 Koha database.
1431
1432 In addition, C<$data-E<gt>{subject}> is the list of the book's
1433 subjects, separated by C<" , "> (space, comma, space).
1434
1435 If there are multiple biblioitems with the given biblionumber, only
1436 the first one is considered.
1437
1438 =cut
1439 #'
1440 sub bibdata {
1441     my ($bibnum, $type) = @_;
1442     my $dbh   = C4::Context->dbh;
1443     my $query = "Select *, biblio.notes
1444     from biblio, biblioitems
1445     left join bibliosubtitle on
1446     biblio.biblionumber = bibliosubtitle.biblionumber
1447     where biblio.biblionumber = $bibnum
1448     and biblioitems.biblionumber = $bibnum";
1449     my $sth   = $dbh->prepare($query);
1450     my $data;
1451
1452     $sth->execute;
1453     $data  = $sth->fetchrow_hashref;
1454     $sth->finish;
1455
1456     $query = "Select * from bibliosubject where biblionumber = '$bibnum'";
1457     $sth   = $dbh->prepare($query);
1458     $sth->execute;
1459     while (my $dat = $sth->fetchrow_hashref){
1460         $data->{'subject'} .= " , $dat->{'subject'}";
1461     } # while
1462
1463     $sth->finish;
1464     return($data);
1465 } # sub bibdata
1466
1467 =item bibitemdata
1468
1469   $itemdata = &bibitemdata($biblioitemnumber);
1470
1471 Looks up the biblioitem with the given biblioitemnumber. Returns a
1472 reference-to-hash. The keys are the fields from the C<biblio>,
1473 C<biblioitems>, and C<itemtypes> tables in the Koha database, except
1474 that C<biblioitems.notes> is given as C<$itemdata-E<gt>{bnotes}>.
1475
1476 =cut
1477 #'
1478 sub bibitemdata {
1479     my ($bibitem) = @_;
1480     my $dbh   = C4::Context->dbh;
1481     my $query = "Select *,biblioitems.notes as bnotes from biblio, biblioitems,itemtypes
1482 where biblio.biblionumber = biblioitems.biblionumber
1483 and biblioitemnumber = $bibitem
1484 and biblioitems.itemtype = itemtypes.itemtype";
1485     my $sth   = $dbh->prepare($query);
1486     my $data;
1487
1488     $sth->execute;
1489
1490     $data = $sth->fetchrow_hashref;
1491
1492     $sth->finish;
1493     return($data);
1494 } # sub bibitemdata
1495
1496 =item subject
1497
1498   ($count, $subjects) = &subject($biblionumber);
1499
1500 Looks up the subjects of the book with the given biblionumber. Returns
1501 a two-element list. C<$subjects> is a reference-to-array, where each
1502 element is a subject of the book, and C<$count> is the number of
1503 elements in C<$subjects>.
1504
1505 =cut
1506 #'
1507 sub subject {
1508   my ($bibnum)=@_;
1509   my $dbh = C4::Context->dbh;
1510   my $query="Select * from bibliosubject where biblionumber=$bibnum";
1511   my $sth=$dbh->prepare($query);
1512   $sth->execute;
1513   my @results;
1514   my $i=0;
1515   while (my $data=$sth->fetchrow_hashref){
1516     $results[$i]=$data;
1517     $i++;
1518   }
1519   $sth->finish;
1520   return($i,\@results);
1521 }
1522
1523 =item addauthor
1524
1525   ($count, $authors) = &addauthors($biblionumber);
1526
1527 Looks up the additional authors for the book with the given
1528 biblionumber.
1529
1530 Returns a two-element list. C<$authors> is a reference-to-array, where
1531 each element is an additional author, and C<$count> is the number of
1532 elements in C<$authors>.
1533
1534 =cut
1535 #'
1536 sub addauthor {
1537   my ($bibnum)=@_;
1538   my $dbh = C4::Context->dbh;
1539   my $query="Select * from additionalauthors where biblionumber=$bibnum";
1540   my $sth=$dbh->prepare($query);
1541   $sth->execute;
1542   my @results;
1543   my $i=0;
1544   while (my $data=$sth->fetchrow_hashref){
1545     $results[$i]=$data;
1546     $i++;
1547   }
1548   $sth->finish;
1549   return($i,\@results);
1550 }
1551
1552 =item subtitle
1553
1554   ($count, $subtitles) = &subtitle($biblionumber);
1555
1556 Looks up the subtitles for the book with the given biblionumber.
1557
1558 Returns a two-element list. C<$subtitles> is a reference-to-array,
1559 where each element is a subtitle, and C<$count> is the number of
1560 elements in C<$subtitles>.
1561
1562 =cut
1563 #'
1564 sub subtitle {
1565   my ($bibnum)=@_;
1566   my $dbh = C4::Context->dbh;
1567   my $query="Select * from bibliosubtitle where biblionumber=$bibnum";
1568   my $sth=$dbh->prepare($query);
1569   $sth->execute;
1570   my @results;
1571   my $i=0;
1572   while (my $data=$sth->fetchrow_hashref){
1573     $results[$i]=$data;
1574     $i++;
1575   }
1576   $sth->finish;
1577   return($i,\@results);
1578 }
1579
1580 =item itemissues
1581
1582   @issues = &itemissues($biblioitemnumber, $biblio);
1583
1584 Looks up information about who has borrowed the bookZ<>(s) with the
1585 given biblioitemnumber.
1586
1587 C<$biblio> is ignored.
1588
1589 C<&itemissues> returns an array of references-to-hash. The keys
1590 include the fields from the C<items> table in the Koha database.
1591 Additional keys include:
1592
1593 =over 4
1594
1595 =item C<date_due>
1596
1597 If the item is currently on loan, this gives the due date.
1598
1599 If the item is not on loan, then this is either "Available" or
1600 "Cancelled", if the item has been withdrawn.
1601
1602 =item C<card>
1603
1604 If the item is currently on loan, this gives the card number of the
1605 patron who currently has the item.
1606
1607 =item C<timestamp0>, C<timestamp1>, C<timestamp2>
1608
1609 These give the timestamp for the last three times the item was
1610 borrowed.
1611
1612 =item C<card0>, C<card1>, C<card2>
1613
1614 The card number of the last three patrons who borrowed this item.
1615
1616 =item C<borrower0>, C<borrower1>, C<borrower2>
1617
1618 The borrower number of the last three patrons who borrowed this item.
1619
1620 =back
1621
1622 =cut
1623 #'
1624 sub itemissues {
1625     my ($bibitem, $biblio)=@_;
1626     my $dbh   = C4::Context->dbh;
1627     my $query = "Select * from items where
1628 items.biblioitemnumber = '$bibitem'";
1629     # FIXME - If this function die()s, the script will abort, and the
1630     # user won't get anything; depending on how far the script has
1631     # gotten, the user might get a blank page. It would be much better
1632     # to at least print an error message. The easiest way to do this
1633     # is to set $SIG{__DIE__}.
1634     my $sth   = $dbh->prepare($query)
1635       || die $dbh->errstr;
1636     my $i     = 0;
1637     my @results;
1638
1639     $sth->execute
1640       || die $sth->errstr;
1641
1642     while (my $data = $sth->fetchrow_hashref) {
1643         # Find out who currently has this item.
1644         # FIXME - Wouldn't it be better to do this as a left join of
1645         # some sort? Currently, this code assumes that if
1646         # fetchrow_hashref() fails, then the book is on the shelf.
1647         # fetchrow_hashref() can fail for any number of reasons (e.g.,
1648         # database server crash), not just because no items match the
1649         # search criteria.
1650         my $query2 = "select * from issues,borrowers
1651 where itemnumber = $data->{'itemnumber'}
1652 and returndate is NULL
1653 and issues.borrowernumber = borrowers.borrowernumber";
1654         my $sth2   = $dbh->prepare($query2);
1655
1656         $sth2->execute;
1657         if (my $data2 = $sth2->fetchrow_hashref) {
1658             $data->{'date_due'} = $data2->{'date_due'};
1659             $data->{'card'}     = $data2->{'cardnumber'};
1660         } else {
1661             if ($data->{'wthdrawn'} eq '1') {
1662                 $data->{'date_due'} = 'Cancelled';
1663             } else {
1664                 $data->{'date_due'} = 'Available';
1665             } # else
1666         } # else
1667
1668         $sth2->finish;
1669
1670         # Find the last 3 people who borrowed this item.
1671         $query2 = "select * from issues, borrowers
1672                                                 where itemnumber = ?
1673                                                                         and issues.borrowernumber = borrowers.borrowernumber
1674                                                                         and returndate is not NULL
1675                                                                         order by returndate desc,timestamp desc";
1676 warn "$query2";
1677         $sth2 = $dbh->prepare($query2) || die $dbh->errstr;
1678         $sth2->execute($data->{'itemnumber'}) || die $sth2->errstr;
1679         for (my $i2 = 0; $i2 < 2; $i2++) { # FIXME : error if there is less than 3 pple borrowing this item
1680             if (my $data2 = $sth2->fetchrow_hashref) {
1681                 $data->{"timestamp$i2"} = $data2->{'timestamp'};
1682                 $data->{"card$i2"}      = $data2->{'cardnumber'};
1683                 $data->{"borrower$i2"}  = $data2->{'borrowernumber'};
1684             } # if
1685         } # for
1686
1687         $sth2->finish;
1688         $results[$i] = $data;
1689         $i++;
1690     }
1691
1692     $sth->finish;
1693     return(@results);
1694 }
1695
1696 =item itemnodata
1697
1698   $item = &itemnodata($env, $dbh, $biblioitemnumber);
1699
1700 Looks up the item with the given biblioitemnumber.
1701
1702 C<$env> and C<$dbh> are ignored.
1703
1704 C<&itemnodata> returns a reference-to-hash whose keys are the fields
1705 from the C<biblio>, C<biblioitems>, and C<items> tables in the Koha
1706 database.
1707
1708 =cut
1709 #'
1710 sub itemnodata {
1711   my ($env,$dbh,$itemnumber) = @_;
1712   $dbh = C4::Context->dbh;
1713   my $query="Select * from biblio,items,biblioitems
1714     where items.itemnumber = '$itemnumber'
1715     and biblio.biblionumber = items.biblionumber
1716     and biblioitems.biblioitemnumber = items.biblioitemnumber";
1717   my $sth=$dbh->prepare($query);
1718 #  print $query;
1719   $sth->execute;
1720   my $data=$sth->fetchrow_hashref;
1721   $sth->finish;
1722   return($data);
1723 }
1724
1725 =item BornameSearch
1726
1727   ($count, $borrowers) = &BornameSearch($env, $searchstring, $type);
1728
1729 Looks up patrons (borrowers) by name.
1730
1731 C<$env> and C<$type> are ignored.
1732
1733 C<$searchstring> is a space-separated list of search terms. Each term
1734 must match the beginning a borrower's surname, first name, or other
1735 name.
1736
1737 C<&BornameSearch> returns a two-element list. C<$borrowers> is a
1738 reference-to-array; each element is a reference-to-hash, whose keys
1739 are the fields of the C<borrowers> table in the Koha database.
1740 C<$count> is the number of elements in C<$borrowers>.
1741
1742 =cut
1743 #'
1744 #used by member enquiries from the intranet
1745 #called by member.pl
1746 sub BornameSearch  {
1747   my ($env,$searchstring,$type)=@_;
1748   my $dbh = C4::Context->dbh;
1749   $searchstring=~ s/\'/\\\'/g;
1750   my @data=split(' ',$searchstring);
1751   my $count=@data;
1752   my $query="Select * from borrowers
1753   where ((surname like \"$data[0]%\" or surname like \"% $data[0]%\"
1754   or firstname  like \"$data[0]%\" or firstname like \"% $data[0]%\"
1755   or othernames like \"$data[0]%\" or othernames like \"% $data[0]%\")
1756   ";
1757   for (my $i=1;$i<$count;$i++){
1758     $query=$query." and (surname like \"$data[$i]%\" or surname like \"% $data[$i]%\"
1759     or firstname  like \"$data[$i]%\" or firstname like \"% $data[$i]%\"
1760     or othernames like \"$data[$i]%\" or othernames like \"% $data[$i]%\")";
1761                         # FIXME - .= <<EOT;
1762   }
1763   $query=$query.") or cardnumber = \"$searchstring\"
1764   order by surname,firstname";
1765                         # FIXME - .= <<EOT;
1766 #  print $query,"\n";
1767   my $sth=$dbh->prepare($query);
1768   $sth->execute;
1769   my @results;
1770   my $cnt=0;
1771   while (my $data=$sth->fetchrow_hashref){
1772     push(@results,$data);
1773     $cnt ++;
1774   }
1775 #  $sth->execute;
1776   $sth->finish;
1777   return ($cnt,\@results);
1778 }
1779
1780 =item borrdata
1781
1782   $borrower = &borrdata($cardnumber, $borrowernumber);
1783
1784 Looks up information about a patron (borrower) by either card number
1785 or borrower number. If $borrowernumber is specified, C<&borrdata>
1786 searches by borrower number; otherwise, it searches by card number.
1787
1788 C<&borrdata> returns a reference-to-hash whose keys are the fields of
1789 the C<borrowers> table in the Koha database.
1790
1791 =cut
1792 #'
1793 sub borrdata {
1794   my ($cardnumber,$bornum)=@_;
1795   $cardnumber = uc $cardnumber;
1796   my $dbh = C4::Context->dbh;
1797   my $query;
1798   if ($bornum eq ''){
1799     $query="Select * from borrowers where cardnumber='$cardnumber'";
1800   } else {
1801       $query="Select * from borrowers where borrowernumber='$bornum'";
1802   }
1803   #print $query;
1804   my $sth=$dbh->prepare($query);
1805   $sth->execute;
1806   my $data=$sth->fetchrow_hashref;
1807   $sth->finish;
1808   return($data);
1809 }
1810
1811 =item borrissues
1812
1813   ($count, $issues) = &borrissues($borrowernumber);
1814
1815 Looks up what the patron with the given borrowernumber has borrowed.
1816
1817 C<&borrissues> returns a two-element array. C<$issues> is a
1818 reference-to-array, where each element is a reference-to-hash; the
1819 keys are the fields from the C<issues>, C<biblio>, and C<items> tables
1820 in the Koha database. C<$count> is the number of elements in
1821 C<$issues>.
1822
1823 =cut
1824 #'
1825 sub borrissues {
1826   my ($bornum)=@_;
1827   my $dbh = C4::Context->dbh;
1828   my $query;
1829   $query="Select * from issues,biblio,items where borrowernumber='$bornum' and
1830 items.itemnumber=issues.itemnumber and
1831 items.biblionumber=biblio.biblionumber and issues.returndate is NULL order
1832 by date_due";
1833   #print $query;
1834   my $sth=$dbh->prepare($query);
1835     $sth->execute;
1836   my @result;
1837   while (my $data = $sth->fetchrow_hashref) {
1838     push @result, $data;
1839   }
1840   $sth->finish;
1841   return(scalar(@result), \@result);
1842 }
1843
1844 =item allissues
1845
1846   ($count, $issues) = &allissues($borrowernumber, $sortkey, $limit);
1847
1848 Looks up what the patron with the given borrowernumber has borrowed,
1849 and sorts the results.
1850
1851 C<$sortkey> is the name of a field on which to sort the results. This
1852 should be the name of a field in the C<issues>, C<biblio>,
1853 C<biblioitems>, or C<items> table in the Koha database.
1854
1855 C<$limit> is the maximum number of results to return.
1856
1857 C<&allissues> returns a two-element array. C<$issues> is a
1858 reference-to-array, where each element is a reference-to-hash; the
1859 keys are the fields from the C<issues>, C<biblio>, C<biblioitems>, and
1860 C<items> tables of the Koha database. C<$count> is the number of
1861 elements in C<$issues>
1862
1863 =cut
1864 #'
1865 sub allissues {
1866   my ($bornum,$order,$limit)=@_;
1867   my $dbh = C4::Context->dbh;
1868   my $query;
1869   $query="Select * from issues,biblio,items,biblioitems
1870   where borrowernumber='$bornum' and
1871   items.biblioitemnumber=biblioitems.biblioitemnumber and
1872   items.itemnumber=issues.itemnumber and
1873   items.biblionumber=biblio.biblionumber";
1874   $query.=" order by $order";
1875   if ($limit !=0){
1876     $query.=" limit $limit";
1877   }
1878   #print $query;
1879   my $sth=$dbh->prepare($query);
1880   $sth->execute;
1881   my @result;
1882   my $i=0;
1883   while (my $data=$sth->fetchrow_hashref){
1884     $result[$i]=$data;;
1885     $i++;
1886   }
1887   $sth->finish;
1888   return($i,\@result);
1889 }
1890
1891 =item borrdata2
1892
1893   ($borrowed, $due, $fine) = &borrdata2($env, $borrowernumber);
1894
1895 Returns aggregate data about items borrowed by the patron with the
1896 given borrowernumber.
1897
1898 C<$env> is ignored.
1899
1900 C<&borrdata2> returns a three-element array. C<$borrowed> is the
1901 number of books the patron currently has borrowed. C<$due> is the
1902 number of overdue items the patron currently has borrowed. C<$fine> is
1903 the total fine currently due by the borrower.
1904
1905 =cut
1906 #'
1907 sub borrdata2 {
1908   my ($env,$bornum)=@_;
1909   my $dbh = C4::Context->dbh;
1910   my $query="Select count(*) from issues where borrowernumber='$bornum' and
1911     returndate is NULL";
1912     # print $query;
1913   my $sth=$dbh->prepare($query);
1914   $sth->execute;
1915   my $data=$sth->fetchrow_hashref;
1916   $sth->finish;
1917   $sth=$dbh->prepare("Select count(*) from issues where
1918     borrowernumber='$bornum' and date_due < now() and returndate is NULL");
1919   $sth->execute;
1920   my $data2=$sth->fetchrow_hashref;
1921   $sth->finish;
1922   $sth=$dbh->prepare("Select sum(amountoutstanding) from accountlines where
1923     borrowernumber='$bornum'");
1924   $sth->execute;
1925   my $data3=$sth->fetchrow_hashref;
1926   $sth->finish;
1927
1928 return($data2->{'count(*)'},$data->{'count(*)'},$data3->{'sum(amountoutstanding)'});
1929 }
1930
1931 =item getboracctrecord
1932
1933   ($count, $acctlines, $total) = &getboracctrecord($env, $borrowernumber);
1934
1935 Looks up accounting data for the patron with the given borrowernumber.
1936
1937 C<$env> is ignored.
1938
1939 (FIXME - I'm not at all sure what this is about.)
1940
1941 C<&getboracctrecord> returns a three-element array. C<$acctlines> is a
1942 reference-to-array, where each element is a reference-to-hash; the
1943 keys are the fields of the C<accountlines> table in the Koha database.
1944 C<$count> is the number of elements in C<$acctlines>. C<$total> is the
1945 total amount outstanding for all of the account lines.
1946
1947 =cut
1948 #'
1949 sub getboracctrecord {
1950    my ($env,$params) = @_;
1951    my $dbh = C4::Context->dbh;
1952    my @acctlines;
1953    my $numlines=0;
1954    my $query= "Select * from accountlines where
1955 borrowernumber=? order by date desc,timestamp desc";
1956    my $sth=$dbh->prepare($query);
1957 #   print $query;
1958    $sth->execute($params->{'borrowernumber'});
1959    my $total=0;
1960    while (my $data=$sth->fetchrow_hashref){
1961 #      if ($data->{'itemnumber'} ne ''){
1962 #        $query="Select * from items,biblio where items.itemnumber=
1963 #       '$data->{'itemnumber'}' and biblio.biblionumber=items.biblionumber";
1964 #       my $sth2=$dbh->prepare($query);
1965 #       $sth2->execute;
1966 #       my $data2=$sth2->fetchrow_hashref;
1967 #       $sth2->finish;
1968 #       $data=$data2;
1969  #     }
1970       $acctlines[$numlines] = $data;
1971       $numlines++;
1972       $total += $data->{'amountoutstanding'};
1973    }
1974    $sth->finish;
1975    return ($numlines,\@acctlines,$total);
1976 }
1977
1978 =item itemcount
1979
1980   ($count, $lcount, $nacount, $fcount, $scount, $lostcount,
1981   $mending, $transit,$ocount) =
1982     &itemcount($env, $biblionumber, $type);
1983
1984 Counts the number of items with the given biblionumber, broken down by
1985 category.
1986
1987 C<$env> is ignored.
1988
1989 If C<$type> is not set to C<intra>, lost, very overdue, and withdrawn
1990 items will not be counted.
1991
1992 C<&itemcount> returns a nine-element list:
1993
1994 C<$count> is the total number of items with the given biblionumber.
1995
1996 C<$lcount> is the number of items at the Levin branch.
1997
1998 C<$nacount> is the number of items that are neither borrowed, lost,
1999 nor withdrawn (and are therefore presumably on a shelf somewhere).
2000
2001 C<$fcount> is the number of items at the Foxton branch.
2002
2003 C<$scount> is the number of items at the Shannon branch.
2004
2005 C<$lostcount> is the number of lost and very overdue items.
2006
2007 C<$mending> is the number of items at the Mending branch (being
2008 mended?).
2009
2010 C<$transit> is the number of items at the Transit branch (in transit
2011 between branches?).
2012
2013 C<$ocount> is the number of items that haven't arrived yet
2014 (aqorders.quantity - aqorders.quantityreceived).
2015
2016 =cut
2017 #'
2018
2019 # FIXME - There's also a &C4::Biblio::itemcount.
2020 # Since they're all exported, acqui/acquire.pl doesn't compile with -w.
2021 sub itemcount {
2022   my ($env,$bibnum,$type)=@_;
2023   my $dbh = C4::Context->dbh;
2024   my $query="Select * from items where
2025   biblionumber=$bibnum ";
2026   if ($type ne 'intra'){
2027     $query.=" and ((itemlost <>1 and itemlost <> 2) or itemlost is NULL) and
2028     (wthdrawn <> 1 or wthdrawn is NULL)";
2029   }
2030   my $sth=$dbh->prepare($query);
2031   #  print $query;
2032   $sth->execute;
2033   my $count=0;
2034   my $lcount=0;
2035   my $nacount=0;
2036   my $fcount=0;
2037   my $scount=0;
2038   my $lostcount=0;
2039   my $mending=0;
2040   my $transit=0;
2041   my $ocount=0;
2042   while (my $data=$sth->fetchrow_hashref){
2043     $count++;
2044     my $query2="select * from issues,items where issues.itemnumber=
2045     '$data->{'itemnumber'}' and returndate is NULL
2046     and items.itemnumber=issues.itemnumber and ((items.itemlost <>1 and
2047     items.itemlost <> 2) or items.itemlost is NULL)
2048     and (wthdrawn <> 1 or wthdrawn is NULL)";
2049
2050     my $sth2=$dbh->prepare($query2);
2051     $sth2->execute;
2052     if (my $data2=$sth2->fetchrow_hashref){
2053        $nacount++;
2054     } else {
2055       if ($data->{'holdingbranch'} eq 'C' || $data->{'holdingbranch'} eq 'LT'){
2056         $lcount++;
2057       }
2058       if ($data->{'holdingbranch'} eq 'F' || $data->{'holdingbranch'} eq 'FP'){
2059         $fcount++;
2060       }
2061       if ($data->{'holdingbranch'} eq 'S' || $data->{'holdingbranch'} eq 'SP'){
2062         $scount++;
2063       }
2064       if ($data->{'itemlost'} eq '1'){
2065         $lostcount++;
2066       }
2067       if ($data->{'itemlost'} eq '2'){
2068         $lostcount++;
2069       }
2070       if ($data->{'holdingbranch'} eq 'FM'){
2071         $mending++;
2072       }
2073       if ($data->{'holdingbranch'} eq 'TR'){
2074         $transit++;
2075       }
2076     }
2077     $sth2->finish;
2078   }
2079 #  if ($count == 0){
2080     my $query2="Select * from aqorders where biblionumber=$bibnum";
2081     my $sth2=$dbh->prepare($query2);
2082     $sth2->execute;
2083     if (my $data=$sth2->fetchrow_hashref){
2084       $ocount=$data->{'quantity'} - $data->{'quantityreceived'};
2085     }
2086 #    $count+=$ocount;
2087     $sth2->finish;
2088   $sth->finish;
2089   return ($count,$lcount,$nacount,$fcount,$scount,$lostcount,$mending,$transit,$ocount);
2090 }
2091
2092 =item itemcount2
2093
2094   $counts = &itemcount2($env, $biblionumber, $type);
2095
2096 Counts the number of items with the given biblionumber, broken down by
2097 category.
2098
2099 C<$env> is ignored.
2100
2101 C<$type> may be either C<intra> or anything else. If it is not set to
2102 C<intra>, then the search will exclude lost, very overdue, and
2103 withdrawn items.
2104
2105 C<$&itemcount2> returns a reference-to-hash, with the following fields:
2106
2107 =over 4
2108
2109 =item C<total>
2110
2111 The total number of items with this biblionumber.
2112
2113 =item C<order>
2114
2115 The number of items on order (aqorders.quantity -
2116 aqorders.quantityreceived).
2117
2118 =item I<branchname>
2119
2120 For each branch that has at least one copy of the book, C<$counts>
2121 will have a key with the branch name, giving the number of copies at
2122 that branch.
2123
2124 =back
2125
2126 =cut
2127 #'
2128 sub itemcount2 {
2129   my ($env,$bibnum,$type)=@_;
2130   my $dbh = C4::Context->dbh;
2131   my $query="Select * from items,branches where
2132   biblionumber=$bibnum and items.holdingbranch=branches.branchcode";
2133   if ($type ne 'intra'){
2134     $query.=" and ((itemlost <>1 and itemlost <> 2) or itemlost is NULL) and
2135     (wthdrawn <> 1 or wthdrawn is NULL)";
2136   }
2137   my $sth=$dbh->prepare($query);
2138   #  print $query;
2139   $sth->execute;
2140   my %counts;
2141   $counts{'total'}=0;
2142   while (my $data=$sth->fetchrow_hashref){
2143     $counts{'total'}++;
2144
2145     my $status;
2146     for my $test (
2147       [
2148         'Item Lost',
2149         'select * from items
2150           where itemnumber=?
2151             and not ((items.itemlost <>1 and items.itemlost <> 2)
2152                       or items.itemlost is NULL)'
2153       ], [
2154         'Withdrawn',
2155         'select * from items
2156           where itemnumber=? and not (wthdrawn <> 1 or wthdrawn is NULL)'
2157       ], [
2158         'On Loan', "select * from issues,items
2159           where issues.itemnumber=? and returndate is NULL
2160             and items.itemnumber=issues.itemnumber"
2161       ],
2162     ) {
2163         my($testlabel, $query2) = @$test;
2164
2165         my $sth2=$dbh->prepare($query2);
2166         $sth2->execute($data->{'itemnumber'});
2167
2168         # FIXME - fetchrow_hashref() can fail for any number of reasons
2169         # (e.g., a database server crash). Perhaps use a left join of some
2170         # sort for this?
2171         $status = $testlabel if $sth2->fetchrow_hashref;
2172         $sth2->finish;
2173     last if defined $status;
2174     }
2175     $status = $data->{'branchname'} unless defined $status;
2176     $counts{$status}++;
2177   }
2178   my $query2="Select * from aqorders where biblionumber=$bibnum and
2179   datecancellationprinted is NULL and quantity > quantityreceived";
2180   my $sth2=$dbh->prepare($query2);
2181   $sth2->execute;
2182   if (my $data=$sth2->fetchrow_hashref){
2183       $counts{'order'}=$data->{'quantity'} - $data->{'quantityreceived'};
2184   }
2185   $sth2->finish;
2186   $sth->finish;
2187   return (\%counts);
2188 }
2189
2190 =item ItemType
2191
2192   $description = &ItemType($itemtype);
2193
2194 Given an item type code, returns the description for that type.
2195
2196 =cut
2197 #'
2198
2199 # FIXME - I'm pretty sure that after the initial setup, the list of
2200 # item types doesn't change very often. Hence, it seems slow and
2201 # inefficient to make yet another database call to look up information
2202 # that'll only change every few months or years.
2203 #
2204 # Much better, I think, to automatically build a Perl file that can be
2205 # included in those scripts that require it, e.g.:
2206 #       @itemtypes = qw( ART BCD CAS CD F ... );
2207 #       %itemtypedesc = (
2208 #               ART     => "Art Prints",
2209 #               BCD     => "CD-ROM from book",
2210 #               CD      => "Compact disc (WN)",
2211 #               F       => "Free Fiction",
2212 #               ...
2213 #       );
2214 # The web server can then run a cron job to rebuild this file from the
2215 # database every hour or so.
2216 #
2217 # The same thing goes for branches, book funds, book sellers, currency
2218 # rates, printers, stopwords, and perhaps others.
2219 sub ItemType {
2220   my ($type)=@_;
2221   my $dbh = C4::Context->dbh;
2222   my $query="select description from itemtypes where itemtype='$type'";
2223   my $sth=$dbh->prepare($query);
2224   $sth->execute;
2225   my $dat=$sth->fetchrow_hashref;
2226   $sth->finish;
2227   return ($dat->{'description'});
2228 }
2229
2230 =item bibitems
2231
2232   ($count, @results) = &bibitems($biblionumber);
2233
2234 Given the biblionumber for a book, C<&bibitems> looks up that book's
2235 biblioitems (different publications of the same book, the audio book
2236 and film versions, etc.).
2237
2238 C<$count> is the number of elements in C<@results>.
2239
2240 C<@results> is an array of references-to-hash; the keys are the fields
2241 of the C<biblioitems> and C<itemtypes> tables of the Koha database. In
2242 addition, C<itemlost> indicates the availability of the item: if it is
2243 "2", then all copies of the item are long overdue; if it is "1", then
2244 all copies are lost; otherwise, there is at least one copy available.
2245
2246 =cut
2247 #'
2248 sub bibitems {
2249     my ($bibnum) = @_;
2250     my $dbh   = C4::Context->dbh;
2251     my $query = "SELECT biblioitems.*,
2252                         itemtypes.*,
2253                         MIN(items.itemlost)        as itemlost,
2254                         MIN(items.dateaccessioned) as dateaccessioned
2255                           FROM biblioitems, itemtypes, items
2256                          WHERE biblioitems.biblionumber     = ?
2257                            AND biblioitems.itemtype         = itemtypes.itemtype
2258                            AND biblioitems.biblioitemnumber = items.biblioitemnumber
2259                       GROUP BY items.biblioitemnumber";
2260     my $sth   = $dbh->prepare($query);
2261     my $count = 0;
2262     my @results;
2263     $sth->execute($bibnum);
2264     while (my $data = $sth->fetchrow_hashref) {
2265         $results[$count] = $data;
2266         $count++;
2267     } # while
2268     $sth->finish;
2269     return($count, @results);
2270 } # sub bibitems
2271
2272 =item barcodes
2273
2274   @barcodes = &barcodes($biblioitemnumber);
2275
2276 Given a biblioitemnumber, looks up the corresponding items.
2277
2278 Returns an array of references-to-hash; the keys are C<barcode> and
2279 C<itemlost>.
2280
2281 The returned items include very overdue items, but not lost ones.
2282
2283 =cut
2284 #'
2285 sub barcodes{
2286     #called from request.pl
2287     my ($biblioitemnumber)=@_;
2288     my $dbh = C4::Context->dbh;
2289     my $query="SELECT barcode, itemlost, holdingbranch FROM items
2290                            WHERE biblioitemnumber = ?
2291                              AND (wthdrawn <> 1 OR wthdrawn IS NULL)";
2292     my $sth=$dbh->prepare($query);
2293     $sth->execute($biblioitemnumber);
2294     my @barcodes;
2295     my $i=0;
2296     while (my $data=$sth->fetchrow_hashref){
2297         $barcodes[$i]=$data;
2298         $i++;
2299     }
2300     $sth->finish;
2301     return(@barcodes);
2302 }
2303
2304 =item getwebsites
2305
2306   ($count, @websites) = &getwebsites($biblionumber);
2307
2308 Looks up the web sites pertaining to the book with the given
2309 biblionumber.
2310
2311 C<$count> is the number of elements in C<@websites>.
2312
2313 C<@websites> is an array of references-to-hash; the keys are the
2314 fields from the C<websites> table in the Koha database.
2315
2316 =cut
2317 #'
2318 sub getwebsites {
2319     my ($biblionumber) = @_;
2320     my $dbh   = C4::Context->dbh;
2321     my $query = "Select * from websites where biblionumber = $biblionumber";
2322     my $sth   = $dbh->prepare($query);
2323     my $count = 0;
2324     my @results;
2325
2326     $sth->execute;
2327     while (my $data = $sth->fetchrow_hashref) {
2328         # FIXME - The URL scheme shouldn't be stripped off, at least
2329         # not here, since it's part of the URL, and will be useful in
2330         # constructing a link to the site. If you don't want the user
2331         # to see the "http://" part, strip that off when building the
2332         # HTML code.
2333         $data->{'url'} =~ s/^http:\/\///;       # FIXME - Leaning toothpick
2334                                                 # syndrome
2335         $results[$count] = $data;
2336         $count++;
2337     } # while
2338
2339     $sth->finish;
2340     return($count, @results);
2341 } # sub getwebsites
2342
2343 =item getwebbiblioitems
2344
2345   ($count, @results) = &getwebbiblioitems($biblionumber);
2346
2347 Given a book's biblionumber, looks up the web versions of the book
2348 (biblioitems with itemtype C<WEB>).
2349
2350 C<$count> is the number of items in C<@results>. C<@results> is an
2351 array of references-to-hash; the keys are the items from the
2352 C<biblioitems> table of the Koha database.
2353
2354 =cut
2355 #'
2356 sub getwebbiblioitems {
2357     my ($biblionumber) = @_;
2358     my $dbh   = C4::Context->dbh;
2359     my $query = "Select * from biblioitems where biblionumber = $biblionumber
2360 and itemtype = 'WEB'";
2361     my $sth   = $dbh->prepare($query);
2362     my $count = 0;
2363     my @results;
2364
2365     $sth->execute;
2366     while (my $data = $sth->fetchrow_hashref) {
2367         $data->{'url'} =~ s/^http:\/\///;
2368         $results[$count] = $data;
2369         $count++;
2370     } # while
2371
2372     $sth->finish;
2373     return($count, @results);
2374 } # sub getwebbiblioitems
2375
2376
2377 =item breedingsearch
2378
2379   ($count, @results) = &breedingsearch($title);
2380
2381 C<$count> is the number of items in C<@results>. C<@results> is an
2382 array of references-to-hash; the keys are the items from the
2383 C<marc_breeding> table of the Koha database.
2384
2385 =cut
2386
2387 sub breedingsearch {
2388         my ($title,$isbn) = @_;
2389         my $dbh   = C4::Context->dbh;
2390         my $count = 0;
2391         my $query;
2392         my $sth;
2393         my @results;
2394
2395         $query = "Select id,file,isbn,title,author from marc_breeding where ";
2396         if ($title) {
2397                 $query .= "title like \"$title%\"";
2398         }
2399         if ($title && $isbn) {
2400                 $query .= " and ";
2401         }
2402         if ($isbn) {
2403                 $query .= "isbn like \"$isbn%\"";
2404         }
2405         $sth   = $dbh->prepare($query);
2406         $sth->execute;
2407         while (my $data = $sth->fetchrow_hashref) {
2408                         $results[$count] = $data;
2409                         $count++;
2410         } # while
2411
2412         $sth->finish;
2413         return($count, @results);
2414 } # sub breedingsearch
2415
2416 =item isbnsearch
2417
2418   ($count, @results) = &isbnsearch($isbn,$title);
2419
2420 Given an isbn and/or a title, returns the biblios having it.
2421 Used in acqui.simple, isbnsearch.pl only
2422
2423 C<$count> is the number of items in C<@results>. C<@results> is an
2424 array of references-to-hash; the keys are the items from the
2425 C<biblioitems> table of the Koha database.
2426
2427 =cut
2428
2429 sub isbnsearch {
2430     my ($isbn,$title) = @_;
2431     my $dbh   = C4::Context->dbh;
2432     my $count = 0;
2433     my $query;
2434     my $sth;
2435     my @results;
2436
2437     $query = "Select distinct biblio.* from biblio, biblioitems where
2438                                 biblio.biblionumber = biblioitems.biblionumber";
2439         if ($isbn) {
2440                 $query .= " and isbn=".$dbh->quote($isbn);
2441         }
2442         if ($title) {
2443                 $query .= " and title like ".$dbh->quote($title."%");
2444         }
2445         warn $query;
2446     $sth   = $dbh->prepare($query);
2447
2448     $sth->execute;
2449     while (my $data = $sth->fetchrow_hashref) {
2450         $results[$count] = $data;
2451         $count++;
2452     } # while
2453
2454     $sth->finish;
2455     return($count, @results);
2456 } # sub isbnsearch
2457
2458 END { }       # module clean-up code here (global destructor)
2459
2460 1;
2461 __END__
2462
2463 =back
2464
2465 =head1 AUTHOR
2466
2467 Koha Developement team <info@koha.org>
2468
2469 =cut