about summary refs log tree commit diff
path: root/MatrixRoomUtils.Bot
diff options
context:
space:
mode:
Diffstat (limited to 'MatrixRoomUtils.Bot')
-rw-r--r--MatrixRoomUtils.Bot/Bot/Commands/CmdCommand.cs46
-rw-r--r--MatrixRoomUtils.Bot/Bot/Commands/HelpCommand.cs28
-rw-r--r--MatrixRoomUtils.Bot/Bot/Commands/PingCommand.cs17
-rw-r--r--MatrixRoomUtils.Bot/Bot/FileStorageProvider.cs35
-rw-r--r--MatrixRoomUtils.Bot/Bot/Interfaces/CommandContext.cs12
-rw-r--r--MatrixRoomUtils.Bot/Bot/Interfaces/ICommand.cs12
-rw-r--r--MatrixRoomUtils.Bot/Bot/MRUBot.cs115
-rw-r--r--MatrixRoomUtils.Bot/Bot/MRUBotConfiguration.cs12
-rw-r--r--MatrixRoomUtils.Bot/MatrixRoomUtils.Bot.csproj35
-rw-r--r--MatrixRoomUtils.Bot/Program.cs29
-rw-r--r--MatrixRoomUtils.Bot/Properties/launchSettings.json26
-rw-r--r--MatrixRoomUtils.Bot/appsettings.Development.json9
-rw-r--r--MatrixRoomUtils.Bot/appsettings.json13
13 files changed, 0 insertions, 389 deletions
diff --git a/MatrixRoomUtils.Bot/Bot/Commands/CmdCommand.cs b/MatrixRoomUtils.Bot/Bot/Commands/CmdCommand.cs
deleted file mode 100644
index 79757ae..0000000
--- a/MatrixRoomUtils.Bot/Bot/Commands/CmdCommand.cs
+++ /dev/null
@@ -1,46 +0,0 @@
-using MatrixRoomUtils.Bot.Bot.Interfaces;
-
-namespace MatrixRoomUtils.Bot.Bot.Commands;
-
-public class CmdCommand : ICommand {
-    public string Name { get; } = "cmd";
-    public string Description { get; } = "Runs a command on the host system";
-
-    public async Task<bool> CanInvoke(CommandContext ctx) {
-        return ctx.MessageEvent.Sender.EndsWith(":rory.gay");
-    }
-
-    public async Task Invoke(CommandContext ctx) {
-        var cmd = "\"";
-        foreach (var arg in ctx.Args) cmd += arg + " ";
-
-        cmd = cmd.Trim();
-        cmd += "\"";
-
-        await ctx.Room.SendMessageEventAsync("m.room.message", new() {
-            Body = $"Command being executed: `{cmd}`"
-        });
-
-        var output = ArcaneLibs.Util.GetCommandOutputSync(
-                Environment.OSVersion.Platform == PlatformID.Unix ? "/bin/sh" : "cmd.exe",
-                (Environment.OSVersion.Platform == PlatformID.Unix ? "-c " : "/c ") + cmd)
-            .Replace("`", "\\`")
-            .Split("\n").ToList();
-        foreach (var _out in output) Console.WriteLine($"{_out.Length:0000} {_out}");
-
-        var msg = "";
-        while (output.Count > 0) {
-            Console.WriteLine("Adding: " + output[0]);
-            msg += output[0] + "\n";
-            output.RemoveAt(0);
-            if ((output.Count > 0 && (msg + output[0]).Length > 64000) || output.Count == 0) {
-                await ctx.Room.SendMessageEventAsync("m.room.message", new() {
-                    FormattedBody = $"```ansi\n{msg}\n```",
-                    // Body = Markdig.Markdown.ToHtml(msg),
-                    Format = "org.matrix.custom.html"
-                });
-                msg = "";
-            }
-        }
-    }
-}
\ No newline at end of file
diff --git a/MatrixRoomUtils.Bot/Bot/Commands/HelpCommand.cs b/MatrixRoomUtils.Bot/Bot/Commands/HelpCommand.cs
deleted file mode 100644
index 6db10ae..0000000
--- a/MatrixRoomUtils.Bot/Bot/Commands/HelpCommand.cs
+++ /dev/null
@@ -1,28 +0,0 @@
-using System.Text;
-using MatrixRoomUtils.Bot.Bot.Interfaces;
-using Microsoft.Extensions.DependencyInjection;
-
-namespace MatrixRoomUtils.Bot.Bot.Commands; 
-
-public class HelpCommand : ICommand {
-    private readonly IServiceProvider _services;
-    public HelpCommand(IServiceProvider services) {
-        _services = services;
-    }
-
-    public string Name { get; } = "help";
-    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("m.room.message", new() {
-            Body = sb.ToString(),
-        });
-    }
-}
\ No newline at end of file
diff --git a/MatrixRoomUtils.Bot/Bot/Commands/PingCommand.cs b/MatrixRoomUtils.Bot/Bot/Commands/PingCommand.cs
deleted file mode 100644
index 061ca53..0000000
--- a/MatrixRoomUtils.Bot/Bot/Commands/PingCommand.cs
+++ /dev/null
@@ -1,17 +0,0 @@
-using MatrixRoomUtils.Bot.Bot.Interfaces;
-
-namespace MatrixRoomUtils.Bot.Bot.Commands; 
-
-public class PingCommand : ICommand {
-    public PingCommand() {
-    }
-
-    public string Name { get; } = "ping";
-    public string Description { get; } = "Pong!";
-
-    public async Task Invoke(CommandContext ctx) {
-        await ctx.Room.SendMessageEventAsync("m.room.message", new() {
-            Body = "pong!"
-        });
-    }
-}
\ No newline at end of file
diff --git a/MatrixRoomUtils.Bot/Bot/FileStorageProvider.cs b/MatrixRoomUtils.Bot/Bot/FileStorageProvider.cs
deleted file mode 100644
index c38591d..0000000
--- a/MatrixRoomUtils.Bot/Bot/FileStorageProvider.cs
+++ /dev/null
@@ -1,35 +0,0 @@
-using System.Text.Json;
-using MatrixRoomUtils.Core.Extensions;
-using MatrixRoomUtils.Core.Interfaces.Services;
-using Microsoft.Extensions.Logging;
-
-namespace MatrixRoomUtils.Bot.Bot; 
-
-public class FileStorageProvider : IStorageProvider {
-    private readonly ILogger<FileStorageProvider> _logger;
-
-    public string TargetPath { get; }
-
-    /// <summary>
-    /// Creates a new instance of <see cref="FileStorageProvider" />.
-    /// </summary>
-    /// <param name="targetPath"></param>
-    public FileStorageProvider(string targetPath) {
-        new Logger<FileStorageProvider>(new LoggerFactory()).LogInformation("test");
-        Console.WriteLine($"Initialised FileStorageProvider with path {targetPath}");
-        TargetPath = targetPath;
-        if(!Directory.Exists(targetPath)) {
-            Directory.CreateDirectory(targetPath);
-        }
-    }
-
-    public async Task SaveObjectAsync<T>(string key, T value) => await File.WriteAllTextAsync(Path.Join(TargetPath, key), ObjectExtensions.ToJson(value));
-
-    public async Task<T?> LoadObjectAsync<T>(string key) => JsonSerializer.Deserialize<T>(await File.ReadAllTextAsync(Path.Join(TargetPath, key)));
-
-    public async Task<bool> ObjectExistsAsync(string key) => File.Exists(Path.Join(TargetPath, key));
-
-    public async Task<List<string>> GetAllKeysAsync() => Directory.GetFiles(TargetPath).Select(Path.GetFileName).ToList();
-
-    public async Task DeleteObjectAsync(string key) => File.Delete(Path.Join(TargetPath, key));
-}
\ No newline at end of file
diff --git a/MatrixRoomUtils.Bot/Bot/Interfaces/CommandContext.cs b/MatrixRoomUtils.Bot/Bot/Interfaces/CommandContext.cs
deleted file mode 100644
index 94007a5..0000000
--- a/MatrixRoomUtils.Bot/Bot/Interfaces/CommandContext.cs
+++ /dev/null
@@ -1,12 +0,0 @@
-using MatrixRoomUtils.Core.Responses;
-using MatrixRoomUtils.Core.RoomTypes;
-using MatrixRoomUtils.Core.StateEventTypes.Spec;
-
-namespace MatrixRoomUtils.Bot.Bot.Interfaces;
-
-public class CommandContext {
-    public GenericRoom Room { get; set; }
-    public StateEventResponse MessageEvent { get; set; }
-    public string CommandName => (MessageEvent.TypedContent as RoomMessageEventData).Body.Split(' ')[0][1..];
-    public string[] Args => (MessageEvent.TypedContent as RoomMessageEventData).Body.Split(' ')[1..];
-}
\ No newline at end of file
diff --git a/MatrixRoomUtils.Bot/Bot/Interfaces/ICommand.cs b/MatrixRoomUtils.Bot/Bot/Interfaces/ICommand.cs
deleted file mode 100644
index 20805b1..0000000
--- a/MatrixRoomUtils.Bot/Bot/Interfaces/ICommand.cs
+++ /dev/null
@@ -1,12 +0,0 @@
-namespace MatrixRoomUtils.Bot.Bot.Interfaces; 
-
-public interface ICommand {
-    public string Name { get; }
-    public string Description { get; }
-
-    public Task<bool> CanInvoke(CommandContext ctx) {
-        return Task.FromResult(true);
-    }
-    
-    public Task Invoke(CommandContext ctx);
-}
\ No newline at end of file
diff --git a/MatrixRoomUtils.Bot/Bot/MRUBot.cs b/MatrixRoomUtils.Bot/Bot/MRUBot.cs
deleted file mode 100644
index bd24ec7..0000000
--- a/MatrixRoomUtils.Bot/Bot/MRUBot.cs
+++ /dev/null
@@ -1,115 +0,0 @@
-using System.Diagnostics.CodeAnalysis;
-using MatrixRoomUtils.Bot.Bot.Interfaces;
-using MatrixRoomUtils.Core;
-using MatrixRoomUtils.Core.Extensions;
-using MatrixRoomUtils.Core.Services;
-using MatrixRoomUtils.Core.StateEventTypes.Spec;
-using Microsoft.Extensions.DependencyInjection;
-using Microsoft.Extensions.Hosting;
-using Microsoft.Extensions.Logging;
-
-namespace MatrixRoomUtils.Bot.Bot;
-
-public class MRUBot : IHostedService {
-    private readonly HomeserverProviderService _homeserverProviderService;
-    private readonly ILogger<MRUBot> _logger;
-    private readonly MRUBotConfiguration _configuration;
-    private readonly IEnumerable<ICommand> _commands;
-
-    public MRUBot(HomeserverProviderService homeserverProviderService, ILogger<MRUBot> logger,
-        MRUBotConfiguration configuration, IServiceProvider services) {
-        logger.LogInformation("MRUBot hosted service instantiated!");
-        _homeserverProviderService = homeserverProviderService;
-        _logger = logger;
-        _configuration = configuration;
-        _logger.LogInformation("Getting commands...");
-        _commands = services.GetServices<ICommand>();
-        _logger.LogInformation($"Got {_commands.Count()} commands!");
-    }
-
-    /// <summary>Triggered when the application host is ready to start the service.</summary>
-    /// <param name="cancellationToken">Indicates that the start process has been aborted.</param>
-    [SuppressMessage("ReSharper", "FunctionNeverReturns")]
-    public async Task StartAsync(CancellationToken cancellationToken) {
-        Directory.GetFiles("bot_data/cache").ToList().ForEach(File.Delete);
-        AuthenticatedHomeServer hs;
-        try {
-            hs = await _homeserverProviderService.GetAuthenticatedWithToken(_configuration.Homeserver,
-                _configuration.AccessToken);
-        }
-        catch (Exception e) {
-            _logger.LogError(e.Message);
-            throw;
-        }
-
-        await (await hs.GetRoom("!DoHEdFablOLjddKWIp:rory.gay")).JoinAsync();
-
-        // foreach (var room in await hs.GetJoinedRooms()) {
-        //     if(room.RoomId is "!OGEhHVWSdvArJzumhm:matrix.org") continue;
-        //     foreach (var stateEvent in await room.GetStateAsync<List<StateEvent>>("")) {
-        //         var _ = stateEvent.GetType;
-        //     }
-        //     _logger.LogInformation($"Got room state for {room.RoomId}!");
-        // }
-
-        hs.SyncHelper.InviteReceivedHandlers.Add(async Task (args) => {
-            var inviteEvent =
-                args.Value.InviteState.Events.FirstOrDefault(x =>
-                    x.Type == "m.room.member" && x.StateKey == hs.WhoAmI.UserId);
-            _logger.LogInformation(
-                $"Got invite to {args.Key} by {inviteEvent.Sender} with reason: {(inviteEvent.TypedContent as RoomMemberEventData).Reason}");
-            if (inviteEvent.Sender.EndsWith(":rory.gay") || inviteEvent.Sender == "@mxidupwitch:the-apothecary.club" ) {
-                try {
-                    var senderProfile = await hs.GetProfile(inviteEvent.Sender);
-                    await (await hs.GetRoom(args.Key)).JoinAsync(reason: $"I was invited by {senderProfile.DisplayName ?? inviteEvent.Sender}!");
-                }
-                catch (Exception e) {
-                    _logger.LogError(e.ToString());
-                    await (await hs.GetRoom(args.Key)).LeaveAsync(reason: "I was unable to join the room: " + e);
-                }
-            }
-        });
-        hs.SyncHelper.TimelineEventHandlers.Add(async @event => {
-            _logger.LogInformation(
-                $"Got timeline event in {@event.RoomId}: {@event.ToJson(indent: false, ignoreNull: true)}");
-
-            var room = await hs.GetRoom(@event.RoomId);
-            // _logger.LogInformation(eventResponse.ToJson(indent: false));
-            if (@event is { Type: "m.room.message", TypedContent: RoomMessageEventData message }) {
-                if (message is { MessageType: "m.text" } && message.Body.StartsWith(_configuration.Prefix)) {
-
-                    var command = _commands.FirstOrDefault(x => x.Name == message.Body.Split(' ')[0][_configuration.Prefix.Length..]);
-                    if (command == null) {
-                        await room.SendMessageEventAsync("m.room.message",
-                            new RoomMessageEventData() {
-                                MessageType = "m.text",
-                                Body = "Command not found!"
-                            });
-                        return;
-                    }
-                    var ctx = new CommandContext() {
-                        Room = room,
-                        MessageEvent = @event
-                    };
-                    if (await command.CanInvoke(ctx)) {
-                        await command.Invoke(ctx);
-                    }
-                    else {
-                        await room.SendMessageEventAsync("m.room.message",
-                            new RoomMessageEventData() {
-                                MessageType = "m.text",
-                                Body = "You do not have permission to run this command!"
-                            });
-                    }
-                }
-            }
-        });
-        await hs.SyncHelper.RunSyncLoop(cancellationToken: cancellationToken);
-    }
-
-    /// <summary>Triggered when the application host is performing a graceful shutdown.</summary>
-    /// <param name="cancellationToken">Indicates that the shutdown process should no longer be graceful.</param>
-    public async Task StopAsync(CancellationToken cancellationToken) {
-        _logger.LogInformation("Shutting down bot!");
-    }
-}
diff --git a/MatrixRoomUtils.Bot/Bot/MRUBotConfiguration.cs b/MatrixRoomUtils.Bot/Bot/MRUBotConfiguration.cs
deleted file mode 100644
index 418eebb..0000000
--- a/MatrixRoomUtils.Bot/Bot/MRUBotConfiguration.cs
+++ /dev/null
@@ -1,12 +0,0 @@
-using Microsoft.Extensions.Configuration;
-
-namespace MatrixRoomUtils.Bot.Bot; 
-
-public class MRUBotConfiguration {
-    public MRUBotConfiguration(IConfiguration config) {
-        config.GetRequiredSection("Bot").Bind(this);
-    }
-    public string Homeserver { get; set; } = "";
-    public string AccessToken { get; set; } = "";
-    public string Prefix { get; set; }
-}
\ No newline at end of file
diff --git a/MatrixRoomUtils.Bot/MatrixRoomUtils.Bot.csproj b/MatrixRoomUtils.Bot/MatrixRoomUtils.Bot.csproj
deleted file mode 100644
index d9b2931..0000000
--- a/MatrixRoomUtils.Bot/MatrixRoomUtils.Bot.csproj
+++ /dev/null
@@ -1,35 +0,0 @@
-<Project Sdk="Microsoft.NET.Sdk">

