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