Add Ports administratively disabled report
This commit is contained in:
@@ -5,6 +5,7 @@
|
|||||||
* Add Nodes with multiple IP addresses report
|
* Add Nodes with multiple IP addresses report
|
||||||
* Add Device addresses with DNS entries report
|
* Add Device addresses with DNS entries report
|
||||||
* Add Ports with multiple nodes attached report
|
* Add Ports with multiple nodes attached report
|
||||||
|
* Add Ports administratively disabled report
|
||||||
|
|
||||||
[ENHANCEMENTS]
|
[ENHANCEMENTS]
|
||||||
|
|
||||||
|
|||||||
46
Netdisco/lib/App/Netdisco/Web/Plugin/Report/PortAdminDown.pm
Normal file
46
Netdisco/lib/App/Netdisco/Web/Plugin/Report/PortAdminDown.pm
Normal file
@@ -0,0 +1,46 @@
|
|||||||
|
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,
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
|
get '/ajax/content/report/portadmindown' => require_login sub {
|
||||||
|
my @results = schema('netdisco')->resultset('Device')->search(
|
||||||
|
{ 'up_admin' => 'down' },
|
||||||
|
{ result_class => 'DBIx::Class::ResultClass::HashRefInflator',
|
||||||
|
select => [ 'ip', 'dns', 'name' ],
|
||||||
|
join => [ 'ports' ],
|
||||||
|
'+columns' => [
|
||||||
|
{ 'port' => 'ports.port' },
|
||||||
|
{ 'description' => 'ports.name' },
|
||||||
|
{ 'up_admin' => 'ports.up_admin' },
|
||||||
|
],
|
||||||
|
order_by => { -asc => [qw/me.ip ports.port/] },
|
||||||
|
}
|
||||||
|
)->all;
|
||||||
|
|
||||||
|
return unless scalar @results;
|
||||||
|
|
||||||
|
if ( request->is_ajax ) {
|
||||||
|
template 'ajax/report/portadmindown.tt', { results => \@results, },
|
||||||
|
{ layout => undef };
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
header( 'Content-Type' => 'text/comma-separated-values' );
|
||||||
|
template 'ajax/report/portadmindown_csv.tt',
|
||||||
|
{ results => \@results, },
|
||||||
|
{ layout => undef };
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
1;
|
||||||
@@ -33,6 +33,7 @@ trust_x_remote_user: false
|
|||||||
path: '/'
|
path: '/'
|
||||||
web_plugins:
|
web_plugins:
|
||||||
- Inventory
|
- Inventory
|
||||||
|
- Report::PortAdminDown
|
||||||
- Report::PortMultiNodes
|
- Report::PortMultiNodes
|
||||||
- Report::PortUtilization
|
- Report::PortUtilization
|
||||||
- Report::ApChannelDist
|
- Report::ApChannelDist
|
||||||
|
|||||||
23
Netdisco/share/views/ajax/report/portadmindown.tt
Normal file
23
Netdisco/share/views/ajax/report/portadmindown.tt
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
[% USE Number.Format %]
|
||||||
|
<table class="table table-bordered table-condensed table-striped nd_floatinghead">
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Device</th>
|
||||||
|
<th class="nd_center-cell">Port</th>
|
||||||
|
<th class="nd_center-cell">Port Description</th>
|
||||||
|
<th class="nd_center-cell">Admin Status</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
</tbody>
|
||||||
|
[% FOREACH row IN results %]
|
||||||
|
<tr>
|
||||||
|
<td>[% row.dns || row.name || row.ip | html_entity %]</td>
|
||||||
|
<td class="nd_center-cell"><a href="[% device_ports %]&q=[% row.dns || row.ip | uri %]&f=[% row.port | uri %]&c_nodes=on">
|
||||||
|
[% row.port | html_entity %]</a></td>
|
||||||
|
<td class="nd_center-cell">[% row.description | html_entity %]</td>
|
||||||
|
<td class="nd_center-cell">[% row.up_admin | html_entity %]</td>
|
||||||
|
</tr>
|
||||||
|
[% END %]
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
|
||||||
12
Netdisco/share/views/ajax/report/portadmindown_csv.tt
Normal file
12
Netdisco/share/views/ajax/report/portadmindown_csv.tt
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
[% USE CSV -%]
|
||||||
|
[% CSV.dump([ 'Device' 'Port' 'Port Description' 'Admin Status' ]) %]
|
||||||
|
|
||||||
|
[% FOREACH row IN results %]
|
||||||
|
[% mylist = [] %]
|
||||||
|
[% mylist.push(row.dns || row.name || row.ip) %]
|
||||||
|
[% mylist.push(row.port) %]
|
||||||
|
[% mylist.push(row.description) %]
|
||||||
|
[% mylist.push(row.up_admin) %]
|
||||||
|
[% CSV.dump(mylist) %]
|
||||||
|
|
||||||
|
[% END %]
|
||||||
Reference in New Issue
Block a user