Bug 23148: Fix bridge image paths in de-DE installer files
[koha.git] / opac / svc / report
blobef0733457308538824833973b758c70fea103c8d
1 #!/usr/bin/perl
3 # This file is part of Koha.
5 # Copyright (C) 2011 Chris Cormack <chris@bigballofwax.co.nz>
6 # Copyright (C) 2013 Mark Tompsett
7 # Updated 2013 by Chris Cormack <chris@bigballofwax.co.nz>
9 # This file is part of Koha.
11 # Koha is free software; you can redistribute it and/or modify it under the
12 # terms of the GNU General Public License as published by the Free Software
13 # Foundation; either version 3 of the License, or (at your option) any later
14 # version.
16 # Koha is distributed in the hope that it will be useful, but
17 # WITHOUT ANY WARRANTY; without even the implied warranty of
18 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 # GNU General Public License for more details.
21 # You should have received a copy of the GNU General Public License
22 # along with Koha; if not, see <http://www.gnu.org/licenses>.
24 use Modern::Perl;
26 use C4::Output qw(output_with_http_headers);
27 use C4::Reports::Guided;
28 use Koha::Reports;
29 use JSON;
30 use CGI qw ( -utf8 );
32 use Koha::Caches;
34 my $query = CGI->new();
35 my $report_id = $query->param('id');
36 my $report_name = $query->param('name');
37 my $report_annotation = $query->param('annotated');
39 my $report_recs = Koha::Reports->search( $report_name ? { 'report_name' => $report_name } : { 'id' => $report_id } );
40 if ( !$report_recs || $report_recs->count == 0 ) { die "There is no such report.\n"; }
41 my $report_rec = $report_recs->next();
43 die "Sorry this report is not public\n" unless $report_rec->public;
45 my @sql_params = $query->multi_param('sql_params');
47 my $cache = Koha::Caches->get_instance();
48 my $cache_active = $cache->is_cache_active;
49 my ($cache_key, $json_text);
50 if ($cache_active) {
51 $cache_key =
52 "opac:report:"
53 . ( $report_name ? "name:$report_name:" : "id:$report_id:" )
54 . join( '-', @sql_params );
55 $json_text = $cache->get_from_cache($cache_key);
58 unless ($json_text) {
59 my $offset = 0;
60 my $limit = C4::Context->preference("SvcMaxReportRows") || 10;
61 my $sql = $report_rec->savedsql;
63 # convert SQL parameters to placeholders
64 $sql =~ s/(<<.*?>>)/\?/g;
65 $sql =~ s/\[\[(.*?)\|(.*?)\]\]/$1 AS $2/g;
67 my ( $sth, $errors ) =
68 execute_query( $sql, $offset, $limit, \@sql_params, $report_id );
69 if ($sth) {
70 my $lines;
71 if ($report_annotation) {
72 $lines = $sth->fetchall_arrayref({});
74 else {
75 $lines = $sth->fetchall_arrayref;
77 $json_text = encode_json($lines);
79 if ($cache_active) {
80 $cache->set_in_cache( $cache_key, $json_text,
81 { expiry => $report_rec->cache_expiry } );
84 else {
85 $json_text = encode_json($errors);
89 output_with_http_headers( $query, undef, $json_text, 'json');