contentdb/app/tasks/webhooktasks.py

58 lines
1.8 KiB
Python
Raw Normal View History

2021-08-17 22:16:43 +02:00
# ContentDB
# Copyright (C) 2021 rubenwardy
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
2023-05-14 18:16:56 +02:00
import sys
2021-08-17 22:16:43 +02:00
from typing import Optional
import requests
from app import app
from app.models import User
from app.tasks import celery
@celery.task()
2023-01-05 10:43:27 +01:00
def post_discord_webhook(username: Optional[str], content: str, is_queue: bool, title: Optional[str] = None, description: Optional[str] = None, thumbnail: Optional[str] = None):
2021-08-17 22:16:43 +02:00
discord_url = app.config.get("DISCORD_WEBHOOK_QUEUE" if is_queue else "DISCORD_WEBHOOK_FEED")
if discord_url is None:
return
json = {
"content": content,
}
if username:
json["username"] = username
user = User.query.filter_by(username=username).first()
if user:
json["avatar_url"] = user.getProfilePicURL().replace("/./", "/")
if json["avatar_url"].startswith("/"):
json["avatar_url"] = app.config["BASE_URL"] + json["avatar_url"]
2021-08-17 22:16:43 +02:00
2023-01-04 21:58:32 +01:00
if title:
embed = {
"title": title,
"description": description,
}
if thumbnail:
embed["thumbnail"] = {"url": thumbnail}
json["embeds"] = [embed]
2023-05-14 18:16:56 +02:00
res = requests.post(discord_url, json=json, headers={"Accept": "application/json"})
if not res.ok:
2023-05-14 18:22:57 +02:00
raise Exception(f"Failed to submit Discord webhook {res.json}")
2023-05-14 18:16:56 +02:00
res.raise_for_status()