Bug 7162: Update DBIx
[koha.git] / reports / guided_reports.pl
blob9fe73871fd9e58379549f700c85f707f812429ae
1 #!/usr/bin/perl
3 # Copyright 2007 Liblime ltd
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
17 # with Koha; if not, write to the Free Software Foundation, Inc.,
18 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 use Modern::Perl;
21 use CGI qw/-utf8/;
22 use Text::CSV::Encoded;
23 use URI::Escape;
24 use File::Temp;
25 use File::Basename qw( dirname );
26 use C4::Reports::Guided;
27 use C4::Auth qw/:DEFAULT get_session/;
28 use C4::Output;
29 use C4::Dates qw/format_date/;
30 use C4::Debug;
31 use C4::Branch; # XXX subfield_is_koha_internal_p
32 use C4::Koha qw/IsAuthorisedValueCategory/;
34 =head1 NAME
36 guided_reports.pl
38 =head1 DESCRIPTION
40 Script to control the guided report creation
42 =cut
44 my $input = new CGI;
45 my $usecache = C4::Context->ismemcached;
47 my $phase = $input->param('phase');
48 my $flagsrequired;
49 if ( $phase eq 'Build new' or $phase eq 'Delete Saved' ) {
50 $flagsrequired = 'create_reports';
52 elsif ( $phase eq 'Use saved' ) {
53 $flagsrequired = 'execute_reports';
54 } else {
55 $flagsrequired = '*';
58 my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
60 template_name => "reports/guided_reports_start.tt",
61 query => $input,
62 type => "intranet",
63 authnotrequired => 0,
64 flagsrequired => { reports => $flagsrequired },
65 debug => 1,
68 my $session = $cookie ? get_session($cookie->value) : undef;
70 my $filter;
71 if ( $input->param("filter_set") ) {
72 $filter = {};
73 $filter->{$_} = $input->param("filter_$_") foreach qw/date author keyword group subgroup/;
74 $session->param('report_filter', $filter) if $session;
75 $template->param( 'filter_set' => 1 );
77 elsif ($session) {
78 $filter = $session->param('report_filter');
82 my @errors = ();
83 if ( !$phase ) {
84 $template->param( 'start' => 1 );
85 # show welcome page
87 elsif ( $phase eq 'Build new' ) {
88 # build a new report
89 $template->param( 'build1' => 1 );
90 $template->param(
91 'areas' => get_report_areas(),
92 'usecache' => $usecache,
93 'cache_expiry' => 300,
94 'public' => '0',
96 } elsif ( $phase eq 'Use saved' ) {
98 # use a saved report
99 # get list of reports and display them
100 my $group = $input->param('group');
101 my $subgroup = $input->param('subgroup');
102 $filter->{group} = $group;
103 $filter->{subgroup} = $subgroup;
104 $template->param(
105 'saved1' => 1,
106 'savedreports' => get_saved_reports($filter),
107 'usecache' => $usecache,
108 'groups_with_subgroups'=> groups_with_subgroups($group, $subgroup),
112 elsif ( $phase eq 'Delete Multiple') {
113 my @ids = $input->param('ids');
114 delete_report( @ids );
115 print $input->redirect("/cgi-bin/koha/reports/guided_reports.pl?phase=Use%20saved");
116 exit;
119 elsif ( $phase eq 'Delete Saved') {
121 # delete a report from the saved reports list
122 my $ids = $input->param('reports');
123 delete_report($ids);
124 print $input->redirect("/cgi-bin/koha/reports/guided_reports.pl?phase=Use%20saved");
125 exit;
128 elsif ( $phase eq 'Show SQL'){
130 my $id = $input->param('reports');
131 my $report = get_saved_report($id);
132 $template->param(
133 'id' => $id,
134 'reportname' => $report->{report_name},
135 'notes' => $report->{notes},
136 'sql' => $report->{savedsql},
137 'showsql' => 1,
141 elsif ( $phase eq 'Edit SQL'){
142 my $id = $input->param('reports');
143 my $report = get_saved_report($id);
144 my $group = $report->{report_group};
145 my $subgroup = $report->{report_subgroup};
146 $template->param(
147 'sql' => $report->{savedsql},
148 'reportname' => $report->{report_name},
149 'groups_with_subgroups' => groups_with_subgroups($group, $subgroup),
150 'notes' => $report->{notes},
151 'id' => $id,
152 'cache_expiry' => $report->{cache_expiry},
153 'public' => $report->{public},
154 'usecache' => $usecache,
155 'editsql' => 1,
159 elsif ( $phase eq 'Update SQL'){
160 my $id = $input->param('id');
161 my $sql = $input->param('sql');
162 my $reportname = $input->param('reportname');
163 my $group = $input->param('group');
164 my $subgroup = $input->param('subgroup');
165 my $notes = $input->param('notes');
166 my $cache_expiry = $input->param('cache_expiry');
167 my $cache_expiry_units = $input->param('cache_expiry_units');
168 my $public = $input->param('public');
169 my $save_anyway = $input->param('save_anyway');
171 my @errors;
173 # if we have the units, then we came from creating a report from SQL and thus need to handle converting units
174 if( $cache_expiry_units ){
175 if( $cache_expiry_units eq "minutes" ){
176 $cache_expiry *= 60;
177 } elsif( $cache_expiry_units eq "hours" ){
178 $cache_expiry *= 3600; # 60 * 60
179 } elsif( $cache_expiry_units eq "days" ){
180 $cache_expiry *= 86400; # 60 * 60 * 24
183 # check $cache_expiry isnt too large, Memcached::set requires it to be less than 30 days or it will be treated as if it were an absolute time stamp
184 if( $cache_expiry >= 2592000 ){
185 push @errors, {cache_expiry => $cache_expiry};
188 create_non_existing_group_and_subgroup($input, $group, $subgroup);
190 if ($sql =~ /;?\W?(UPDATE|DELETE|DROP|INSERT|SHOW|CREATE)\W/i) {
191 push @errors, {sqlerr => $1};
193 elsif ($sql !~ /^(SELECT)/i) {
194 push @errors, {queryerr => 1};
197 if (@errors) {
198 $template->param(
199 'errors' => \@errors,
200 'sql' => $sql,
202 } else {
204 # Check defined SQL parameters for authorised value validity
205 my $problematic_authvals = ValidateSQLParameters($sql);
207 if ( scalar @$problematic_authvals > 0 && not $save_anyway ) {
208 # There's at least one problematic parameter, report to the
209 # GUI and provide all user input for further actions
210 $template->param(
211 'id' => $id,
212 'sql' => $sql,
213 'reportname' => $reportname,
214 'group' => $group,
215 'subgroup' => $subgroup,
216 'notes' => $notes,
217 'cache_expiry' => $cache_expiry,
218 'cache_expiry_units' => $cache_expiry_units,
219 'public' => $public,
220 'problematic_authvals' => $problematic_authvals,
221 'warn_authval_problem' => 1,
222 'phase_update' => 1
225 } else {
226 # No params problem found or asked to save anyway
227 update_sql( $id, {
228 sql => $sql,
229 name => $reportname,
230 group => $group,
231 subgroup => $subgroup,
232 notes => $notes,
233 cache_expiry => $cache_expiry,
234 public => $public,
235 } );
236 $template->param(
237 'save_successful' => 1,
238 'reportname' => $reportname,
239 'id' => $id,
245 elsif ($phase eq 'retrieve results') {
246 my $id = $input->param('id');
247 my ($results,$name,$notes) = format_results($id);
248 # do something
249 $template->param(
250 'retresults' => 1,
251 'results' => $results,
252 'name' => $name,
253 'notes' => $notes,
257 elsif ( $phase eq 'Report on this Area' ) {
258 my $cache_expiry_units = $input->param('cache_expiry_units'),
259 my $cache_expiry = $input->param('cache_expiry');
261 # we need to handle converting units
262 if( $cache_expiry_units eq "minutes" ){
263 $cache_expiry *= 60;
264 } elsif( $cache_expiry_units eq "hours" ){
265 $cache_expiry *= 3600; # 60 * 60
266 } elsif( $cache_expiry_units eq "days" ){
267 $cache_expiry *= 86400; # 60 * 60 * 24
269 # check $cache_expiry isnt too large, Memcached::set requires it to be less than 30 days or it will be treated as if it were an absolute time stamp
270 if( $cache_expiry >= 2592000 ){ # oops, over the limit of 30 days
271 # report error to user
272 $template->param(
273 'cache_error' => 1,
274 'build1' => 1,
275 'areas' => get_report_areas(),
276 'cache_expiry' => $cache_expiry,
277 'usecache' => $usecache,
278 'public' => $input->param('public'),
280 } else {
281 # they have choosen a new report and the area to report on
282 $template->param(
283 'build2' => 1,
284 'area' => $input->param('area'),
285 'types' => get_report_types(),
286 'cache_expiry' => $cache_expiry,
287 'public' => $input->param('public'),
292 elsif ( $phase eq 'Choose this type' ) {
293 # they have chosen type and area
294 # get area and type and pass them to the template
295 my $area = $input->param('area');
296 my $type = $input->param('types');
297 $template->param(
298 'build3' => 1,
299 'area' => $area,
300 'type' => $type,
301 columns => get_columns($area,$input),
302 'cache_expiry' => $input->param('cache_expiry'),
303 'public' => $input->param('public'),
307 elsif ( $phase eq 'Choose these columns' ) {
308 # we now know type, area, and columns
309 # next step is the constraints
310 my $area = $input->param('area');
311 my $type = $input->param('type');
312 my @columns = $input->param('columns');
313 my $column = join( ',', @columns );
314 $template->param(
315 'build4' => 1,
316 'area' => $area,
317 'type' => $type,
318 'column' => $column,
319 definitions => get_from_dictionary($area),
320 criteria => get_criteria($area,$input),
321 'cache_expiry' => $input->param('cache_expiry'),
322 'cache_expiry_units' => $input->param('cache_expiry_units'),
323 'public' => $input->param('public'),
327 elsif ( $phase eq 'Choose these criteria' ) {
328 my $area = $input->param('area');
329 my $type = $input->param('type');
330 my $column = $input->param('column');
331 my @definitions = $input->param('definition');
332 my $definition = join (',',@definitions);
333 my @criteria = $input->param('criteria_column');
334 my $query_criteria;
335 foreach my $crit (@criteria) {
336 my $value = $input->param( $crit . "_value" );
338 # If value is not defined, then it may be range values
339 if (!defined $value) {
341 my $fromvalue = $input->param( "from_" . $crit . "_value" );
342 my $tovalue = $input->param( "to_" . $crit . "_value" );
344 # If the range values are dates
345 if ($fromvalue =~ C4::Dates->regexp('syspref') && $tovalue =~ C4::Dates->regexp('syspref')) {
346 $fromvalue = C4::Dates->new($fromvalue)->output("iso");
347 $tovalue = C4::Dates->new($tovalue)->output("iso");
350 if ($fromvalue && $tovalue) {
351 $query_criteria .= " AND $crit >= '$fromvalue' AND $crit <= '$tovalue'";
354 } else {
356 # If value is a date
357 if ($value =~ C4::Dates->regexp('syspref')) {
358 $value = C4::Dates->new($value)->output("iso");
360 # don't escape runtime parameters, they'll be at runtime
361 if ($value =~ /<<.*>>/) {
362 $query_criteria .= " AND $crit=$value";
363 } else {
364 $query_criteria .= " AND $crit='$value'";
368 $template->param(
369 'build5' => 1,
370 'area' => $area,
371 'type' => $type,
372 'column' => $column,
373 'definition' => $definition,
374 'criteriastring' => $query_criteria,
375 'cache_expiry' => $input->param('cache_expiry'),
376 'cache_expiry_units' => $input->param('cache_expiry_units'),
377 'public' => $input->param('public'),
380 # get columns
381 my @columns = split( ',', $column );
382 my @total_by;
384 # build structue for use by tmpl_loop to choose columns to order by
385 # need to do something about the order of the order :)
386 # we also want to use the %columns hash to get the plain english names
387 foreach my $col (@columns) {
388 my %total = (name => $col);
389 my @selects = map {+{ value => $_ }} (qw(sum min max avg count));
390 $total{'select'} = \@selects;
391 push @total_by, \%total;
394 $template->param( 'total_by' => \@total_by );
397 elsif ( $phase eq 'Choose these operations' ) {
398 my $area = $input->param('area');
399 my $type = $input->param('type');
400 my $column = $input->param('column');
401 my $criteria = $input->param('criteria');
402 my $definition = $input->param('definition');
403 my @total_by = $input->param('total_by');
404 my $totals;
405 foreach my $total (@total_by) {
406 my $value = $input->param( $total . "_tvalue" );
407 $totals .= "$value($total),";
410 $template->param(
411 'build6' => 1,
412 'area' => $area,
413 'type' => $type,
414 'column' => $column,
415 'criteriastring' => $criteria,
416 'totals' => $totals,
417 'definition' => $definition,
418 'cache_expiry' => $input->param('cache_expiry'),
419 'public' => $input->param('public'),
422 # get columns
423 my @columns = split( ',', $column );
424 my @order_by;
426 # build structue for use by tmpl_loop to choose columns to order by
427 # need to do something about the order of the order :)
428 foreach my $col (@columns) {
429 my %order = (name => $col);
430 my @selects = map {+{ value => $_ }} (qw(asc desc));
431 $order{'select'} = \@selects;
432 push @order_by, \%order;
435 $template->param( 'order_by' => \@order_by );
438 elsif ( $phase eq 'Build report' ) {
440 # now we have all the info we need and can build the sql
441 my $area = $input->param('area');
442 my $type = $input->param('type');
443 my $column = $input->param('column');
444 my $crit = $input->param('criteria');
445 my $totals = $input->param('totals');
446 my $definition = $input->param('definition');
447 my $query_criteria=$crit;
448 # split the columns up by ,
449 my @columns = split( ',', $column );
450 my @order_by = $input->param('order_by');
452 my $query_orderby;
453 foreach my $order (@order_by) {
454 my $value = $input->param( $order . "_ovalue" );
455 if ($query_orderby) {
456 $query_orderby .= ",$order $value";
458 else {
459 $query_orderby = " ORDER BY $order $value";
463 # get the sql
464 my $sql =
465 build_query( \@columns, $query_criteria, $query_orderby, $area, $totals, $definition );
466 $template->param(
467 'showreport' => 1,
468 'area' => $area,
469 'sql' => $sql,
470 'type' => $type,
471 'cache_expiry' => $input->param('cache_expiry'),
472 'public' => $input->param('public'),
476 elsif ( $phase eq 'Save' ) {
477 # Save the report that has just been built
478 my $area = $input->param('area');
479 my $sql = $input->param('sql');
480 my $type = $input->param('type');
481 $template->param(
482 'save' => 1,
483 'area' => $area,
484 'sql' => $sql,
485 'type' => $type,
486 'cache_expiry' => $input->param('cache_expiry'),
487 'public' => $input->param('public'),
488 'groups_with_subgroups' => groups_with_subgroups($area), # in case we have a report group that matches area
492 elsif ( $phase eq 'Save Report' ) {
493 # save the sql pasted in by a user
494 my $area = $input->param('area');
495 my $group = $input->param('group');
496 my $subgroup = $input->param('subgroup');
497 my $sql = $input->param('sql');
498 my $name = $input->param('reportname');
499 my $type = $input->param('types');
500 my $notes = $input->param('notes');
501 my $cache_expiry = $input->param('cache_expiry');
502 my $cache_expiry_units = $input->param('cache_expiry_units');
503 my $public = $input->param('public');
504 my $save_anyway = $input->param('save_anyway');
507 # if we have the units, then we came from creating a report from SQL and thus need to handle converting units
508 if( $cache_expiry_units ){
509 if( $cache_expiry_units eq "minutes" ){
510 $cache_expiry *= 60;
511 } elsif( $cache_expiry_units eq "hours" ){
512 $cache_expiry *= 3600; # 60 * 60
513 } elsif( $cache_expiry_units eq "days" ){
514 $cache_expiry *= 86400; # 60 * 60 * 24
517 # check $cache_expiry isnt too large, Memcached::set requires it to be less than 30 days or it will be treated as if it were an absolute time stamp
518 if( $cache_expiry && $cache_expiry >= 2592000 ){
519 push @errors, {cache_expiry => $cache_expiry};
522 create_non_existing_group_and_subgroup($input, $group, $subgroup);
524 ## FIXME this is AFTER entering a name to save the report under
525 if ($sql =~ /;?\W?(UPDATE|DELETE|DROP|INSERT|SHOW|CREATE)\W/i) {
526 push @errors, {sqlerr => $1};
528 elsif ($sql !~ /^(SELECT)/i) {
529 push @errors, {queryerr => "No SELECT"};
532 if (@errors) {
533 $template->param(
534 'errors' => \@errors,
535 'sql' => $sql,
536 'reportname'=> $name,
537 'type' => $type,
538 'notes' => $notes,
539 'cache_expiry' => $cache_expiry,
540 'public' => $public,
542 } else {
543 # Check defined SQL parameters for authorised value validity
544 my $problematic_authvals = ValidateSQLParameters($sql);
546 if ( scalar @$problematic_authvals > 0 && not $save_anyway ) {
547 # There's at least one problematic parameter, report to the
548 # GUI and provide all user input for further actions
549 $template->param(
550 'area' => $area,
551 'group' => $group,
552 'subgroup' => $subgroup,
553 'sql' => $sql,
554 'reportname' => $name,
555 'type' => $type,
556 'notes' => $notes,
557 'cache_expiry' => $cache_expiry,
558 'cache_expiry_units' => $cache_expiry_units,
559 'public' => $public,
560 'problematic_authvals' => $problematic_authvals,
561 'warn_authval_problem' => 1,
562 'phase_save' => 1
564 } else {
565 # No params problem found or asked to save anyway
566 my $id = save_report( {
567 borrowernumber => $borrowernumber,
568 sql => $sql,
569 name => $name,
570 area => $area,
571 group => $group,
572 subgroup => $subgroup,
573 type => $type,
574 notes => $notes,
575 cache_expiry => $cache_expiry,
576 public => $public,
577 } );
578 $template->param(
579 'save_successful' => 1,
580 'reportname' => $name,
581 'id' => $id,
587 elsif ($phase eq 'Run this report'){
588 # execute a saved report
589 my $limit = $input->param('limit') || 20;
590 my $offset = 0;
591 my $report_id = $input->param('reports');
592 my @sql_params = $input->param('sql_params');
593 # offset algorithm
594 if ($input->param('page')) {
595 $offset = ($input->param('page') - 1) * $limit;
598 $template->param(
599 'limit' => $limit,
600 'report_id' => $report_id,
603 my ( $sql, $type, $name, $notes );
604 if (my $report = get_saved_report($report_id)) {
605 $sql = $report->{savedsql};
606 $name = $report->{report_name};
607 $notes = $report->{notes};
609 my @rows = ();
610 # if we have at least 1 parameter, and it's not filled, then don't execute but ask for parameters
611 if ($sql =~ /<</ && !@sql_params) {
612 # split on ??. Each odd (2,4,6,...) entry should be a parameter to fill
613 my @split = split /<<|>>/,$sql;
614 my @tmpl_parameters;
615 my @authval_errors;
616 for(my $i=0;$i<($#split/2);$i++) {
617 my ($text,$authorised_value) = split /\|/,$split[$i*2+1];
618 my $input;
619 my $labelid;
620 if ( not defined $authorised_value ) {
621 # no authorised value input, provide a text box
622 $input = "text";
623 } elsif ( $authorised_value eq "date" ) {
624 # require a date, provide a date picker
625 $input = 'date';
626 } else {
627 # defined $authorised_value, and not 'date'
628 my $dbh=C4::Context->dbh;
629 my @authorised_values;
630 my %authorised_lib;
631 # builds list, depending on authorised value...
632 if ( $authorised_value eq "branches" ) {
633 my $branches = GetBranchesLoop();
634 foreach my $thisbranch (@$branches) {
635 push @authorised_values, $thisbranch->{value};
636 $authorised_lib{$thisbranch->{value}} = $thisbranch->{branchname};
639 elsif ( $authorised_value eq "itemtypes" ) {
640 my $sth = $dbh->prepare("SELECT itemtype,description FROM itemtypes ORDER BY description");
641 $sth->execute;
642 while ( my ( $itemtype, $description ) = $sth->fetchrow_array ) {
643 push @authorised_values, $itemtype;
644 $authorised_lib{$itemtype} = $description;
647 elsif ( $authorised_value eq "cn_source" ) {
648 my $class_sources = GetClassSources();
649 my $default_source = C4::Context->preference("DefaultClassificationSource");
650 foreach my $class_source (sort keys %$class_sources) {
651 next unless $class_sources->{$class_source}->{'used'} or
652 ($class_source eq $default_source);
653 push @authorised_values, $class_source;
654 $authorised_lib{$class_source} = $class_sources->{$class_source}->{'description'};
657 elsif ( $authorised_value eq "categorycode" ) {
658 my $sth = $dbh->prepare("SELECT categorycode, description FROM categories ORDER BY description");
659 $sth->execute;
660 while ( my ( $categorycode, $description ) = $sth->fetchrow_array ) {
661 push @authorised_values, $categorycode;
662 $authorised_lib{$categorycode} = $description;
665 #---- "true" authorised value
667 else {
668 if ( IsAuthorisedValueCategory($authorised_value) ) {
669 my $query = '
670 SELECT authorised_value,lib
671 FROM authorised_values
672 WHERE category=?
673 ORDER BY lib
675 my $authorised_values_sth = $dbh->prepare($query);
676 $authorised_values_sth->execute( $authorised_value);
678 while ( my ( $value, $lib ) = $authorised_values_sth->fetchrow_array ) {
679 push @authorised_values, $value;
680 $authorised_lib{$value} = $lib;
681 # For item location, we show the code and the libelle
682 $authorised_lib{$value} = $lib;
684 } else {
685 # not exists $authorised_value_categories{$authorised_value})
686 push @authval_errors, {'entry' => $text,
687 'auth_val' => $authorised_value };
688 # tell the template there's an error
689 $template->param( auth_val_error => 1 );
690 # skip scrolling list creation and params push
691 next;
694 $labelid = $text;
695 $labelid =~ s/\W//g;
696 $input =CGI::scrolling_list( # FIXME: factor out scrolling_list
697 -name => "sql_params",
698 -id => "sql_params_".$labelid,
699 -values => \@authorised_values,
700 # -default => $value,
701 -labels => \%authorised_lib,
702 -override => 1,
703 -size => 1,
704 -multiple => 0,
705 -tabindex => 1,
709 push @tmpl_parameters, {'entry' => $text, 'input' => $input, 'labelid' => $labelid };
711 $template->param('sql' => $sql,
712 'name' => $name,
713 'sql_params' => \@tmpl_parameters,
714 'auth_val_errors' => \@authval_errors,
715 'enter_params' => 1,
716 'reports' => $report_id,
718 } else {
719 # OK, we have parameters, or there are none, we run the report
720 # if there were parameters, replace before running
721 # split on ??. Each odd (2,4,6,...) entry should be a parameter to fill
722 my @split = split /<<|>>/,$sql;
723 my @tmpl_parameters;
724 for(my $i=0;$i<$#split/2;$i++) {
725 my $quoted = C4::Context->dbh->quote($sql_params[$i]);
726 # if there are special regexp chars, we must \ them
727 $split[$i*2+1] =~ s/(\||\?|\.|\*|\(|\)|\%)/\\$1/g;
728 $sql =~ s/<<$split[$i*2+1]>>/$quoted/;
730 my ($sth, $errors) = execute_query($sql, $offset, $limit);
731 my $total = nb_rows($sql) || 0;
732 unless ($sth) {
733 die "execute_query failed to return sth for report $report_id: $sql";
734 } else {
735 my $headers= header_cell_loop($sth);
736 $template->param(header_row => $headers);
737 while (my $row = $sth->fetchrow_arrayref()) {
738 my @cells = map { +{ cell => $_ } } @$row;
739 push @rows, { cells => \@cells };
743 my $totpages = int($total/$limit) + (($total % $limit) > 0 ? 1 : 0);
744 my $url = "/cgi-bin/koha/reports/guided_reports.pl?reports=$report_id&amp;phase=Run%20this%20report&amp;limit=$limit";
745 if (@sql_params) {
746 $url = join('&amp;sql_params=', $url, map { URI::Escape::uri_escape($_) } @sql_params);
748 $template->param(
749 'results' => \@rows,
750 'sql' => $sql,
751 'id' => $report_id,
752 'execute' => 1,
753 'name' => $name,
754 'notes' => $notes,
755 'errors' => defined($errors) ? [ $errors ] : undef,
756 'pagination_bar' => pagination_bar($url, $totpages, $input->param('page')),
757 'unlimited_total' => $total,
758 'sql_params' => \@sql_params,
762 else {
763 push @errors, { no_sql_for_id => $report_id };
767 elsif ($phase eq 'Export'){
769 # export results to tab separated text or CSV
770 my $sql = $input->param('sql'); # FIXME: use sql from saved report ID#, not new user-supplied SQL!
771 my $format = $input->param('format');
772 my ($sth, $q_errors) = execute_query($sql);
773 unless ($q_errors and @$q_errors) {
774 my ( $type, $content );
775 if ($format eq 'tab') {
776 $type = 'application/octet-stream';
777 $content .= join("\t", header_cell_values($sth)) . "\n";
778 while (my $row = $sth->fetchrow_arrayref()) {
779 $content .= join("\t", @$row) . "\n";
781 } else {
782 my $delimiter = C4::Context->preference('delimiter') || ',';
783 if ( $format eq 'csv' ) {
784 $type = 'application/csv';
785 my $csv = Text::CSV::Encoded->new({ encoding_out => 'utf8', sep_char => $delimiter});
786 $csv or die "Text::CSV::Encoded->new({binary => 1}) FAILED: " . Text::CSV::Encoded->error_diag();
787 if ($csv->combine(header_cell_values($sth))) {
788 $content .= $csv->string(). "\n";
789 } else {
790 push @$q_errors, { combine => 'HEADER ROW: ' . $csv->error_diag() } ;
792 while (my $row = $sth->fetchrow_arrayref()) {
793 if ($csv->combine(@$row)) {
794 $content .= $csv->string() . "\n";
795 } else {
796 push @$q_errors, { combine => $csv->error_diag() } ;
800 elsif ( $format eq 'ods' ) {
801 $type = 'application/vnd.oasis.opendocument.spreadsheet';
802 my $ods_fh = File::Temp->new( UNLINK => 0 );
803 my $ods_filepath = $ods_fh->filename;
805 use OpenOffice::OODoc;
806 my $tmpdir = dirname $ods_filepath;
807 odfWorkingDirectory( $tmpdir );
808 my $container = odfContainer( $ods_filepath, create => 'spreadsheet' );
809 my $doc = odfDocument (
810 container => $container,
811 part => 'content'
813 my $table = $doc->getTable(0);
814 my @headers = header_cell_values( $sth );
815 my $rows = $sth->fetchall_arrayref();
816 my ( $nb_rows, $nb_cols ) = ( 0, 0 );
817 $nb_rows = @$rows;
818 $nb_cols = @headers;
819 $doc->expandTable( $table, $nb_rows + 1, $nb_cols );
821 my $row = $doc->getRow( $table, 0 );
822 my $j = 0;
823 for my $header ( @headers ) {
824 $doc->cellValue( $row, $j, $header );
825 $j++;
827 my $i = 1;
828 for ( @$rows ) {
829 $row = $doc->getRow( $table, $i );
830 for ( my $j = 0 ; $j < $nb_cols ; $j++ ) {
831 my $value = Encode::encode( 'UTF8', $rows->[$i - 1][$j] );
832 $doc->cellValue( $row, $j, $value );
834 $i++;
836 $doc->save();
837 binmode(STDOUT);
838 open $ods_fh, '<', $ods_filepath;
839 $content .= $_ while <$ods_fh>;
840 unlink $ods_filepath;
843 print $input->header(
844 -type => $type,
845 -attachment=>"reportresults.$format"
847 print $content;
849 foreach my $err (@$q_errors, @errors) {
850 print "# ERROR: " . (map {$_ . ": " . $err->{$_}} keys %$err) . "\n";
851 } # here we print all the non-fatal errors at the end. Not super smooth, but better than nothing.
852 exit;
854 $template->param(
855 'sql' => $sql,
856 'execute' => 1,
857 'name' => 'Error exporting report!',
858 'notes' => '',
859 'errors' => $q_errors,
863 elsif ( $phase eq 'Create report from SQL' ) {
865 my ($group, $subgroup);
866 # allow the user to paste in sql
867 if ( $input->param('sql') ) {
868 $group = $input->param('report_group');
869 $subgroup = $input->param('report_subgroup');
870 $template->param(
871 'sql' => $input->param('sql') // '',
872 'reportname' => $input->param('reportname') // '',
873 'notes' => $input->param('notes') // '',
876 $template->param(
877 'create' => 1,
878 'groups_with_subgroups' => groups_with_subgroups($group, $subgroup),
879 'public' => '0',
880 'cache_expiry' => 300,
881 'usecache' => $usecache,
885 elsif ($phase eq 'Create Compound Report'){
886 $template->param( 'savedreports' => get_saved_reports(),
887 'compound' => 1,
891 elsif ($phase eq 'Save Compound'){
892 my $master = $input->param('master');
893 my $subreport = $input->param('subreport');
894 my ($mastertables,$subtables) = create_compound($master,$subreport);
895 $template->param( 'save_compound' => 1,
896 master=>$mastertables,
897 subsql=>$subtables
901 # pass $sth, get back an array of names for the column headers
902 sub header_cell_values {
903 my $sth = shift or return ();
904 my @cols;
905 foreach my $c (@{$sth->{NAME}}) {
906 # TODO in Bug 11944
907 #FIXME apparently DBI still needs a utf8 fix for this?
908 utf8::decode($c);
909 push @cols, $c;
911 return @cols;
914 # pass $sth, get back a TMPL_LOOP-able set of names for the column headers
915 sub header_cell_loop {
916 my @headers = map { +{ cell => $_ } } header_cell_values (shift);
917 return \@headers;
920 foreach (1..6) {
921 $template->{VARS}->{'build' . $_} and $template->{VARS}->{'buildx' . $_} and last;
923 $template->param( 'referer' => $input->referer(),
926 output_html_with_http_headers $input, $cookie, $template->output;
928 sub groups_with_subgroups {
929 my ($group, $subgroup) = @_;
931 my $groups_with_subgroups = get_report_groups();
932 my @g_sg;
933 my @sorted_keys = sort {
934 $groups_with_subgroups->{$a}->{name} cmp $groups_with_subgroups->{$b}->{name}
935 } keys %$groups_with_subgroups;
936 foreach my $g_id (@sorted_keys) {
937 my $v = $groups_with_subgroups->{$g_id};
938 my @subgroups;
939 if (my $sg = $v->{subgroups}) {
940 foreach my $sg_id (sort { $sg->{$a} cmp $sg->{$b} } keys %$sg) {
941 push @subgroups, {
942 id => $sg_id,
943 name => $sg->{$sg_id},
944 selected => ($group && $g_id eq $group && $subgroup && $sg_id eq $subgroup ),
948 push @g_sg, {
949 id => $g_id,
950 name => $v->{name},
951 selected => ($group && $g_id eq $group),
952 subgroups => \@subgroups,
955 return \@g_sg;
958 sub create_non_existing_group_and_subgroup {
959 my ($input, $group, $subgroup) = @_;
961 if (defined $group and $group ne '') {
962 my $report_groups = C4::Reports::Guided::get_report_groups;
963 if (not exists $report_groups->{$group}) {
964 my $groupdesc = $input->param('groupdesc') // $group;
965 C4::Koha::AddAuthorisedValue('REPORT_GROUP', $group, $groupdesc);
967 if (defined $subgroup and $subgroup ne '') {
968 if (not exists $report_groups->{$group}->{subgroups}->{$subgroup}) {
969 my $subgroupdesc = $input->param('subgroupdesc') // $subgroup;
970 C4::Koha::AddAuthorisedValue('REPORT_SUBGROUP', $subgroup, $subgroupdesc, $group);