oncall-engine/engine/apps/webhooks/utils.py
2023-03-09 19:39:25 +00:00

113 lines
3.6 KiB
Python

import ipaddress
import json
import re
import socket
from urllib.parse import urlparse
from django.conf import settings
from apps.base.utils import live_settings
from common.jinja_templater import apply_jinja_template
class InvalidWebhookUrl(Exception):
def __init__(self, message):
self.message = f"URL - {message}"
class InvalidWebhookTrigger(Exception):
def __init__(self, message):
self.message = f"Trigger - {message}"
class InvalidWebhookHeaders(Exception):
def __init__(self, message):
self.message = f"Headers - {message}"
class InvalidWebhookData(Exception):
def __init__(self, message):
self.message = f"Data - {message}"
def parse_url(url):
parsed_url = urlparse(url)
# ensure the url looks like url
if parsed_url.scheme not in ["http", "https"] or not parsed_url.netloc:
raise InvalidWebhookUrl("Malformed url")
if settings.BASE_URL in url:
raise InvalidWebhookUrl("Potential self-reference")
if not live_settings.DANGEROUS_WEBHOOKS_ENABLED:
# Get the ip address of the webhook url and check if it belongs to the private network
try:
webhook_url_ip_address = socket.gethostbyname(parsed_url.hostname)
except socket.gaierror:
raise InvalidWebhookUrl("Cannot resolve name in url")
if ipaddress.ip_address(socket.gethostbyname(webhook_url_ip_address)).is_private:
raise InvalidWebhookUrl("This url is not supported for outgoing webhooks")
return parsed_url
def apply_jinja_template_for_json(template, payload):
escaped_payload = escape_payload(payload)
return apply_jinja_template(template, **escaped_payload)
def escape_payload(payload: dict):
if isinstance(payload, dict):
escaped_payload = EscapeDoubleQuotesDict()
for key in payload.keys():
escaped_payload[key] = escape_payload(payload[key])
elif isinstance(payload, list):
escaped_payload = []
for value in payload:
escaped_payload.append(escape_payload(value))
elif isinstance(payload, str):
escaped_payload = escape_string(payload)
else:
escaped_payload = payload
return escaped_payload
def escape_string(string: str):
"""
Escapes string to use in json.loads() method.
json.dumps is the simples way to escape all special characters in string.
First and last chars are quotes from json.dumps(), we don't need them, only escaping.
"""
return json.dumps(string)[1:-1]
class EscapeDoubleQuotesDict(dict):
"""
Warning: Please, do not use this dict anywhere except CustomButton._escape_alert_payload.
This custom dict escapes double quotes to produce string which is safe to pass to json.loads()
It fixes case when CustomButton.build_post_kwargs failing on payloads which contains string with single quote.
In this case built-in dict's str method will surround value with double quotes.
For example:
alert_payload = {
"text": "Hi, it's alert",
}
template = '{"data" : "{{ alert_payload }}"}'
rendered = '{"data" : "{\'text\': "Hi, it\'s alert"}"}'
# and json.loads(rendered) will fail due to unescaped double quotes
# Now with EscapeDoubleQuotesDict.
alert_payload = EscapeDoubleQuotesDict({
"text": "Hi, it's alert",
})
rendered = '{"data" : "{\'text\': \\"Hi, it\'s alert\\"}"}'
# and json.loads(rendered) works.
"""
def __str__(self):
original_str = super().__str__()
if '"' in original_str:
return re.sub('(?<!\\\\)"', '\\\\"', original_str)
return original_str