From 252c9c7e66b28e1f3295806f9a19b898a8051a2f Mon Sep 17 00:00:00 2001 From: Oliver Gorwits Date: Sat, 25 Feb 2023 14:07:44 +0000 Subject: [PATCH] #478 rewrite wireless client count report which was bobbins --- .../Netdisco/Web/Plugin/Report/ApClients.pm | 18 +++++------ share/views/ajax/report/apclients.tt | 30 +++++-------------- 2 files changed, 15 insertions(+), 33 deletions(-) diff --git a/lib/App/Netdisco/Web/Plugin/Report/ApClients.pm b/lib/App/Netdisco/Web/Plugin/Report/ApClients.pm index ff1ff6fb..2a19f3b3 100644 --- a/lib/App/Netdisco/Web/Plugin/Report/ApClients.pm +++ b/lib/App/Netdisco/Web/Plugin/Report/ApClients.pm @@ -17,20 +17,18 @@ register_report( get '/ajax/content/report/apclients' => require_login sub { my @results = schema(vars->{'tenant'})->resultset('Device')->search( - { 'nodes.time_last' => { '>=', \'me.last_macsuck' } }, - { select => [ 'ip', 'dns', 'name', 'model', 'location' ], - join => { 'ports' => { 'ssid' => 'nodes' } }, + { 'nodes.time_last' => { '>=', \'me.last_macsuck' }, + 'ports.port' => { '-in' => schema(vars->{'tenant'})->resultset('DevicePortWireless')->get_column('port')->as_query }, + }, + { select => [ 'ip', 'model', 'ports.port', 'ports.name', 'ports.type' ], + join => { 'ports' => 'nodes' }, '+columns' => [ - { 'port' => 'ports.port' }, - { 'description' => 'ports.name' }, - { 'ssid' => 'ssid.ssid' }, - { 'mac_count' => { count => 'nodes.mac' } }, + { 'mac_count' => { count => 'nodes.mac' } }, ], group_by => [ - 'me.ip', 'me.dns', 'me.name', 'me.model', - 'me.location', 'ports.port', 'ports.descr', 'ports.name', 'ssid.ssid', + 'me.ip', 'me.model', 'ports.port', 'ports.name', 'ports.type', ], - order_by => { -desc => [qw/count/] }, + order_by => { -asc => [qw/ports.name ports.type/] }, } )->hri->all; diff --git a/share/views/ajax/report/apclients.tt b/share/views/ajax/report/apclients.tt index 56a54b53..f17d7f53 100644 --- a/share/views/ajax/report/apclients.tt +++ b/share/views/ajax/report/apclients.tt @@ -1,11 +1,9 @@ - + - - - + @@ -15,16 +13,15 @@ $(document).ready(function() { var table = $('#data-table').dataTable({ "deferRender": true, - "order": [[ 5, "desc" ]], "data": [% results | none %], "columns": [ { - "data": 'ip', + "data": 'ports.port', + "type": 'portsort', "render": function(data, type, row, meta) { return type === 'display' ? - '' - + he.encode(row.dns || row.name || row.ip) + '' : - data; + '' + he.encode(row.ports.name || '') + '' : + he.encode(data || ''); } }, { "data": 'model', @@ -32,20 +29,7 @@ $(document).ready(function() { return he.encode(data || ''); } }, { - "data": 'location', - "render": function(data, type, row, meta) { - return he.encode(data || ''); - } - }, { - "data": 'port', - "type": 'portsort', - "render": function(data, type, row, meta) { - return type === 'display' ? - '' + he.encode(data || '') + '' : - he.encode(data || ''); - } - }, { - "data": 'ssid', + "data": 'ports.type', "render": function(data, type, row, meta) { return he.encode(data || ''); }
DeviceAccess Point ModelLocationPortSSIDRadio Node Count