175 lines
8.6 KiB
C#
175 lines
8.6 KiB
C#
using Discord.Rest;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Collections.Immutable;
|
|
using System.Diagnostics;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using Model = Discord.API.Message;
|
|
|
|
namespace Discord.WebSocket
|
|
{
|
|
/// <summary>
|
|
/// Represents a WebSocket-based message sent by a user.
|
|
/// </summary>
|
|
[DebuggerDisplay(@"{DebuggerDisplay,nq}")]
|
|
public class SocketUserMessage : SocketMessage, IUserMessage
|
|
{
|
|
private readonly List<SocketReaction> _reactions = new List<SocketReaction>();
|
|
private bool _isMentioningEveryone, _isTTS, _isPinned;
|
|
private long? _editedTimestampTicks;
|
|
private ImmutableArray<Attachment> _attachments = ImmutableArray.Create<Attachment>();
|
|
private ImmutableArray<Embed> _embeds = ImmutableArray.Create<Embed>();
|
|
private ImmutableArray<ITag> _tags = ImmutableArray.Create<ITag>();
|
|
|
|
/// <inheritdoc />
|
|
public override bool IsTTS => _isTTS;
|
|
/// <inheritdoc />
|
|
public override bool IsPinned => _isPinned;
|
|
/// <inheritdoc />
|
|
public override DateTimeOffset? EditedTimestamp => DateTimeUtils.FromTicks(_editedTimestampTicks);
|
|
/// <inheritdoc />
|
|
public override IReadOnlyCollection<Attachment> Attachments => _attachments;
|
|
/// <inheritdoc />
|
|
public override IReadOnlyCollection<Embed> Embeds => _embeds;
|
|
/// <inheritdoc />
|
|
public override IReadOnlyCollection<ITag> Tags => _tags;
|
|
/// <inheritdoc />
|
|
public override IReadOnlyCollection<SocketGuildChannel> MentionedChannels => MessageHelper.FilterTagsByValue<SocketGuildChannel>(TagType.ChannelMention, _tags);
|
|
/// <inheritdoc />
|
|
public override IReadOnlyCollection<SocketRole> MentionedRoles => MessageHelper.FilterTagsByValue<SocketRole>(TagType.RoleMention, _tags);
|
|
/// <inheritdoc />
|
|
public override IReadOnlyCollection<SocketUser> MentionedUsers => MessageHelper.FilterTagsByValue<SocketUser>(TagType.UserMention, _tags);
|
|
/// <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) });
|
|
|
|
internal SocketUserMessage(DiscordSocketClient discord, ulong id, ISocketMessageChannel channel, SocketUser author, MessageSource source)
|
|
: base(discord, id, channel, author, source)
|
|
{
|
|
}
|
|
internal new static SocketUserMessage Create(DiscordSocketClient discord, ClientState state, SocketUser author, ISocketMessageChannel channel, Model model)
|
|
{
|
|
var entity = new SocketUserMessage(discord, model.Id, channel, author, MessageHelper.GetSource(model));
|
|
entity.Update(state, model);
|
|
return entity;
|
|
}
|
|
|
|
internal override void Update(ClientState state, Model model)
|
|
{
|
|
base.Update(state, model);
|
|
|
|
if (model.IsTextToSpeech.IsSpecified)
|
|
_isTTS = model.IsTextToSpeech.Value;
|
|
if (model.Pinned.IsSpecified)
|
|
_isPinned = model.Pinned.Value;
|
|
if (model.EditedTimestamp.IsSpecified)
|
|
_editedTimestampTicks = model.EditedTimestamp.Value?.UtcTicks;
|
|
if (model.MentionEveryone.IsSpecified)
|
|
_isMentioningEveryone = model.MentionEveryone.Value;
|
|
|
|
if (model.Attachments.IsSpecified)
|
|
{
|
|
var value = model.Attachments.Value;
|
|
if (value.Length > 0)
|
|
{
|
|
var attachments = ImmutableArray.CreateBuilder<Attachment>(value.Length);
|
|
for (int i = 0; i < value.Length; i++)
|
|
attachments.Add(Attachment.Create(value[i]));
|
|
_attachments = attachments.ToImmutable();
|
|
}
|
|
else
|
|
_attachments = ImmutableArray.Create<Attachment>();
|
|
}
|
|
|
|
if (model.Embeds.IsSpecified)
|
|
{
|
|
var value = model.Embeds.Value;
|
|
if (value.Length > 0)
|
|
{
|
|
var embeds = ImmutableArray.CreateBuilder<Embed>(value.Length);
|
|
for (int i = 0; i < value.Length; i++)
|
|
embeds.Add(value[i].ToEntity());
|
|
_embeds = embeds.ToImmutable();
|
|
}
|
|
else
|
|
_embeds = ImmutableArray.Create<Embed>();
|
|
}
|
|
|
|
IReadOnlyCollection<IUser> mentions = ImmutableArray.Create<SocketUnknownUser>(); //Is passed to ParseTags to get real mention collection
|
|
if (model.UserMentions.IsSpecified)
|
|
{
|
|
var value = model.UserMentions.Value;
|
|
if (value.Length > 0)
|
|
{
|
|
var newMentions = ImmutableArray.CreateBuilder<SocketUnknownUser>(value.Length);
|
|
for (int i = 0; i < value.Length; i++)
|
|
{
|
|
var val = value[i];
|
|
if (val.Object != null)
|
|
newMentions.Add(SocketUnknownUser.Create(Discord, state, val.Object));
|
|
}
|
|
mentions = newMentions.ToImmutable();
|
|
}
|
|
}
|
|
|
|
if (model.Content.IsSpecified)
|
|
{
|
|
var text = model.Content.Value;
|
|
var guild = (Channel as SocketGuildChannel)?.Guild;
|
|
_tags = MessageHelper.ParseTags(text, Channel, guild, mentions);
|
|
model.Content = text;
|
|
}
|
|
}
|
|
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();
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
/// <exception cref="InvalidOperationException">Only the author of a message may modify the message.</exception>
|
|
/// <exception cref="ArgumentOutOfRangeException">Message content is too long, length must be less or equal to <see cref="DiscordConfig.MaxMessageSize"/>.</exception>
|
|
public Task ModifyAsync(Action<MessageProperties> func, RequestOptions options = null)
|
|
=> MessageHelper.ModifyAsync(this, Discord, func, options);
|
|
|
|
/// <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, emote, Discord, options);
|
|
/// <inheritdoc />
|
|
public Task RemoveAllReactionsAsync(RequestOptions options = null)
|
|
=> MessageHelper.RemoveAllReactionsAsync(this, Discord, options);
|
|
/// <inheritdoc />
|
|
public IAsyncEnumerable<IReadOnlyCollection<IUser>> GetReactionUsersAsync(IEmote emote, int limit, RequestOptions options = null)
|
|
=> MessageHelper.GetReactionUsersAsync(this, emote, limit, Discord, options);
|
|
|
|
/// <inheritdoc />
|
|
public Task PinAsync(RequestOptions options = null)
|
|
=> MessageHelper.PinAsync(this, Discord, options);
|
|
/// <inheritdoc />
|
|
public Task UnpinAsync(RequestOptions options = null)
|
|
=> MessageHelper.UnpinAsync(this, Discord, options);
|
|
|
|
public string Resolve(int startIndex, TagHandling userHandling = TagHandling.Name, TagHandling channelHandling = TagHandling.Name,
|
|
TagHandling roleHandling = TagHandling.Name, TagHandling everyoneHandling = TagHandling.Ignore, TagHandling emojiHandling = TagHandling.Name)
|
|
=> MentionUtils.Resolve(this, startIndex, userHandling, channelHandling, roleHandling, everyoneHandling, emojiHandling);
|
|
/// <inheritdoc />
|
|
public string Resolve(TagHandling userHandling = TagHandling.Name, TagHandling channelHandling = TagHandling.Name,
|
|
TagHandling roleHandling = TagHandling.Name, TagHandling everyoneHandling = TagHandling.Ignore, TagHandling emojiHandling = TagHandling.Name)
|
|
=> MentionUtils.Resolve(this, 0, userHandling, channelHandling, roleHandling, everyoneHandling, emojiHandling);
|
|
|
|
private string DebuggerDisplay => $"{Author}: {Content} ({Id}{(Attachments.Count > 0 ? $", {Attachments.Count} Attachments" : "")})";
|
|
internal new SocketUserMessage Clone() => MemberwiseClone() as SocketUserMessage;
|
|
}
|
|
}
|