Source code for discord.message

from discord import User
import json


[docs]class Message(object): """A discord message as described here: https://discordapp.com/developers/docs/resources/channel#message-object A message can be either received through the gateway websocket or sent to the REST API. Args: content: The contents of the message. channel_id: The id of the channel the message will be written to. author_id: The unique id of the user who sent/sends the message. username: The current username#discriminator combo for that user. timestamp: The time of the message. attachment: The file that will be attached to the message. embed: # TODO: document. mentions: A list of users mentioned in the message. """ def __init__(self, content, channel_id, author_id, username, timestamp=None, attachment=None, embed=None, mentions=None): self.content = content self.channel_id = channel_id self.author_id = author_id self.username = username self.timestamp = timestamp self.attachment = attachment self.embed = embed self.mentions = [] if not mentions else mentions
[docs] @staticmethod def from_payload(payload): """Creates a Message from a Payload by extracting relevant items. Args: payload: A MESSAGE_CREATE payload. Returns: A message. """ data = payload.data return Message(content = data["content"], channel_id = data["channel_id"], author_id = data["author"]["id"], username = data["author"]["username"] + "#" + data["author"]["discriminator"], timestamp = data["timestamp"], mentions = [User.from_json(user_data) for user_data in data["mentions"]])
[docs] def to_payload(self): """Encodes the message into a payload-like dictionary, a format recognized by discord's APIs. Returns: A payload dictionary. """ payload = { "content": self.content, "tts": False, "embed": self.embed } return payload
[docs] def to_json(self): """Encodes the message in json in a format recognized by discord's APIs. Returns: A json string. """ return json.dumps(self.to_payload())