changchiyou 2024-03-26 15:04:17 +08:00
parent 8d108060d5
commit 5eac5c54f8
No known key found for this signature in database
GPG key ID: 81CA4B8C5DD85821

View file

@ -1,4 +1,7 @@
import json
import requests
from config import VERSION
def post_webhook(url: str, message: str, event_data: dict) -> bool:
@ -9,6 +12,27 @@ def post_webhook(url: str, message: str, event_data: dict) -> bool:
payload["text"] = message
elif "https://discord.com/api/webhooks" in url:
payload["content"] = message
elif "webhook.office.com" in url:
action = event_data.get("action", "undefined")
facts = [
{"name": name, "value": value}
for name, value in json.loads(event_data.get("user", {})).items()
]
payload = {
"@type": "MessageCard",
"@context": "http://schema.org/extensions",
"themeColor": "0076D7",
"summary": message,
"sections": [
{
"activityTitle": message,
"activitySubtitle": f"Open WebUI ({VERSION}) - {action}",
"activityImage": "https://openwebui.com/favicon.png",
"facts": facts,
"markdown": True,
}
],
}
else:
payload = {**event_data}