mirror of
https://github.com/RPCS3/discord-bot.git
synced 2025-04-06 22:31:33 +00:00
new command to show last known update information
This commit is contained in:
parent
fee6ad6ed5
commit
f39d5e7431
CompatBot
@ -25,6 +25,7 @@ namespace CompatBot.Commands
|
|||||||
private static SemaphoreSlim updateCheck = new SemaphoreSlim(1, 1);
|
private static SemaphoreSlim updateCheck = new SemaphoreSlim(1, 1);
|
||||||
private static string lastUpdateInfo = null;
|
private static string lastUpdateInfo = null;
|
||||||
private const string Rpcs3UpdateStateKey = "Rpcs3UpdateState";
|
private const string Rpcs3UpdateStateKey = "Rpcs3UpdateState";
|
||||||
|
private static UpdateInfo CachedUpdateInfo = null;
|
||||||
|
|
||||||
static CompatList()
|
static CompatList()
|
||||||
{
|
{
|
||||||
@ -112,14 +113,31 @@ Example usage:
|
|||||||
await dm.SendMessageAsync(embed: embed).ConfigureAwait(false);
|
await dm.SendMessageAsync(embed: embed).ConfigureAwait(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
[Command("latest"), Aliases("download"), TriggersTyping]
|
[Group("latest"), Aliases("download"), TriggersTyping]
|
||||||
[Description("Provides links to the latest RPCS3 build")]
|
[Description("Provides links to the latest RPCS3 build")]
|
||||||
[Cooldown(1, 30, CooldownBucketType.Channel)]
|
[Cooldown(1, 30, CooldownBucketType.Channel)]
|
||||||
|
public sealed class UpdatesCheck: BaseCommandModuleCustom
|
||||||
|
{
|
||||||
|
[GroupCommand]
|
||||||
public Task Latest(CommandContext ctx)
|
public Task Latest(CommandContext ctx)
|
||||||
{
|
{
|
||||||
return CheckForRpcs3Updates(ctx.Client, ctx.Channel);
|
return CheckForRpcs3Updates(ctx.Client, ctx.Channel);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[Command("cached")]
|
||||||
|
[Description("Gets the latest known update links, without checking the API")]
|
||||||
|
public async Task Cached(CommandContext ctx)
|
||||||
|
{
|
||||||
|
var tmp = CachedUpdateInfo;
|
||||||
|
if (tmp is UpdateInfo info)
|
||||||
|
{
|
||||||
|
var embed = await info.AsEmbedAsync().ConfigureAwait(false);
|
||||||
|
await ctx.RespondAsync(embed: embed.Build()).ConfigureAwait(false);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
await ctx.ReactWithAsync(Config.Reactions.Failure, "No update information was cached yet").ConfigureAwait(false);
|
||||||
|
}
|
||||||
|
|
||||||
public static async Task<bool> CheckForRpcs3Updates(DiscordClient discordClient, DiscordChannel channel)
|
public static async Task<bool> CheckForRpcs3Updates(DiscordClient discordClient, DiscordChannel channel)
|
||||||
{
|
{
|
||||||
var info = await client.GetUpdateAsync(Config.Cts.Token).ConfigureAwait(false);
|
var info = await client.GetUpdateAsync(Config.Cts.Token).ConfigureAwait(false);
|
||||||
@ -133,6 +151,7 @@ Example usage:
|
|||||||
var compatChannel = await discordClient.GetChannelAsync(Config.BotChannelId).ConfigureAwait(false);
|
var compatChannel = await discordClient.GetChannelAsync(Config.BotChannelId).ConfigureAwait(false);
|
||||||
await compatChannel.SendMessageAsync(embed: embed.Build()).ConfigureAwait(false);
|
await compatChannel.SendMessageAsync(embed: embed.Build()).ConfigureAwait(false);
|
||||||
lastUpdateInfo = updateLinks;
|
lastUpdateInfo = updateLinks;
|
||||||
|
CachedUpdateInfo = info;
|
||||||
using (var db = new BotDb())
|
using (var db = new BotDb())
|
||||||
{
|
{
|
||||||
var currentState = await db.BotState.FirstOrDefaultAsync(k => k.Key == Rpcs3UpdateStateKey).ConfigureAwait(false);
|
var currentState = await db.BotState.FirstOrDefaultAsync(k => k.Key == Rpcs3UpdateStateKey).ConfigureAwait(false);
|
||||||
@ -154,6 +173,7 @@ Example usage:
|
|||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
private static string DicToDesc(Dictionary<char, string[]> dictionary)
|
private static string DicToDesc(Dictionary<char, string[]> dictionary)
|
||||||
{
|
{
|
||||||
|
@ -22,10 +22,10 @@ namespace CompatBot.EventHandlers
|
|||||||
return;
|
return;
|
||||||
|
|
||||||
if (BuildResult.IsMatch(args.Message.Content))
|
if (BuildResult.IsMatch(args.Message.Content))
|
||||||
if (!await CompatList.CheckForRpcs3Updates(args.Client, null).ConfigureAwait(false))
|
if (!await CompatList.UpdatesCheck.CheckForRpcs3Updates(args.Client, null).ConfigureAwait(false))
|
||||||
{
|
{
|
||||||
await Task.Delay(TimeSpan.FromSeconds(5)).ConfigureAwait(false);
|
await Task.Delay(TimeSpan.FromSeconds(5)).ConfigureAwait(false);
|
||||||
await CompatList.CheckForRpcs3Updates(args.Client, null).ConfigureAwait(false);
|
await CompatList.UpdatesCheck.CheckForRpcs3Updates(args.Client, null).ConfigureAwait(false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -45,7 +45,7 @@ namespace CompatBot
|
|||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
CompatList.CheckForRpcs3Updates((DiscordClient)client, null).ConfigureAwait(false).GetAwaiter().GetResult();
|
CompatList.UpdatesCheck.CheckForRpcs3Updates((DiscordClient)client, null).ConfigureAwait(false).GetAwaiter().GetResult();
|
||||||
}
|
}
|
||||||
catch { }
|
catch { }
|
||||||
Task.Delay(TimeSpan.FromHours(1), Config.Cts.Token).ConfigureAwait(false).GetAwaiter().GetResult();
|
Task.Delay(TimeSpan.FromHours(1), Config.Cts.Token).ConfigureAwait(false).GetAwaiter().GetResult();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user