-

-  <PropertyGroup>

-    <OutputType>Exe</OutputType>

-    <TargetFramework>net8.0</TargetFramework>

-    <LangVersion>preview</LangVersion>

-    <ImplicitUsings>enable</ImplicitUsings>

-    <Nullable>enable</Nullable>

-    <PublishAot>false</PublishAot>

-    <InvariantGlobalization>true</InvariantGlobalization>

-    <PublishTrimmed>true</PublishTrimmed>

-    <PublishReadyToRun>true</PublishReadyToRun>

-    <PublishSingleFile>true</PublishSingleFile>

-    <PublishReadyToRunShowWarnings>true</PublishReadyToRunShowWarnings>

-    <PublishTrimmedShowLinkerSizeComparison>true</PublishTrimmedShowLinkerSizeComparison>

-    <PublishTrimmedShowLinkerSizeComparisonWarnings>true</PublishTrimmedShowLinkerSizeComparisonWarnings>

-  </PropertyGroup>

-

-  <ItemGroup>

-    <ProjectReference Include="..\MatrixRoomUtils.Core\MatrixRoomUtils.Core.csproj" />

-  </ItemGroup>

-  

-  <ItemGroup>

-    <PackageReference Include="ArcaneLibs" Version="1.0.0-preview3020494760.012ed3f" />

