Merge remote branch 'kc/new/enh/bug_5917' into kcmaster
[koha.git] / cataloguing / ysearch.pl
1 #!/usr/bin/perl
2
3 # This software is placed under the gnu General Public License, v2 (http://www.gnu.org/licenses/gpl.html)
4
5 # Copyright 2007 Tamil s.a.r.l.
6 #
7 # This file is part of Koha.
8 #
9 # Koha is free software; you can redistribute it and/or modify it under the
10 # terms of the GNU General Public License as published by the Free Software
11 # Foundation; either version 2 of the License, or (at your option) any later
12 # version.
13 #
14 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
15 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
16 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License along
19 # with Koha; if not, write to the Free Software Foundation, Inc.,
20 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21
22 =head1 ysearch.pl
23
24
25 =cut
26
27 use strict;
28
29 #use warnings; FIXME - Bug 2505
30 use CGI;
31 use C4::Context;
32 use C4::Auth qw/check_cookie_auth/;
33
34 my $input = new CGI;
35 my $query = $input->param('query');
36 my $table = $input->param('table');
37 my $field = $input->param('field');
38
39 # Prevent from disclosing data
40 die() unless ($table eq "biblioitems"); 
41
42 binmode STDOUT, ":utf8";
43 print $input->header( -type => 'text/plain', -charset => 'UTF-8' );
44
45 my ( $auth_status, $sessionID ) = check_cookie_auth( $input->cookie('CGISESSID'), { cataloguing => '*' } );
46 if ( $auth_status ne "ok" ) {
47     exit 0;
48 }
49
50 my $dbh = C4::Context->dbh;
51 my $sql = qq(SELECT distinct $field 
52              FROM $table 
53              WHERE $field LIKE ? OR $field LIKE ? or $field LIKE ?);
54 $sql .= qq( ORDER BY $field);
55 my $sth = $dbh->prepare($sql);
56 $sth->execute("$query%", "% $query%", "%-$query%");
57
58 while ( my $rec = $sth->fetchrow_hashref ) {
59     print nsb_clean($rec->{$field}) . "\n";
60 }
61
62 sub nsb_clean {
63     my $NSB = '\x88' ;        # NSB : begin Non Sorting Block
64     my $NSE = '\x89' ;        # NSE : Non Sorting Block end
65     my $NSB2 = '\x98' ;        # NSB : begin Non Sorting Block
66     my $NSE2 = '\x9C' ;        # NSE : Non Sorting Block end
67     # handles non sorting blocks
68     my ($string) = @_ ;
69     $_ = $string ;
70     s/$NSB//g ;
71     s/$NSE//g ;
72     s/$NSB2//g ;
73     s/$NSE2//g ;
74     $string = $_ ;
75
76     return($string) ;
77 }
78