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.
230 lines
9.2 KiB
230 lines
9.2 KiB
using Discord.Rest;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Collections.Immutable;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using Model = Discord.API.Message;
|
|
|
|
namespace Discord.WebSocket
|
|
{
|
|
/// <summary>
|
|
/// Represents a WebSocket-based message.
|
|
/// </summary>
|
|
public abstract class SocketMessage : SocketEntity<ulong>, IMessage
|
|
{
|
|
private long _timestampTicks;
|
|
private readonly List<SocketReaction> _reactions = new List<SocketReaction>();
|
|
|
|
/// <summary>
|
|
/// Gets the author of this message.
|
|
/// </summary>
|
|
/// <returns>
|
|
/// A WebSocket-based user object.
|
|
/// </returns>
|
|
public SocketUser Author { get; }
|
|
/// <summary>
|
|
/// Gets the source channel of the message.
|
|
/// </summary>
|
|
/// <returns>
|
|
/// A WebSocket-based message channel.
|
|
/// </returns>
|
|
public ISocketMessageChannel Channel { get; }
|
|
/// <inheritdoc />
|
|
public MessageSource Source { get; }
|
|
|
|
/// <inheritdoc />
|
|
public string Content { get; private set; }
|
|
|
|
/// <inheritdoc />
|
|
public DateTimeOffset CreatedAt => SnowflakeUtils.FromSnowflake(Id);
|
|
/// <inheritdoc />
|
|
public virtual bool IsTTS => false;
|
|
/// <inheritdoc />
|
|
public virtual bool IsPinned => false;
|
|
/// <inheritdoc />
|
|
public virtual bool IsSuppressed => false;
|
|
/// <inheritdoc />
|
|
public virtual DateTimeOffset? EditedTimestamp => null;
|
|
/// <inheritdoc />
|
|
public virtual bool MentionedEveryone => false;
|
|
|
|
/// <inheritdoc />
|
|
public MessageActivity Activity { get; private set; }
|
|
|
|
/// <inheritdoc />
|
|
public MessageApplication Application { get; private set; }
|
|
|
|
/// <inheritdoc />
|
|
public MessageReference Reference { get; private set; }
|
|
|
|
/// <summary>
|
|
/// Returns all attachments included in this message.
|
|
/// </summary>
|
|
/// <returns>
|
|
/// Collection of attachments.
|
|
/// </returns>
|
|
public virtual IReadOnlyCollection<Attachment> Attachments => ImmutableArray.Create<Attachment>();
|
|
/// <summary>
|
|
/// Returns all embeds included in this message.
|
|
/// </summary>
|
|
/// <returns>
|
|
/// Collection of embed objects.
|
|
/// </returns>
|
|
public virtual IReadOnlyCollection<Embed> Embeds => ImmutableArray.Create<Embed>();
|
|
/// <summary>
|
|
/// Returns the channels mentioned in this message.
|
|
/// </summary>
|
|
/// <returns>
|
|
/// Collection of WebSocket-based guild channels.
|
|
/// </returns>
|
|
public virtual IReadOnlyCollection<SocketGuildChannel> MentionedChannels => ImmutableArray.Create<SocketGuildChannel>();
|
|
/// <summary>
|
|
/// Returns the roles mentioned in this message.
|
|
/// </summary>
|
|
/// <returns>
|
|
/// Collection of WebSocket-based roles.
|
|
/// </returns>
|
|
public virtual IReadOnlyCollection<SocketRole> MentionedRoles => ImmutableArray.Create<SocketRole>();
|
|
/// <summary>
|
|
/// Returns the users mentioned in this message.
|
|
/// </summary>
|
|
/// <returns>
|
|
/// Collection of WebSocket-based users.
|
|
/// </returns>
|
|
public virtual IReadOnlyCollection<SocketUser> MentionedUsers => ImmutableArray.Create<SocketUser>();
|
|
/// <inheritdoc />
|
|
public virtual IReadOnlyCollection<ITag> Tags => ImmutableArray.Create<ITag>();
|
|
/// <inheritdoc />
|
|
public IReadOnlyDictionary<IEmote, ReactionMetadata> Reactions => _reactions.GroupBy(r => r.Emote).ToDictionary(x => x.Key, x => new ReactionMetadata { ReactionCount = x.Count(), IsMe = x.Any(y => y.UserId == Discord.CurrentUser.Id) });
|
|
|
|
/// <inheritdoc />
|
|
public DateTimeOffset Timestamp => DateTimeUtils.FromTicks(_timestampTicks);
|
|
|
|
internal SocketMessage(DiscordSocketClient discord, ulong id, ISocketMessageChannel channel, SocketUser author, MessageSource source)
|
|
: base(discord, id)
|
|
{
|
|
Channel = channel;
|
|
Author = author;
|
|
Source = source;
|
|
}
|
|
internal static SocketMessage Create(DiscordSocketClient discord, ClientState state, SocketUser author, ISocketMessageChannel channel, Model model)
|
|
{
|
|
if (model.Type == MessageType.Default)
|
|
return SocketUserMessage.Create(discord, state, author, channel, model);
|
|
else
|
|
return SocketSystemMessage.Create(discord, state, author, channel, model);
|
|
}
|
|
internal virtual void Update(ClientState state, Model model)
|
|
{
|
|
if (model.Timestamp.IsSpecified)
|
|
_timestampTicks = model.Timestamp.Value.UtcTicks;
|
|
|
|
if (model.Content.IsSpecified)
|
|
Content = model.Content.Value;
|
|
|
|
if (model.Application.IsSpecified)
|
|
{
|
|
// create a new Application from the API model
|
|
Application = new MessageApplication()
|
|
{
|
|
Id = model.Application.Value.Id,
|
|
CoverImage = model.Application.Value.CoverImage,
|
|
Description = model.Application.Value.Description,
|
|
Icon = model.Application.Value.Icon,
|
|
Name = model.Application.Value.Name
|
|
};
|
|
}
|
|
|
|
if (model.Activity.IsSpecified)
|
|
{
|
|
// create a new Activity from the API model
|
|
Activity = new MessageActivity()
|
|
{
|
|
Type = model.Activity.Value.Type.Value,
|
|
PartyId = model.Activity.Value.PartyId.GetValueOrDefault()
|
|
};
|
|
}
|
|
|
|
if (model.Reference.IsSpecified)
|
|
{
|
|
// Creates a new Reference from the API model
|
|
Reference = new MessageReference
|
|
{
|
|
GuildId = model.Reference.Value.GuildId,
|
|
ChannelId = model.Reference.Value.ChannelId,
|
|
MessageId = model.Reference.Value.MessageId
|
|
};
|
|
}
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public Task DeleteAsync(RequestOptions options = null)
|
|
=> MessageHelper.DeleteAsync(this, Discord, options);
|
|
|
|
/// <summary>
|
|
/// Gets the content of the message.
|
|
/// </summary>
|
|
/// <returns>
|
|
/// Content of the message.
|
|
/// </returns>
|
|
public override string ToString() => Content;
|
|
internal SocketMessage Clone() => MemberwiseClone() as SocketMessage;
|
|
|
|
//IMessage
|
|
/// <inheritdoc />
|
|
IUser IMessage.Author => Author;
|
|
/// <inheritdoc />
|
|
IMessageChannel IMessage.Channel => Channel;
|
|
/// <inheritdoc />
|
|
MessageType IMessage.Type => MessageType.Default;
|
|
/// <inheritdoc />
|
|
IReadOnlyCollection<IAttachment> IMessage.Attachments => Attachments;
|
|
/// <inheritdoc />
|
|
IReadOnlyCollection<IEmbed> IMessage.Embeds => Embeds;
|
|
/// <inheritdoc />
|
|
IReadOnlyCollection<ulong> IMessage.MentionedChannelIds => MentionedChannels.Select(x => x.Id).ToImmutableArray();
|
|
/// <inheritdoc />
|
|
IReadOnlyCollection<ulong> IMessage.MentionedRoleIds => MentionedRoles.Select(x => x.Id).ToImmutableArray();
|
|
/// <inheritdoc />
|
|
IReadOnlyCollection<ulong> IMessage.MentionedUserIds => MentionedUsers.Select(x => x.Id).ToImmutableArray();
|
|
|
|
internal void AddReaction(SocketReaction reaction)
|
|
{
|
|
_reactions.Add(reaction);
|
|
}
|
|
internal void RemoveReaction(SocketReaction reaction)
|
|
{
|
|
if (_reactions.Contains(reaction))
|
|
_reactions.Remove(reaction);
|
|
}
|
|
internal void ClearReactions()
|
|
{
|
|
_reactions.Clear();
|
|
}
|
|
internal void RemoveReactionsForEmote(IEmote emote)
|
|
{
|
|
_reactions.RemoveAll(x => x.Emote.Equals(emote));
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public Task AddReactionAsync(IEmote emote, RequestOptions options = null)
|
|
=> MessageHelper.AddReactionAsync(this, emote, Discord, options);
|
|
/// <inheritdoc />
|
|
public Task RemoveReactionAsync(IEmote emote, IUser user, RequestOptions options = null)
|
|
=> MessageHelper.RemoveReactionAsync(this, user.Id, emote, Discord, options);
|
|
/// <inheritdoc />
|
|
public Task RemoveReactionAsync(IEmote emote, ulong userId, RequestOptions options = null)
|
|
=> MessageHelper.RemoveReactionAsync(this, userId, emote, Discord, options);
|
|
/// <inheritdoc />
|
|
public Task RemoveAllReactionsAsync(RequestOptions options = null)
|
|
=> MessageHelper.RemoveAllReactionsAsync(this, Discord, options);
|
|
/// <inheritdoc />
|
|
public Task RemoveAllReactionsForEmoteAsync(IEmote emote, RequestOptions options = null)
|
|
=> MessageHelper.RemoveAllReactionsForEmoteAsync(this, emote, Discord, options);
|
|
/// <inheritdoc />
|
|
public IAsyncEnumerable<IReadOnlyCollection<IUser>> GetReactionUsersAsync(IEmote emote, int limit, RequestOptions options = null)
|
|
=> MessageHelper.GetReactionUsersAsync(this, emote, limit, Discord, options);
|
|
}
|
|
}
|