Source code for hikari.scheduled_events

# -*- coding: utf-8 -*-
# cython: language_level=3
# Copyright (c) 2020 Nekokatt
# Copyright (c) 2021-present davfsa
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
"""Application and entities that are used to describe guild scheduled events on Discord."""
from __future__ import annotations

__all__: typing.Sequence[str] = (
    "EventPrivacyLevel",
    "ScheduledEventType",
    "ScheduledEventStatus",
    "ScheduledEvent",
    "ScheduledExternalEvent",
    "ScheduledStageEvent",
    "ScheduledVoiceEvent",
    "ScheduledEventUser",
)

import typing

import attr

from hikari import snowflakes
from hikari import urls
from hikari.internal import attr_extensions
from hikari.internal import enums
from hikari.internal import routes

if typing.TYPE_CHECKING:
    import datetime

    from hikari import files
    from hikari import guilds
    from hikari import traits
    from hikari import users


[docs]class EventPrivacyLevel(int, enums.Enum): """Enum of the possible scheduled event privacy levels."""
[docs] GUILD_ONLY = 2
"""The scheduled event is only available to guild members."""
[docs]class ScheduledEventType(int, enums.Enum): """Enum of the scheduled event types."""
[docs] STAGE_INSTANCE = 1
"""A scheduled stage instance."""
[docs] VOICE = 2
"""A scheculed voice chat event."""
[docs] EXTERNAL = 3
"""A scheduled event which takes part outside of Discord."""
[docs]class ScheduledEventStatus(int, enums.Enum): """Enum of the scheduled event statuses."""
[docs] SCHEDULED = 1
"""Indicates that the scheduled event hasn't occurred yet."""
[docs] ACTIVE = 2
"""Indicates an eventis on-going."""
[docs] COMPLETED = 3
"""Indicates an event has finished."""
[docs] CANCELED = 4
"""Indicates an event has been canceled."""
[docs] CANCELLED = CANCELED
"""Alias of `ScheduledEventStatus.CANCELED`."""
@attr_extensions.with_copy @attr.define(hash=True, kw_only=True, weakref_slot=False)
[docs]class ScheduledEvent(snowflakes.Unique): """Base class for scheduled events.""" # entity_id is ignored right now due to always being null # creator_id is ignored as it just dupes creator.id
[docs] app: traits.RESTAware = attr.field( repr=False, eq=False, hash=False, metadata={attr_extensions.SKIP_DEEP_COPY: True} )
"""Client application that models may use for procedures."""
[docs] id: snowflakes.Snowflake = attr.field(hash=True, repr=True)
"""ID of the scheduled event."""
[docs] guild_id: snowflakes.Snowflake = attr.field(hash=False, repr=True)
"""ID of the guild this scheduled event belongs to."""
[docs] name: str = attr.field(hash=False, repr=True)
"""Name of the scheduled event."""
[docs] description: typing.Optional[str] = attr.field(hash=False, repr=False)
"""Description of the scheduled event."""
[docs] start_time: datetime.datetime = attr.field(hash=False, repr=False)
"""When the event is scheduled to start."""
[docs] end_time: typing.Optional[datetime.datetime] = attr.field(hash=False, repr=False)
"""When the event is scheduled to end, if set."""
[docs] privacy_level: EventPrivacyLevel = attr.field(hash=False, repr=False)
"""Privacy level of the scheduled event. This restricts who can view and join the scheduled event. """
[docs] status: ScheduledEventStatus = attr.field(hash=False, repr=True)
"""Status of the scheduled event."""
[docs] entity_type: ScheduledEventType = attr.field(hash=False, repr=True)
"""The type of entity this scheduled event is associated with."""
[docs] creator: typing.Optional[users.User] = attr.field(hash=False, repr=False)
"""The user who created the scheduled event. This will only be set for event created after 2021-10-25. """
[docs] user_count: typing.Optional[int] = attr.field(hash=False, repr=False)
"""The number of users that have subscribed to the event. This will be `None` on gateway events when creating and editing a scheduled event. """
[docs] image_hash: typing.Optional[str] = attr.field(hash=False, repr=False)
"""Hash of the image used for the scheduled event, if set.""" @property
[docs] def image_url(self) -> typing.Optional[files.URL]: """Cover image for this scheduled event, if set.""" return self.make_image_url()
[docs] def make_image_url(self, *, ext: str = "png", size: int = 4096) -> typing.Optional[files.URL]: """Generate the cover image for this scheduled event, if set. Parameters ---------- ext : str The extension to use for this URL, defaults to `png`. Supports `png`, `jpeg`, `jpg` and `webp`. size : int The size to set for the URL, defaults to `4096`. Can be any power of two between 16 and 4096. Returns ------- typing.Optional[hikari.files.URL] The URL, or `None` if no cover image is set. Raises ------ ValueError If `size` is not a power of two between 16 and 4096 (inclusive). """ if self.image_hash is None: return None return routes.SCHEDULED_EVENT_COVER.compile_to_file( urls.CDN_URL, scheduled_event_id=self.id, hash=self.image_hash, size=size, file_format=ext, )
@attr_extensions.with_copy @attr.define(hash=True, kw_only=True, weakref_slot=False)
[docs]class ScheduledExternalEvent(ScheduledEvent): """A scheduled event that takes place outside of Discord."""
[docs] location: str = attr.field(hash=False, repr=False)
"""The location of the scheduled event. .. note:: There is no strict format for this field, and it will likely be a user friendly string. """
[docs] end_time: datetime.datetime = attr.field(hash=False, repr=False)
"""When the event is scheduled to end."""
@attr_extensions.with_copy @attr.define(hash=True, kw_only=True, weakref_slot=False)
[docs]class ScheduledStageEvent(ScheduledEvent): """A scheduled event that takes place in a stage channel."""
[docs] channel_id: snowflakes.Snowflake = attr.field(hash=False, repr=False)
"""ID of the stage channel this event is scheduled in."""
@attr_extensions.with_copy @attr.define(hash=True, kw_only=True, weakref_slot=False)
[docs]class ScheduledVoiceEvent(ScheduledEvent): """A scheduled event that takes place in a voice channel."""
[docs] channel_id: snowflakes.Snowflake = attr.field(hash=False, repr=False)
"""ID of the voice channel this scheduled event is in."""
@attr_extensions.with_copy @attr.define(kw_only=True, weakref_slot=False)
[docs]class ScheduledEventUser: """A user who is subscribed to a scheduled event."""
[docs] event_id: snowflakes.Snowflake = attr.field(hash=False, repr=True)
"""ID of the scheduled event they're subscribed to."""
[docs] user: users.User = attr.field(hash=True, repr=True)
"""Object representing the user."""
[docs] member: typing.Optional[guilds.Member] = attr.field(hash=False, repr=False)
"""Their guild member object if they're in the event's guild."""