about summary refs log tree commit diff
path: root/Utilities/LibMatrix.DevTestBot/Bot/Commands/HelpCommand.cs
diff options
context:
space:
mode:
authorRory& <root@rory.gay>2025-04-23 22:15:00 +0200
committerRory& <root@rory.gay>2025-04-23 22:15:14 +0200
commit17288cf70c97ea48c310ab876ee44554c09e8fe0 (patch)
treea8aecca8602ee52b6487651473a4c2fa433622b2 /Utilities/LibMatrix.DevTestBot/Bot/Commands/HelpCommand.cs
parentAdd tombstone event content, URL-escape room id in synapse admin (diff)
downloadLibMatrix-unpacked-17288cf70c97ea48c310ab876ee44554c09e8fe0.tar.xz
Update devtestbot to use bot utils
Diffstat (limited to 'Utilities/LibMatrix.DevTestBot/Bot/Commands/HelpCommand.cs')
-rw-r--r--Utilities/LibMatrix.DevTestBot/Bot/Commands/HelpCommand.cs22
1 files changed, 22 insertions, 0 deletions
diff --git a/Utilities/LibMatrix.DevTestBot/Bot/Commands/HelpCommand.cs b/Utilities/LibMatrix.DevTestBot/Bot/Commands/HelpCommand.cs

index 7ecbeb3..33bbc5a 100644 --- a/Utilities/LibMatrix.DevTestBot/Bot/Commands/HelpCommand.cs +++ b/Utilities/LibMatrix.DevTestBot/Bot/Commands/HelpCommand.cs
@@ -0,0 +1,22 @@ +using System.Text; +using LibMatrix.EventTypes.Spec; +using LibMatrix.Utilities.Bot.Interfaces; +using Microsoft.Extensions.DependencyInjection; + +namespace LibMatrix.ExampleBot.Bot.Commands; + +public class HelpCommand(IServiceProvider services) : ICommand { + public string Name { get; } = "help"; + public string[]? Aliases => []; + public bool Unlisted => false; + public string Description { get; } = "Displays this help message"; + + public async Task Invoke(CommandContext ctx) { + var sb = new StringBuilder(); + sb.AppendLine("Available commands:"); + var commands = services.GetServices<ICommand>().ToList(); + foreach (var command in commands) sb.AppendLine($"- {command.Name}: {command.Description}"); + + await ctx.Room.SendMessageEventAsync(new RoomMessageEventContent(body: sb.ToString())); + } +} \ No newline at end of file