3 # This software is placed under the gnu General Public License, v2 (http://www.gnu.org/licenses/gpl.html)
5 # Copyright 2007 Tamil s.a.r.l.
6 # Parts copyright 2010-2012 Athens County Public Libraries
8 # This file is part of Koha.
10 # Koha is free software; you can redistribute it and/or modify it
11 # under the terms of the GNU General Public License as published by
12 # the Free Software Foundation; either version 3 of the License, or
13 # (at your option) any later version.
15 # Koha is distributed in the hope that it will be useful, but
16 # WITHOUT ANY WARRANTY; without even the implied warranty of
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 # GNU General Public License for more details.
20 # You should have received a copy of the GNU General Public License
21 # along with Koha; if not, see <http://www.gnu.org/licenses>.
29 #use warnings; FIXME - Bug 2505
33 use C4
::Auth qw
/check_cookie_auth/;
36 my $query = $input->param('term');
38 binmode STDOUT
, ":encoding(UTF-8)";
39 print $input->header(-type
=> 'text/plain', -charset
=> 'UTF-8');
41 my ($auth_status, $sessionID) = check_cookie_auth
($input->cookie('CGISESSID'), { circulate
=> '*' });
42 if ($auth_status ne "ok") {
46 my $dbh = C4
::Context
->dbh;
48 SELECT borrowernumber
, surname
, firstname
, cardnumber
, address
, city
, zipcode
, country
50 WHERE
( surname LIKE ?
52 OR cardnumber LIKE ?
)
54 if ( C4
::Context
->preference("IndependentBranches")
55 && C4
::Context
->userenv
56 && !C4
::Context
->IsSuperLibrarian()
57 && C4
::Context
->userenv->{'branch'} )
59 $sql .= " AND borrowers.branchcode ="
60 . $dbh->quote( C4
::Context
->userenv->{'branch'} );
63 $sql .= q
( ORDER BY surname
, firstname LIMIT
10);
64 my $sth = $dbh->prepare( $sql );
65 $sth->execute("$query%", "$query%", "$query%");
69 while ( my $rec = $sth->fetchrow_hashref ) {
70 if($i > 0){ print ","; }
71 print "{\"borrowernumber\":\"" . $rec->{borrowernumber
} . "\",\"" .
72 "surname\":\"".$rec->{surname
} . "\",\"" .
73 "firstname\":\"".$rec->{firstname
} . "\",\"" .
74 "cardnumber\":\"".$rec->{cardnumber
} . "\",\"" .
75 "address\":\"".$rec->{address
} . "\",\"" .
76 "city\":\"".$rec->{city
} . "\",\"" .
77 "zipcode\":\"".$rec->{zipcode
} . "\",\"" .
78 "country\":\"".$rec->{country
} . "\"" .