"git@developer.sourcefind.cn:modelzoo/gpt2-pytorch.git" did not exist on "c338d32cb681c434555f2abd1884034b22a3414d"
Unverified Commit d69dfb7c authored by changchiyou's avatar changchiyou
Browse files
parent 0b62bbb5
import json
import requests
from config import VERSION, WEBUI_FAVICON_URL, WEBUI_NAME
def post_webhook(url: str, message: str, event_data: dict) -> bool:
try:
payload = {}
if "https://hooks.slack.com" in url:
# Slack and Google Chat Webhooks
if "https://hooks.slack.com" in url or "https://chat.googleapis.com" in url:
payload["text"] = message
# Discord Webhooks
elif "https://discord.com/api/webhooks" in url:
payload["content"] = message
# Microsoft Teams Webhooks
elif "webhook.office.com" in url:
action = event_data.get("action", "undefined")
facts = [
......@@ -33,6 +34,7 @@ def post_webhook(url: str, message: str, event_data: dict) -> bool:
}
],
}
# Default Payload
else:
payload = {**event_data}
......@@ -41,4 +43,4 @@ def post_webhook(url: str, message: str, event_data: dict) -> bool:
return True
except Exception as e:
print(e)
return False
return False
\ No newline at end of file
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment