Refactor subscribe buttons

This commit is contained in:
2024-07-07 22:22:01 +02:00
parent f37975d94a
commit 2b9cbf94b6
3 changed files with 54 additions and 43 deletions

View File

@ -10,7 +10,6 @@
<div class="position-sticky d-none d-lg-block toc"> <div class="position-sticky d-none d-lg-block toc">
<div class="card"> <div class="card">
<div class="card-body"> <div class="card-body">
<h5 class="card-title">Games</h5>
<div id="toc-list" class="list-group"> <div id="toc-list" class="list-group">
{% for game in games %} {% for game in games %}
<a class="list-group-item list-group-item-action plain-text-item" <a class="list-group-item list-group-item-action plain-text-item"
@ -39,22 +38,24 @@
<a href="{{ game.twitch_url }}" class="text-decoration-none">{{ game.display_name }}</a> <a href="{{ game.twitch_url }}" class="text-decoration-none">{{ game.display_name }}</a>
</h2> </h2>
<div class="mt-auto"> <div class="mt-auto">
<div class="form-check form-switch"> {% for webhook in webhooks %}
<input class="form-check-input" <div>
type="checkbox" <img src="{{ webhook.avatar }}?size=32"
role="switch" alt="{{ webhook.name }}"
id="new-{{ game.game_id }}"> class="rounded-circle"
<label class="form-check-label" for="new-{{ game.game_id }}"> height="32"
Notify when new drop is found on <a href="https://www.twitch.tv/drops/campaigns">Twitch</a> width="32">
</label> <a href="{{ webhook.url }}" target="_blank">{{ webhook.name }}</a>
</div> <div class="form-check form-switch">
<div class="form-check form-switch"> <input class="form-check-input" type="checkbox" id="new-drop-switch">
<input class="form-check-input" <label class="form-check-label" for="new-drop-switch">Enable new drop notifications</label>
type="checkbox" </div>
role="switch" <div class="form-check form-switch">
id="live-{{ game.game_id }}"> <input class="form-check-input" type="checkbox" id="live-drop-switch">
<label class="form-check-label" for="live-{{ game.game_id }}">Notify when a drop starts</label> <label class="form-check-label" for="live-drop-switch">Enable live drop notifications</label>
</div> </div>
</div>
{% endfor %}
</div> </div>
{% for campaign in game.campaigns %} {% for campaign in game.campaigns %}
{% if not forloop.first %}<br>{% endif %} {% if not forloop.first %}<br>{% endif %}

View File

@ -83,6 +83,34 @@ class GameContext:
slug: str | None = None slug: str | None = None
def get_avatar(webhook_response: Response) -> str:
"""Get the avatar URL from the webhook response."""
avatar: str = "https://cdn.discordapp.com/embed/avatars/0.png"
if webhook_response.is_success and webhook_response.json().get("id") and webhook_response.json().get("avatar"):
avatar = f'https://cdn.discordapp.com/avatars/{webhook_response.json().get("id")}/{webhook_response.json().get("avatar")}.png'
return avatar
def get_webhook_data(webhook: str) -> WebhookData:
"""Get the webhook data."""
with hishel.CacheClient(storage=storage, controller=controller) as client:
webhook_response: Response = client.get(url=webhook, extensions={"cache_metadata": True})
return WebhookData(
name=webhook_response.json().get("name") if webhook_response.is_success else "Unknown",
url=webhook,
avatar=get_avatar(webhook_response),
status="Success" if webhook_response.is_success else "Failed",
response=webhook_response.text,
)
def get_webhooks(request: HttpRequest) -> list[str]:
"""Get the webhooks from the cookie."""
cookie: str = request.COOKIES.get("webhooks", "")
return list(filter(None, cookie.split(",")))
def fetch_games() -> list[Game]: def fetch_games() -> list[Game]:
"""Fetch all games with necessary fields.""" """Fetch all games with necessary fields."""
return list(Game.objects.all().only("id", "image_url", "display_name", "slug")) return list(Game.objects.all().only("id", "image_url", "display_name", "slug"))
@ -191,11 +219,12 @@ def index(request: HttpRequest) -> HttpResponse:
"""Render the index page.""" """Render the index page."""
list_of_games: list[GameContext] = prepare_game_contexts() list_of_games: list[GameContext] = prepare_game_contexts()
sorted_list_of_games: list[GameContext] = sort_games_by_campaign_start(list_of_games) sorted_list_of_games: list[GameContext] = sort_games_by_campaign_start(list_of_games)
webhooks: list[WebhookData] = [get_webhook_data(webhook) for webhook in get_webhooks(request)]
return TemplateResponse( return TemplateResponse(
request=request, request=request,
template="index.html", template="index.html",
context={"games": sorted_list_of_games}, context={"games": sorted_list_of_games, "webhooks": webhooks},
) )
@ -227,33 +256,10 @@ class WebhooksView(FormView):
def get_context_data(self: WebhooksView, **kwargs: dict[str, WebhooksView] | DiscordSettingForm) -> dict[str, Any]: def get_context_data(self: WebhooksView, **kwargs: dict[str, WebhooksView] | DiscordSettingForm) -> dict[str, Any]:
"""Get the context data for the view.""" """Get the context data for the view."""
context: dict[str, DiscordSettingForm | list[WebhookData]] = super().get_context_data(**kwargs) context: dict[str, DiscordSettingForm | list[WebhookData]] = super().get_context_data(**kwargs)
cookie: str = self.request.COOKIES.get("webhooks", "") webhooks: list[str] = get_webhooks(self.request)
webhooks: list[str] = cookie.split(",")
webhooks = list(filter(None, webhooks))
webhook_responses: list[WebhookData] = []
with hishel.CacheClient(storage=storage, controller=controller) as client:
for webhook in webhooks:
our_webhook = WebhookData(name="Unknown", url=webhook, status="Failed", response="No response")
response: Response = client.get(url=webhook, extensions={"cache_metadata": True})
if response.is_success:
our_webhook.name = response.json().get("name", "Unknown")
our_webhook.status = "Success"
else:
our_webhook.status = "Failed"
our_webhook.response = response.text
if response.json().get("id") and response.json().get("avatar"):
avatar_url: str = f'https://cdn.discordapp.com/avatars/{response.json().get("id")}/{response.json().get("avatar")}.png'
our_webhook.avatar = avatar_url or "https://cdn.discordapp.com/embed/avatars/0.png"
webhook_responses.append(our_webhook)
context.update({ context.update({
"webhooks": webhook_responses, "webhooks": [get_webhook_data(webhook) for webhook in webhooks],
"form": DiscordSettingForm(), "form": DiscordSettingForm(),
}) })
return context return context

View File

@ -93,3 +93,7 @@ a:hover {
.plain-text-item.active { .plain-text-item.active {
background-color: #af1548; background-color: #af1548;
} }
.subscribe-text {
color: #af1548;
}