mirror of
https://github.com/barelyprofessional/KfChatDotNet.git
synced 2026-04-30 03:22:04 -04:00
104 lines
4.0 KiB
C#
104 lines
4.0 KiB
C#
using System.Reflection;
|
|
using System.Text.RegularExpressions;
|
|
using Humanizer;
|
|
using KfChatDotNetBot.Extensions;
|
|
using KfChatDotNetBot.Models;
|
|
using KfChatDotNetBot.Models.DbModels;
|
|
using KfChatDotNetBot.Settings;
|
|
using KfChatDotNetWsClient.Models.Events;
|
|
|
|
namespace KfChatDotNetBot.Commands;
|
|
|
|
public class TempSuppressGambaMessages : ICommand
|
|
{
|
|
public List<Regex> Patterns => [
|
|
new Regex("^nogamba$")
|
|
];
|
|
|
|
public string? HelpText => null;
|
|
public UserRight RequiredRight => UserRight.Guest;
|
|
public TimeSpan Timeout => TimeSpan.FromSeconds(10);
|
|
public RateLimitOptionsModel? RateLimitOptions => null;
|
|
public bool WhisperCanInvoke => false;
|
|
public async Task RunCommand(ChatBot botInstance, BotCommandMessageModel message, UserDbModel user, GroupCollection arguments, CancellationToken ctx)
|
|
{
|
|
botInstance.BotServices.TemporarilySuppressGambaMessages = true;
|
|
await botInstance.SendChatMessageAsync("No more gamba notifs", true);
|
|
}
|
|
}
|
|
|
|
public class EnableGambaMessages : ICommand
|
|
{
|
|
public List<Regex> Patterns => [
|
|
new Regex("^yesgamba")
|
|
];
|
|
|
|
public string? HelpText => null;
|
|
public UserRight RequiredRight => UserRight.Guest;
|
|
public TimeSpan Timeout => TimeSpan.FromSeconds(10);
|
|
public RateLimitOptionsModel? RateLimitOptions => null;
|
|
public bool WhisperCanInvoke => false;
|
|
public async Task RunCommand(ChatBot botInstance, BotCommandMessageModel message, UserDbModel user, GroupCollection arguments, CancellationToken ctx)
|
|
{
|
|
botInstance.BotServices.TemporarilySuppressGambaMessages = false;
|
|
await botInstance.SendChatMessageAsync("Gamba notifs back on the menu", true);
|
|
}
|
|
}
|
|
|
|
public class GetVersionCommand : ICommand
|
|
{
|
|
public List<Regex> Patterns => [
|
|
new Regex("^version$")
|
|
];
|
|
|
|
public string? HelpText => null;
|
|
public UserRight RequiredRight => UserRight.Loser;
|
|
public TimeSpan Timeout => TimeSpan.FromSeconds(10);
|
|
public RateLimitOptionsModel? RateLimitOptions => null;
|
|
public bool WhisperCanInvoke => false;
|
|
public async Task RunCommand(ChatBot botInstance, BotCommandMessageModel message, UserDbModel user, GroupCollection arguments, CancellationToken ctx)
|
|
{
|
|
var version = Assembly.GetEntryAssembly()?
|
|
.GetCustomAttribute<AssemblyInformationalVersionAttribute>()?.InformationalVersion;
|
|
if (version == null)
|
|
{
|
|
await botInstance.SendChatMessageAsync($"Caught a null when trying to retrieve the bot's assembly version.",
|
|
true);
|
|
return;
|
|
}
|
|
await botInstance.SendChatMessageAsync($"Bot compiled against {version.Split('+')[1]}", true);
|
|
}
|
|
}
|
|
|
|
public class GetLastActivity : ICommand
|
|
{
|
|
public List<Regex> Patterns => [
|
|
new Regex("^lastactivity", RegexOptions.IgnoreCase),
|
|
new Regex("^lastactive", RegexOptions.IgnoreCase)
|
|
];
|
|
|
|
public string? HelpText => "When was Bossman last active?";
|
|
public UserRight RequiredRight => UserRight.Loser;
|
|
public TimeSpan Timeout => TimeSpan.FromSeconds(10);
|
|
public RateLimitOptionsModel? RateLimitOptions => new RateLimitOptionsModel
|
|
{
|
|
MaxInvocations = 3,
|
|
Window = TimeSpan.FromSeconds(10)
|
|
};
|
|
public bool WhisperCanInvoke => false;
|
|
public async Task RunCommand(ChatBot botInstance, BotCommandMessageModel message, UserDbModel user, GroupCollection arguments, CancellationToken ctx)
|
|
{
|
|
var lastActive = await SettingsProvider.GetValueAsync(BuiltIn.Keys.BossmanLastSighting);
|
|
if (lastActive.Value == null)
|
|
{
|
|
await botInstance.SendChatMessageAsync($"{user.FormatUsername()}, I don't know.", true);
|
|
return;
|
|
}
|
|
|
|
var activity = lastActive.JsonDeserialize<LastSightingModel>();
|
|
var elapsed = DateTimeOffset.UtcNow - activity!.When;
|
|
await botInstance.SendChatMessageAsync(
|
|
$"{user.FormatUsername()}, BossmanJack was last seen {elapsed.Humanize(maxUnit: TimeUnit.Day, minUnit: TimeUnit.Second, precision: 2)} ago {activity.Activity}",
|
|
true);
|
|
}
|
|
} |