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