-    <PackageReference Include="Microsoft.Extensions.Hosting" Version="8.0.0-preview.5.23280.8" />

-  </ItemGroup>

-  <ItemGroup>

-    <Content Include="appsettings*.json">

-      <CopyToOutputDirectory>Always</CopyToOutputDirectory>

-    </Content>

-    <Content Update="appsettings.Local.emmalocal.json">

-      <CopyToOutputDirectory>Always</CopyToOutputDirectory>

-    </Content>

-  </ItemGroup>

-</Project>

diff --git a/MatrixRoomUtils.Bot/Program.cs b/MatrixRoomUtils.Bot/Program.cs
deleted file mode 100644
index 5dae843..0000000
--- a/MatrixRoomUtils.Bot/Program.cs
+++ /dev/null
@@ -1,29 +0,0 @@
-// See https://aka.ms/new-console-template for more information

-

-using MatrixRoomUtils.Bot;

-using MatrixRoomUtils.Bot.Bot;

-using MatrixRoomUtils.Bot.Bot.Interfaces;

-using MatrixRoomUtils.Core.Extensions;

-using MatrixRoomUtils.Core.Services;

-using Microsoft.Extensions.DependencyInjection;

-using Microsoft.Extensions.Hosting;

-

-Console.WriteLine("Hello, World!");

