Jonathan Druart
7d8b96803f
Bug 9978 should have fixed them all, but some were missing. We want all the license statements part of Koha to be identical, and using the GPLv3 statement. Signed-off-by: David Nind <david@davidnind.com> Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
107 lines
3.7 KiB
Perl
Executable file
107 lines
3.7 KiB
Perl
Executable file
#!/usr/bin/perl
|
|
|
|
# Copyright 2013 C & P Bibliography Services
|
|
#
|
|
# This file is part of Koha.
|
|
#
|
|
# Koha is free software; you can redistribute it and/or modify it
|
|
# under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# Koha is distributed in the hope that it will be useful, but
|
|
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with Koha; if not, see <http://www.gnu.org/licenses>.
|
|
|
|
use Modern::Perl;
|
|
use CGI qw ( -utf8 );
|
|
use JSON;
|
|
use C4::Auth;
|
|
use C4::Output;
|
|
use C4::Context;
|
|
use C4::Koha;
|
|
|
|
my $query = new CGI;
|
|
checkauth( $query, undef, { circulate => "circulate_remaining_permissions" },
|
|
"intranet" );
|
|
|
|
my $page = $query->param('page') || 0;
|
|
my $startrec = int($page) * 5000;
|
|
my $req_data = $query->param('data') || '';
|
|
|
|
my $patrons_query = q{SELECT
|
|
borrowers.borrowernumber, cardnumber, surname, firstname, title,
|
|
othernames, initials, streetnumber, streettype, address, address2, city,
|
|
state, zipcode, country, email, phone, mobile, fax, dateofbirth, branchcode,
|
|
categorycode, dateenrolled, dateexpiry, COALESCE(gonenoaddress, 0) AS gonenoaddress,
|
|
COALESCE(lost, 0) AS lost, debarred,
|
|
debarredcomment, SUM(accountlines.amountoutstanding) AS fine
|
|
FROM borrowers
|
|
LEFT JOIN accountlines ON borrowers.borrowernumber=accountlines.borrowernumber
|
|
WHERE cardnumber IS NOT NULL
|
|
GROUP BY borrowers.borrowernumber
|
|
LIMIT ?, 5000;
|
|
};
|
|
|
|
# NOTE: we can't fit very long titles on the interface so there isn't really any point in transferring them
|
|
my $items_query = q{SELECT
|
|
items.barcode AS barcode, items.itemnumber AS itemnumber,
|
|
items.itemcallnumber AS callnumber, items.homebranch AS homebranch,
|
|
items.holdingbranch AS holdingbranch, items.itype AS itemtype,
|
|
items.materials AS materials, LEFT(biblio.title, 60) AS title,
|
|
biblio.author AS author, biblio.biblionumber AS biblionumber
|
|
FROM items
|
|
JOIN biblio ON biblio.biblionumber = items.biblionumber
|
|
WHERE barcode IS NOT NULL
|
|
LIMIT ?, 5000;
|
|
};
|
|
|
|
my $issues_query = q{SELECT
|
|
biblio.title AS title,
|
|
items.barcode AS barcode,
|
|
items.itemcallnumber AS callnumber,
|
|
issues.date_due AS date_due,
|
|
issues.issuedate AS issuedate,
|
|
issues.renewals AS renewals,
|
|
borrowers.cardnumber AS cardnumber,
|
|
CONCAT(borrowers.surname, ', ', borrowers.firstname) AS borrower_name
|
|
FROM issues
|
|
JOIN items ON items.itemnumber = issues.itemnumber
|
|
JOIN biblio ON biblio.biblionumber = items.biblionumber
|
|
JOIN borrowers ON borrowers.borrowernumber = issues.borrowernumber
|
|
WHERE barcode IS NOT NULL
|
|
LIMIT ?, 5000;
|
|
};
|
|
|
|
my %results;
|
|
my $finished = 1;
|
|
if ( $req_data eq 'patrons' || $req_data eq 'all' ) {
|
|
$results{'patrons'} = get_data( $patrons_query, 'cardnumber', $startrec );
|
|
}
|
|
if ( $req_data eq 'items' || $req_data eq 'all' ) {
|
|
$results{'items'} = get_data( $items_query, 'barcode', $startrec );
|
|
}
|
|
if ( $req_data eq 'issues' || $req_data eq 'all' ) {
|
|
$results{'issues'} = get_data( $issues_query, 'barcode', $startrec );
|
|
}
|
|
|
|
foreach my $key ( keys %results ) {
|
|
$finished = 0 if keys %{ $results{$key} } == 5000;
|
|
}
|
|
$results{'finished'} = $finished;
|
|
|
|
print $query->header( -type => 'application/json', -charset => 'utf-8' );
|
|
print to_json( \%results );
|
|
|
|
sub get_data {
|
|
my ( $sql, $key, $start ) = @_;
|
|
$start ||= 0;
|
|
my $dbh = C4::Context->dbh;
|
|
my $sth = $dbh->prepare($sql);
|
|
$sth->execute($start);
|
|
return $sth->fetchall_hashref($key);
|
|
}
|