initial support for bind params in custom reports

This commit is contained in:
Oliver Gorwits
2014-09-30 08:02:15 +01:00
parent f6b1112931
commit cd22c741e5
4 changed files with 22 additions and 7 deletions

View File

@@ -22,11 +22,10 @@ foreach my $report (@{setting('reports')}) {
});
get "/ajax/content/report/$r" => require_login sub {
my $rs = schema('netdisco')->resultset('Virtual::GenericReport')->result_source;
# TODO: this should be done by creating a new Virtual Result class on
# the fly (package...) and then calling DBIC register_class on it.
my $rs = schema('netdisco')->resultset('Virtual::GenericReport')->result_source;
$rs->view_definition($report->{query});
$rs->remove_columns($rs->columns);
$rs->add_columns( exists $report->{query_columns}
@@ -35,13 +34,17 @@ foreach my $report (@{setting('reports')}) {
);
my $set = schema('netdisco')->resultset('Virtual::GenericReport')
->search(undef, {result_class => 'DBIx::Class::ResultClass::HashRefInflator'});
->search(undef, {
result_class => 'DBIx::Class::ResultClass::HashRefInflator',
( (exists $report->{bind_params})
? (bind => [map { param($_) } @{ $report->{bind_params} }]) : () ),
});
@data = $set->all;
# Data Munging support...
my $compartment = Safe->new;
$config = $report;
$config = $report; # closure for the config of this report
$compartment->share(qw/$config @data/);
$compartment->permit_only(qw/:default sort/);

View File

@@ -169,15 +169,22 @@ register 'register_report' => sub {
return error "bad config to register_report";
}
foreach my $item (@{setting('_reports_menu')->{ $config->{category} }}) {
if ($item eq $config->{tag}) {
setting('_reports')->{$config->{tag}} = $config;
foreach my $tag (@{setting('_reports_menu')->{ $config->{category} }}) {
if ($tag eq $config->{tag}) {
setting('_reports')->{$tag} = $config;
return;
}
}
push @{setting('_reports_menu')->{ $config->{category} }}, $config->{tag};
setting('_reports')->{$config->{tag}} = $config;
foreach my $rconfig (@{setting('reports')}) {
if ($rconfig->{tag} eq $config->{tag}) {
setting('_reports')->{$config->{tag}}->{'rconfig'} = $rconfig;
last;
}
}
};
register_plugin;