forked from RPCS3/discord-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProductCodeLookup.cs
179 lines (160 loc) · 8.23 KB
/
ProductCodeLookup.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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
using CompatApiClient;
using CompatApiClient.POCOs;
using CompatBot.Commands.Attributes;
using CompatBot.Database.Providers;
using CompatBot.Utils;
using CompatBot.Utils.ResultFormatters;
using DSharpPlus;
using DSharpPlus.Entities;
using DSharpPlus.EventArgs;
namespace CompatBot.EventHandlers;
internal static partial class ProductCodeLookup
{
// see http://www.psdevwiki.com/ps3/Productcode
[GeneratedRegex(@"(?<letters>(?:[BPSUVX][CL]|P[ETU]|NP)[AEHJKPUIX][ABDJKLMOPQRSTX]|MRTC)[ \-]?(?<numbers>\d{5})", RegexOptions.IgnoreCase | RegexOptions.Compiled, "en-GB")]
public static partial Regex Pattern();
private static readonly Client CompatClient = new();
public static async Task OnMessageCreated(DiscordClient c, MessageCreateEventArgs args)
{
if (DefaultHandlerFilter.IsFluff(args.Message))
return;
var lastBotMessages = await args.Channel.GetMessagesBeforeAsync(args.Message.Id, 20, DateTime.UtcNow.AddSeconds(-30)).ConfigureAwait(false);
if (lastBotMessages.Any(msg => 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.Where(m => m.Author.IsCurrent))
{
previousRepliesBuilder ??= new StringBuilder();
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 codesToLookup = GetProductIds(args.Message.Content)
.Where(pc => !previousReplies.Contains(pc, StringComparison.InvariantCultureIgnoreCase))
.Take(args.Channel.IsPrivate ? 50 : 5)
.ToList();
if (codesToLookup.Count == 0)
return;
await LookupAndPostProductCodeEmbedAsync(c, args.Message, args.Channel, codesToLookup).ConfigureAwait(false);
}
public static async Task LookupAndPostProductCodeEmbedAsync(DiscordClient client, DiscordMessage message, DiscordChannel channel, List<string> codesToLookup)
{
await message.ReactWithAsync(Config.Reactions.PleaseWait).ConfigureAwait(false);
try
{
var results = new List<(string code, Task<DiscordEmbedBuilder> task)>(codesToLookup.Count);
foreach (var code in codesToLookup)
results.Add((code, client.LookupGameInfoAsync(code)));
var formattedResults = new List<(string code, DiscordEmbedBuilder builder)>(results.Count);
foreach (var (code, task) in results)
try
{
formattedResults.Add((code, await task.ConfigureAwait(false)));
}
catch (Exception e)
{
Config.Log.Warn(e, $"Couldn't get product code info for {code}");
}
// get only results with unique titles
formattedResults = formattedResults.DistinctBy(e => e.builder.Title).ToList();
var lookupEmoji = new DiscordComponentEmoji(DiscordEmoji.FromUnicode("🔍"));
foreach (var result in formattedResults)
try
{
await FixAfrikaAsync(client, message, result.builder).ConfigureAwait(false);
var messageBuilder = new DiscordMessageBuilder().WithEmbed(result.builder);
if (LimitedToSpamChannel.IsSpamChannel(channel))
messageBuilder.AddComponents(new DiscordButtonComponent(ButtonStyle.Secondary, $"replace with game updates:{message.Author.Id}:{message.Id}:{result.code}", "Check for updates", emoji: lookupEmoji));
await DiscordMessageExtensions.UpdateOrCreateMessageAsync(null, channel, messageBuilder).ConfigureAwait(false);
}
catch (Exception e)
{
Config.Log.Warn(e, $"Couldn't post result for {result.code} ({result.builder.Title})");
}
}
finally
{
await message.RemoveReactionAsync(Config.Reactions.PleaseWait).ConfigureAwait(false);
}
}
public static List<string> GetProductIds(string? input)
{
if (string.IsNullOrEmpty(input))
return new(0);
return Pattern().Matches(input)
.Select(match => (match.Groups["letters"].Value + match.Groups["numbers"]).ToUpper())
.Distinct()
.ToList();
}
public static async Task<DiscordEmbedBuilder> LookupGameInfoAsync(this DiscordClient client, string? code, string? gameTitle = null, bool forLog = false, string? category = null)
=> (await LookupGameInfoWithEmbedAsync(client, code, gameTitle, forLog, category).ConfigureAwait(false)).embedBuilder;
public static async Task<(DiscordEmbedBuilder embedBuilder, CompatResult? compatResult)> LookupGameInfoWithEmbedAsync(this DiscordClient client, string? code, string? gameTitle = null, bool forLog = false, string? category = null)
{
if (string.IsNullOrEmpty(code))
return (TitleInfo.Unknown.AsEmbed(code, gameTitle, forLog), null);
string? thumbnailUrl = null;
CompatResult? result = null;
try
{
result = await CompatClient.GetCompatResultAsync(RequestBuilder.Start().SetSearch(code), Config.Cts.Token).ConfigureAwait(false);
if (result?.ReturnCode == -2)
return (TitleInfo.Maintenance.AsEmbed(code), result);
if (result?.ReturnCode == -1)
return (TitleInfo.CommunicationError.AsEmbed(code), result);
thumbnailUrl = await client.GetThumbnailUrlAsync(code).ConfigureAwait(false);
if (result?.Results != null && result.Results.TryGetValue(code, out var info))
return (info.AsEmbed(code, gameTitle, forLog, thumbnailUrl), result);
gameTitle ??= await ThumbnailProvider.GetTitleNameAsync(code, Config.Cts.Token).ConfigureAwait(false);
if (category == "1P")
{
var ti = new TitleInfo
{
Commit = "8b449ce76c91d5ff7a2829b233befe7d6df4b24f",
Date = "2018-06-23",
Pr = 4802,
Status = "Playable",
};
return (ti.AsEmbed(code, gameTitle, forLog, thumbnailUrl), result);
}
if (category is "2P" or "2G" or "2D" or "PP" or "PE" or "MN")
{
var ti = new TitleInfo
{
Status = "Nothing"
};
return (ti.AsEmbed(code, gameTitle, forLog, thumbnailUrl), result);
}
return (TitleInfo.Unknown.AsEmbed(code, gameTitle, forLog, thumbnailUrl), result);
}
catch (Exception e)
{
Config.Log.Warn(e, $"Couldn't get compat result for {code}");
return (TitleInfo.CommunicationError.AsEmbed(code, gameTitle, forLog, thumbnailUrl), result);
}
}
public static async Task FixAfrikaAsync(DiscordClient client, DiscordMessage message, DiscordEmbedBuilder titleInfoEmbed)
{
if (message.IsOnionLike()
&& (
titleInfoEmbed.Title.Contains("africa", StringComparison.InvariantCultureIgnoreCase)
|| titleInfoEmbed.Title.Contains("afrika", StringComparison.InvariantCultureIgnoreCase)
))
{
var sqvat = client.GetEmoji(":sqvat:", Config.Reactions.No)!;
titleInfoEmbed.Title = "How about no (๑•ิཬ•ั๑)";
if (!string.IsNullOrEmpty(titleInfoEmbed.Thumbnail?.Url))
titleInfoEmbed.WithThumbnail("https://cdn.discordapp.com/attachments/417347469521715210/516340151589535745/onionoff.png");
await message.ReactWithAsync(sqvat).ConfigureAwait(false);
}
}
}