46 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Perl
		
	
	
	
	
	
			
		
		
	
	
			46 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Perl
		
	
	
	
	
	
package App::Netdisco::Web::Plugin::Report::PortBlocking;
 | 
						|
 | 
						|
use Dancer ':syntax';
 | 
						|
use Dancer::Plugin::DBIC;
 | 
						|
use Dancer::Plugin::Auth::Extensible;
 | 
						|
 | 
						|
use App::Netdisco::Web::Plugin;
 | 
						|
 | 
						|
register_report(
 | 
						|
    {   category     => 'Port',
 | 
						|
        tag          => 'portblocking',
 | 
						|
        label        => 'Ports that are blocking',
 | 
						|
        provides_csv => 1,
 | 
						|
    }
 | 
						|
);
 | 
						|
 | 
						|
get '/ajax/content/report/portblocking' => require_login sub {
 | 
						|
    my @results = schema('netdisco')->resultset('Device')->search(
 | 
						|
        { 'stp' => [ 'blocking', 'broken' ], 'up' => { '!=', 'down' } },
 | 
						|
        {   select       => [ 'ip', 'dns', 'name' ],
 | 
						|
            join         => ['ports'],
 | 
						|
            '+columns'   => [
 | 
						|
                { 'port'        => 'ports.port' },
 | 
						|
                { 'description' => 'ports.name' },
 | 
						|
                { 'stp'         => 'ports.stp' },
 | 
						|
            ]
 | 
						|
        }
 | 
						|
    )->hri->all;
 | 
						|
 | 
						|
    return unless scalar @results;
 | 
						|
 | 
						|
    if ( request->is_ajax ) {
 | 
						|
        my $json = to_json (\@results);
 | 
						|
        template 'ajax/report/portblocking.tt', { results => $json },
 | 
						|
            { layout => undef };
 | 
						|
    }
 | 
						|
    else {
 | 
						|
        header( 'Content-Type' => 'text/comma-separated-values' );
 | 
						|
        template 'ajax/report/portblocking_csv.tt',
 | 
						|
            { results => \@results, },
 | 
						|
            { layout  => undef };
 | 
						|
    }
 | 
						|
};
 | 
						|
 | 
						|
1;
 |