-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOCRBot.cs
72 lines (62 loc) · 2.4 KB
/
OCRBot.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
using System;
using System.Threading.Tasks;
using Discord;
using Discord.Commands;
using Discord.WebSocket;
using Microsoft.Extensions.DependencyInjection;
using OCRBot.Handlers;
using OCRBot.Services;
namespace OCRBot
{
public class OCRBot
{
private readonly DiscordShardedClient client;
private readonly CommandService commandService;
private ConfigService config;
public OCRBot(DiscordShardedClient shardedClient = null, CommandService command = null)
{
client = shardedClient ?? new DiscordShardedClient(new DiscordSocketConfig
{
AlwaysDownloadUsers = true,
MessageCacheSize = 50,
LogLevel = LogSeverity.Verbose
});
commandService = command ?? new CommandService(new CommandServiceConfig
{
LogLevel = LogSeverity.Verbose,
CaseSensitiveCommands = false,
DefaultRunMode = RunMode.Async
});
}
public async Task SetupAsync()
{
config = new ConfigService("./config.json");
await client.LoginAsync(TokenType.Bot, config.Config.Token);
await client.StartAsync();
client.Log += LogAsync;
await client.SetActivityAsync(new Game("run ;help to get started", ActivityType.CustomStatus));
var services = SetupServices();
var commandHandler = services.GetRequiredService<CommandHandler>();
await commandHandler.SetupAsync();
await Task.Delay(-1);
}
private IServiceProvider SetupServices() => new ServiceCollection()
.AddSingleton(this)
.AddSingleton(client)
.AddSingleton(commandService)
.AddSingleton(config)
.AddSingleton<CommandHandler>()
.AddSingleton<HttpService>()
.AddSingleton<DatabaseService>()
.AddSingleton<PaginationService>()
.AddSingleton<OCRService>()
.AddSingleton<TranslateService>()
.AddSingleton<HelpService>()
.BuildServiceProvider();
private Task LogAsync(LogMessage message)
{
Console.WriteLine(message.Message);
return Task.CompletedTask;
}
}
}