45 lines
1.6 KiB
C#
45 lines
1.6 KiB
C#
using MoonlightServers.Daemon.ServerSystem.Interfaces;
|
|
|
|
namespace MoonlightServers.Daemon.ServerSystem.Implementations;
|
|
|
|
public class ServerReporter : IReporter
|
|
{
|
|
private readonly IConsole Console;
|
|
private readonly ILogger Logger;
|
|
|
|
private const string StatusTemplate =
|
|
"\x1b[1;38;2;200;90;200mM\x1b[1;38;2;204;110;230mo\x1b[1;38;2;170;130;245mo\x1b[1;38;2;140;150;255mn\x1b[1;38;2;110;180;255ml\x1b[1;38;2;100;200;255mi\x1b[1;38;2;100;220;255mg\x1b[1;38;2;120;235;255mh\x1b[1;38;2;140;250;255mt\x1b[0m \x1b[3;38;2;200;200;200m{0}\x1b[0m\n\r";
|
|
|
|
private const string ErrorTemplate =
|
|
"\x1b[1;38;2;200;90;200mM\x1b[1;38;2;204;110;230mo\x1b[1;38;2;170;130;245mo\x1b[1;38;2;140;150;255mn\x1b[1;38;2;110;180;255ml\x1b[1;38;2;100;200;255mi\x1b[1;38;2;100;220;255mg\x1b[1;38;2;120;235;255mh\x1b[1;38;2;140;250;255mt\x1b[0m \x1b[1;38;2;255;0;0m{0}\x1b[0m\n\r";
|
|
|
|
public ServerReporter(IConsole console, ILogger logger)
|
|
{
|
|
Console = console;
|
|
Logger = logger;
|
|
}
|
|
|
|
public Task InitializeAsync()
|
|
=> Task.CompletedTask;
|
|
|
|
public async Task StatusAsync(string message)
|
|
{
|
|
Logger.LogInformation("Status: {message}", message);
|
|
|
|
await Console.WriteStdOutAsync(
|
|
string.Format(StatusTemplate, message)
|
|
);
|
|
}
|
|
|
|
public async Task ErrorAsync(string message)
|
|
{
|
|
Logger.LogError("Error: {message}", message);
|
|
|
|
await Console.WriteStdOutAsync(
|
|
string.Format(ErrorTemplate, message)
|
|
);
|
|
}
|
|
|
|
public ValueTask DisposeAsync()
|
|
=> ValueTask.CompletedTask;
|
|
} |