End of day update

This commit is contained in:
Rudi klein 2024-05-30 20:19:27 +02:00
parent 9c7bcfd2ee
commit f76afa49c4
4 changed files with 70 additions and 181 deletions

View File

@ -1,84 +0,0 @@
#############################################################################################################
# This is the TOML config file for wazuh-notify (active response) for both the Python and Go implementation #
#############################################################################################################
[general]
# Platforms in this string with comma seperated values are triggered.
targets = "slack, ntfy, discord"
# Platforms in this string will enable sending the full event information.
full_alert = ""
# Exclude rule events that are enabled in the ossec.conf active response definition.
# These settings provide an easier way to disable events from firing the notifiers.
excluded_rules = "99999, 00000"
excluded_agents = "99999"
# The next 2 settings are used to add information to the messages.
sender = "Wazuh (IDS)"
click = "https://documentation.wazuh.com/"
# Priority mapping from 0-15 (Wazuh threat levels) to 1-5 (in notifications) and their respective colors (Discord)
# https://documentation.wazuh.com/current/user-manual/ruleset/rules-classification.html
# Enter threat_map as lists of integers, mention_threshold as integer and color as Hex integer
[[priority_map]]
threat_map = [15, 14, 13, 12]
mention_threshold = 1
notify_threshold = 1
color = 0xec3e40 # Red, SEVERE
[[priority_map]]
threat_map = [11, 10, 9]
mention_threshold = 1
notify_threshold = 1
color = 0xff9b2b # Orange, HIGH
[[priority_map]]
threat_map = [8, 7, 6]
mention_threshold = 5
notify_threshold = 5
color = 0xf5d800 # Yellow, ELEVATED
[[priority_map]]
threat_map = [5, 4]
mention_threshold = 20
notify_threshold = 5
color = 0x377fc7 # Blue, GUARDED
[[priority_map]]
threat_map = [3, 2, 1, 0]
mention_threshold = 20
notify_threshold = 5
color = 0x01a465 # Green, LOW
################ End of priority mapping ##################################
# Following parameter defines the markdown characters to emphasise the parameter names in the notification messages
[markdown_emphasis]
slack = "*"
ntfy = "**"
discord = "**"
##################################################################################
# From here on the settings are ONLY used by the Python version of wazuh-notify. #
##################################################################################
[python]
# The next settings are used for testing and troubleshooting.
# Test mode will add the example event in wazuh-notify-test-event.json instead of the message received through wazuh.
# This enables testing for particular events when the test event is customized.
test_mode = true
# Enabling this parameter provides more logging to the wazuh-notifier log.
extended_logging = 2
# Enabling this parameter provides extended logging to the console.
extended_print = 2
# Below settings provide for a window that enable/disables events from firing the notifiers.
excluded_days = ""
# Enter as a tuple of string values. Be aware of your regional settings.
excluded_hours = ["23:59", "00:00"]

View File

@ -48,7 +48,7 @@ color = 0x377fc7 # Blue, GUARDED
[[priority_map]] [[priority_map]]
threat_map = [3, 2, 1, 0] threat_map = [3, 2, 1, 0]
mention_threshold = 20 mention_threshold = 20
notify_threshold = 5 notify_threshold = 1
color = 0x01a465 # Green, LOW color = 0x01a465 # Green, LOW
################ End of priority mapping ################################## ################ End of priority mapping ##################################
@ -69,7 +69,7 @@ discord = "**"
# Test mode will add the example event in wazuh-notify-test-event.json instead of the message received through wazuh. # Test mode will add the example event in wazuh-notify-test-event.json instead of the message received through wazuh.
# This enables testing for particular events when the test event is customized. # This enables testing for particular events when the test event is customized.
test_mode = true test_mode = false
# Enabling this parameter provides more logging to the wazuh-notifier log. # Enabling this parameter provides more logging to the wazuh-notifier log.
extended_logging = 2 extended_logging = 2

View File

