-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathProgram.cs
87 lines (62 loc) · 2.32 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
using Discord;
using Discord.Commands;
using Discord.WebSocket;
using Microsoft.Extensions.DependencyInjection;
using System;
using System.Reflection;
using System.Threading.Tasks;
namespace TranslateBot
{
class Program
{
public static void Main(string[] args) => new Program().Start().GetAwaiter().GetResult();
private CommandService commands;
private DiscordSocketClient client;
private DependencyMap map;
public async Task Start()
{
map = new DependencyMap();
commands = new CommandService();
client = new DiscordSocketClient();
var services = new ServiceCollection()
.AddLogging()
.AddSingleton(commands)
.AddSingleton(client)
.BuildServiceProvider();
client.Log += Log;
string token = Environment.GetEnvironmentVariable("Token");
await InstallCommands();
await client.LoginAsync(TokenType.Bot, token);
await client.StartAsync();
client.Connected += SetGame;
await Task.Delay(-1);
}
private async Task SetGame()
{
await client.SetGameAsync("-help");
}
private async Task InstallCommands()
{
client.MessageReceived += HandleCommand;
await commands.AddModulesAsync(Assembly.GetEntryAssembly());
}
private async Task HandleCommand(SocketMessage messageParam)
{
var message = messageParam as SocketUserMessage;
if (message == null) return;
int argPos = 0;
if (!(message.HasCharPrefix('-', ref argPos) || message.HasMentionPrefix(client.CurrentUser, ref argPos))) return;
if (message.Author.Username == client.CurrentUser.Username) return;
if (message.Author.IsBot) return;
var context = new CommandContext(client, message);
var result = await commands.ExecuteAsync(context, argPos, map);
if (!result.IsSuccess)
Console.WriteLine(result.ErrorReason);
}
private Task Log(LogMessage msg)
{
Console.WriteLine(msg.ToString());
return Task.CompletedTask;
}
}
}