Source code for tcex.utils.utils

"""TcEx Utilities Module"""
# standard library
import ast
import ipaddress
import re
from typing import Any, Dict, List, Optional, Pattern, Union

# third-party
import astunparse
import jmespath

# first-party
from tcex.utils.aes_operations import AesOperations
from tcex.utils.datetime_operations import DatetimeOperations
from tcex.utils.string_operations import StringOperations
from tcex.utils.variables import Variables


[docs]class Utils(AesOperations, DatetimeOperations, StringOperations, Variables): """TcEx Utilities Class"""
[docs] @staticmethod def find_line_in_code( needle: str, code: str, trigger_start: Optional[Pattern] = None, trigger_stop: Optional[Pattern] = None, ) -> str: """Return matching line of code in a class definition. Args: needle: The string to search for. code: The contents of the Python file to search. trigger_start: The regex pattern to use to trigger the search. trigger_stop: The regex pattern to use to stop the search. """ magnet_on = not trigger_start for line in astunparse.unparse(ast.parse(code)).split('\n'): if line.lstrip()[:1] not in ("'", '"'): # Find class before looking for needle if trigger_start is not None and re.match(trigger_start, line): magnet_on = True continue # find need now that class definition is found if magnet_on is True and re.match(needle, line): line = line.strip() return line # break if needle not found before next class definition if trigger_stop is not None and re.match(trigger_stop, line) and magnet_on is True: break return None
[docs] @staticmethod def flatten_list(lst: List[Any]) -> List[Any]: """Flatten a list Will work for lists of lists to arbitrary depth and for lists with a mix of lists and single values """ flat_list = [] for sublist in lst: if isinstance(sublist, list): for item in Utils.flatten_list(sublist): flat_list.append(item) else: flat_list.append(sublist) return flat_list
[docs] @staticmethod def is_cidr(possible_cidr_range: str) -> bool: """Return True if the provided value is a valid CIDR block. Args: possible_cidr_range: The cidr value to validate. """ try: ipaddress.ip_address(possible_cidr_range) except ValueError: try: ipaddress.ip_interface(possible_cidr_range) except Exception: return False else: return True else: return False
[docs] @staticmethod def is_ip(possible_ip: str) -> bool: """Return True if the provided value is a valid IP address. Args: possible_ip: The IP value to validate. """ try: ipaddress.ip_address(possible_ip) except ValueError: return False else: return True
[docs] def mapper(self, data: Union[list, dict], mapping: dict): """Yield something ...""" # TODO [high] - @bpurdy - update docstring with description of what this is? if isinstance(data, dict): data = [data] try: for d in data: mapped_obj = mapping.copy() for key, value in mapping.items(): if isinstance(value, list): new_list = [] for item in value: if isinstance(item, dict): new_list.append(list(self.mapper(d, item))[0]) else: if not item.startswith('@'): new_list.append(item) else: new_list.append( jmespath.search(f'{item}', jmespath.search('@', d)) ) mapped_obj[key] = new_list elif isinstance(value, dict): mapped_obj[key] = list(self.mapper(d, mapped_obj[key]))[0] else: if not value.startswith('@'): mapped_obj[key] = value else: mapped_obj[key] = jmespath.search(f'{value}', jmespath.search('@', d)) yield mapped_obj except Exception: # nosec pass
[docs] @staticmethod def printable_cred( cred: str, visible: Optional[int] = 1, mask_char: Optional[str] = '*', mask_char_count: Optional[int] = 4, ) -> str: """Return a printable (masked) version of the provided credential. Args: cred: The cred to print. visible: The number of characters at the beginning and ending of the cred to not mask. mask_char: The character to use in the mask. mask_char_count: How many mask character to insert (obscure cred length). """ if isinstance(cred, str): mask_char = mask_char or '*' if cred is not None and len(cred) >= visible * 2: cred = f'{cred[:visible]}{mask_char * mask_char_count}{cred[-visible:]}' return cred
[docs] @staticmethod def remove_none(dict_: Dict[Any, Optional[Any]]) -> Dict[Any, Any]: """Remove any mappings from a dict with a None value.""" return {k: v for k, v in dict_.items() if v is not None}
[docs] @staticmethod def standardize_asn(asn: str) -> str: """Return the ASN formatted for ThreatConnect. Args: asn: The asn value to standardize. """ numbers = re.findall('[0-9]+', asn) if len(numbers) == 1: asn = f'ASN{numbers[0]}' return asn