Merge remote-tracking branch 'origin/new/bug_7083'
[koha.git] / circ / 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 #use warnings; FIXME - Bug 2505
29 use CGI;
30 use C4::Context;
31 use C4::Members;
32 use C4::Auth qw/check_cookie_auth/;
33
34 my $input   = new CGI;
35 my $query   = $input->param('query');
36
37 binmode STDOUT, ":encoding(UTF-8)";
38 print $input->header(-type => 'text/plain', -charset => 'UTF-8');
39
40 my ($auth_status, $sessionID) = check_cookie_auth($input->cookie('CGISESSID'), { circulate => '*' });
41 if ($auth_status ne "ok") {
42     exit 0;
43 }
44
45 print map $_->{surname} . ", " . $_->{firstname} . "\t" .
46           $_->{cardnumber} . "\t" .
47           $_->{address} . "\t" .
48           $_->{city} . "\t" .
49           $_->{zipcode} . "\t" .
50           $_->{country} .
51           "\n",
52           @{ Search($query, [qw(surname firstname cardnumber)], [10], [qw(surname firstname cardnumber address city zipcode country)]) };