diff --git a/Dockerfile b/Dockerfile index 2c2257b..bfa6a78 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.11.5 as build +FROM python:3.11.6 as build WORKDIR /app COPY . . diff --git a/divent/bot.py b/divent/bot.py index b3305f4..34571ba 100644 --- a/divent/bot.py +++ b/divent/bot.py @@ -5,7 +5,8 @@ from functools import wraps from os import getenv, path from typing import Dict, Optional -from disnake import Client, Guild +from disnake import Asset, Client, Guild +from disnake.guild_scheduled_event import GuildScheduledEvent from dotenv import load_dotenv from ics import Calendar, ContentLine, Event from ics.alarm import DisplayAlarm @@ -116,17 +117,11 @@ def days_before_failure() -> int: return nextDelta.days -def cdn_avatar_url(user_id: int, hash: str) -> str: - ext = "gif" if hash.startswith("a_") else "png" - return f"https://cdn.discordapp.com/avatars/{user_id}/{hash}.{ext}" - - @app.context_processor def context_processor(): return dict( _=i18n, client=client, - cdn_avatar_url=cdn_avatar_url, days_before_failure=days_before_failure(), ) @@ -179,12 +174,10 @@ async def callback(): @app.route("/guilds") @login_required async def guilds(): - guild = get_guild_by_id(request.args.get("guild")) + guild = request.args.get("guild") if guild: - return redirect( - url_for(".subscribe", guild_id=guild.vanity_url_code or guild.id) - ) + return redirect(url_for(".subscribe", entity_id=guild)) try: discord = make_session(token=session.get("oauth2_token")) @@ -200,69 +193,120 @@ async def guilds(): common_guilds.append(bot_guild) return await render_template( - "guilds.html.j2", user=user, common_guilds=common_guilds + "guilds.html.j2", + user=user, + avatar=Asset._from_avatar(None, user["id"], user["avatar"]), + common_guilds=common_guilds, ) -@app.route("/subscribe/") +@app.route("/subscribe/") @login_required -async def subscribe(guild_id: str): - guild = get_guild_by_id(guild_id) - if guild is None: - return redirect(url_for(".login")) +async def subscribe(entity_id: str): + guild = get_guild_by_id(entity_id) - try: - discord = make_session(token=session.get("oauth2_token")) - user_guilds = discord.get(f"{API_BASE_URL}/users/@me/guilds").json() - except OAuth2Error: - return redirect(url_for(".login")) + if guild: + try: + discord = make_session(token=session.get("oauth2_token")) + user_guilds = discord.get(f"{API_BASE_URL}/users/@me/guilds").json() + except OAuth2Error: + return redirect(url_for(".login")) - if not any(str(guild.id) == user_guild["id"] for user_guild in user_guilds): - return redirect(url_for(".login")) + if not any(str(guild.id) == user_guild["id"] for user_guild in user_guilds): + return redirect(url_for(".login")) - return await render_template("subscribe.html.j2", guild=guild) - - -@app.route("/.ics") -async def ical(guild_id: str): - guild = get_guild_by_id(guild_id) - if guild is None: - return redirect(url_for(".login")) - - calendar = Calendar() - - calendar.extra.append(ContentLine(name="REFRESH-INTERVAL", value="PT1H")) - calendar.extra.append(ContentLine(name="X-PUBLISHED-TTL", value="PT1H")) - - calendar.extra.append(ContentLine(name="NAME", value=guild.name)) - calendar.extra.append(ContentLine(name="X-WR-CALNAME", value=guild.name)) - - if guild.description: - calendar.extra.append(ContentLine(name="DESCRIPTION", value=guild.description)) - calendar.extra.append(ContentLine(name="X-WR-CALDESC", value=guild.description)) - - for scheduled_event in guild.scheduled_events: - event = Event() - event.summary = scheduled_event.name - event.begin = scheduled_event.scheduled_start_time - event.end = scheduled_event.scheduled_end_time - event.duration = timedelta(hours=2) - event.uid = str(scheduled_event.id) - event.description = scheduled_event.description - event.url = f"https://discord.com/events/{guild_id}/{scheduled_event.id}" - event.location = ( - scheduled_event.entity_metadata.location - if scheduled_event.entity_metadata - else None + return await render_template( + "subscribe.html.j2", + avatar=guild.icon, + entity_id=guild.vanity_url_code or guild.id, ) - alarm = DisplayAlarm() - alarm.trigger = timedelta(hours=-1) - event.alarms.append(alarm) + user = await client.get_or_fetch_user(int(entity_id)) - calendar.events.append(event) + if user and str(user.id) == entity_id: + return await render_template( + "subscribe.html.j2", avatar=user.avatar, entity_id=user.id + ) - return calendar.serialize() + return redirect(url_for(".login")) + + +def make_event(scheduled_event: GuildScheduledEvent) -> Event: + event = Event() + + event.summary = scheduled_event.name + event.begin = scheduled_event.scheduled_start_time + event.end = scheduled_event.scheduled_end_time + event.duration = timedelta(hours=2) + event.uid = str(scheduled_event.id) + event.description = scheduled_event.description + event.url = scheduled_event.url + event.location = ( + scheduled_event.entity_metadata.location + if scheduled_event.entity_metadata + else None + ) + + alarm = DisplayAlarm() + alarm.trigger = timedelta(hours=-1) + event.alarms.append(alarm) + + return event + + +@app.route("/.ics") +async def ical(entity_id: str): + guild = get_guild_by_id(entity_id) + + if guild: + calendar = Calendar() + + calendar.extra.append(ContentLine(name="REFRESH-INTERVAL", value="PT1H")) + calendar.extra.append(ContentLine(name="X-PUBLISHED-TTL", value="PT1H")) + + calendar.extra.append(ContentLine(name="NAME", value=guild.name)) + calendar.extra.append(ContentLine(name="X-WR-CALNAME", value=guild.name)) + + if guild.description: + calendar.extra.append( + ContentLine(name="DESCRIPTION", value=guild.description) + ) + calendar.extra.append( + ContentLine(name="X-WR-CALDESC", value=guild.description) + ) + + for scheduled_event in guild.scheduled_events: + event = make_event(scheduled_event) + calendar.events.append(event) + + return calendar.serialize() + + user = await client.get_or_fetch_user(int(entity_id)) + + if user: + calendar = Calendar() + + calendar.extra.append(ContentLine(name="REFRESH-INTERVAL", value="PT1H")) + calendar.extra.append(ContentLine(name="X-PUBLISHED-TTL", value="PT1H")) + + calendar.extra.append(ContentLine(name="NAME", value=client.user.display_name)) + calendar.extra.append( + ContentLine(name="X-WR-CALNAME", value=client.user.display_name) + ) + + for guild in client.guilds: + if await guild.get_or_fetch_member(int(entity_id)): + for scheduled_event in guild.scheduled_events: + if user.id in [ + member.id + for member in await scheduled_event.fetch_users().flatten() + ]: + event = make_event(scheduled_event) + calendar.events.append(event) + + return calendar.serialize() + + return redirect(url_for(".login")) def __main__(): diff --git a/divent/templates/base.html.j2 b/divent/templates/base.html.j2 index 5986387..f267608 100644 --- a/divent/templates/base.html.j2 +++ b/divent/templates/base.html.j2 @@ -6,11 +6,11 @@ - {{ client.user.display_name }} - {{ _('The discord scheduled event calendar generator') }} + {{ client.user.display_name }} - {{ _("The discord scheduled event calendar generator") }} + href="{{ url_for('static', filename='css/font-awesome.min.css') }}" /> + href="{{ url_for('static', filename='css/global.css') }}" />
diff --git a/divent/templates/error.html.j2 b/divent/templates/error.html.j2 index af1b801..007e207 100644 --- a/divent/templates/error.html.j2 +++ b/divent/templates/error.html.j2 @@ -3,17 +3,17 @@
{{ _('Link is dead') }} + width="173" />

{{ error }}
{% endblock content %} diff --git a/divent/templates/footer.html.j2 b/divent/templates/footer.html.j2 index f266de0..ef1f446 100644 --- a/divent/templates/footer.html.j2 +++ b/divent/templates/footer.html.j2 @@ -2,7 +2,7 @@
  • - {{ _('Add author on Discord') }} + {{ _("Add author on Discord") }}
  • @@ -16,17 +16,17 @@
  • - {{ _('View the source code') }} + {{ _("View the source code") }}
  • - {{ _('Host it yourself') }} + {{ _("Host it yourself") }}
  • - {{ _('Next castastrophic life failure in about %days% days') | replace('%days%', days_before_failure) }} + {{ _("Next castastrophic life failure in about %days% days") | replace('%days%', days_before_failure) }}
  • diff --git a/divent/templates/guilds.html.j2 b/divent/templates/guilds.html.j2 index 26dde37..b45408b 100644 --- a/divent/templates/guilds.html.j2 +++ b/divent/templates/guilds.html.j2 @@ -4,32 +4,30 @@
    {{ _('Bot Logo') }} + height="80" /> - {{ _('User Avatar') }} + height="80" />

    {{ client.user.display_name }}

    -

    {{ _('Choose a server:') }}

    - + {% for guild in common_guilds %} - + {% endfor %}
    {{ _("OR") }}
    {{ _("Add the bot on your server") }} @@ -48,8 +46,5 @@
    -
    - -
    {% endblock content %} diff --git a/divent/templates/index.html.j2 b/divent/templates/index.html.j2 index 65d1797..75c1869 100644 --- a/divent/templates/index.html.j2 +++ b/divent/templates/index.html.j2 @@ -4,24 +4,24 @@
    {{ _('Bot Logo') }} + height="80" />

    {{ client.user.display_name }}

    -

    {{ _('The discord scheduled event calendar generator') }}

    +

    {{ _("The discord scheduled event calendar generator") }}


    -

    {{ _('This will allow you to:') }}

    +

    {{ _("This will allow you to:") }}

    • - {{ _('Subscribe to a calendar on Google, Outlook, Apple or any ICS complient software') }} + {{ _("Subscribe to a calendar on Google, Outlook, Apple or any ICS complient software") }}
    • - {{ _('Throwing you to a new isekai world') }} + {{ _("Throwing you to a new isekai world") }}
    diff --git a/divent/templates/subscribe.html.j2 b/divent/templates/subscribe.html.j2 index 4f7e833..09064b6 100644 --- a/divent/templates/subscribe.html.j2 +++ b/divent/templates/subscribe.html.j2 @@ -3,25 +3,22 @@
    {{ _('Bot Logo') }} + height="80" /> - {{ _('Guild Logo') }} + {{ _(

    {{ client.user.display_name }}

    -

    {{ _('The discord scheduled event calendar generator') }}

    +

    {{ _("The discord scheduled event calendar generator") }}


    diff --git a/divent/translations/fr.json b/divent/translations/fr.json index 2cdef39..b49e183 100644 --- a/divent/translations/fr.json +++ b/divent/translations/fr.json @@ -5,7 +5,7 @@ "This will allow you to:": "Ceci te permettra de :", "Subscribe to a calendar on Google, Outlook, Apple or any ICS complient software": "T'abonner à un calendrier sur Google, Outlook, Apple ou tout autre logiciel compatible", "Throwing you to a new isekai world": "T'envoyer dans un monde fantaisiste armée d'une poêle à frire", - "Choose a server:": "Choisi un serveur :", + "For all your servers": "Pour tous tes serveurs", "You must have": "Tu dois avoir la permission", "Manage Server": "Gérer le serveur", "permission on this server to perform this action": "sur ce serveur pour effectuer cette action", diff --git a/poetry.lock b/poetry.lock index 997d12a..04ca0ed 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1649,5 +1649,5 @@ testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "p [metadata] lock-version = "2.0" -python-versions = "^3.8.1" -content-hash = "e4463ad986a3f8fafe36af53b741fe71dd1a78d65efb3e4240ac422688fca367" +python-versions = ">=3.8.1,<3.12" +content-hash = "30113574429e0ed0539ebe2850264eb819fb2a7af92310402c9eccbca33487ed" diff --git a/pyproject.toml b/pyproject.toml index 881ebda..6e49100 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "divent" -version = "3.4.4" +version = "4.0.0" description = "The discord scheduled event calendar generator" authors = ["Xéfir Destiny "] license = "WTFPL" @@ -12,7 +12,7 @@ repository = "https://git.crystalyx.net/Xefir/Divent" divent = 'divent.bot:__main__' [tool.poetry.dependencies] -python = "^3.8.1" +python = ">=3.8.1,<3.12" disnake = "^2.9.1" ics = "0.8.0.dev0" python-dotenv = "^1.0.0"