Bug 11201: Add a in-house use list pages
[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 # Parts copyright 2010-2012 Athens County Public Libraries
7 #
8 # This file is part of Koha.
9 #
10 # Koha is free software; you can redistribute it and/or modify it under the
11 # terms of the GNU General Public License as published by the Free Software
12 # Foundation; either version 2 of the License, or (at your option) any later
13 # version.
14 #
15 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
16 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
17 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
18 #
19 # You should have received a copy of the GNU General Public License along
20 # with Koha; if not, write to the Free Software Foundation, Inc.,
21 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22
23 =head1 ysearch.pl
24
25 =cut
26
27 use Modern::Perl;
28 use CGI qw ( -utf8 );
29 use C4::Context;
30 use C4::Auth qw/check_cookie_auth/;
31 use Koha::Borrowers;
32
33 use JSON qw( to_json );
34
35 my $input = new CGI;
36 my $query = $input->param('term');
37
38 binmode STDOUT, ":encoding(UTF-8)";
39 print $input->header( -type => 'text/plain', -charset => 'UTF-8' );
40
41 my ( $auth_status, $sessionID ) = check_cookie_auth( $input->cookie('CGISESSID'), { circulate => '*' } );
42 if ( $auth_status ne "ok" ) {
43     exit 0;
44 }
45
46 my $limit_on_branch;
47 if (   C4::Context->preference("IndependentBranches")
48     && C4::Context->userenv
49     && !C4::Context->IsSuperLibrarian()
50     && C4::Context->userenv->{'branch'} ) {
51     $limit_on_branch = 1;
52 }
53
54 my $borrowers_rs = Koha::Borrowers->search(
55     {   -or => {
56             surname    => { -like => "$query%" },
57             firstname  => { -like => "$query%" },
58             cardnumber => { -like => "$query%" },
59             ( $limit_on_branch ? { branchcode => C4::Context->userenv->{branch} } : () ),
60         },
61     },
62     {
63         # Get the first 10 results
64         page     => 1,
65         rows     => 10,
66         order_by => [ 'surname', 'firstname' ],
67     },
68 );
69
70 my @borrowers;
71 while ( my $b = $borrowers_rs->next ) {
72     push @borrowers,
73       { borrowernumber => $b->borrowernumber,
74         surname        => $b->surname,
75         firstname      => $b->firstname,
76         cardnumber     => $b->cardnumber,
77         address        => $b->address,
78         city           => $b->city,
79         zipcode        => $b->zipcode,
80         country        => $b->country
81       };
82 }
83
84 print to_json( \@borrowers );