mirror of
				https://github.com/KevinMidboe/mktxp-no-cli.git
				synced 2025-10-29 17:50:23 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			62 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			62 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
# coding=utf8
 | 
						|
## Copyright (c) 2020 Arseniy Kuznetsov
 | 
						|
##
 | 
						|
## This program is free software; you can redistribute it and/or
 | 
						|
## modify it under the terms of the GNU General Public License
 | 
						|
## as published by the Free Software Foundation; either version 2
 | 
						|
## of the License, or (at your option) any later version.
 | 
						|
##
 | 
						|
## This program is distributed in the hope that it will be useful,
 | 
						|
## but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
						|
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
						|
## GNU General Public License for more details.
 | 
						|
 | 
						|
 | 
						|
from mktxp.flow.processor.output import BaseOutputProcessor
 | 
						|
from mktxp.datasource.wireless_ds import WirelessMetricsDataSource
 | 
						|
from mktxp.flow.router_entry import RouterEntryWirelessType
 | 
						|
 | 
						|
class WirelessOutput:
 | 
						|
    ''' Wireless Clients CLI Output
 | 
						|
    '''    
 | 
						|
    @staticmethod
 | 
						|
    def clients_summary(router_entry):
 | 
						|
        registration_labels = ['interface', 'mac_address', 'signal_strength', 'uptime', 'tx_rate', 'rx_rate', 'signal_to_noise']
 | 
						|
        registration_records = WirelessMetricsDataSource.metric_records(router_entry, metric_labels = registration_labels, add_router_id = False)
 | 
						|
        if not registration_records:
 | 
						|
            print('No wireless registration records')
 | 
						|
            return 
 | 
						|
 | 
						|
        # translate / trim / augment registration records
 | 
						|
        dhcp_rt_by_interface = {}
 | 
						|
 | 
						|
        key = lambda rt_record: rt_record['signal_strength'] if rt_record.get('signal_strength') else rt_record['interface']
 | 
						|
        for registration_record in sorted(registration_records, key = key, reverse=True):
 | 
						|
            BaseOutputProcessor.augment_record(router_entry, registration_record)
 | 
						|
 | 
						|
            interface = registration_record['interface']
 | 
						|
            if interface in dhcp_rt_by_interface.keys():
 | 
						|
                dhcp_rt_by_interface[interface].append(registration_record)
 | 
						|
            else:
 | 
						|
                dhcp_rt_by_interface[interface] = [registration_record]         
 | 
						|
 | 
						|
        output_records = 0
 | 
						|
        registration_records = len(registration_records)                
 | 
						|
        output_entry = BaseOutputProcessor.OutputWirelessEntry \
 | 
						|
                        if router_entry.wireless_type in (RouterEntryWirelessType.DUAL, RouterEntryWirelessType.WIRELESS) else BaseOutputProcessor.OutputWiFiEntry
 | 
						|
        output_table = BaseOutputProcessor.output_table(output_entry)
 | 
						|
        
 | 
						|
        for key in dhcp_rt_by_interface.keys():
 | 
						|
            for record in dhcp_rt_by_interface[key]:
 | 
						|
                output_table.add_row(output_entry(**record))
 | 
						|
                output_records += 1
 | 
						|
            if output_records < registration_records:
 | 
						|
                output_table.add_row(output_entry())
 | 
						|
                
 | 
						|
        print (output_table.draw())
 | 
						|
 | 
						|
        for server in dhcp_rt_by_interface.keys():
 | 
						|
            print(f'{server} clients: {len(dhcp_rt_by_interface[server])}')
 | 
						|
        print(f'Total connected WiFi devices: {output_records}', '\n')
 | 
						|
 |