@ -21,10 +21,10 @@ def main():
config: dict = get_config() config: dict = get_config()
# Write header line in logfile # Write header line in logfile
logger(level=99, config=config, me=me, him=him, message="") logger(level=99, config=config, me=me, him=him, message='')
# Load the TOML config. # Load the TOML config.
logger(level=0, config=config, me=me, him=him, message="############# [Processing event] #########################") logger(level=0, config=config, me=me, him=him, message='############# [Processing event] #########################')
# Get the arguments used with running the script. # Get the arguments used with running the script.
arguments: dict = get_arguments() arguments: dict = get_arguments()
@ -32,45 +32,44 @@ def main():
# Check for test mode. Use test data if true. # Check for test mode. Use test data if true.
event_data: dict = check_test_mode(config) event_data: dict = check_test_mode(config)
alert: dict = event_data["parameters"]["alert"] alert: dict = event_data['parameters']['alert']
logger(level=2, config=config, me=me, him=him, message="Extracting data from the event") logger(level=2, config=config, me=me, him=him, message='Extracting data from the event')
# Check the config for any exclusion rules and abort when excluded. # Check the config for any exclusion rules and abort when excluded.
if not exclusions_check(config, alert): if not exclusions_check(config, alert):
logger(level=1, config=config, me=me, him=him, message="Event excluded, no notification sent. Exiting") logger(level=1, config=config, me=me, him=him, message='Event excluded, no notification sent. Exiting')
exit() exit()
logger(level=2, config=config, me=me, him=him, message="Event NOT excluded, notification will be sent") logger(level=2, config=config, me=me, him=him, message='Event NOT excluded, notification will be sent')
# Get the mapping from event threat level to priority, color and mention_flag. # Get the mapping from event threat level to priority, color and mention_flag.
priority, color, mention = threat_mapping(config, alert['rule']['level'], alert['rule']['firedtimes']) priority, color, mention = threat_mapping(config, alert['rule']['level'], alert['rule']['firedtimes'])
config["targets"] = arguments['targets'] if arguments['targets'] != "" else config["targets"] config['targets'] = arguments['targets'] if arguments['targets'] != '' else config['targets']
# Discord notification handler # Discord notification handler
if "discord" in config["targets"]: if 'discord' in config['targets']:
payload_json, discord_url = handle_discord_notification(config=config, arguments=arguments, alert=alert, payload_json, discord_url = handle_discord_notification(config=config, arguments=arguments, alert=alert,
color=color, priority=priority, mention=mention) color=color, priority=priority, mention=mention)
discord_result: Response = requests.post(url=discord_url, json=payload_json) discord_result: Response = requests.post(url=discord_url, json=payload_json)
logger(level=1, config=config, me=me, him=him, message="Discord notification constructed and sent: " + logger(level=1, config=config, me=me, him=him,
str(discord_result)) message=f'Discord notification constructed and sent: %s' % discord_result)
# ntfy.sh notification handler # ntfy.sh notification handler
if "ntfy" in config["targets"]: if 'ntfy' in config['targets']:
payload_data, payload_headers, ntfy_url = handle_ntfy_notification(config=config, arguments=arguments, payload_data, payload_headers, ntfy_url = handle_ntfy_notification(config=config, arguments=arguments,
alert=alert, priority=priority) alert=alert, priority=priority)
ntfy_result: Response = requests.post(url=ntfy_url, data=payload_data, headers=payload_headers) ntfy_result: Response = requests.post(url=ntfy_url, data=payload_data, headers=payload_headers)
logger(level=1, config=config, me=me, him=him, message="Ntfy notification constructed and sent: " + logger(level=1, config=config, me=me, him=him,
str(ntfy_result)) message=f'Ntfy notification constructed and sent: %s' % ntfy_result)
# Slack notification handler # Slack notification handler
if "slack" in config["targets"]: if 'slack' in config['targets']:
payload_json, slack_url = handle_slack_notification(config=config, arguments=arguments, alert=alert, payload_json, slack_url = handle_slack_notification(config=config, arguments=arguments, alert=alert,
color=color, priority=priority, mention=mention) color=color, priority=priority, mention=mention)
slack_result: Response = requests.post(url=slack_url, headers={'Content-Type': 'application/json'}, slack_result: Response = requests.post(url=slack_url, json=payload_json)
json=payload_json) logger(1, config, me, him, f'Slack notification constructed and sent: %s' % slack_result)
logger(1, config, me, him, "Slack notification constructed and sent: " + str(slack_result))
logger(0, config, me, him, "############# [Event processed] #########################") logger(0, config, me, him, '############# [Event processed] #########################')
exit(0) exit(0)
if __name__ == "__main__": if __name__ == '__main__':
main() main()

