mirror of
				https://github.com/KevinMidboe/mktxp-no-cli.git
				synced 2025-10-29 17:50:23 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			158 lines
		
	
	
		
			8.0 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			158 lines
		
	
	
		
			8.0 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.
 | |
| 
 | |
| 
 | |
| import re, os
 | |
| from datetime import timedelta
 | |
| from collections import namedtuple
 | |
| from texttable import Texttable
 | |
| from humanize import naturaldelta
 | |
| from mktxp.cli.config.config import config_handler
 | |
| from mktxp.datasource.wireless_ds import WirelessMetricsDataSource
 | |
| from mktxp.datasource.dhcp_ds import DHCPMetricsDataSource
 | |
| from math import floor, log
 | |
| 
 | |
| 
 | |
| class BaseOutputProcessor:
 | |
|     OutputCapsmanEntry = namedtuple('OutputCapsmanEntry', ['dhcp_name', 'dhcp_address', 'mac_address', 'rx_signal', 'interface', 'ssid', 'tx_rate', 'rx_rate', 'uptime'])
 | |
|     OutputCapsmanEntry.__new__.__defaults__ = ('',) * len(OutputCapsmanEntry._fields)
 | |
| 
 | |
|     OutputWiFiEntry = namedtuple('OutputWiFiEntry', ['dhcp_name', 'dhcp_address', 'mac_address', 'signal_strength', 'signal_to_noise', 'interface', 'tx_rate', 'rx_rate', 'uptime'])
 | |
|     OutputWiFiEntry.__new__.__defaults__ = ('',) * len(OutputWiFiEntry._fields)
 | |
| 
 | |
|     OutputWiFiWave2Entry = namedtuple('OutputWiFiWave2Entry', ['dhcp_name', 'dhcp_address', 'mac_address', 'signal_strength', 'interface', 'tx_rate', 'rx_rate', 'uptime'])
 | |
|     OutputWiFiWave2Entry.__new__.__defaults__ = ('',) * len(OutputWiFiWave2Entry._fields)
 | |
| 
 | |
|     OutputDHCPEntry = namedtuple('OutputDHCPEntry', ['host_name', 'server', 'mac_address', 'address', 'active_address', 'expires_after'])
 | |
|     OutputDHCPEntry.__new__.__defaults__ = ('',) * len(OutputDHCPEntry._fields)
 | |
| 
 | |
|     OutputConnStatsEntry = namedtuple('OutputConnStatsEntry', ['dhcp_name', 'src_address', 'connection_count', 'dst_addresses'])
 | |
|     OutputConnStatsEntry.__new__.__defaults__ = ('',) * len(OutputConnStatsEntry._fields)
 | |
| 
 | |
| 
 | |
|     @staticmethod
 | |
|     def augment_record(router_entry, registration_record, id_key = 'mac_address'):
 | |
|         BaseOutputProcessor.resolve_dhcp(router_entry, registration_record, id_key)
 | |
| 
 | |
|         # split out tx/rx bytes
 | |
|         if registration_record.get('bytes'):
 | |
|             registration_record['tx_bytes'] = registration_record['bytes'].split(',')[0]
 | |
|             registration_record['rx_bytes'] = registration_record['bytes'].split(',')[1]
 | |
|             del registration_record['bytes']
 | |
| 
 | |
|         ww2_installed = WirelessMetricsDataSource.wifiwave2_installed(router_entry)
 | |
|         if registration_record.get('tx_rate'):
 | |
|             registration_record['tx_rate'] = BaseOutputProcessor.parse_bitrates(registration_record['tx_rate']) \
 | |
|                                                 if ww2_installed else BaseOutputProcessor.parse_rates(registration_record['tx_rate'])
 | |
|         if registration_record.get('rx_rate'):
 | |
|             registration_record['rx_rate'] = BaseOutputProcessor.parse_bitrates(registration_record['rx_rate']) \
 | |
|                                                 if ww2_installed else BaseOutputProcessor.parse_rates(registration_record['rx_rate'])
 | |
|         if registration_record.get('uptime'):
 | |
|             registration_record['uptime'] = naturaldelta(BaseOutputProcessor.parse_timedelta_seconds(registration_record['uptime']), months=True, minimum_unit='seconds')
 | |
| 
 | |
|         if registration_record.get('signal_strength'):
 | |
|             registration_record['signal_strength'] = BaseOutputProcessor.parse_signal_strength(registration_record['signal_strength'])
 | |
|         if registration_record.get('rx_signal'):
 | |
|             registration_record['rx_signal'] = BaseOutputProcessor.parse_signal_strength(registration_record['rx_signal'])
 | |
| 
 | |
|     @staticmethod
 | |
|     def dhcp_name(router_entry, dhcp_lease_record, drop_comment = False):
 | |
|         dhcp_name = dhcp_lease_record.get('host_name')
 | |
|         dhcp_comment = dhcp_lease_record.get('comment')
 | |
|         
 | |
|         if dhcp_name and dhcp_comment:
 | |
|             dhcp_name = f'{dhcp_name[0:20]} ({dhcp_comment[0:20]})' if not router_entry.config_entry.use_comments_over_names else dhcp_comment
 | |
|         elif dhcp_comment:
 | |
|             dhcp_name = dhcp_comment
 | |
