Bug 6679: Fixing 13 perlcritic violations in C4/Barcodes.pm
[koha.git] / svc / report
blob18e1986b25d0ce028ccb0a59e4606222c549facd
1 #!/usr/bin/perl
3 # Copyright 2011 Chris Cormack <chris@bigballofwax.co.nz>
5 # This file is part of Koha.
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 2 of the License, or (at your option) any later
10 # version.
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License along with
17 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
18 # Suite 330, Boston, MA 02111-1307 USA
21 use strict;
22 use warnings;
24 use C4::Auth;
25 use C4::Reports::Guided;
26 use JSON;
27 use CGI;
29 use Koha::Cache;
32 my $query = CGI->new();
33 my $report = $query->param('id');
35 my $cache;
37 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
39 template_name => "intranet-main.tmpl",
40 query => $query,
41 type => "intranet",
42 authnotrequired => 0,
43 flagsrequired => { catalogue => 1, },
47 if (Koha::Cache->is_cache_active) {
48 $cache = Koha::Cache->new();
49 my $page = $cache->get_from_cache("intranet:report:$report");
50 if ($page) {
51 print $query->header;
52 print $page;
53 exit;
57 print $query->header;
59 # $public isnt used for intranet
60 my ( $sql, $type, $name, $notes, $cache_expiry, $public ) =
61 get_saved_report($report);
62 my $offset = 0;
63 my $limit = C4::Context->preference("SvcMaxReportRows") || 10;
64 my ( $sth, $errors ) = execute_query( $sql, $offset, $limit );
65 my $lines = $sth->fetchall_arrayref;
66 my $json_text = to_json($lines);
67 print $json_text;
69 if (Koha::Cache->is_cache_active) {
70 $cache->set_in_cache( "intranet:report:$report", $json_text, $cache_expiry );