Bug 28036: Improve breadcrumbs of serial claims page
[koha.git] / reports / guided_reports.pl
1 #!/usr/bin/perl
2
3 # Copyright 2007 Liblime ltd
4 #
5 # This file is part of Koha.
6 #
7 # Koha is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
11 #
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
19
20 use Modern::Perl;
21 use CGI qw/-utf8/;
22 use Text::CSV::Encoded;
23 use Encode qw( decode );
24 use URI::Escape;
25 use File::Temp;
26 use C4::Reports::Guided;
27 use Koha::Reports;
28 use C4::Auth qw/:DEFAULT get_session/;
29 use C4::Output;
30 use C4::Debug;
31 use C4::Context;
32 use Koha::Caches;
33 use C4::Log;
34 use Koha::DateUtils qw/dt_from_string output_pref/;
35 use Koha::AuthorisedValue;
36 use Koha::AuthorisedValues;
37 use Koha::BiblioFrameworks;
38 use Koha::Libraries;
39 use Koha::Patron::Categories;
40 use Koha::SharedContent;
41 use Koha::Util::OpenDocument;
42
43 =head1 NAME
44
45 guided_reports.pl
46
47 =head1 DESCRIPTION
48
49 Script to control the guided report creation
50
51 =cut
52
53 my $input = CGI->new;
54 my $usecache = Koha::Caches->get_instance->memcached_cache;
55
56 my $phase = $input->param('phase') // '';
57 my $flagsrequired;
58 if ( ( $phase eq 'Build new' ) || ( $phase eq 'Create report from SQL' ) || ( $phase eq 'Edit SQL' )
59    || ( $phase eq 'Build new from existing' ) ) {
60     $flagsrequired = 'create_reports';
61 }
62 elsif ( $phase eq 'Use saved' ) {
63     $flagsrequired = 'execute_reports';
64 }
65 elsif ( $phase eq 'Delete Saved' ) {
66     $flagsrequired = 'delete_reports';
67 }
68 else {
69     $flagsrequired = '*';
70 }
71
72 my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
73     {
74         template_name   => "reports/guided_reports_start.tt",
75         query           => $input,
76         type            => "intranet",
77         flagsrequired   => { reports => $flagsrequired },
78         debug           => 1,
79     }
80 );
81 my $session = $cookie ? get_session($cookie->value) : undef;
82
83 my $filter;
84 if ( $input->param("filter_set") or $input->param('clear_filters') ) {
85     $filter = {};
86     $filter->{$_} = $input->param("filter_$_") foreach qw/date author keyword group subgroup/;
87     $session->param('report_filter', $filter) if $session;
88     $template->param( 'filter_set' => 1 );
89 }
90 elsif ($session and not $input->param('clear_filters')) {
91     $filter = $session->param('report_filter');
92 }
93
94 my $op = $input->param('op') || q||;
95
96 my @errors = ();
97 if ( !$phase ) {
98     $template->param( 'start' => 1 );
99     # show welcome page
100 }
101 elsif ( $phase eq 'Build new' ) {
102     # build a new report
103     $template->param( 'build1' => 1 );
104     $template->param(
105         'areas'        => get_report_areas(),
106         'usecache'     => $usecache,
107         'cache_expiry' => 300,
108         'public'       => '0',
109     );
110 } elsif ( $phase eq 'Use saved' ) {
111
112     if ( $op eq 'convert' ) {
113         my $report_id = $input->param('report_id');
114         my $report    = Koha::Reports->find($report_id);
115         if ($report) {
116             my $updated_sql = C4::Reports::Guided::convert_sql( $report->savedsql );
117             C4::Reports::Guided::update_sql(
118                 $report_id,
119                 {
120                     sql          => $updated_sql,
121                     name         => $report->report_name,
122                     group        => $report->report_group,
123                     subgroup     => $report->report_subgroup,
124                     notes        => $report->notes,
125                     public       => $report->public,
126                     cache_expiry => $report->cache_expiry,
127                 }
128             );
129             $template->param( report_converted => $report->report_name );
130         }
131     }
132
133     # use a saved report
134     # get list of reports and display them
135     my $group = $input->param('group');
136     my $subgroup = $input->param('subgroup');
137     $filter->{group} = $group;
138     $filter->{subgroup} = $subgroup;
139     my $reports = get_saved_reports($filter);
140     my $has_obsolete_reports;
141     for my $report ( @$reports ) {
142         $report->{results} = C4::Reports::Guided::get_results( $report->{id} );
143         if ( $report->{savedsql} =~ m|biblioitems| and $report->{savedsql} =~ m|marcxml| ) {
144             $report->{seems_obsolete} = 1;
145             $has_obsolete_reports++;
146         }
147     }
148     $template->param(
149         'manamsg' => $input->param('manamsg') || '',
150         'saved1'                => 1,
151         'savedreports'          => $reports,
152         'usecache'              => $usecache,
153         'groups_with_subgroups' => groups_with_subgroups( $group, $subgroup ),
154         filters                 => $filter,
155         has_obsolete_reports    => $has_obsolete_reports,
156     );
157 }
158
159 elsif ( $phase eq 'Delete Multiple') {
160     my @ids = $input->multi_param('ids');
161     delete_report( @ids );
162     print $input->redirect("/cgi-bin/koha/reports/guided_reports.pl?phase=Use%20saved");
163     exit;
164 }
165
166 elsif ( $phase eq 'Delete Saved') {
167         
168         # delete a report from the saved reports list
169     my $ids = $input->param('reports');
170     delete_report($ids);
171     print $input->redirect("/cgi-bin/koha/reports/guided_reports.pl?phase=Use%20saved");
172         exit;
173 }               
174
175 elsif ( $phase eq 'Show SQL'){
176         
177     my $id = $input->param('reports');
178     my $report = Koha::Reports->find($id);
179     $template->param(
180         'id'      => $id,
181         'reportname' => $report->report_name,
182         'notes'      => $report->notes,
183         'sql'     => $report->savedsql,
184         'showsql' => 1,
185         'mana_success' => $input->param('mana_success'),
186         'mana_success' => scalar $input->param('mana_success'),
187         'mana_id' => $report->{mana_id},
188         'mana_comments' => $report->{comments}
189     );
190 }
191
192 elsif ( $phase eq 'Edit SQL'){
193     my $id = $input->param('reports');
194     my $report = Koha::Reports->find($id);
195     my $group = $report->report_group;
196     my $subgroup  = $report->report_subgroup;
197     $template->param(
198         'sql'        => $report->savedsql,
199         'reportname' => $report->report_name,
200         'groups_with_subgroups' => groups_with_subgroups($group, $subgroup),
201         'notes'      => $report->notes,
202         'id'         => $id,
203         'cache_expiry' => $report->cache_expiry,
204         'public' => $report->public,
205         'usecache' => $usecache,
206         'editsql'    => 1,
207         'mana_id' => $report->{mana_id},
208         'mana_comments' => $report->{comments}
209     );
210 }
211
212 elsif ( $phase eq 'Update SQL'){
213     my $id         = $input->param('id');
214     my $sql        = $input->param('sql');
215     my $reportname = $input->param('reportname');
216     my $group      = $input->param('group');
217     my $subgroup   = $input->param('subgroup');
218     my $notes      = $input->param('notes');
219     my $cache_expiry = $input->param('cache_expiry');
220     my $cache_expiry_units = $input->param('cache_expiry_units');
221     my $public = $input->param('public');
222     my $save_anyway = $input->param('save_anyway');
223     my @errors;
224
225     # if we have the units, then we came from creating a report from SQL and thus need to handle converting units
226     if( $cache_expiry_units ){
227       if( $cache_expiry_units eq "minutes" ){
228         $cache_expiry *= 60;
229       } elsif( $cache_expiry_units eq "hours" ){
230         $cache_expiry *= 3600; # 60 * 60
231       } elsif( $cache_expiry_units eq "days" ){
232         $cache_expiry *= 86400; # 60 * 60 * 24
233       }
234     }
235     # check $cache_expiry isn't 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
236     if( $cache_expiry >= 2592000 ){
237       push @errors, {cache_expiry => $cache_expiry};
238     }
239
240     create_non_existing_group_and_subgroup($input, $group, $subgroup);
241
242     if ($sql =~ /;?\W?(UPDATE|DELETE|DROP|INSERT|SHOW|CREATE)\W/i) {
243         push @errors, {sqlerr => $1};
244     }
245     elsif ($sql !~ /^(SELECT)/i) {
246         push @errors, {queryerr => "No SELECT"};
247     }
248
249     if (@errors) {
250         $template->param(
251             'errors'    => \@errors,
252             'sql'       => $sql,
253         );
254     } else {
255
256         # Check defined SQL parameters for authorised value validity
257         my $problematic_authvals = ValidateSQLParameters($sql);
258
259         if ( scalar @$problematic_authvals > 0 && not $save_anyway ) {
260             # There's at least one problematic parameter, report to the
261             # GUI and provide all user input for further actions
262             $template->param(
263                 'id' => $id,
264                 'sql' => $sql,
265                 'reportname' => $reportname,
266                 'group' => $group,
267                 'subgroup' => $subgroup,
268                 'notes' => $notes,
269                 'public' => $public,
270                 'problematic_authvals' => $problematic_authvals,
271                 'warn_authval_problem' => 1,
272                 'phase_update' => 1
273             );
274
275         } else {
276             # No params problem found or asked to save anyway
277             update_sql( $id, {
278                     sql => $sql,
279                     name => $reportname,
280                     group => $group,
281                     subgroup => $subgroup,
282                     notes => $notes,
283                     public => $public,
284                     cache_expiry => $cache_expiry,
285                 } );
286             $template->param(
287                 'save_successful'       => 1,
288                 'reportname'            => $reportname,
289                 'id'                    => $id,
290                 'editsql'               => 1,
291                 'sql'                   => $sql,
292                 'groups_with_subgroups' => groups_with_subgroups($group, $subgroup),
293                 'notes'                 => $notes,
294                 'cache_expiry'          => $cache_expiry,
295                 'public'                => $public,
296                 'usecache'              => $usecache,
297             );
298             logaction( "REPORTS", "MODIFY", $id, "$reportname | $sql" ) if C4::Context->preference("ReportsLog");
299         }
300         if ( $usecache ) {
301             $template->param(
302                 cache_expiry => $cache_expiry,
303                 cache_expiry_units => $cache_expiry_units,
304             );
305         }
306     }
307 }
308
309 elsif ($phase eq 'retrieve results') {
310     my $id = $input->param('id');
311     my $result = format_results( $id );
312     $template->param(
313         report_name   => $result->{report_name},
314         notes         => $result->{notes},
315         saved_results => $result->{results},
316         date_run      => $result->{date_run},
317     );
318 }
319
320 elsif ( $phase eq 'Report on this Area' ) {
321     my $cache_expiry_units = $input->param('cache_expiry_units'),
322     my $cache_expiry = $input->param('cache_expiry');
323
324     # we need to handle converting units
325     if( $cache_expiry_units eq "minutes" ){
326       $cache_expiry *= 60;
327     } elsif( $cache_expiry_units eq "hours" ){
328       $cache_expiry *= 3600; # 60 * 60
329     } elsif( $cache_expiry_units eq "days" ){
330       $cache_expiry *= 86400; # 60 * 60 * 24
331     }
332     # check $cache_expiry isn't 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
333     if( $cache_expiry >= 2592000 ){ # oops, over the limit of 30 days
334       # report error to user
335       $template->param(
336         'cache_error' => 1,
337         'build1' => 1,
338         'areas'   => get_report_areas(),
339         'cache_expiry' => $cache_expiry,
340         'usecache' => $usecache,
341         'public' => scalar $input->param('public'),
342       );
343     } else {
344       # they have chosen a new report and the area to report on
345       $template->param(
346           'build2' => 1,
347           'area'   => scalar $input->param('area'),
348           'types'  => get_report_types(),
349           'cache_expiry' => $cache_expiry,
350           'public' => scalar $input->param('public'),
351       );
352     }
353 }
354
355 elsif ( $phase eq 'Choose this type' ) {
356     # they have chosen type and area
357     # get area and type and pass them to the template
358     my $area = $input->param('area');
359     my $type = $input->param('types');
360     $template->param(
361         'build3' => 1,
362         'area'   => $area,
363         'type'   => $type,
364         columns  => get_columns($area,$input),
365         'cache_expiry' => scalar $input->param('cache_expiry'),
366         'public' => scalar $input->param('public'),
367     );
368 }
369
370 elsif ( $phase eq 'Choose these columns' ) {
371     # we now know type, area, and columns
372     # next step is the constraints
373     my $area    = $input->param('area');
374     my $type    = $input->param('type');
375     my @columns = $input->multi_param('columns');
376     my $column  = join( ',', @columns );
377
378     $template->param(
379         'build4' => 1,
380         'area'   => $area,
381         'type'   => $type,
382         'column' => $column,
383         definitions => get_from_dictionary($area),
384         criteria    => get_criteria($area,$input),
385         'public' => scalar $input->param('public'),
386     );
387     if ( $usecache ) {
388         $template->param(
389             cache_expiry => scalar $input->param('cache_expiry'),
390             cache_expiry_units => scalar $input->param('cache_expiry_units'),
391         );
392     }
393
394 }
395
396 elsif ( $phase eq 'Choose these criteria' ) {
397     my $area     = $input->param('area');
398     my $type     = $input->param('type');
399     my $column   = $input->param('column');
400     my @definitions = $input->multi_param('definition');
401     my $definition = join (',',@definitions);
402     my @criteria = $input->multi_param('criteria_column');
403     my $query_criteria;
404     foreach my $crit (@criteria) {
405         my $value = $input->param( $crit . "_value" );
406
407         # If value is not defined, then it may be range values
408         if (!defined $value) {
409
410             my $fromvalue = $input->param( "from_" . $crit . "_value" );
411             my $tovalue   = $input->param( "to_"   . $crit . "_value" );
412
413             # If the range values are dates
414             my $fromvalue_dt;
415             $fromvalue_dt = eval { dt_from_string( $fromvalue ); } if ( $fromvalue );
416             my $tovalue_dt;
417             $tovalue_dt = eval { dt_from_string( $tovalue ); } if ($tovalue);
418             if ( $fromvalue_dt && $tovalue_dt ) {
419                 $fromvalue = output_pref( { dt => dt_from_string( $fromvalue_dt ), dateonly => 1, dateformat => 'iso' } );
420                 $tovalue   = output_pref( { dt => dt_from_string( $tovalue_dt ), dateonly => 1, dateformat => 'iso' } );
421             }
422
423             if ($fromvalue && $tovalue) {
424                 $query_criteria .= " AND $crit >= '$fromvalue' AND $crit <= '$tovalue'";
425             }
426
427         } else {
428
429             # If value is a date
430             my $value_dt;
431             $value_dt  =  eval { dt_from_string( $value ); } if ( $value );
432             if ( $value_dt ) {
433                 $value = output_pref( { dt => dt_from_string( $value_dt ), dateonly => 1, dateformat => 'iso' } );
434             }
435             # don't escape runtime parameters, they'll be at runtime
436             if ($value =~ /<<.*>>/) {
437                 $query_criteria .= " AND $crit=$value";
438             } else {
439                 $query_criteria .= " AND $crit='$value'";
440             }
441         }
442     }
443     $template->param(
444         'build5'         => 1,
445         'area'           => $area,
446         'type'           => $type,
447         'column'         => $column,
448         'definition'     => $definition,
449         'criteriastring' => $query_criteria,
450         'public' => scalar $input->param('public'),
451     );
452     if ( $usecache ) {
453         $template->param(
454             cache_expiry => scalar $input->param('cache_expiry'),
455             cache_expiry_units => scalar $input->param('cache_expiry_units'),
456         );
457     }
458
459     # get columns
460     my @columns = split( ',', $column );
461     my @total_by;
462
463     # build structue for use by tmpl_loop to choose columns to order by
464     # need to do something about the order of the order :)
465         # we also want to use the %columns hash to get the plain english names
466     foreach my $col (@columns) {
467         my %total = (name => $col);
468         my @selects = map {+{ value => $_ }} (qw(sum min max avg count));
469         $total{'select'} = \@selects;
470         push @total_by, \%total;
471     }
472
473     $template->param( 'total_by' => \@total_by );
474 }
475
476 elsif ( $phase eq 'Choose these operations' ) {
477     my $area     = $input->param('area');
478     my $type     = $input->param('type');
479     my $column   = $input->param('column');
480     my $criteria = $input->param('criteria');
481         my $definition = $input->param('definition');
482     my @total_by = $input->multi_param('total_by');
483     my $totals;
484     foreach my $total (@total_by) {
485         my $value = $input->param( $total . "_tvalue" );
486         $totals .= "$value($total),";
487     }
488
489     $template->param(
490         'build6'         => 1,
491         'area'           => $area,
492         'type'           => $type,
493         'column'         => $column,
494         'criteriastring' => $criteria,
495         'totals'         => $totals,
496         'definition'     => $definition,
497         'cache_expiry' => scalar $input->param('cache_expiry'),
498         'public' => scalar $input->param('public'),
499     );
500
501     # get columns
502     my @columns = split( ',', $column );
503     my @order_by;
504
505     # build structue for use by tmpl_loop to choose columns to order by
506     # need to do something about the order of the order :)
507     foreach my $col (@columns) {
508         my %order = (name => $col);
509         my @selects = map {+{ value => $_ }} (qw(asc desc));
510         $order{'select'} = \@selects;
511         push @order_by, \%order;
512     }
513
514     $template->param( 'order_by' => \@order_by );
515 }
516
517 elsif ( $phase eq 'Build report' ) {
518
519     # now we have all the info we need and can build the sql
520     my $area     = $input->param('area');
521     my $type     = $input->param('type');
522     my $column   = $input->param('column');
523     my $crit     = $input->param('criteria');
524     my $totals   = $input->param('totals');
525     my $definition = $input->param('definition');
526     my $query_criteria=$crit;
527     # split the columns up by ,
528     my @columns = split( ',', $column );
529     my @order_by = $input->multi_param('order_by');
530
531     my $query_orderby;
532     foreach my $order (@order_by) {
533         my $value = $input->param( $order . "_ovalue" );
534         if ($query_orderby) {
535             $query_orderby .= ",$order $value";
536         }
537         else {
538             $query_orderby = " ORDER BY $order $value";
539         }
540     }
541
542     # get the sql
543     my $sql =
544       build_query( \@columns, $query_criteria, $query_orderby, $area, $totals, $definition );
545     $template->param(
546         'showreport' => 1,
547         'area'       => $area,
548         'sql'        => $sql,
549         'type'       => $type,
550         'cache_expiry' => scalar $input->param('cache_expiry'),
551         'public' => scalar $input->param('public'),
552     );
553 }
554
555 elsif ( $phase eq 'Save' ) {
556     # Save the report that has just been built
557     my $area = $input->param('area');
558     my $sql  = $input->param('sql');
559     my $type = $input->param('type');
560     $template->param(
561         'save' => 1,
562         'area'  => $area,
563         'sql'  => $sql,
564         'type' => $type,
565         'cache_expiry' => scalar $input->param('cache_expiry'),
566         'public' => scalar $input->param('public'),
567         'groups_with_subgroups' => groups_with_subgroups($area), # in case we have a report group that matches area
568     );
569 }
570
571 elsif ( $phase eq 'Save Report' ) {
572     # save the sql pasted in by a user
573     my $area  = $input->param('area');
574     my $group = $input->param('group');
575     my $subgroup = $input->param('subgroup');
576     my $sql   = $input->param('sql');
577     my $name  = $input->param('reportname');
578     my $type  = $input->param('types');
579     my $notes = $input->param('notes');
580     my $cache_expiry = $input->param('cache_expiry');
581     my $cache_expiry_units = $input->param('cache_expiry_units');
582     my $public = $input->param('public');
583     my $save_anyway = $input->param('save_anyway');
584
585
586     # if we have the units, then we came from creating a report from SQL and thus need to handle converting units
587     if( $cache_expiry_units ){
588       if( $cache_expiry_units eq "minutes" ){
589         $cache_expiry *= 60;
590       } elsif( $cache_expiry_units eq "hours" ){
591         $cache_expiry *= 3600; # 60 * 60
592       } elsif( $cache_expiry_units eq "days" ){
593         $cache_expiry *= 86400; # 60 * 60 * 24
594       }
595     }
596     # check $cache_expiry isn't 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
597     if( $cache_expiry && $cache_expiry >= 2592000 ){
598       push @errors, {cache_expiry => $cache_expiry};
599     }
600
601     create_non_existing_group_and_subgroup($input, $group, $subgroup);
602     ## FIXME this is AFTER entering a name to save the report under
603     if ($sql =~ /;?\W?(UPDATE|DELETE|DROP|INSERT|SHOW|CREATE)\W/i) {
604         push @errors, {sqlerr => $1};
605     }
606     elsif ($sql !~ /^(SELECT)/i) {
607         push @errors, {queryerr => "No SELECT"};
608     }
609
610     if (@errors) {
611         $template->param(
612             'errors'    => \@errors,
613             'sql'       => $sql,
614             'reportname'=> $name,
615             'type'      => $type,
616             'notes'     => $notes,
617             'cache_expiry' => $cache_expiry,
618             'public'    => $public,
619         );
620     } else {
621         # Check defined SQL parameters for authorised value validity
622         my $problematic_authvals = ValidateSQLParameters($sql);
623
624         if ( scalar @$problematic_authvals > 0 && not $save_anyway ) {
625             # There's at least one problematic parameter, report to the
626             # GUI and provide all user input for further actions
627             $template->param(
628                 'area' => $area,
629                 'group' =>  $group,
630                 'subgroup' => $subgroup,
631                 'sql' => $sql,
632                 'reportname' => $name,
633                 'type' => $type,
634                 'notes' => $notes,
635                 'public' => $public,
636                 'problematic_authvals' => $problematic_authvals,
637                 'warn_authval_problem' => 1,
638                 'phase_save' => 1
639             );
640             if ( $usecache ) {
641                 $template->param(
642                     cache_expiry => $cache_expiry,
643                     cache_expiry_units => $cache_expiry_units,
644                 );
645             }
646         } else {
647             # No params problem found or asked to save anyway
648             my $id = save_report( {
649                     borrowernumber => $borrowernumber,
650                     sql            => $sql,
651                     name           => $name,
652                     area           => $area,
653                     group          => $group,
654                     subgroup       => $subgroup,
655                     type           => $type,
656                     notes          => $notes,
657                     cache_expiry   => $cache_expiry,
658                     public         => $public,
659                 } );
660                 logaction( "REPORTS", "ADD", $id, "$name | $sql" ) if C4::Context->preference("ReportsLog");
661             $template->param(
662                 'save_successful' => 1,
663                 'reportname'      => $name,
664                 'id'              => $id,
665                 'editsql'         => 1,
666                 'sql'             => $sql,
667                 'groups_with_subgroups' => groups_with_subgroups($group, $subgroup),
668                 'notes'      => $notes,
669                 'cache_expiry' => $cache_expiry,
670                 'public' => $public,
671                 'usecache' => $usecache,
672             );
673         }
674     }
675 }
676
677 elsif ($phase eq 'Share'){
678     my $lang = $input->param('mana_language') || '';
679     my $reportid = $input->param('reportid');
680     my $result = Koha::SharedContent::send_entity($lang, $borrowernumber, $reportid, 'report');
681     if ( $result ) {
682         print $input->redirect("/cgi-bin/koha/reports/guided_reports.pl?phase=Use%20saved&manamsg=".$result->{msg});
683     }else{
684         print $input->redirect("/cgi-bin/koha/reports/guided_reports.pl?phase=Use%20saved&manamsg=noanswer");
685     }
686 }
687 elsif ($phase eq 'Run this report'){
688     # execute a saved report
689     my $limit      = $input->param('limit') || 20;
690     my $offset     = 0;
691     my $report_id  = $input->param('reports');
692     my @sql_params = $input->multi_param('sql_params');
693     my @param_names = $input->multi_param('param_name');
694     my $want_full_chart = $input->param('want_full_chart') || 0;
695
696     # offset algorithm
697     if ($input->param('page')) {
698         $offset = ($input->param('page') - 1) * $limit;
699     }
700
701     $template->param(
702         'limit'   => $limit,
703         'report_id' => $report_id,
704     );
705
706     my ( $sql, $original_sql, $type, $name, $notes );
707     if (my $report = Koha::Reports->find($report_id)) {
708         $sql   = $original_sql = $report->savedsql;
709         $name  = $report->report_name;
710         $notes = $report->notes;
711
712         my @rows = ();
713         my @allrows = ();
714         # if we have at least 1 parameter, and it's not filled, then don't execute but ask for parameters
715         if ($sql =~ /<</ && !@sql_params) {
716             # split on ??. Each odd (2,4,6,...) entry should be a parameter to fill
717             my @split = split /<<|>>/,$sql;
718             my @tmpl_parameters;
719             my @authval_errors;
720             my %uniq_params;
721             for(my $i=0;$i<($#split/2);$i++) {
722                 my ($text,$authorised_value_all) = split /\|/,$split[$i*2+1];
723                 my $sep = $authorised_value_all ? "|" : "";
724                 if( defined $uniq_params{$text.$sep.$authorised_value_all} ){
725                     next;
726                 } else { $uniq_params{$text.$sep.$authorised_value_all} = "$i"; }
727                 my ($authorised_value, $all) = split /:/, $authorised_value_all;
728                 my $input;
729                 my $labelid;
730                 if ( not defined $authorised_value ) {
731                     # no authorised value input, provide a text box
732                     $input = "text";
733                 } elsif ( $authorised_value eq "date" ) {
734                     # require a date, provide a date picker
735                     $input = 'date';
736                 } elsif ( $authorised_value eq "list" ) {
737                     # require a list, provide a textarea
738                     $input = 'textarea';
739                 } else {
740                     # defined $authorised_value, and not 'date'
741                     my $dbh=C4::Context->dbh;
742                     my @authorised_values;
743                     my %authorised_lib;
744                     # builds list, depending on authorised value...
745                     if ( $authorised_value eq "branches" ) {
746                         my $libraries = Koha::Libraries->search( {}, { order_by => ['branchname'] } );
747                         while ( my $library = $libraries->next ) {
748                             push @authorised_values, $library->branchcode;
749                             $authorised_lib{$library->branchcode} = $library->branchname;
750                         }
751                     }
752                     elsif ( $authorised_value eq "itemtypes" ) {
753                         my $sth = $dbh->prepare("SELECT itemtype,description FROM itemtypes ORDER BY description");
754                         $sth->execute;
755                         while ( my ( $itemtype, $description ) = $sth->fetchrow_array ) {
756                             push @authorised_values, $itemtype;
757                             $authorised_lib{$itemtype} = $description;
758                         }
759                     }
760                     elsif ( $authorised_value eq "biblio_framework" ) {
761                         my @frameworks = Koha::BiblioFrameworks->search({}, { order_by => ['frameworktext'] });
762                         my $default_source = '';
763                         push @authorised_values,$default_source;
764                         $authorised_lib{$default_source} = 'Default';
765                         foreach my $framework (@frameworks) {
766                             push @authorised_values, $framework->frameworkcode;
767                             $authorised_lib{$framework->frameworkcode} = $framework->frameworktext;
768                         }
769                     }
770                     elsif ( $authorised_value eq "cn_source" ) {
771                         my $class_sources = GetClassSources();
772                         my $default_source = C4::Context->preference("DefaultClassificationSource");
773                         foreach my $class_source (sort keys %$class_sources) {
774                             next unless $class_sources->{$class_source}->{'used'} or
775                                         ($class_source eq $default_source);
776                             push @authorised_values, $class_source;
777                             $authorised_lib{$class_source} = $class_sources->{$class_source}->{'description'};
778                         }
779                     }
780                     elsif ( $authorised_value eq "categorycode" ) {
781                         my @patron_categories = Koha::Patron::Categories->search({}, { order_by => ['description']});
782                         %authorised_lib = map { $_->categorycode => $_->description } @patron_categories;
783                         push @authorised_values, $_->categorycode for @patron_categories;
784                     }
785                     else {
786                         if ( Koha::AuthorisedValues->search({ category => $authorised_value })->count ) {
787                             my $query = '
788                             SELECT authorised_value,lib
789                             FROM authorised_values
790                             WHERE category=?
791                             ORDER BY lib
792                             ';
793                             my $authorised_values_sth = $dbh->prepare($query);
794                             $authorised_values_sth->execute( $authorised_value);
795
796                             while ( my ( $value, $lib ) = $authorised_values_sth->fetchrow_array ) {
797                                 push @authorised_values, $value;
798                                 $authorised_lib{$value} = $lib;
799                                 # For item location, we show the code and the libelle
800                                 $authorised_lib{$value} = $lib;
801                             }
802                         } else {
803                             # not exists $authorised_value_categories{$authorised_value})
804                             push @authval_errors, {'entry' => $text,
805                                                    'auth_val' => $authorised_value };
806                             # tell the template there's an error
807                             $template->param( auth_val_error => 1 );
808                             # skip scrolling list creation and params push
809                             next;
810                         }
811                     }
812                     $labelid = $text;
813                     $labelid =~ s/\W//g;
814                     $input = {
815                         name    => "sql_params",
816                         id      => "sql_params_".$labelid,
817                         values  => \@authorised_values,
818                         labels  => \%authorised_lib,
819                     };
820                 }
821
822                 push @tmpl_parameters, {'entry' => $text, 'input' => $input, 'labelid' => $labelid, 'name' => $text.$sep.$authorised_value_all, 'include_all' => $all };
823             }
824             $template->param('sql'         => $sql,
825                             'name'         => $name,
826                             'sql_params'   => \@tmpl_parameters,
827                             'auth_val_errors'  => \@authval_errors,
828                             'enter_params' => 1,
829                             'reports'      => $report_id,
830                             );
831         } else {
832             my ($sql,$header_types) = $report->prep_report( \@param_names, \@sql_params );
833             $template->param(header_types => $header_types);
834             my ( $sth, $errors ) = execute_query( $sql, $offset, $limit, undef, $report_id );
835             my $total = nb_rows($sql) || 0;
836             unless ($sth) {
837                 die "execute_query failed to return sth for report $report_id: $sql";
838             } else {
839                 my $headers = header_cell_loop($sth);
840                 $template->param(header_row => $headers);
841                 while (my $row = $sth->fetchrow_arrayref()) {
842                     my @cells = map { +{ cell => $_ } } @$row;
843                     push @rows, { cells => \@cells };
844                 }
845                 if( $want_full_chart ){
846                     my ($sth2, $errors2) = execute_query($sql);
847                     while (my $row = $sth2->fetchrow_arrayref()) {
848                         my @cells = map { +{ cell => $_ } } @$row;
849                         push @allrows, { cells => \@cells };
850                     }
851                 }
852             }
853
854             my $totpages = int($total/$limit) + (($total % $limit) > 0 ? 1 : 0);
855             my $url = "/cgi-bin/koha/reports/guided_reports.pl?reports=$report_id&amp;phase=Run%20this%20report&amp;limit=$limit&amp;want_full_chart=$want_full_chart";
856             if (@param_names) {
857                 $url = join('&amp;param_name=', $url, map { URI::Escape::uri_escape_utf8($_) } @param_names);
858             }
859             if (@sql_params) {
860                 $url = join('&amp;sql_params=', $url, map { URI::Escape::uri_escape_utf8($_) } @sql_params);
861             }
862
863             $template->param(
864                 'results' => \@rows,
865                 'allresults' => \@allrows,
866                 'sql'     => $sql,
867                 original_sql => $original_sql,
868                 'id'      => $report_id,
869                 'execute' => 1,
870                 'name'    => $name,
871                 'notes'   => $notes,
872                 'errors'  => defined($errors) ? [ $errors ] : undef,
873                 'pagination_bar'  => pagination_bar($url, $totpages, scalar $input->param('page')),
874                 'unlimited_total' => $total,
875                 'sql_params'      => \@sql_params,
876                 'param_names'     => \@param_names,
877             );
878         }
879     }
880     else {
881         push @errors, { no_sql_for_id => $report_id };
882     }
883 }
884
885 elsif ($phase eq 'Export'){
886
887         # export results to tab separated text or CSV
888     my $report_id      = $input->param('report_id');
889     my $report         = Koha::Reports->find($report_id);
890     my $sql            = $report->savedsql;
891     my @param_names    = $input->multi_param('param_name');
892     my @sql_params     = $input->multi_param('sql_params');
893     my $format         = $input->param('format');
894     my $reportname     = $input->param('reportname');
895     my $reportfilename = $reportname ? "$reportname-reportresults.$format" : "reportresults.$format" ;
896
897     ($sql, undef) = $report->prep_report( \@param_names, \@sql_params );
898         my ($sth, $q_errors) = execute_query($sql);
899     unless ($q_errors and @$q_errors) {
900         my ( $type, $content );
901         if ($format eq 'tab') {
902             $type = 'application/octet-stream';
903             $content .= join("\t", header_cell_values($sth)) . "\n";
904             $content = Encode::decode('UTF-8', $content);
905             while (my $row = $sth->fetchrow_arrayref()) {
906                 $content .= join("\t", map { $_ // '' } @$row) . "\n";
907             }
908         } else {
909             my $delimiter = C4::Context->preference('CSVDelimiter') || ',';
910             if ( $format eq 'csv' ) {
911                 $delimiter = "\t" if $delimiter eq 'tabulation';
912                 $type = 'application/csv';
913                 my $csv = Text::CSV::Encoded->new({ encoding_out => 'UTF-8', sep_char => $delimiter});
914                 $csv or die "Text::CSV::Encoded->new({binary => 1}) FAILED: " . Text::CSV::Encoded->error_diag();
915                 if ($csv->combine(header_cell_values($sth))) {
916                     $content .= Encode::decode('UTF-8', $csv->string()) . "\n";
917                 } else {
918                     push @$q_errors, { combine => 'HEADER ROW: ' . $csv->error_diag() } ;
919                 }
920                 while (my $row = $sth->fetchrow_arrayref()) {
921                     if ($csv->combine(@$row)) {
922                         $content .= $csv->string() . "\n";
923                     } else {
924                         push @$q_errors, { combine => $csv->error_diag() } ;
925                     }
926                 }
927             }
928             elsif ( $format eq 'ods' ) {
929                 $type = 'application/vnd.oasis.opendocument.spreadsheet';
930                 my $ods_fh = File::Temp->new( UNLINK => 0 );
931                 my $ods_filepath = $ods_fh->filename;
932                 my $ods_content;
933
934                 # First line is headers
935                 my @headers = header_cell_values($sth);
936                 push @$ods_content, \@headers;
937
938                 # Other line in Unicode
939                 my $sql_rows = $sth->fetchall_arrayref();
940                 foreach my $sql_row ( @$sql_rows ) {
941                     my @content_row;
942                     foreach my $sql_cell ( @$sql_row ) {
943                         push @content_row, Encode::encode( 'UTF8', $sql_cell );
944                     }
945                     push @$ods_content, \@content_row;
946                 }
947
948                 # Process
949                 generate_ods($ods_filepath, $ods_content);
950
951                 # Output
952                 binmode(STDOUT);
953                 open $ods_fh, '<', $ods_filepath;
954                 $content .= $_ while <$ods_fh>;
955                 unlink $ods_filepath;
956             }
957         }
958         print $input->header(
959             -type => $type,
960             -attachment=> $reportfilename
961         );
962         print $content;
963
964         foreach my $err (@$q_errors, @errors) {
965             print "# ERROR: " . (map {$_ . ": " . $err->{$_}} keys %$err) . "\n";
966         }   # here we print all the non-fatal errors at the end.  Not super smooth, but better than nothing.
967         exit;
968     }
969     $template->param(
970         'sql'           => $sql,
971         'execute'       => 1,
972         'name'          => 'Error exporting report!',
973         'notes'         => '',
974         'errors'        => $q_errors,
975     );
976 }
977
978 elsif ( $phase eq 'Create report from SQL' || $phase eq 'Create report from existing' ) {
979
980     my ($group, $subgroup, $sql, $reportname, $notes);
981     if ( $input->param('sql') ) {
982         $group      = $input->param('report_group');
983         $subgroup   = $input->param('report_subgroup');
984         $sql        = $input->param('sql') // '';
985         $reportname = $input->param('reportname') // '';
986         $notes      = $input->param('notes') // '';
987     }
988     elsif ( my $report_id = $input->param('report_id') ) {
989         my $report = Koha::Reports->find($report_id);
990         $group      = $report->report_group;
991         $subgroup   = $report->report_subgroup;
992         $sql        = $report->savedsql // '';
993         $reportname = $report->report_name // '';
994         $notes      = $report->notes // '';
995     }
996
997     $template->param(
998         sql        => $sql,
999         reportname => $reportname,
1000         notes      => $notes,
1001         'create' => 1,
1002         'groups_with_subgroups' => groups_with_subgroups($group, $subgroup),
1003         'public' => '0',
1004         'cache_expiry' => 300,
1005         'usecache' => $usecache,
1006
1007     );
1008 }
1009
1010 # pass $sth, get back an array of names for the column headers
1011 sub header_cell_values {
1012     my $sth = shift or return ();
1013     return '' unless ($sth->{NAME});
1014     return @{$sth->{NAME}};
1015 }
1016
1017 # pass $sth, get back a TMPL_LOOP-able set of names for the column headers
1018 sub header_cell_loop {
1019     my @headers = map { +{ cell => decode('UTF-8',$_) } } header_cell_values (shift);
1020     return \@headers;
1021 }
1022
1023 foreach (1..6) {
1024      $template->{VARS}->{'build' . $_} and last;
1025 }
1026 $template->param(   'referer' => $input->referer(),
1027                 );
1028
1029 output_html_with_http_headers $input, $cookie, $template->output;
1030
1031 sub groups_with_subgroups {
1032     my ($group, $subgroup) = @_;
1033
1034     my $groups_with_subgroups = get_report_groups();
1035     my @g_sg;
1036     my @sorted_keys = sort {
1037         $groups_with_subgroups->{$a}->{name} cmp $groups_with_subgroups->{$b}->{name}
1038     } keys %$groups_with_subgroups;
1039     foreach my $g_id (@sorted_keys) {
1040         my $v = $groups_with_subgroups->{$g_id};
1041         my @subgroups;
1042         if (my $sg = $v->{subgroups}) {
1043             foreach my $sg_id (sort { $sg->{$a} cmp $sg->{$b} } keys %$sg) {
1044                 push @subgroups, {
1045                     id => $sg_id,
1046                     name => $sg->{$sg_id},
1047                     selected => ($group && $g_id eq $group && $subgroup && $sg_id eq $subgroup ),
1048                 };
1049             }
1050         }
1051         push @g_sg, {
1052             id => $g_id,
1053             name => $v->{name},
1054             selected => ($group && $g_id eq $group),
1055             subgroups => \@subgroups,
1056         };
1057     }
1058     return \@g_sg;
1059 }
1060
1061 sub create_non_existing_group_and_subgroup {
1062     my ($input, $group, $subgroup) = @_;
1063     if (defined $group and $group ne '') {
1064         my $report_groups = C4::Reports::Guided::get_report_groups;
1065         if (not exists $report_groups->{$group}) {
1066             my $groupdesc = $input->param('groupdesc') // $group;
1067             Koha::AuthorisedValue->new({
1068                 category => 'REPORT_GROUP',
1069                 authorised_value => $group,
1070                 lib => $groupdesc,
1071             })->store;
1072             my $cache_key = "AuthorisedValues-REPORT_GROUP-0-".C4::Context->userenv->{"branch"};
1073             my $cache  = Koha::Caches->get_instance();
1074             my $result = $cache->clear_from_cache($cache_key);
1075         }
1076         if (defined $subgroup and $subgroup ne '') {
1077             if (not exists $report_groups->{$group}->{subgroups}->{$subgroup}) {
1078                 my $subgroupdesc = $input->param('subgroupdesc') // $subgroup;
1079                 Koha::AuthorisedValue->new({
1080                     category => 'REPORT_SUBGROUP',
1081                     authorised_value => $subgroup,
1082                     lib => $subgroupdesc,
1083                     lib_opac => $group,
1084                 })->store;
1085             my $cache_key = "AuthorisedValues-REPORT_SUBGROUP-0-".C4::Context->userenv->{"branch"};
1086             my $cache  = Koha::Caches->get_instance();
1087             my $result = $cache->clear_from_cache($cache_key);
1088             }
1089         }
1090     }
1091 }
1092