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>.
30 use C4::Auth qw( check_cookie_auth );
32 use Koha::DateUtils qw( format_sqldatetime );
35 use JSON qw( to_json );
38 my $query = $input->param('term');
40 binmode STDOUT, ":encoding(UTF-8)";
41 print $input->header( -type => 'text/plain', -charset => 'UTF-8' );
43 my ( $auth_status ) = check_cookie_auth( $input->cookie('CGISESSID'), { catalogue => '1' } );
44 if ( $auth_status ne "ok" ) {
49 if ( C4::Context->preference("IndependentBranches")
50 && C4::Context->userenv
51 && !C4::Context->IsSuperLibrarian()
52 && C4::Context->userenv->{'branch'} ) {
56 my @parts = split( /,\s|\s/, $query );
58 foreach my $p (@parts) {
62 surname => { -like => "%$p%" },
63 firstname => { -like => "%$p%" },
64 cardnumber => { -like => "$p%" },
69 push( @params, { branchcode => C4::Context->userenv->{branch} } ) if $limit_on_branch;
71 my $borrowers_rs = Koha::Patrons->search_limited(
74 # Get the first 10 results
77 order_by => [ 'surname', 'firstname' ],
78 prefetch => 'branchcode',
83 while ( my $b = $borrowers_rs->next ) {
85 { borrowernumber => $b->borrowernumber,
86 surname => $b->surname // '',
87 firstname => $b->firstname // '',
88 cardnumber => $b->cardnumber // '',
89 dateofbirth => format_sqldatetime($b->dateofbirth, undef, undef, 1) // '',
90 age => $b->get_age // '',
91 address => $b->address // '',
92 city => $b->city // '',
93 zipcode => $b->zipcode // '',
94 country => $b->country // '',
95 branchcode => $b->branchcode // '',
96 branchname => $b->library->branchname // '',
100 print to_json( \@borrowers );