X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=svc%2Freport;h=654ef1572b76c231badabfc1e1c782510734bee6;hb=133a9746497b0366203df5ca04cafb2efefa7801;hp=476475cfccb43623b0cfad9fcaabcebf1c4f82a4;hpb=9ec7ac5b8e036ad824636df5acd4e1ec2ebb45c8;p=koha.git diff --git a/svc/report b/svc/report index 476475cfcc..654ef1572b 100755 --- a/svc/report +++ b/svc/report @@ -26,11 +26,12 @@ use C4::Reports::Guided; use JSON; use CGI; -my $query = CGI->new(); -my $report = $query->param('id'); +use Koha::Cache; + -my $cache; -my $usecache = C4::Context->ismemcached; +my $query = CGI->new(); +my $report_id = $query->param('id'); +my $report_name = $query->param('name'); my ( $template, $loggedinuser, $cookie ) = get_template_and_user( { @@ -42,38 +43,31 @@ my ( $template, $loggedinuser, $cookie ) = get_template_and_user( } ); -if ($usecache) { - require Koha::Cache; - Koha::Cache->import(); - $cache = Koha::Cache->new( - { - 'cache_type' => 'memcached', - 'cache_servers' => $ENV{'MEMCACHED_SERVERS'} +my $cache_active = Koha::Cache->is_cache_active; +my ($cache_key, $cache, $json_text); +if ($cache_active) { + $cache_key = "intranet:report:".($report_name ? "name:$report_name" : "id:$report_id"); + $cache = Koha::Cache->new(); + $json_text = $cache->get_from_cache($cache_key); +} + +unless ($json_text) { + my $report_rec = get_saved_report($report_name ? { 'name' => $report_name } : { 'id' => $report_id }); + my $offset = 0; + my $limit = C4::Context->preference("SvcMaxReportRows") || 10; + my ( $sth, $errors ) = execute_query( $report_rec->{savedsql}, $offset, $limit ); + if ($sth) { + my $lines = $sth->fetchall_arrayref; + $json_text = to_json($lines); + + if ($cache_active) { + $cache->set_in_cache( $cache_key, $json_text, $report_rec->{cache_expiry} ); } - ); - my $namespace = $ENV{'MEMCACHED_NAMESPACE'} || 'koha'; - my $page = $cache->get_from_cache("$namespace:intranet:report:$report"); - if ($page) { - print $query->header; - print $page; - exit; + } + else { + $json_text = to_json($errors); } } print $query->header; - -# $public isnt used for intranet -my ( $sql, $type, $name, $notes, $cache_expiry, $public ) = - get_saved_report($report); -my $offset = 0; -my $limit = C4::Context->preference("SvcMaxReportRows") || 10; -my ( $sth, $errors ) = execute_query( $sql, $offset, $limit ); -my $lines = $sth->fetchall_arrayref; -my $json_text = to_json($lines); print $json_text; - -if ($usecache) { - my $namespace = $ENV{'MEMCACHED_NAMESPACE'} || 'koha'; - $cache->set_in_cache( "$namespace:intranet:report:$report", - $json_text, $cache_expiry ); -}