Bug 9302: Use patron-title.inc
[koha.git] / circ / ysearch.pl
blob7a75c8087c9f680e981d70c52e35526264079a6b
1 #!/usr/bin/perl
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>.
23 =head1 ysearch.pl
25 =cut
27 use Modern::Perl;
28 use CGI qw ( -utf8 );
29 use C4::Context;
30 use C4::Auth qw/check_cookie_auth/;
31 use Koha::Patrons;
32 use Koha::DateUtils qw/format_sqldatetime/;
34 use JSON qw( to_json );
36 my $input = new CGI;
37 my $query = $input->param('term');
39 binmode STDOUT, ":encoding(UTF-8)";
40 print $input->header( -type => 'text/plain', -charset => 'UTF-8' );
42 my ( $auth_status, $sessionID ) = check_cookie_auth( $input->cookie('CGISESSID'), { circulate => '*' } );
43 if ( $auth_status ne "ok" ) {
44 exit 0;
47 my $limit_on_branch;
48 if ( C4::Context->preference("IndependentBranches")
49 && C4::Context->userenv
50 && !C4::Context->IsSuperLibrarian()
51 && C4::Context->userenv->{'branch'} ) {
52 $limit_on_branch = 1;
55 my @parts = split( / /, $query );
56 my @params;
57 foreach my $p (@parts) {
58 push(
59 @params,
60 -or => [
61 surname => { -like => "%$p%" },
62 firstname => { -like => "%$p%" },
63 cardnumber => { -like => "$p%" },
68 push( @params, { branchcode => C4::Context->userenv->{branch} } ) if $limit_on_branch;
70 my $borrowers_rs = Koha::Patrons->search_limited(
71 { -and => \@params },
73 # Get the first 10 results
74 page => 1,
75 rows => 10,
76 order_by => [ 'surname', 'firstname' ],
80 my @borrowers;
81 while ( my $b = $borrowers_rs->next ) {
82 push @borrowers,
83 { borrowernumber => $b->borrowernumber,
84 surname => $b->surname // '',
85 firstname => $b->firstname // '',
86 cardnumber => $b->cardnumber // '',
87 dateofbirth => format_sqldatetime($b->dateofbirth, undef, undef, 1) // '',
88 address => $b->address // '',
89 city => $b->city // '',
90 zipcode => $b->zipcode // '',
91 country => $b->country // '',
95 print to_json( \@borrowers );