-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
Program.cs
300 lines (249 loc) · 12.6 KB
/
Program.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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
using DSharpPlus.Extensions;
using DSharpPlus.Net.Gateway;
using DSharpPlus.SlashCommands;
using Serilog.Sinks.Grafana.Loki;
using System.Reflection;
namespace Cliptok
{
public class AvatarResponseBody
{
[JsonProperty("matched")]
public bool Matched { get; set; }
[JsonProperty("key")]
public string Key { get; set; }
}
class GatewayController : IGatewayController
{
public async Task HeartbeatedAsync(IGatewayClient client)
{
HeartbeatEvent.OnHeartbeat(client);
}
public async Task ZombiedAsync(IGatewayClient client)
{
Program.discord.Logger.LogWarning("Gateway entered zombied state. Attempted to reconnect.");
await client.ReconnectAsync();
}
public async Task ReconnectRequestedAsync(IGatewayClient _) { }
public async Task ReconnectFailedAsync(IGatewayClient _) { }
public async Task SessionInvalidatedAsync(IGatewayClient _) { }
public async Task ResumeAttemptedAsync(IGatewayClient _) { }
}
class Program : BaseCommandModule
{
public static DiscordClient discord;
static CommandsNextExtension commands;
public static Random rnd = new();
public static ConfigJson cfgjson;
public static ConnectionMultiplexer redis;
public static IDatabase db;
internal static EventId CliptokEventID { get; } = new EventId(1000, "Cliptok");
internal static EventId LogChannelErrorID { get; } = new EventId(1001, "LogChannelError");
public static string[] avatars;
public static string[] badUsernames;
public static List<ulong> autoBannedUsersCache = new();
public static DiscordGuild homeGuild;
public static Random rand = new();
public static HasteBinClient hasteUploader;
public static StringBuilder outputStringBuilder = new(16, 200000000);
public static StringWriter outputCapture;
static public readonly HttpClient httpClient = new();
public static List<ServerApiResponseJson> serverApiList = new();
public static DiscordChannel ForumChannelAutoWarnFallbackChannel;
public static void UpdateLists()
{
foreach (var list in cfgjson.WordListList)
{
var listOutput = File.ReadAllLines($"Lists/{list.Name}");
cfgjson.WordListList[cfgjson.WordListList.FindIndex(a => a.Name == list.Name)].Words = listOutput;
}
}
static async Task Main(string[] _)
{
Console.OutputEncoding = Encoding.UTF8;
outputCapture = new(outputStringBuilder);
httpClient.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
var logFormat = "[{Timestamp:yyyy-MM-dd HH:mm:ss zzz}] [{Level}] {Message}{NewLine}{Exception}";
var loggerConfig = new LoggerConfiguration()
.WriteTo.Logger(lc =>
lc.Filter.ByExcluding("EventId.Id = 1001")
.WriteTo.DiscordSink(restrictedToMinimumLevel: Serilog.Events.LogEventLevel.Information, outputTemplate: logFormat)
)
.WriteTo.Console(outputTemplate: logFormat, theme: AnsiConsoleTheme.Literate);
string token;
var json = "";
string configFile = "config.json";
#if DEBUG
configFile = "config.dev.json";
#endif
using (var fs = File.OpenRead(configFile))
using (var sr = new StreamReader(fs, new UTF8Encoding(false)))
json = await sr.ReadToEndAsync();
cfgjson = JsonConvert.DeserializeObject<ConfigJson>(json);
switch (cfgjson.LogLevel)
{
case Level.Information:
loggerConfig.MinimumLevel.Information();
break;
case Level.Warning:
loggerConfig.MinimumLevel.Warning();
break;
case Level.Error:
loggerConfig.MinimumLevel.Error();
break;
case Level.Debug:
loggerConfig.MinimumLevel.Debug();
break;
case Level.Verbose:
loggerConfig.MinimumLevel.Verbose();
break;
default:
loggerConfig.MinimumLevel.Information();
break;
}
if (cfgjson.LogLevel is not Level.Verbose)
loggerConfig.WriteTo.TextWriter(outputCapture, outputTemplate: logFormat);
if (cfgjson.LokiURL is not null && cfgjson.LokiServiceName is not null)
{
loggerConfig.WriteTo.GrafanaLoki(cfgjson.LokiURL, [new LokiLabel { Key = "app", Value = cfgjson.LokiServiceName }]);
}
Log.Logger = loggerConfig.CreateLogger();
hasteUploader = new HasteBinClient(cfgjson.HastebinEndpoint);
UpdateLists();
if (File.Exists("Lists/usernames.txt"))
badUsernames = File.ReadAllLines("Lists/usernames.txt");
else
badUsernames = Array.Empty<string>();
avatars = File.ReadAllLines("Lists/avatars.txt");
if (Environment.GetEnvironmentVariable("CLIPTOK_TOKEN") is not null)
token = Environment.GetEnvironmentVariable("CLIPTOK_TOKEN");
else
token = cfgjson.Core.Token;
if (Environment.GetEnvironmentVariable("REDIS_URL") is not null)
redis = ConnectionMultiplexer.Connect(Environment.GetEnvironmentVariable("REDIS_URL"));
else
{
string redisHost;
if (Environment.GetEnvironmentVariable("REDIS_DOCKER_OVERRIDE") is not null)
redisHost = "redis";
else
redisHost = cfgjson.Redis.Host;
redis = ConnectionMultiplexer.Connect($"{redisHost}:{cfgjson.Redis.Port}");
}
db = redis.GetDatabase();
// Migration away from a broken attempt at a key in the past.
db.KeyDelete("messages");
DiscordClientBuilder discordBuilder = DiscordClientBuilder.CreateDefault(token, DiscordIntents.All);
discordBuilder.ConfigureLogging(logging =>
{
logging.AddSerilog();
});
discordBuilder.ConfigureServices(services =>
{
services.Replace<IGatewayController, GatewayController>();
#pragma warning disable CS0618 // Type or member is obsolete
services.AddSlashCommandsExtension(slash =>
{
slash.SlashCommandErrored += InteractionEvents.SlashCommandErrorEvent;
slash.ContextMenuErrored += InteractionEvents.ContextCommandErrorEvent;
var slashCommandClasses = Assembly.GetExecutingAssembly().GetTypes().Where(t => t.IsClass && t.Namespace == "Cliptok.Commands.InteractionCommands" && !t.IsNested);
foreach (var type in slashCommandClasses)
slash.RegisterCommands(type, cfgjson.ServerID);
});
});
#pragma warning restore CS0618 // Type or member is obsolete
discordBuilder.ConfigureExtraFeatures(clientConfig =>
{
clientConfig.LogUnknownEvents = false;
clientConfig.LogUnknownAuditlogs = false;
});
discordBuilder.ConfigureEventHandlers
(
builder => builder.HandleComponentInteractionCreated(InteractionEvents.ComponentInteractionCreateEvent)
.HandleSessionCreated(ReadyEvent.OnReady)
.HandleMessageCreated(MessageEvent.MessageCreated)
.HandleMessageUpdated(MessageEvent.MessageUpdated)
.HandleMessageDeleted(MessageEvent.MessageDeleted)
.HandleGuildMemberAdded(MemberEvents.GuildMemberAdded)
.HandleGuildMemberRemoved(MemberEvents.GuildMemberRemoved)
.HandleMessageReactionAdded(ReactionEvent.OnReaction)
.HandleGuildMemberUpdated(MemberEvents.GuildMemberUpdated)
.HandleUserUpdated(MemberEvents.UserUpdated)
.HandleThreadCreated(ThreadEvents.Discord_ThreadCreated)
.HandleThreadDeleted(ThreadEvents.Discord_ThreadDeleted)
.HandleThreadListSynced(ThreadEvents.Discord_ThreadListSynced)
.HandleThreadMemberUpdated(ThreadEvents.Discord_ThreadMemberUpdated)
.HandleThreadMembersUpdated(ThreadEvents.Discord_ThreadMembersUpdated)
.HandleGuildBanRemoved(UnbanEvent.OnUnban)
.HandleVoiceStateUpdated(VoiceEvents.VoiceStateUpdate)
.HandleChannelUpdated(ChannelEvents.ChannelUpdated)
.HandleChannelDeleted(ChannelEvents.ChannelDeleted)
.HandleAutoModerationRuleExecuted(AutoModEvents.AutoModerationRuleExecuted)
);
discordBuilder.UseCommandsNext(commands =>
{
var commandClasses = Assembly.GetExecutingAssembly().GetTypes().Where(t => t.IsClass && t.Namespace == "Cliptok.Commands" && !t.IsNested);
foreach (var type in commandClasses)
commands.RegisterCommands(type);
commands.CommandErrored += ErrorEvents.CommandsNextService_CommandErrored;
}, new CommandsNextConfiguration
{
StringPrefixes = cfgjson.Core.Prefixes
});
// TODO(erisa): At some point we might be forced to ConnectAsync() the builder directly
// and then we will need to rework some other pieces that rely on Program.discord
discord = discordBuilder.Build();
await discord.ConnectAsync();
await ReadyEvent.OnStartup(discord);
if (cfgjson.ForumChannelAutoWarnFallbackChannel != 0)
ForumChannelAutoWarnFallbackChannel = await discord.GetChannelAsync(cfgjson.ForumChannelAutoWarnFallbackChannel);
// Only wait 3 seconds before the first set of tasks.
await Task.Delay(3000);
int loopCount = 0;
while (true)
{
try
{
List<Task<bool>> taskList =
[
Tasks.PunishmentTasks.CheckMutesAsync(),
Tasks.PunishmentTasks.CheckBansAsync(),
Tasks.PunishmentTasks.CheckAutomaticWarningsAsync(),
Tasks.ReminderTasks.CheckRemindersAsync(),
Tasks.RaidmodeTasks.CheckRaidmodeAsync(cfgjson.ServerID),
Tasks.LockdownTasks.CheckUnlocksAsync(),
Tasks.EventTasks.HandlePendingChannelUpdateEventsAsync(),
Tasks.EventTasks.HandlePendingChannelDeleteEventsAsync(),
];
// To prevent a future issue if checks take longer than 10 seconds,
// we only start the 10 second counter after all tasks have concluded.
await Task.WhenAll(taskList);
}
catch (Exception e)
{
discord.Logger.LogError(CliptokEventID, e, "An Error occurred during task runs}");
}
loopCount += 1;
// after 180 cycles, roughly 30 minutes has passed
if (loopCount == 180)
{
List<ServerApiResponseJson> fetchResult;
try
{
fetchResult = await APIs.ServerAPI.FetchMaliciousServersList();
if (fetchResult is not null)
{
serverApiList = fetchResult;
discord.Logger.LogDebug("Successfully updated malicious invite list with {count} servers.", fetchResult.Count);
}
}
catch (Exception e)
{
discord.Logger.LogError(CliptokEventID, e, "An Error occurred during server list update");
}
loopCount = 0;
}
await Task.Delay(10000);
}
}
}
}