forked from RPCS3/discord-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBotStatusMonitor.cs
29 lines (27 loc) · 1006 Bytes
/
BotStatusMonitor.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
using System;
using System.Threading.Tasks;
using CompatBot.Database;
using DSharpPlus;
using DSharpPlus.Entities;
using Microsoft.EntityFrameworkCore;
namespace CompatBot.EventHandlers;
internal static class BotStatusMonitor
{
public static async Task RefreshAsync(DiscordClient client)
{
try
{
await using var db = new BotDb();
var status = await db.BotState.FirstOrDefaultAsync(s => s.Key == "bot-status-activity").ConfigureAwait(false);
var txt = await db.BotState.FirstOrDefaultAsync(s => s.Key == "bot-status-text").ConfigureAwait(false);
var msg = txt?.Value;
if (Enum.TryParse(status?.Value ?? "Watching", true, out ActivityType activity)
&& !string.IsNullOrEmpty(msg))
await client.UpdateStatusAsync(new DiscordActivity(msg, activity), UserStatus.Online).ConfigureAwait(false);
}
catch (Exception e)
{
Config.Log.Error(e);
}
}
}