NetBIOS Node Report
This commit is contained in:
75
Netdisco/lib/App/Netdisco/Web/Plugin/Report/Netbios.pm
Normal file
75
Netdisco/lib/App/Netdisco/Web/Plugin/Report/Netbios.pm
Normal file
@@ -0,0 +1,75 @@
|
||||
package App::Netdisco::Web::Plugin::Report::Netbios;
|
||||
|
||||
use Dancer ':syntax';
|
||||
use Dancer::Plugin::DBIC;
|
||||
use Dancer::Plugin::Auth::Extensible;
|
||||
|
||||
use App::Netdisco::Web::Plugin;
|
||||
|
||||
register_report(
|
||||
{ category => 'Node',
|
||||
tag => 'netbios',
|
||||
label => 'NetBIOS Inventory',
|
||||
provides_csv => 1,
|
||||
}
|
||||
);
|
||||
|
||||
hook 'before_template' => sub {
|
||||
my $tokens = shift;
|
||||
|
||||
return
|
||||
unless ( request->path eq uri_for('/report/netbios')->path
|
||||
or
|
||||
index( request->path, uri_for('/ajax/content/report/netbios')->path )
|
||||
== 0 );
|
||||
|
||||
# used in the search sidebar template to set selected items
|
||||
foreach my $opt (qw/domain/) {
|
||||
my $p = (
|
||||
ref [] eq ref param($opt)
|
||||
? param($opt)
|
||||
: ( param($opt) ? [ param($opt) ] : [] )
|
||||
);
|
||||
$tokens->{"${opt}_lkp"} = { map { $_ => 1 } @$p };
|
||||
}
|
||||
};
|
||||
|
||||
get '/ajax/content/report/netbios' => require_login sub {
|
||||
|
||||
my $domain = param('domain');
|
||||
|
||||
my $rs = schema('netdisco')->resultset('NodeNbt');
|
||||
|
||||
if ( defined $domain ) {
|
||||
$domain = '' if $domain eq 'blank';
|
||||
$rs = $rs->search( { domain => $domain } )->order_by(
|
||||
[ { -asc => 'domain' },
|
||||
{ -desc => 'time_last' }
|
||||
]
|
||||
)->hri;
|
||||
}
|
||||
else {
|
||||
$rs = $rs->search(
|
||||
{},
|
||||
{ select => [ 'domain', { count => 'domain' } ],
|
||||
as => [qw/ domain count /],
|
||||
group_by => [qw/ domain /]
|
||||
}
|
||||
)->order_by( { -desc => 'count' } )->hri;
|
||||
|
||||
}
|
||||
|
||||
return unless $rs->has_rows;
|
||||
|
||||
if ( request->is_ajax ) {
|
||||
template 'ajax/report/netbios.tt', { results => $rs, },
|
||||
{ layout => undef };
|
||||
}
|
||||
else {
|
||||
header( 'Content-Type' => 'text/comma-separated-values' );
|
||||
template 'ajax/report/netbios_csv.tt', { results => $rs, },
|
||||
{ layout => undef };
|
||||
}
|
||||
};
|
||||
|
||||
1;
|
||||
@@ -1,18 +1,27 @@
|
||||
package App::Netdisco::Web::Report;
|
||||
|
||||
use Dancer ':syntax';
|
||||
use Dancer::Plugin::DBIC;
|
||||
use Dancer::Plugin::Auth::Extensible;
|
||||
|
||||
get '/report/*' => require_login sub {
|
||||
my ($tag) = splat;
|
||||
|
||||
# used in the report search sidebar to populate select inputs
|
||||
my $domain_list
|
||||
= [
|
||||
schema('netdisco')->resultset('NodeNbt')->get_distinct_col('domain')
|
||||
];
|
||||
|
||||
# trick the ajax into working as if this were a tabbed page
|
||||
params->{tab} = $tag;
|
||||
|
||||
var(nav => 'reports');
|
||||
template 'report', {
|
||||
report => setting('_reports')->{ $tag },
|
||||
};
|
||||
var( nav => 'reports' );
|
||||
template 'report',
|
||||
{
|
||||
report => setting('_reports')->{$tag},
|
||||
domain_list => $domain_list,
|
||||
};
|
||||
};
|
||||
|
||||
true;
|
||||
|
||||
Reference in New Issue
Block a user