|
|
@ -5,11 +5,12 @@ import functools |
|
|
|
import unicodedata |
|
|
|
|
|
|
|
from disco.types.base import ( |
|
|
|
SlottedModel, Field, ListField, AutoDictField, snowflake, text, |
|
|
|
datetime, enum, cached_property, |
|
|
|
BitsetMap, BitsetValue, SlottedModel, Field, ListField, AutoDictField, |
|
|
|
snowflake, text, datetime, enum, cached_property, |
|
|
|
) |
|
|
|
from disco.util.paginator import Paginator |
|
|
|
from disco.util.snowflake import to_snowflake |
|
|
|
from disco.types.channel import ChannelType |
|
|
|
from disco.types.user import User |
|
|
|
|
|
|
|
|
|
|
@ -26,6 +27,7 @@ class MessageType(object): |
|
|
|
USER_PREMIUM_GUILD_SUBSCRIPTION_TIER_1 = 9 |
|
|
|
USER_PREMIUM_GUILD_SUBSCRIPTION_TIER_2 = 10 |
|
|
|
USER_PREMIUM_GUILD_SUBSCRIPTION_TIER_3 = 11 |
|
|
|
CHANNEL_FOLLOW_ADD = 12 |
|
|
|
|
|
|
|
|
|
|
|
class MessageActivityType(object): |
|
|
@ -116,6 +118,12 @@ class MessageApplication(SlottedModel): |
|
|
|
name = Field(text) |
|
|
|
|
|
|
|
|
|
|
|
class MessageReference(SlottedModel): |
|
|
|
message_id = Field(snowflake) |
|
|
|
channel_id = Field(snowflake) |
|
|
|
guild_id = Field(snowflake) |
|
|
|
|
|
|
|
|
|
|
|
class MessageActivity(SlottedModel): |
|
|
|
""" |
|
|
|
The activity of a Rich Presence-related chat embed. |
|
|
@ -359,6 +367,25 @@ class MessageAttachment(SlottedModel): |
|
|
|
width = Field(int) |
|
|
|
|
|
|
|
|
|
|
|
class ChannelMention(SlottedModel): |
|
|
|
id = Field(snowflake) |
|
|
|
guild_id = Field(snowflake) |
|
|
|
type = Field(enum(ChannelType)) |
|
|
|
name = Field(text) |
|
|
|
|
|
|
|
|
|
|
|
class MessageFlags(BitsetMap): |
|
|
|
CROSSPOSTED = 1 << 0 |
|
|
|
IS_CROSSPOST = 1 << 1 |
|
|
|
SUPPRESS_EMBEDS = 1 << 2 |
|
|
|
SOURCE_MESSAGE_DELETED = 1 << 3 |
|
|
|
URGENT = 1 << 4 |
|
|
|
|
|
|
|
|
|
|
|
class MessageFlagValue(BitsetValue): |
|
|
|
map = MessageFlags |
|
|
|
|
|
|
|
|
|
|
|
class Message(SlottedModel): |
|
|
|
""" |
|
|
|
Represents a Message created within a Channel on Discord. |
|
|
@ -393,6 +420,8 @@ class Message(SlottedModel): |
|
|
|
IDs for roles mentioned within this message. |
|
|
|
embeds : list[`MessageEmbed`] |
|
|
|
Embeds for this message. |
|
|
|
mention_channels : list[`ChannelMention`] |
|
|
|
The channels mentioned in this message if it is cross-posted. |
|
|
|
attachments : dict[`MessageAttachment`] |
|
|
|
Attachments for this message. |
|
|
|
reactions : list[`MessageReaction`] |
|
|
@ -401,6 +430,10 @@ class Message(SlottedModel): |
|
|
|
The activity of a Rich Presence-related chat embed. |
|
|
|
application : `MessageApplication` |
|
|
|
The application of a Rich Presence-related chat embed. |
|
|
|
message_reference: `MessageReference` |
|
|
|
The reference of a cross-posted message. |
|
|
|
flags: `MessageFlagValue` |
|
|
|
The flags attached to a message. |
|
|
|
""" |
|
|
|
id = Field(snowflake) |
|
|
|
channel_id = Field(snowflake) |
|
|
@ -417,10 +450,13 @@ class Message(SlottedModel): |
|
|
|
mentions = AutoDictField(User, 'id') |
|
|
|
mention_roles = ListField(snowflake) |
|
|
|
embeds = ListField(MessageEmbed) |
|
|
|
mention_channels = ListField(ChannelMention) |
|
|
|
attachments = AutoDictField(MessageAttachment, 'id') |
|
|
|
reactions = ListField(MessageReaction) |
|
|
|
activity = Field(MessageActivity) |
|
|
|
application = Field(MessageApplication) |
|
|
|
message_reference = Field(MessageReference) |
|
|
|
flags = Field(MessageFlagValue) |
|
|
|
|
|
|
|
def __str__(self): |
|
|
|
return '<Message {} ({})>'.format(self.id, self.channel_id) |
|
|
@ -505,6 +541,24 @@ class Message(SlottedModel): |
|
|
|
""" |
|
|
|
return self.client.api.channels_messages_delete(self.channel_id, self.id) |
|
|
|
|
|
|
|
def set_embeds_suppressed(self, state): |
|
|
|
""" |
|
|
|
Toggle this message's embed suppression. |
|
|
|
|
|
|
|
Parameters |
|
|
|
---------- |
|
|
|
`state` |
|
|
|
Whether this message's embeds should be suppressed. |
|
|
|
""" |
|
|
|
flags = int(self.flags or 0) |
|
|
|
|
|
|
|
if state: |
|
|
|
flags |= MessageFlags.SUPPRESS_EMBEDS |
|
|
|
else: |
|
|
|
flags &= ~MessageFlags.SUPPRESS_EMBEDS |
|
|
|
|
|
|
|
self.edit(flags=flags) |
|
|
|
|
|
|
|
def get_reactors(self, emoji, *args, **kwargs): |
|
|
|
""" |
|
|
|
Returns an iterator which paginates the reactors for the given emoji. |
|
|
|