-

-var host = Host.CreateDefaultBuilder(args).ConfigureServices((_, services) => {

-    services.AddScoped<TieredStorageService>(x =>

-        new(

-            cacheStorageProvider: new FileStorageProvider("bot_data/cache/"),

-            dataStorageProvider: new FileStorageProvider("bot_data/data/")

-        )

-    );

-    services.AddScoped<MRUBotConfiguration>();

-    services.AddRoryLibMatrixServices();

-    foreach (var commandClass in new ClassCollector<ICommand>().ResolveFromAllAccessibleAssemblies()) {

-        Console.WriteLine($"Adding command {commandClass.Name}");

-        services.AddScoped(typeof(ICommand), commandClass);

-    }

-    services.AddHostedService<MRUBot>();

-}).UseConsoleLifetime().Build();

-

-await host.RunAsync();
\ No newline at end of file
diff --git a/MatrixRoomUtils.Bot/Properties/launchSettings.json b/MatrixRoomUtils.Bot/Properties/launchSettings.json
deleted file mode 100644
index 997e294..0000000
--- a/MatrixRoomUtils.Bot/Properties/launchSettings.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
-  "$schema": "http://json.schemastore.org/launchsettings.json",
-  "profiles": {
-    "Default": {
-      "commandName": "Project",
-      "dotnetRunMessages": true,
-      "environmentVariables": {
-
-      }
-    },
-    "Development": {
-      "commandName": "Project",
-      "dotnetRunMessages": true,
-      "environmentVariables": {
-        "DOTNET_ENVIRONMENT": "Development"
-      }
-    },
-    "Local config": {
-      "commandName": "Project",
-      "dotnetRunMessages": true,
-      "environmentVariables": {
-        "DOTNET_ENVIRONMENT": "Local"
-      }
-    }
-  }
-}
diff --git a/MatrixRoomUtils.Bot/appsettings.Development.json b/MatrixRoomUtils.Bot/appsettings.Development.json
deleted file mode 100644
index 27bbd50..0000000
--- a/MatrixRoomUtils.Bot/appsettings.Development.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-    "Logging": {
-        "LogLevel": {
-            "Default": "Debug",
-            "System": "Information",
-            "Microsoft": "Information"
-        }
-    }
-}
\ No newline at end of file
diff --git a/MatrixRoomUtils.Bot/appsettings.json b/MatrixRoomUtils.Bot/appsettings.json
deleted file mode 100644
index 5668b53..0000000
--- a/MatrixRoomUtils.Bot/appsettings.json
+++ /dev/null
@@ -1,13 +0,0 @@
-{
-    "Logging": {
-        "LogLevel": {
-            "Default": "Debug",
-            "System": "Information",
-            "Microsoft": "Information"
-        }
-    },
-    "Bot": {
-        "Homeserver": "rory.gay",
-        "AccessToken": "syt_xxxxxxxxxxxxxxxxx"
-    }
-}
\ No newline at end of file