You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
139 lines
4.3 KiB
139 lines
4.3 KiB
"""
|
|
The MIT License (MIT)
|
|
|
|
Copyright (c) 2021-present Dolfies
|
|
|
|
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.
|
|
"""
|
|
from __future__ import annotations
|
|
|
|
from typing import TYPE_CHECKING, List, Optional, Union
|
|
|
|
from .components import _component_factory
|
|
from .enums import InteractionType
|
|
from .interactions import _wrapped_interaction
|
|
from .mixins import Hashable
|
|
from .utils import _generate_nonce
|
|
|
|
if TYPE_CHECKING:
|
|
from .application import IntegrationApplication
|
|
from .components import ActionRow
|
|
from .interactions import Interaction
|
|
from .types.interactions import Modal as ModalPayload, ModalSubmitInteractionData
|
|
|
|
# fmt: off
|
|
__all__ = (
|
|
'Modal',
|
|
)
|
|
# fmt: on
|
|
|
|
|
|
class Modal(Hashable):
|
|
"""Represents a modal from the Discord Bot UI Kit.
|
|
|
|
.. versionadded:: 2.0
|
|
|
|
.. container:: operations
|
|
|
|
.. describe:: x == y
|
|
|
|
Checks if two modals are equal.
|
|
|
|
.. describe:: x != y
|
|
|
|
Checks if two modals are not equal.
|
|
|
|
.. describe:: hash(x)
|
|
|
|
Return the modal's hash.
|
|
|
|
.. describe:: str(x)
|
|
|
|
Returns the modal's title.
|
|
|
|
Attributes
|
|
-----------
|
|
id: :class:`int`
|
|
The interaction ID.
|
|
nonce: Optional[Union[:class:`int`, :class:`str`]]
|
|
The modal's nonce. May not be present.
|
|
title: :class:`str`
|
|
The modal's title.
|
|
custom_id: :class:`str`
|
|
The ID of the modal that gets received during an interaction.
|
|
components: List[:class:`Component`]
|
|
A list of components in the modal.
|
|
application: :class:`IntegrationApplication`
|
|
The application that sent the modal.
|
|
"""
|
|
|
|
__slots__ = ('_state', 'interaction', 'id', 'nonce', 'title', 'custom_id', 'components', 'application')
|
|
|
|
def __init__(self, *, data: ModalPayload, interaction: Interaction):
|
|
self._state = interaction._state
|
|
self.interaction = interaction
|
|
self.id = int(data['id'])
|
|
self.nonce: Optional[Union[int, str]] = data.get('nonce')
|
|
self.title: str = data.get('title', '')
|
|
self.custom_id: str = data.get('custom_id', '')
|
|
self.components: List[ActionRow] = [_component_factory(d) for d in data.get('components', [])]
|
|
self.application: IntegrationApplication = interaction._state.create_integration_application(data['application'])
|
|
|
|
def __str__(self) -> str:
|
|
return self.title
|
|
|
|
def to_dict(self) -> ModalSubmitInteractionData:
|
|
return {
|
|
'id': str(self.id),
|
|
'custom_id': self.custom_id,
|
|
'components': [c.to_dict() for c in self.components], # type: ignore
|
|
}
|
|
|
|
async def submit(self):
|
|
"""|coro|
|
|
|
|
Submits the modal.
|
|
|
|
All required components must be already answered.
|
|
|
|
Raises
|
|
-------
|
|
InvalidData
|
|
Didn't receive a response from Discord
|
|
(doesn't mean the interaction failed).
|
|
NotFound
|
|
The originating message was not found.
|
|
HTTPException
|
|
Choosing the options failed.
|
|
|
|
Returns
|
|
--------
|
|
:class:`Interaction`
|
|
The interaction that was created.
|
|
"""
|
|
interaction = self.interaction
|
|
return await _wrapped_interaction(
|
|
self._state,
|
|
_generate_nonce(),
|
|
InteractionType.modal_submit,
|
|
None,
|
|
interaction.channel,
|
|
self.to_dict(),
|
|
application_id=self.application.id,
|
|
)
|
|
|