public bool TryStartTask(VerificationBot bot)
        {
            if (IsRunning || (_prevTime + Delay).TotalMilliseconds > Environment.TickCount64)
            {
                return(false);
            }

            _task     = Task.Run(() => Run(bot));
            _prevTime = TimeSpan.FromMilliseconds(Environment.TickCount64);
            return(true);
        }
        public static async Task HandleReactAddedAsync(VerificationBot bot, ReactionAddedEventArgs e)
        {
            // Guild id is null if the bot has no channel access (why does the api even send that?)
            if (e.GuildId == null || e.Member.Id == bot.CurrentUser.Id)
            {
                return;
            }

            ulong guildId = e.GuildId.Value;

            if (e.Emoji is CustomEmoji {
                Id : { RawValue : 774026811797405707 }
            })
Пример #3
0
        public static async Task HandleMessageDeletedAsync(VerificationBot bot, MessageDeletedEventArgs e)
        {
            if (e.GuildId == null || e.Message == null)
            {
                return;
            }

            LocalEmbedBuilder embed = null;

            foreach (ConfigChannel channel in bot.Config
                     .GetOrAddGuild(e.GuildId.Value).Channels.Values
                     .Where(c => c.ChangelogChannels.Contains(e.ChannelId)))
            {
                if (embed == null)
                {
                    embed = new LocalEmbedBuilder()
                            .WithTitle("Message deleted")
                            .AddField("Channel", $"<#{e.Message.ChannelId}>")
                            .AddField("Author", e.Message.Author.Mention);

                    if (e.Message.Content.Length > 0)
                    {
                        embed.AddField("Content", e.Message.Content);
                    }

                    if (e.Message.Attachments.Count > 0)
                    {
                        embed.AddField("Attachments", string.Join('\n', e.Message.Attachments.Select(a => a.Url)));
                    }
                }

                if (await bot.GetChannelAsync(channel.GuildId, channel.Id) is ITextChannel textChannel)
                {
                    await textChannel.SendMessageAsync
                    (
                        new LocalMessageBuilder()
                        .WithEmbed(embed)
                        .Build()
                    );
                }
            }
        }
        public static bool MatchModuleOrCommand(VerificationBot bot, string match, out string perm)
        {
            foreach ((string moduleName, IReadOnlyList <string> commandNames) in bot.AllCommandNames)
            {
                if (string.Equals(match, moduleName, StringComparison.InvariantCultureIgnoreCase))
                {
                    perm = moduleName;
                    return(true);
                }

                foreach (string commandName in commandNames)
                {
                    if (string.Equals(match, commandName, StringComparison.InvariantCultureIgnoreCase))
                    {
                        perm = commandName;
                        return(true);
                    }
                }
            }

            perm = null;
            return(false);
        }
Пример #5
0
        public static async Task HandleMessageEditedAsync(VerificationBot bot, MessageUpdatedEventArgs e)
        {
            // Sometimes fires for messages that haven't been edited
            // Unsure if this is a bug, or some other form of message update
            if (e.GuildId == null || e.OldMessage == null ||
                e?.OldMessage?.Content == e?.NewMessage?.Content)
            {
                return;
            }

            LocalEmbedBuilder embed = null;

            foreach (ConfigChannel channel in bot.Config
                     .GetOrAddGuild(e.GuildId.Value).Channels.Values
                     .Where(c => c.ChangelogChannels.Contains(e.ChannelId)))
            {
                if (embed == null)
                {
                    embed = new LocalEmbedBuilder()
                            .WithTitle("Message edited")
                            .AddField("Channel", $"<#{e.OldMessage.ChannelId}>")
                            .AddField("Author", e.OldMessage.Author.Mention)
                            .AddField("Old Content", e.OldMessage.Content.Length > 0 ? e.OldMessage.Content : "N/A")
                            .AddField("Link", $"https://discord.com/channels/{e.GuildId.Value.RawValue}/{e.ChannelId.RawValue}/{e.MessageId.RawValue}");
                }

                if (await bot.GetChannelAsync(channel.GuildId, channel.Id) is ITextChannel textChannel)
                {
                    await textChannel.SendMessageAsync
                    (
                        new LocalMessageBuilder()
                        .WithEmbed(embed)
                        .Build()
                    );
                }
            }
        }
 protected abstract Task Run(VerificationBot bot);
Пример #7
0
 protected override Task Run(VerificationBot bot)
 => _taskFactory(bot);