|         else:
 | |
|             dhcp_name = dhcp_lease_record.get('mac_address') if not dhcp_name else dhcp_name        
 | |
| 
 | |
|         if drop_comment:
 | |
|             del dhcp_lease_record['comment']
 | |
| 
 | |
|         return dhcp_name
 | |
| 
 | |
|     @staticmethod
 | |
|     def resolve_dhcp(router_entry, registration_record, id_key = 'mac_address', resolve_address = True):
 | |
|         if not router_entry.dhcp_records:
 | |
|             DHCPMetricsDataSource.metric_records(router_entry)
 | |
|         dhcp_name = registration_record.get(id_key)
 | |
|         dhcp_address = 'No DHCP Record'              
 | |
| 
 | |
|         dhcp_lease_record = router_entry.dhcp_record(dhcp_name)
 | |
|         if dhcp_lease_record:
 | |
|             dhcp_name = BaseOutputProcessor.dhcp_name(router_entry, dhcp_lease_record)
 | |
|             dhcp_address = dhcp_lease_record.get('address', '')
 | |
| 
 | |
|         registration_record['dhcp_name'] = dhcp_name
 | |
|         if resolve_address:
 | |
|             registration_record['dhcp_address'] = dhcp_address
 | |
| 
 | |
|     @staticmethod
 | |
|     def parse_rates(rate):
 | |
|         wifi_rates_rgx = config_handler.re_compiled.get('wifi_rates_rgx')
 | |
|         if not wifi_rates_rgx:
 | |
|             wifi_rates_rgx = re.compile(r'(\d*(?:\.\d*)?)([GgMmKk]bps?)')
 | |
|             config_handler.re_compiled['wifi_rates_rgx'] = wifi_rates_rgx
 | |
|         rc = wifi_rates_rgx.search(rate)
 | |
|         return f'{int(float(rc[1]))} {rc[2]}' if rc and len(rc.groups()) == 2 else rate
 | |
| 
 | |
|     @staticmethod
 | |
|     def parse_bitrates(rate):
 | |
|         try:
 | |
|             rate = int(rate)
 | |
|         except:
 | |
|             return BaseOutputProcessor.parse_rates(rate)
 | |
|         power = floor(log(rate, 1000))
 | |
|         return f"{int(rate / 1000 ** power)} {['bps', 'Kbps', 'Mbps', 'Gbps'][int(power)]}"
 | |
| 
 | |
|     @staticmethod
 | |
|     def parse_timedelta(time):
 | |
|         duration_interval_rgx = config_handler.re_compiled.get('duration_interval_rgx')
 | |
|         if not duration_interval_rgx:
 | |
|             duration_interval_rgx = re.compile(r'((?P<weeks>\d+)w)?((?P<days>\d+)d)?((?P<hours>\d+)h)?((?P<minutes>\d+)m)?((?P<seconds>\d+)s)?')
 | |
|             config_handler.re_compiled['duration_interval_rgx'] = duration_interval_rgx                        
 | |
|         time_dict = duration_interval_rgx.match(time).groupdict()
 | |
|         return timedelta(**{key: int(value) for key, value in time_dict.items() if value})
 | |
| 
 | |
|     @staticmethod
 | |
|     def parse_timedelta_seconds(time):
 | |
|         return BaseOutputProcessor.parse_timedelta(time).total_seconds()
 | |
| 
 | |
|     @staticmethod
 | |
|     def parse_signal_strength(signal_strength):
 | |
|         wifi_signal_strength_rgx = config_handler.re_compiled.get('wifi_signal_strength_rgx')
 | |
|         if not wifi_signal_strength_rgx:
 | |
|             # wifi_signal_strength_rgx = re.compile(r'(-?\d+(?:\.\d+)?)(dBm)?')
 | |
|             wifi_signal_strength_rgx = re.compile(r'(-?\d+(?:\.\d+)?)')           
 | |
|             config_handler.re_compiled['wifi_signal_strength_rgx'] = wifi_signal_strength_rgx
 | |
|         return wifi_signal_strength_rgx.search(signal_strength).group()
 | |
| 
 | |
|     @staticmethod
 | |
|     def parse_interface_rate(interface_rate):
 | |
|         interface_rate_rgx = config_handler.re_compiled.get('interface_rate_rgx')
 | |
|         if not interface_rate_rgx:
 | |
|             interface_rate_rgx = re.compile(r'[^.\-\d]')
 | |
|             config_handler.re_compiled['interface_rate_rgx'] = interface_rate_rgx
 | |
|         rate = lambda interface_rate: 1000 if interface_rate.find('Mbps') < 0 else 1
 | |
|         return(int(float(interface_rate_rgx.sub('', interface_rate)) * rate(interface_rate)))
 | |
| 
 | |
|     @staticmethod
 | |
|     def output_table(outputEntry = None):
 | |
|         table = Texttable(max_width = os.get_terminal_size().columns)
 | |
|         table.set_deco(Texttable.HEADER | Texttable.BORDER | Texttable.VLINES )        
 | |
|         if outputEntry:
 | |
|             table.header(outputEntry._fields)
 | |
|             table.set_cols_align(['l']+ ['c']*(len(outputEntry._fields)-1))
 | |
|         return table
 |