New report for Port VLAN Mismatches (M. Bernstein)
This commit is contained in:
33
lib/App/Netdisco/Web/Plugin/Report/PortVLANMismatch.pm
Normal file
33
lib/App/Netdisco/Web/Plugin/Report/PortVLANMismatch.pm
Normal file
@@ -0,0 +1,33 @@
|
||||
package App::Netdisco::Web::Plugin::Report::PortVLANMismatch;
|
||||
|
||||
use Dancer ':syntax';
|
||||
use Dancer::Plugin::DBIC;
|
||||
use Dancer::Plugin::Auth::Extensible;
|
||||
|
||||
use App::Netdisco::Web::Plugin;
|
||||
|
||||
register_report(
|
||||
{ category => 'Port',
|
||||
tag => 'portvlanmismatch',
|
||||
label => 'Port VLAN Mismatches',
|
||||
provides_csv => 1,
|
||||
}
|
||||
);
|
||||
|
||||
get '/ajax/content/report/portvlanmismatch' => require_login sub {
|
||||
return unless schema('netdisco')->resultset('Device')->count;
|
||||
my @results = schema('netdisco')->resultset('Virtual::PortVLANMismatch')->hri->all;
|
||||
|
||||
if (request->is_ajax) {
|
||||
my $json = to_json (\@results);
|
||||
template 'ajax/report/portvlanmismatch.tt', { results => $json },
|
||||
{ layout => undef };
|
||||
}
|
||||
else {
|
||||
header( 'Content-Type' => 'text/comma-separated-values' );
|
||||
template 'ajax/report/portvlanmismatch.tt', { results => \@results, },
|
||||
{ layout => undef };
|
||||
}
|
||||
};
|
||||
|
||||
1;
|
||||
Reference in New Issue
Block a user