forked from RPCS3/discord-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGithubLinksHandler.cs
105 lines (95 loc) · 4.32 KB
/
GithubLinksHandler.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
using CompatBot.Commands;
using CompatBot.Utils;
using DSharpPlus;
using DSharpPlus.EventArgs;
namespace CompatBot.EventHandlers;
internal static partial class GithubLinksHandler
{
private const RegexOptions DefaultOptions = RegexOptions.IgnoreCase | RegexOptions.Singleline | RegexOptions.ExplicitCapture;
[GeneratedRegex(@"(?<issue_mention>\b(issue|pr|pull[ \-]request|bug)\s*#?\s*(?<number>\d+)|\B#(?<also_number>1?\d{4})|(https?://)github.com/RPCS3/rpcs3/(issues|pull)/(?<another_number>\d+)(#issuecomment-(?<comment_id>\d+))?)\b", DefaultOptions)]
internal static partial Regex IssueMention();
[GeneratedRegex(@"(?<commit_mention>(https?://)github.com/RPCS3/rpcs3/commit/(?<commit_hash>[0-9a-f]+))\b", DefaultOptions)]
internal static partial Regex CommitMention();
[GeneratedRegex(@"(?<img_markup>!\[(?<img_caption>[^\]]+)\]\((?<img_link>\w+://[^\)]+)\))", DefaultOptions)]
internal static partial Regex ImageMarkup();
[GeneratedRegex(@"github.com/RPCS3/rpcs3/issues/(?<number>\d+)", DefaultOptions)]
internal static partial Regex IssueLink();
public static async Task OnMessageCreated(DiscordClient c, MessageCreateEventArgs args)
{
if (DefaultHandlerFilter.IsFluff(args.Message))
return;
if ("media".Equals(args.Channel.Name, StringComparison.InvariantCultureIgnoreCase))
return;
var lastBotMessages = await args.Channel.GetMessagesBeforeAsync(args.Message.Id, 20, DateTime.UtcNow.AddSeconds(-30)).ConfigureAwait(false);
foreach (var msg in lastBotMessages)
if (BotReactionsHandler.NeedToSilence(msg).needToChill)
return;
lastBotMessages = await args.Channel.GetMessagesBeforeCachedAsync(args.Message.Id, Config.ProductCodeLookupHistoryThrottle).ConfigureAwait(false);
StringBuilder? previousRepliesBuilder = null;
foreach (var msg in lastBotMessages)
{
if (msg.Author.IsCurrent)
{
previousRepliesBuilder ??= new();
previousRepliesBuilder.AppendLine(msg.Content);
var embeds = msg.Embeds;
if (embeds?.Count > 0)
foreach (var embed in embeds)
previousRepliesBuilder.AppendLine(embed.Title).AppendLine(embed.Description);
}
}
var previousReplies = previousRepliesBuilder?.ToString() ?? "";
var idsFromPreviousReplies = GetIssueIdsFromLinks(previousReplies);
var issuesToLookup = GetIssueIds(args.Message.Content)
.Where(lnk => !idsFromPreviousReplies.Contains(lnk))
.Take(args.Channel.IsPrivate ? 50 : 5)
.ToList();
if (issuesToLookup.Count == 0)
return;
var suffix = issuesToLookup.Count == 1 ? "" : "s";
if (GithubClient.Client.RateLimitRemaining - issuesToLookup.Count >= 10)
{
foreach (var issueId in issuesToLookup)
await Pr.LinkIssue(c, args.Message, issueId).ConfigureAwait(false);
}
else
{
var result = new StringBuilder($"Link{suffix} to the mentioned issue{suffix}:");
foreach (var issueId in issuesToLookup)
result.AppendLine().Append("https://github.com/RPCS3/rpcs3/issues/" + issueId);
await args.Channel.SendAutosplitMessageAsync(result, blockStart: null, blockEnd: null).ConfigureAwait(false);
}
}
public static List<int> GetIssueIds(string input)
{
return IssueMention().Matches(input)
.SelectMany(match => new[]
{
match.Groups["number"].Value,
match.Groups["also_number"].Value,
match.Groups["another_number"].Value,
})
.Distinct()
.Select(n => int.TryParse(n, out var i) ? i : default)
.Where(n => n > 0)
.ToList();
}
public static HashSet<int> GetIssueIdsFromLinks(string input)
{
return
[
..IssueLink().Matches(input)
.Select(match =>
{
_ = int.TryParse(match.Groups["number"].Value, out var n);
return n;
})
];
}
}