Factorize payload generation

Signed-off-by: Julien Riou <julien@riou.xyz>
This commit is contained in:
Julien Riou 2020-11-26 13:18:15 +01:00
parent a0507d546a
commit a7c9f1455e
No known key found for this signature in database
GPG key ID: FF42D23B580C89F7
2 changed files with 44 additions and 30 deletions

View file

@ -1,4 +1,3 @@
Factorize the template rendering functions
Use JSON schema to validate configuration file Use JSON schema to validate configuration file
Add pre-commit Dockerfile and a doc to easily lint the code Add pre-commit Dockerfile and a doc to easily lint the code
Add requirements.txt file Add requirements.txt file

View file

@ -76,43 +76,52 @@ def markdown_escape(text):
return text return text
def generate_host_payload(chat_id, args, template_file_name=None): def generate_payload(chat_id, message_type, message_variables, template_file_name=None):
payload = {'chat_id': chat_id, 'parse_mode': 'MarkdownV2'} payload = {'chat_id': chat_id, 'parse_mode': 'MarkdownV2'}
# define jinja template name
if not template_file_name: if not template_file_name:
template_name = 'host.md.j2' if message_type == 'host' else 'service.md.j2'
absolute_path = os.path.split(os.path.abspath(__file__))[0] absolute_path = os.path.split(os.path.abspath(__file__))[0]
template_file_name = os.path.join(absolute_path, 'templates', 'host.md.j2') template_file_name = os.path.join(absolute_path, 'templates', template_name)
template_path = os.path.dirname(os.path.abspath(template_file_name)) template_path = os.path.dirname(os.path.abspath(template_file_name))
template_name = os.path.basename(os.path.abspath(template_file_name)) template_name = os.path.basename(os.path.abspath(template_file_name))
# create a jinja file template
loader = FileSystemLoader(template_path) loader = FileSystemLoader(template_path)
env = Environment(loader=loader) env = Environment(loader=loader)
template = env.get_template(template_name) template = env.get_template(template_name)
text = template.render(notification_type=markdown_escape(args.notification_type),
host_name=markdown_escape(args.host_name), host_state=markdown_escape(args.host_state), # escape message variables
host_address=markdown_escape(args.host_address), template_variables = {}
host_output=markdown_escape(args.host_output), for key, value in message_variables.items():
long_date_time=markdown_escape(args.long_date_time)) template_variables[key] = markdown_escape(value)
# render template and update payload
text = template.render(**template_variables)
payload['text'] = text payload['text'] = text
return payload return payload
def generate_service_payload(chat_id, args, template_file_name=None): def generate_host_payload(chat_id, notification_type, host_name, host_state, host_address, host_output, long_date_time,
payload = {'chat_id': chat_id, 'parse_mode': 'MarkdownV2'} template_file_name=None):
if not template_file_name: message_variables = {
absolute_path = os.path.split(os.path.abspath(__file__))[0] 'notification_type': notification_type, 'host_name': host_name, 'host_state': host_state,
template_file_name = os.path.join(absolute_path, 'templates', 'service.md.j2') 'host_address': host_address, 'host_output': host_output, 'long_date_time': long_date_time
template_path = os.path.dirname(os.path.abspath(template_file_name)) }
template_name = os.path.basename(os.path.abspath(template_file_name)) return generate_payload(chat_id=chat_id, message_type='host', message_variables=message_variables,
loader = FileSystemLoader(template_path) template_file_name=template_file_name)
env = Environment(loader=loader)
template = env.get_template(template_name)
text = template.render(notification_type=markdown_escape(args.notification_type), def generate_service_payload(chat_id, notification_type, service_desc, host_alias, host_address, service_state,
service_desc=markdown_escape(args.service_desc), host_alias=markdown_escape(args.host_alias), long_date_time, service_output, template_file_name=None):
host_address=markdown_escape(args.host_address), message_variables = {
service_state=markdown_escape(args.service_state), 'notification_type': notification_type, 'service_desc': service_desc, 'host_alias': host_alias,
long_date_time=markdown_escape(args.long_date_time), 'host_address': host_address, 'service_state': service_state, 'long_date_time': long_date_time,
service_output=markdown_escape(args.service_output)) 'service_output': service_output
payload['text'] = text }
return payload return generate_payload(chat_id=chat_id, message_type='service', message_variables=message_variables,
template_file_name=template_file_name)
def send_message(auth_key, payload): def send_message(auth_key, payload):
@ -134,17 +143,23 @@ def main():
logger.info('generating payload') logger.info('generating payload')
if args.command == 'host': if args.command == 'host':
payload = generate_host_payload(chat_id=config['chat_id'], args=args, payload = generate_host_payload(chat_id=config['chat_id'], notification_type=args.notification_type,
host_name=args.host_name, host_state=args.host_state,
host_address=args.host_address, host_output=args.host_output,
long_date_time=args.long_date_time,
template_file_name=config.get('host_template')) template_file_name=config.get('host_template'))
elif args.command == 'service': elif args.command == 'service':
payload = generate_service_payload(chat_id=config['chat_id'], args=args, payload = generate_service_payload(chat_id=config['chat_id'], notification_type=args.notification_type,
service_desc=args.service_desc, host_alias=args.host_alias,
host_address=args.host_address, service_state=args.service_state,
long_date_time=args.long_date_time, service_output=args.service_output,
template_file_name=config.get('service_template')) template_file_name=config.get('service_template'))
else: else:
raise NotImplementedError(f'command {args.command} not supported') raise NotImplementedError(f'command {args.command} not supported')
logger.info('sending message to telegram api') logger.info('sending message to telegram api')
send_message(auth_key=config['auth_key'], payload=payload) send_message(auth_key=config['auth_key'], payload=payload)
except Exception as err: except Exception:
logger.exception('cannot execute program') logger.exception('cannot execute program')