View File

@ -90,7 +90,7 @@ def get_env() -> tuple:
# Write the configuration to a dictionary. # Write the configuration to a dictionary.
config: dict = get_config() config: dict = get_config()
logger(level=2, config=config, me=me, him=him, message='Configuration retrieved to dictionary') logger(level=2, config=config, me=me, him=him, message=f'Configuration retrieved to dictionary')
# Check if the secrets .env file is available. # Check if the secrets .env file is available.
try: try:
@ -148,8 +148,6 @@ def get_config() -> dict:
return config return config
# Show configuration settings from wazuh-notify-config.yaml
def view_config() -> None: def view_config() -> None:
_, _, this_config_path, _ = set_environment() _, _, this_config_path, _ = set_environment()
@ -167,7 +165,7 @@ def get_arguments() -> dict:
him: str = frame(1).f_code.co_name him: str = frame(1).f_code.co_name
config: dict = get_config() config: dict = get_config()
logger(level=2, config=config, me=me, him=him, message='Configuration retrieved to dictionary') logger(level=2, config=config, me=me, him=him, message=f'Configuration retrieved to dictionary')
# Short options # Short options
options: str = 'u:s:p:m:t:c:hv' options: str = 'u:s:p:m:t:c:hv'
@ -177,7 +175,7 @@ def get_arguments() -> dict:
'sender=', 'sender=',
'targets=', 'targets=',
'priority=', 'priority=',
'message=', 'message=f',
'tags=', 'tags=',
'click=', 'click=',
'help', 'help',
@ -196,8 +194,6 @@ def get_arguments() -> dict:
-v, --view show config. -v, --view show config.
''' '''
# Initialize some variables.
url: str = '' url: str = ''
sender: str = '' sender: str = ''
targets: str = '' targets: str = ''
@ -212,7 +208,7 @@ def get_arguments() -> dict:
if not argument_list: if not argument_list:
logger(level=1, config=config, me=me, him=him, logger(level=1, config=config, me=me, him=him,
message='No argument list found (no arguments provided with script execution') message=f'No argument list found (no arguments provided with script execution')
# Store defaults for the non-existing arguments in the arguments dictionary to avoid None errors. # Store defaults for the non-existing arguments in the arguments dictionary to avoid None errors.
arguments: dict = {'url': url, arguments: dict = {'url': url,
@ -227,7 +223,7 @@ def get_arguments() -> dict:
try: try:
# Parsing arguments # Parsing arguments
p_arguments, values = getopt.getopt(argument_list, options, long_options) p_arguments, values = getopt.getopt(argument_list, options, long_options)
logger(level=2, config=config, me=me, him=him, message='Parsing arguments') logger(level=2, config=config, me=me, him=him, message=f'Parsing arguments')
# Check each argument. Arguments that are present will override the defaults. # Check each argument. Arguments that are present will override the defaults.
for current_argument, current_value in p_arguments: for current_argument, current_value in p_arguments:
@ -255,7 +251,7 @@ def get_arguments() -> dict:
# Output error, and return error code # Output error, and return error code
logger(level=0, config=config, me=me, him=him, message=f'Error during argument parsing: %s' % err) logger(level=0, config=config, me=me, him=him, message=f'Error during argument parsing: %s' % err)
logger(level=2, config=config, me=me, him=him, message='Arguments returned as dictionary') logger(level=2, config=config, me=me, him=him, message=f'Arguments returned as dictionary')
# Store the arguments in the arguments dictionary. # Store the arguments in the arguments dictionary.
arguments: dict = {'url': url, 'sender': sender, 'targets': targets, 'message': message, arguments: dict = {'url': url, 'sender': sender, 'targets': targets, 'message': message,
@ -270,14 +266,11 @@ def get_arguments() -> dict:
# Receive and load message from Wazuh # Receive and load message from Wazuh
def load_message() -> dict: def load_message() -> dict:
# The 'me' variable sets the called function (current function), the 'him' the calling function. Used for logging.
me: str = frame(0).f_code.co_name me: str = frame(0).f_code.co_name
him: str = frame(1).f_code.co_name him: str = frame(1).f_code.co_name
config: dict = get_config() config: dict = get_config()
# get alert from stdin logger(level=2, config=config, me=me, him=him, message=f'Loading event message from STDIN')
logger(level=2, config=config, me=me, him=him, message='Loading event message from STDIN')
input_str: str = '' input_str: str = ''
for line in sys.stdin: for line in sys.stdin:
input_str: str = line input_str: str = line
@ -286,79 +279,71 @@ def load_message() -> dict:
data: json = json.loads(input_str) data: json = json.loads(input_str)
if data.get('command') == 'add': if data.get('command') == 'add':
logger(level=1, config=config, me=me, him=him, message='Relevant event data found') logger(level=1, config=config, me=me, him=him, message=f'Relevant event data found')
return data return data
else: else:
# Event came in, but wasn't processed. logger(level=0, config=config, me=me, him=him, message=f'Event data not found')
logger(level=0, config=config, me=me, him=him, message='Event data not found')
sys.exit(1) sys.exit(1)
# Check if we are in test mode (test_mode setting in config yaml). If so, load test event instead of live event.
def check_test_mode(config) -> dict: def check_test_mode(config) -> dict:
me: str = frame(0).f_code.co_name me: str = frame(0).f_code.co_name
him: str = frame(1).f_code.co_name him: str = frame(1).f_code.co_name
if config.get('python').get('test_mode'): if config.get('python').get('test_mode'):
logger(level=1, config=config, me=me, him=him, logger(level=1, config=config, me=me, him=him,
message='Running in test mode: using test message wazuh-notify-test-event.json') message=f'Running in test mode: using test message wazuh-notify-test-event.json')
# Load the test event data. # Load the test event data.
home_path, _, _ = set_environment() home_path, _, _ = set_environment()
with (open(home_path + '/etc/wazuh-notify-test-event.json') as event_file): with (open(home_path + '/etc/wazuh-notify-test-event.json') as event_file):
data: dict = json.loads(event_file.read()) data: dict = json.loads(event_file.read())
else: else:
# We are running live. Load the data from the Wazuh process. # We are running live. Load the data from the Wazuh process.
logger(level=2, config=config, me=me, him=him, message='Running in live mode: using live message') logger(level=2, config=config, me=me, him=him, message=f'Running in live mode: using live message')
data: dict = load_message() data: dict = load_message()
return data return data
# Check if there are reasons not to process this event. Check exclusions for rules, agents, days and hours. # Check if there are reasons not to process this event. Check exclusions for rules, agents, days and hours from config.
def exclusions_check(config, alert) -> bool: def exclusions_check(config, alert) -> bool:
# The 'me' variable sets the called function (current function), the 'him' the calling function. Used for logging.
me: str = frame(0).f_code.co_name me: str = frame(0).f_code.co_name
him: str = frame(1).f_code.co_name him: str = frame(1).f_code.co_name
# Set some environment
now_message, now_logging, now_weekday, now_time = set_time_format() now_message, now_logging, now_weekday, now_time = set_time_format()
logger(level=2, config=config, me=me, him=him, logger(level=2, config=config, me=me, him=him, message=f'Get datetime formats for evaluation purposes.')
message='Setting pretty datetime formats for notifications and logging.')
# Check the exclusion records from the configuration yaml. logger(level=1, config=config, me=me, him=him, message=f'Checking if we are outside of the exclusion rules: ')
logger(level=1, config=config, me=me, him=him, message='Checking if we are outside of the exclusion rules: ')
ex_hours: tuple = config.get('python').get('excluded_hours') ex_hours: tuple = config.get('python').get('excluded_hours')
# Start hour may not be later than end hours. End hour may not exceed 00:00 midnight to avoid day jump.
ex_hours: tuple = [ex_hours[0], '23:59'] if (ex_hours[1] >= '23:59' or ex_hours[1] < ex_hours[0]) else ex_hours
# Get some more exclusion records from the config.
ex_days: str = config.get('python').get('excluded_days') ex_days: str = config.get('python').get('excluded_days')
ex_agents: str = config.get('general').get('excluded_agents') ex_agents: str = config.get('general').get('excluded_agents')
ex_rules: str = config.get('general').get('excluded_rules') ex_rules: str = config.get('general').get('excluded_rules')
# Check agent and rule from within the event. # Get agent and rule from within the event.
ev_agent = alert['agent']['id'] ev_agent: str = alert['agent']['id']
ev_rule = alert['rule']['id'] ev_rule: str = alert['rule']['id']
# Start hour may not be later than end hours. End hour may not exceed 00:00 midnight to avoid day jump.
ex_hours: tuple = [ex_hours[0], '23:59'] if (ex_hours[1] >= '23:59' or ex_hours[1] < ex_hours[0]) else ex_hours
# Let's assume all lights are green, until proven otherwise. # Let's assume all lights are green, until proven otherwise.
ex_hours_eval, ex_weekday_eval, ev_rule_eval, ev_agent_eval = True, True, True, True ex_hours_eval, ex_weekday_eval, ev_rule_eval, ev_agent_eval = True, True, True, True
# Evaluate the conditions for sending a notification. Any False will cause the notification to be discarded. # Evaluate the conditions for sending a notification. Any False will cause the notification to be discarded.
if (now_time > ex_hours[0]) and (now_time < ex_hours[1]): if (now_time > ex_hours[0]) and (now_time < ex_hours[1]):
logger(level=2, config=config, me=me, him=him, message='excluded: event inside exclusion time frame') logger(level=2, config=config, me=me, him=him, message=f'excluded: event inside exclusion time frame')
ex_hours_eval = False ex_hours_eval = False
elif now_weekday in ex_days: elif now_weekday in ex_days:
logger(level=2, config=config, me=me, him=him, message='excluded: event inside excluded weekdays') logger(level=2, config=config, me=me, him=him, message=f'excluded: event inside excluded weekdays')
ex_weekday_eval = False ex_weekday_eval = False
elif ev_rule in ex_rules: elif ev_rule in ex_rules:
logger(level=2, config=config, me=me, him=him, message='excluded: event id inside exclusion list') logger(level=2, config=config, me=me, him=him, message=f'excluded: event id inside exclusion list')
ev_rule_eval = False ev_rule_eval = False
elif ev_agent in ex_agents: elif ev_agent in ex_agents:
logger(level=2, config=config, me=me, him=him, message='excluded: event agent inside exclusion list') logger(level=2, config=config, me=me, him=him, message=f'excluded: event agent inside exclusion list')
ev_rule_eval = False ev_rule_eval = False
notification_eval = True if (ex_hours_eval and ex_weekday_eval and ev_rule_eval and ev_agent_eval) else False notification_eval: bool = True if (ex_hours_eval and ex_weekday_eval and ev_rule_eval and ev_agent_eval) else False
logger(level=1, config=config, me=me, him=him, logger(level=1, config=config, me=me, him=him,
message=f'Exclusion rules evaluated. Process event is %s' % notification_eval) message=f'Exclusion rules evaluated. Process event is %s' % notification_eval)
@ -367,12 +352,11 @@ def exclusions_check(config, alert) -> bool:
# Map the event threat level to the appropriate 5-level priority scale and color for use in the notification platforms. # Map the event threat level to the appropriate 5-level priority scale and color for use in the notification platforms.
def threat_mapping(config, threat_level, fired_times): def threat_mapping(config, threat_level, fired_times):
# The 'me' variable sets the called function (current function), the 'him' the calling function. Used for logging.
me: str = frame(0).f_code.co_name me: str = frame(0).f_code.co_name
him: str = frame(1).f_code.co_name him: str = frame(1).f_code.co_name
# Map threat level to priority. Enters Homeland Security :-). # Map threat level to priority. Enters Homeland Security :-).
p_map = config.get('priority_map') p_map: dict = config.get('priority_map')
logger(level=2, config=config, me=me, him=him, message=f'Threat mapping: priority mapped to: %s' % p_map) logger(level=2, config=config, me=me, him=him, message=f'Threat mapping: priority mapped to: %s' % p_map)
for i in range(len(p_map)): for i in range(len(p_map)):
@ -380,14 +364,14 @@ def threat_mapping(config, threat_level, fired_times):
logger(level=2, config=config, me=me, him=him, message=f'Threat mapping: threat level found: %s' % threat_level) logger(level=2, config=config, me=me, him=him, message=f'Threat mapping: threat level found: %s' % threat_level)
if threat_level in p_map[i]['threat_map']: if threat_level in p_map[i]['threat_map']:
color_mapping = p_map[i]['color'] color_mapping: dict = p_map[i]['color']
priority_mapping = 5 - i priority_mapping = 5 - i
logger(level=2, config=config, me=me, him=him, message=f'Threat mapping: priority: %s' % priority_mapping) logger(level=2, config=config, me=me, him=him,
logger(level=2, config=config, me=me, him=him, message=f'Threat mapping: color: %s' % color_mapping) message=f'Threat mapping: priority %s and color %s' % (priority_mapping, color_mapping))
if fired_times >= p_map[i]['notify_threshold']: if fired_times >= p_map[i]['notify_threshold']:
logger(level=2, config=config, me=me, him=him, logger(level=2, config=config, me=me, him=him,
message='The notification_threshold prevents this message from sending') message=f'The notification_threshold prevents this message from sending')
exit(0) exit(0)
if fired_times >= p_map[i]['mention_threshold']: if fired_times >= p_map[i]['mention_threshold']:
@ -403,7 +387,7 @@ def threat_mapping(config, threat_level, fired_times):
return priority_mapping, color_mapping, mention_flag return priority_mapping, color_mapping, mention_flag
logger(level=0, config=config, me=me, him=him, message='Threat level mapping failed! Returning (99, 99, 99)') logger(level=0, config=config, me=me, him=him, message=f'Threat level mapping failed! Returning (99, 99, 99)')
return 99, 99, '99' return 99, 99, '99'
@ -414,7 +398,6 @@ def threat_mapping(config, threat_level, fired_times):
# Construct the message that will be sent to the notifier platforms. # Construct the message that will be sent to the notifier platforms.
def construct_message_body(caller, config, arguments, alert) -> str: def construct_message_body(caller, config, arguments, alert) -> str:
# The 'me' variable sets the called function (current function), the 'him' the calling function. Used for logging.
me: str = frame(0).f_code.co_name me: str = frame(0).f_code.co_name
him: str = frame(1).f_code.co_name him: str = frame(1).f_code.co_name
@ -442,17 +425,16 @@ def construct_message_body(caller, config, arguments, alert) -> str:
md_e + 'Times fired:' + md_e + ' ' + str(alert['rule']['firedtimes']) + '\n' md_e + 'Times fired:' + md_e + ' ' + str(alert['rule']['firedtimes']) + '\n'
) )
logger(level=2, config=config, me=me, him=him, logger(level=2, config=config, me=me, him=him,
message=f'%s basic message constructed.\n %s' % (caller, message_body)) message=f'%s basic message constructed.\n%s' % (caller, message_body))
return message_body return message_body
# Construct the notification (message + additional information) that will be sent to the notifier platforms. # Construct the notification (message + additional information) that will be sent to the notifier platforms.
def prepare_payload(caller, config, arguments, message_body, alert, priority): def prepare_payload(caller, config, arguments, message_body, alert, priority):
# The 'me' variable sets the called function (current function), the 'him' the calling function. Used for logging.
me: str = frame(0).f_code.co_name me: str = frame(0).f_code.co_name
him: str = frame(1).f_code.co_name him: str = frame(1).f_code.co_name
logger(level=2, config=config, me=me, him=him, message='Payload being constructed.') logger(level=2, config=config, me=me, him=him, message=f'Payload being constructed.')
md_map = config.get('markdown_emphasis', '') md_map = config.get('markdown_emphasis', '')
md_e = md_map[caller] md_e = md_map[caller]
@ -464,7 +446,7 @@ def prepare_payload(caller, config, arguments, message_body, alert, priority):
.replace("'", '') .replace("'", '')
.replace(',', ', ') .replace(',', ', ')
) )
logger(level=2, config=config, me=me, him=him, message='Full event formatted.') logger(level=2, config=config, me=me, him=him, message=f'Full event formatted.')
full_event: str = str(json.dumps(alert, indent=4) full_event: str = str(json.dumps(alert, indent=4)
.replace('"', '') .replace('"', '')
@ -495,7 +477,7 @@ def prepare_payload(caller, config, arguments, message_body, alert, priority):
# Add priority & tags to the notification body # Add priority & tags to the notification body
notification_body = (notification_body + '\n\n' + md_e + 'Priority:' + md_e + ' ' + str(priority) + '\n' + notification_body = (notification_body + '\n\n' + md_e + 'Priority:' + md_e + ' ' + str(priority) + '\n' +
md_e + 'Tags:' + md_e + ' ' + tags + '\n\n' + click) md_e + 'Tags:' + md_e + ' ' + tags + '\n\n' + click)
logger(level=2, config=config, me=me, him=him, message='Adding priority and tags') logger(level=2, config=config, me=me, him=him, message=f'Adding priority and tags')
config['targets'] = arguments['targets'] if arguments['targets'] != '' else config['targets'] config['targets'] = arguments['targets'] if arguments['targets'] != '' else config['targets']
@ -509,59 +491,53 @@ def prepare_payload(caller, config, arguments, message_body, alert, priority):
# Build the notification for this specific platform. # Build the notification for this specific platform.
def build_discord_notification(config, notification_body, color, mention, sender): def build_discord_notification(config, notification_body, color, mention, sender):
# The 'me' variable sets the called function (current function), the 'him' the calling function. Used for logging.
me: str = frame(0).f_code.co_name me: str = frame(0).f_code.co_name
him: str = frame(1).f_code.co_name him: str = frame(1).f_code.co_name
logger(level=2, config=config, me=me, him=him, message='Discord payload created') logger(level=2, config=config, me=me, him=him, message=f'Discord payload created')
payload_json = {'username': sender, payload_json = {'username': sender,
'content': mention, 'content': mention,
'embeds': [{'description': notification_body, 'embeds': [{'description': notification_body,
'color': color, 'color': color,
'title': sender}]} 'title': sender}]}
logger(level=2, config=config, me=me, him=him, message='Discord notification built') logger(level=2, config=config, me=me, him=him, message=f'Discord notification built')
return '', '', payload_json return '', '', payload_json
# Build the notification for this specific platform. # Build the notification for this specific platform.
def build_ntfy_notification(config, notification_body, priority, click, sender): def build_ntfy_notification(config, notification_body, priority, click, sender):
# The 'me' variable sets the called function (current function), the 'him' the calling function. Used for logging.
me: str = frame(0).f_code.co_name me: str = frame(0).f_code.co_name
him: str = frame(1).f_code.co_name him: str = frame(1).f_code.co_name
logger(level=2, config=config, me=me, him=him, message='Ntfy payloads created') logger(level=2, config=config, me=me, him=him, message=f'Ntfy payloads created')
payload_data = notification_body payload_data = notification_body
payload_headers = {'Markdown': 'yes', payload_headers = {'Markdown': 'yes',
'Title': sender, 'Title': sender,
'Priority': str(priority), 'Priority': str(priority),
'Click': click} 'Click': click}
logger(level=2, config=config, me=me, him=him, message='Ntfy notification built') logger(level=2, config=config, me=me, him=him, message=f'Ntfy notification built')
return payload_headers, payload_data, '' return payload_headers, payload_data, ''
# Build the notification for this specific platform. # Build the notification for this specific platform.
def build_slack_notification(config, notification_body, color, mention, sender): def build_slack_notification(config, notification_body, color, mention, sender):
# The 'me' variable sets the called function (current function), the 'him' the calling function. Used for logging.
me: str = frame(0).f_code.co_name me: str = frame(0).f_code.co_name
him: str = frame(1).f_code.co_name him: str = frame(1).f_code.co_name
logger(level=2, config=config, me=me, him=him, message='Slack payload created') logger(level=2, config=config, me=me, him=him, message=f'Slack payload created')
payload_json = {'username': sender, notification_body = '*' + sender + '*' + '\n\n' + notification_body
'content': mention,
'embeds': [{'description': notification_body, payload_json = {'username': sender, 'text': notification_body}
'color': color, logger(level=2, config=config, me=me, him=him, message=f'Slack notification built')
'title': sender}]}
logger(level=2, config=config, me=me, him=him, message='Slack notification built')
return '', '', payload_json return '', '', payload_json
# Handle the complete notification generation for this specific platform. # Handle the complete notification generation for this specific platform.
def handle_discord_notification(config, arguments, alert, color, priority, mention): def handle_discord_notification(config, arguments, alert, color, priority, mention):
# The 'me' variable sets the called function (current function), the 'him' the calling function. Used for logging.
me: str = frame(0).f_code.co_name me: str = frame(0).f_code.co_name
him: str = frame(1).f_code.co_name him: str = frame(1).f_code.co_name
logger(level=1, config=config, me=me, him=him, message='Process discord notification: start') logger(level=1, config=config, me=me, him=him, message=f'Process discord notification: start')
# Load the url/webhook from the configuration. # Load the url/webhook from the configuration.
discord_url, _, _ = get_env() discord_url, _, _ = get_env()
@ -578,17 +554,16 @@ def handle_discord_notification(config, arguments, alert, color, priority, menti
_, _, payload_json = build_discord_notification(config=config, notification_body=notification_body, color=color, _, _, payload_json = build_discord_notification(config=config, notification_body=notification_body, color=color,
mention=mention, sender=sender) mention=mention, sender=sender)
logger(level=1, config=config, me=me, him=him, message='Process discord notification: done') logger(level=1, config=config, me=me, him=him, message=f'Process discord notification: done')
return payload_json, discord_url return payload_json, discord_url
# Handle the complete notification generation for this specific platform. # Handle the complete notification generation for this specific platform.
def handle_ntfy_notification(config, arguments, alert, priority): def handle_ntfy_notification(config, arguments, alert, priority):
# The 'me' variable sets the called function (current function), the 'him' the calling function. Used for logging.
me: str = frame(0).f_code.co_name me: str = frame(0).f_code.co_name
him: str = frame(1).f_code.co_name him: str = frame(1).f_code.co_name
logger(level=1, config=config, me=me, him=him, message='Process ntfy notification: start') logger(level=1, config=config, me=me, him=him, message=f'Process ntfy notification: start')
# Load the url/webhook from the configuration. # Load the url/webhook from the configuration.
_, ntfy_url, _ = get_env() _, ntfy_url, _ = get_env()
@ -608,17 +583,16 @@ def handle_ntfy_notification(config, arguments, alert, priority):
payload_headers, payload_data, _ = build_ntfy_notification(config=config, notification_body=notification_body, payload_headers, payload_data, _ = build_ntfy_notification(config=config, notification_body=notification_body,
priority=priority, click=click, sender=sender) priority=priority, click=click, sender=sender)
logger(level=1, config=config, me=me, him=him, message='Process ntfy notification: done') logger(level=1, config=config, me=me, him=him, message=f'Process ntfy notification: done')
return payload_data, payload_headers, ntfy_url return payload_data, payload_headers, ntfy_url
# Handle the complete notification generation for this specific platform. # Handle the complete notification generation for this specific platform.
def handle_slack_notification(config, arguments, alert, color, priority, mention): def handle_slack_notification(config, arguments, alert, color, priority, mention):
# The 'me' variable sets the called function (current function), the 'him' the calling function. Used for logging.
me: str = frame(0).f_code.co_name me: str = frame(0).f_code.co_name
him: str = frame(1).f_code.co_name him: str = frame(1).f_code.co_name
logger(level=1, config=config, me=me, him=him, message='Process slack notification: start') logger(level=1, config=config, me=me, him=him, message=f'Process slack notification: start')
# Load the url/webhook from the configuration. # Load the url/webhook from the configuration.
_, _, slack_url = get_env() _, _, slack_url = get_env()
@ -635,5 +609,5 @@ def handle_slack_notification(config, arguments, alert, color, priority, mention
_, _, payload_json = build_slack_notification(config=config, notification_body=notification_body, color=color, _, _, payload_json = build_slack_notification(config=config, notification_body=notification_body, color=color,
mention=mention, sender=sender) mention=mention, sender=sender)
logger(level=1, config=config, me=me, him=him, message='Process slack notification: done') logger(level=1, config=config, me=me, him=him, message=f'Process slack notification: done')
return payload_json, slack_url return payload_json, slack_url