Switched to serilog as logging system
This commit is contained in:
@@ -1,5 +1,4 @@
|
|||||||
using Logging.Net;
|
using Newtonsoft.Json;
|
||||||
using Newtonsoft.Json;
|
|
||||||
using RestSharp;
|
using RestSharp;
|
||||||
|
|
||||||
namespace Moonlight.App.ApiClients.Modrinth;
|
namespace Moonlight.App.ApiClients.Modrinth;
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
using System.Data.Common;
|
using System.Data.Common;
|
||||||
using Logging.Net;
|
|
||||||
using Microsoft.EntityFrameworkCore.Diagnostics;
|
using Microsoft.EntityFrameworkCore.Diagnostics;
|
||||||
|
using Moonlight.App.Helpers;
|
||||||
|
|
||||||
namespace Moonlight.App.Database.Interceptors;
|
namespace Moonlight.App.Database.Interceptors;
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
using System.Diagnostics;
|
using System.Diagnostics;
|
||||||
using Logging.Net;
|
using Moonlight.App.Helpers;
|
||||||
|
|
||||||
namespace Moonlight.App.Events;
|
namespace Moonlight.App.Events;
|
||||||
|
|
||||||
|
|||||||
@@ -1,252 +0,0 @@
|
|||||||
using System.Diagnostics;
|
|
||||||
using Logging.Net;
|
|
||||||
using Logging.Net.Loggers.SB;
|
|
||||||
using Moonlight.App.Models.Misc;
|
|
||||||
using ILogger = Logging.Net.ILogger;
|
|
||||||
|
|
||||||
namespace Moonlight.App.Helpers;
|
|
||||||
|
|
||||||
public class CacheLogger : ILogger
|
|
||||||
{
|
|
||||||
private SBLogger SbLogger = new();
|
|
||||||
private List<LogEntry> Messages = new();
|
|
||||||
|
|
||||||
public LogEntry[] GetMessages()
|
|
||||||
{
|
|
||||||
lock (Messages)
|
|
||||||
{
|
|
||||||
var result = new LogEntry[Messages.Count];
|
|
||||||
Messages.CopyTo(result);
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public void Clear(int messages)
|
|
||||||
{
|
|
||||||
lock (Messages)
|
|
||||||
{
|
|
||||||
Messages.RemoveRange(0, Math.Min(messages, Messages.Count));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public void Info(string? s)
|
|
||||||
{
|
|
||||||
if (s == null)
|
|
||||||
return;
|
|
||||||
|
|
||||||
lock (Messages)
|
|
||||||
{
|
|
||||||
Messages.Add(new()
|
|
||||||
{
|
|
||||||
Level = "info",
|
|
||||||
Message = s
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
SbLogger.Info(s);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void Debug(string? s)
|
|
||||||
{
|
|
||||||
if (s == null)
|
|
||||||
return;
|
|
||||||
|
|
||||||
lock (Messages)
|
|
||||||
{
|
|
||||||
Messages.Add(new()
|
|
||||||
{
|
|
||||||
Level = "debug",
|
|
||||||
Message = s
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
SbLogger.Debug(s);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void Warn(string? s)
|
|
||||||
{
|
|
||||||
if (s == null)
|
|
||||||
return;
|
|
||||||
|
|
||||||
lock (Messages)
|
|
||||||
{
|
|
||||||
Messages.Add(new()
|
|
||||||
{
|
|
||||||
Level = "warn",
|
|
||||||
Message = s
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
SbLogger.Warn(s);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void Error(string? s)
|
|
||||||
{
|
|
||||||
if (s == null)
|
|
||||||
return;
|
|
||||||
|
|
||||||
lock (Messages)
|
|
||||||
{
|
|
||||||
Messages.Add(new()
|
|
||||||
{
|
|
||||||
Level = "error",
|
|
||||||
Message = s
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
SbLogger.Error(s);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void Fatal(string? s)
|
|
||||||
{
|
|
||||||
if (s == null)
|
|
||||||
return;
|
|
||||||
|
|
||||||
lock (Messages)
|
|
||||||
{
|
|
||||||
Messages.Add(new()
|
|
||||||
{
|
|
||||||
Level = "fatal",
|
|
||||||
Message = s
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
SbLogger.Fatal(s);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void InfoEx(Exception ex)
|
|
||||||
{
|
|
||||||
lock (Messages)
|
|
||||||
{
|
|
||||||
Messages.Add(new()
|
|
||||||
{
|
|
||||||
Level = "info",
|
|
||||||
Message = ex.ToStringDemystified()
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
SbLogger.InfoEx(ex);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void DebugEx(Exception ex)
|
|
||||||
{
|
|
||||||
lock (Messages)
|
|
||||||
{
|
|
||||||
Messages.Add(new()
|
|
||||||
{
|
|
||||||
Level = "debug",
|
|
||||||
Message = ex.ToStringDemystified()
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
SbLogger.DebugEx(ex);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void WarnEx(Exception ex)
|
|
||||||
{
|
|
||||||
lock (Messages)
|
|
||||||
{
|
|
||||||
Messages.Add(new()
|
|
||||||
{
|
|
||||||
Level = "warn",
|
|
||||||
Message = ex.ToStringDemystified()
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
SbLogger.WarnEx(ex);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void ErrorEx(Exception ex)
|
|
||||||
{
|
|
||||||
lock (Messages)
|
|
||||||
{
|
|
||||||
Messages.Add(new()
|
|
||||||
{
|
|
||||||
Level = "error",
|
|
||||||
Message = ex.ToStringDemystified()
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
SbLogger.ErrorEx(ex);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void FatalEx(Exception ex)
|
|
||||||
{
|
|
||||||
lock (Messages)
|
|
||||||
{
|
|
||||||
Messages.Add(new()
|
|
||||||
{
|
|
||||||
Level = "fatal",
|
|
||||||
Message = ex.ToStringDemystified()
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
SbLogger.FatalEx(ex);
|
|
||||||
}
|
|
||||||
|
|
||||||
public LoggingConfiguration GetErrorConfiguration()
|
|
||||||
{
|
|
||||||
return SbLogger.GetErrorConfiguration();
|
|
||||||
}
|
|
||||||
|
|
||||||
public void SetErrorConfiguration(LoggingConfiguration configuration)
|
|
||||||
{
|
|
||||||
SbLogger.SetErrorConfiguration(configuration);
|
|
||||||
}
|
|
||||||
|
|
||||||
public LoggingConfiguration GetFatalConfiguration()
|
|
||||||
{
|
|
||||||
return SbLogger.GetFatalConfiguration();
|
|
||||||
}
|
|
||||||
|
|
||||||
public void SetFatalConfiguration(LoggingConfiguration configuration)
|
|
||||||
{
|
|
||||||
SbLogger.SetFatalConfiguration(configuration);
|
|
||||||
}
|
|
||||||
|
|
||||||
public LoggingConfiguration GetWarnConfiguration()
|
|
||||||
{
|
|
||||||
return SbLogger.GetWarnConfiguration();
|
|
||||||
}
|
|
||||||
|
|
||||||
public void SetWarnConfiguration(LoggingConfiguration configuration)
|
|
||||||
{
|
|
||||||
SbLogger.SetWarnConfiguration(configuration);
|
|
||||||
}
|
|
||||||
|
|
||||||
public LoggingConfiguration GetInfoConfiguration()
|
|
||||||
{
|
|
||||||
return SbLogger.GetInfoConfiguration();
|
|
||||||
}
|
|
||||||
|
|
||||||
public void SetInfoConfiguration(LoggingConfiguration configuration)
|
|
||||||
{
|
|
||||||
SbLogger.SetInfoConfiguration(configuration);
|
|
||||||
}
|
|
||||||
|
|
||||||
public LoggingConfiguration GetDebugConfiguration()
|
|
||||||
{
|
|
||||||
return SbLogger.GetDebugConfiguration();
|
|
||||||
}
|
|
||||||
|
|
||||||
public void SetDebugConfiguration(LoggingConfiguration configuration)
|
|
||||||
{
|
|
||||||
SbLogger.SetDebugConfiguration(configuration);
|
|
||||||
}
|
|
||||||
|
|
||||||
public ILoggingAddition GetAddition()
|
|
||||||
{
|
|
||||||
return SbLogger.GetAddition();
|
|
||||||
}
|
|
||||||
|
|
||||||
public void SetAddition(ILoggingAddition addition)
|
|
||||||
{
|
|
||||||
SbLogger.SetAddition(addition);
|
|
||||||
}
|
|
||||||
|
|
||||||
public bool LogCallingClass
|
|
||||||
{
|
|
||||||
get => SbLogger.LogCallingClass;
|
|
||||||
set => SbLogger.LogCallingClass = value;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,5 +1,4 @@
|
|||||||
using System.Diagnostics;
|
using System.Diagnostics;
|
||||||
using Logging.Net;
|
|
||||||
using Microsoft.EntityFrameworkCore;
|
using Microsoft.EntityFrameworkCore;
|
||||||
using Moonlight.App.Database;
|
using Moonlight.App.Database;
|
||||||
using Moonlight.App.Services;
|
using Moonlight.App.Services;
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
using Logging.Net;
|
using Renci.SshNet;
|
||||||
using Renci.SshNet;
|
|
||||||
using ConnectionInfo = Renci.SshNet.ConnectionInfo;
|
using ConnectionInfo = Renci.SshNet.ConnectionInfo;
|
||||||
|
|
||||||
namespace Moonlight.App.Helpers.Files;
|
namespace Moonlight.App.Helpers.Files;
|
||||||
|
|||||||
@@ -1,6 +1,5 @@
|
|||||||
using System.Diagnostics;
|
using System.Diagnostics;
|
||||||
using System.Runtime.InteropServices;
|
using System.Runtime.InteropServices;
|
||||||
using Logging.Net;
|
|
||||||
|
|
||||||
namespace Moonlight.App.Helpers;
|
namespace Moonlight.App.Helpers;
|
||||||
|
|
||||||
|
|||||||
108
Moonlight/App/Helpers/Logger.cs
Normal file
108
Moonlight/App/Helpers/Logger.cs
Normal file
@@ -0,0 +1,108 @@
|
|||||||
|
using System.Diagnostics;
|
||||||
|
using System.Reflection;
|
||||||
|
using Serilog;
|
||||||
|
|
||||||
|
namespace Moonlight.App.Helpers;
|
||||||
|
|
||||||
|
public static class Logger
|
||||||
|
{
|
||||||
|
#region String method calls
|
||||||
|
public static void Verbose(string message, string channel = "default")
|
||||||
|
{
|
||||||
|
Log.ForContext("SourceContext", GetNameOfCallingClass())
|
||||||
|
.Verbose("{Message} {Channel}", message, channel);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void Info(string message, string channel = "default")
|
||||||
|
{
|
||||||
|
Log.ForContext("SourceContext", GetNameOfCallingClass())
|
||||||
|
.Information("{Message} {Channel}", message, channel);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void Debug(string message, string channel = "default")
|
||||||
|
{
|
||||||
|
Log.ForContext("SourceContext", GetNameOfCallingClass())
|
||||||
|
.Debug("{Message} {Channel}", message, channel);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void Error(string message, string channel = "default")
|
||||||
|
{
|
||||||
|
Log.ForContext("SourceContext", GetNameOfCallingClass())
|
||||||
|
.Error("{Message} {Channel}", message, channel);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void Warn(string message, string channel = "default")
|
||||||
|
{
|
||||||
|
Log.ForContext("SourceContext", GetNameOfCallingClass())
|
||||||
|
.Warning("{Message} {Channel}", message, channel);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void Fatal(string message, string channel = "default")
|
||||||
|
{
|
||||||
|
Log.ForContext("SourceContext", GetNameOfCallingClass())
|
||||||
|
.Fatal("{Message} {Channel}", message, channel);
|
||||||
|
}
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
#region Exception method calls
|
||||||
|
public static void Verbose(Exception exception, string channel = "default")
|
||||||
|
{
|
||||||
|
Log.ForContext("SourceContext", GetNameOfCallingClass())
|
||||||
|
.Verbose(exception, "{Channel}", channel);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void Info(Exception exception, string channel = "default")
|
||||||
|
{
|
||||||
|
Log.ForContext("SourceContext", GetNameOfCallingClass())
|
||||||
|
.Information(exception, "{Channel}", channel);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void Debug(Exception exception, string channel = "default")
|
||||||
|
{
|
||||||
|
Log.ForContext("SourceContext", GetNameOfCallingClass())
|
||||||
|
.Debug(exception, "{Channel}", channel);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void Error(Exception exception, string channel = "default")
|
||||||
|
{
|
||||||
|
Log.ForContext("SourceContext", GetNameOfCallingClass())
|
||||||
|
.Error(exception, "{Channel}", channel);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void Warn(Exception exception, string channel = "default")
|
||||||
|
{
|
||||||
|
Log.ForContext("SourceContext", GetNameOfCallingClass())
|
||||||
|
.Warning(exception, "{Channel}", channel);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void Fatal(Exception exception, string channel = "default")
|
||||||
|
{
|
||||||
|
Log.ForContext("SourceContext", GetNameOfCallingClass())
|
||||||
|
.Fatal(exception, "{Channel}", channel);
|
||||||
|
}
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
private static string GetNameOfCallingClass(int skipFrames = 4)
|
||||||
|
{
|
||||||
|
string fullName;
|
||||||
|
Type declaringType;
|
||||||
|
|
||||||
|
do
|
||||||
|
{
|
||||||
|
MethodBase method = new StackFrame(skipFrames, false).GetMethod();
|
||||||
|
declaringType = method.DeclaringType;
|
||||||
|
if (declaringType == null)
|
||||||
|
{
|
||||||
|
return method.Name;
|
||||||
|
}
|
||||||
|
skipFrames++;
|
||||||
|
if (declaringType.Name.Contains("<"))
|
||||||
|
fullName = declaringType.ReflectedType.Name;
|
||||||
|
else
|
||||||
|
fullName = declaringType.Name;
|
||||||
|
}
|
||||||
|
while (declaringType.Module.Name.Equals("mscorlib.dll", StringComparison.OrdinalIgnoreCase) | fullName.Contains("Logger"));
|
||||||
|
|
||||||
|
return fullName;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,5 +1,4 @@
|
|||||||
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations;
|
||||||
using Logging.Net;
|
|
||||||
|
|
||||||
namespace Moonlight.App.Helpers;
|
namespace Moonlight.App.Helpers;
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,4 @@
|
|||||||
using Logging.Net;
|
namespace Moonlight.App.Helpers;
|
||||||
|
|
||||||
namespace Moonlight.App.Helpers;
|
|
||||||
|
|
||||||
public static class ParseHelper
|
public static class ParseHelper
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,6 +1,5 @@
|
|||||||
using System.Net.WebSockets;
|
using System.Net.WebSockets;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using Logging.Net;
|
|
||||||
using Moonlight.App.Helpers.Wings.Data;
|
using Moonlight.App.Helpers.Wings.Data;
|
||||||
using Moonlight.App.Helpers.Wings.Enums;
|
using Moonlight.App.Helpers.Wings.Enums;
|
||||||
using Moonlight.App.Helpers.Wings.Events;
|
using Moonlight.App.Helpers.Wings.Events;
|
||||||
|
|||||||
@@ -1,6 +1,5 @@
|
|||||||
using System.Net.WebSockets;
|
using System.Net.WebSockets;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using Logging.Net;
|
|
||||||
using Microsoft.AspNetCore.Mvc;
|
using Microsoft.AspNetCore.Mvc;
|
||||||
using Microsoft.EntityFrameworkCore;
|
using Microsoft.EntityFrameworkCore;
|
||||||
using Moonlight.App.Database.Entities;
|
using Moonlight.App.Database.Entities;
|
||||||
@@ -9,7 +8,6 @@ using Moonlight.App.Models.Notifications;
|
|||||||
using Moonlight.App.Repositories;
|
using Moonlight.App.Repositories;
|
||||||
using Moonlight.App.Services;
|
using Moonlight.App.Services;
|
||||||
using Moonlight.App.Services.Notifications;
|
using Moonlight.App.Services.Notifications;
|
||||||
using Moonlight.App.Services.Sessions;
|
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
|
|
||||||
namespace Moonlight.App.Http.Controllers.Api.Moonlight.Notifications;
|
namespace Moonlight.App.Http.Controllers.Api.Moonlight.Notifications;
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
using Logging.Net;
|
using Microsoft.AspNetCore.Mvc;
|
||||||
using Microsoft.AspNetCore.Mvc;
|
using Moonlight.App.Helpers;
|
||||||
using Moonlight.App.Services;
|
using Moonlight.App.Services;
|
||||||
using Moonlight.App.Services.Sessions;
|
using Moonlight.App.Services.Sessions;
|
||||||
|
|
||||||
|
|||||||
@@ -1,12 +1,6 @@
|
|||||||
using System.Text;
|
using Microsoft.AspNetCore.Mvc;
|
||||||
using Logging.Net;
|
|
||||||
using Microsoft.AspNetCore.Mvc;
|
|
||||||
using Moonlight.App.Helpers;
|
using Moonlight.App.Helpers;
|
||||||
using Moonlight.App.Models.Misc;
|
|
||||||
using Moonlight.App.Services;
|
|
||||||
using Moonlight.App.Services.Files;
|
using Moonlight.App.Services.Files;
|
||||||
using Moonlight.App.Services.LogServices;
|
|
||||||
using Moonlight.App.Services.Sessions;
|
|
||||||
|
|
||||||
namespace Moonlight.App.Http.Controllers.Api.Moonlight;
|
namespace Moonlight.App.Http.Controllers.Api.Moonlight;
|
||||||
|
|
||||||
@@ -14,13 +8,10 @@ namespace Moonlight.App.Http.Controllers.Api.Moonlight;
|
|||||||
[Route("api/moonlight/resources")]
|
[Route("api/moonlight/resources")]
|
||||||
public class ResourcesController : Controller
|
public class ResourcesController : Controller
|
||||||
{
|
{
|
||||||
private readonly SecurityLogService SecurityLogService;
|
|
||||||
private readonly BucketService BucketService;
|
private readonly BucketService BucketService;
|
||||||
|
|
||||||
public ResourcesController(SecurityLogService securityLogService,
|
public ResourcesController(BucketService bucketService)
|
||||||
BucketService bucketService)
|
|
||||||
{
|
{
|
||||||
SecurityLogService = securityLogService;
|
|
||||||
BucketService = bucketService;
|
BucketService = bucketService;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -29,10 +20,7 @@ public class ResourcesController : Controller
|
|||||||
{
|
{
|
||||||
if (name.Contains(".."))
|
if (name.Contains(".."))
|
||||||
{
|
{
|
||||||
await SecurityLogService.Log(SecurityLogType.PathTransversal, x =>
|
Logger.Warn($"Detected an attempted path transversal. Path: {name}", "security");
|
||||||
{
|
|
||||||
x.Add<string>(name);
|
|
||||||
});
|
|
||||||
|
|
||||||
return NotFound();
|
return NotFound();
|
||||||
}
|
}
|
||||||
@@ -52,10 +40,7 @@ public class ResourcesController : Controller
|
|||||||
{
|
{
|
||||||
if (name.Contains(".."))
|
if (name.Contains(".."))
|
||||||
{
|
{
|
||||||
await SecurityLogService.Log(SecurityLogType.PathTransversal, x =>
|
Logger.Warn($"Detected an attempted path transversal. Path: {name}", "security");
|
||||||
{
|
|
||||||
x.Add<string>(name);
|
|
||||||
});
|
|
||||||
|
|
||||||
return NotFound();
|
return NotFound();
|
||||||
}
|
}
|
||||||
@@ -75,10 +60,7 @@ public class ResourcesController : Controller
|
|||||||
{
|
{
|
||||||
if (name.Contains(".."))
|
if (name.Contains(".."))
|
||||||
{
|
{
|
||||||
await SecurityLogService.Log(SecurityLogType.PathTransversal, x =>
|
Logger.Warn($"Detected an attempted path transversal. Path: {name}", "security");
|
||||||
{
|
|
||||||
x.Add<string>(name);
|
|
||||||
});
|
|
||||||
|
|
||||||
return NotFound();
|
return NotFound();
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,10 +1,8 @@
|
|||||||
using Logging.Net;
|
using Microsoft.AspNetCore.Mvc;
|
||||||
using Microsoft.AspNetCore.Mvc;
|
|
||||||
using Moonlight.App.Database.Entities;
|
using Moonlight.App.Database.Entities;
|
||||||
using Moonlight.App.Events;
|
using Moonlight.App.Events;
|
||||||
using Moonlight.App.Http.Requests.Daemon;
|
using Moonlight.App.Http.Requests.Daemon;
|
||||||
using Moonlight.App.Repositories;
|
using Moonlight.App.Repositories;
|
||||||
using Moonlight.App.Services;
|
|
||||||
|
|
||||||
namespace Moonlight.App.Http.Controllers.Api.Remote;
|
namespace Moonlight.App.Http.Controllers.Api.Remote;
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
using Logging.Net;
|
using Moonlight.App.Helpers;
|
||||||
using ILogger = Microsoft.Extensions.Logging.ILogger;
|
|
||||||
|
|
||||||
namespace Moonlight.App.LogMigrator;
|
namespace Moonlight.App.LogMigrator;
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
using System.Text;
|
using System.Text;
|
||||||
using Logging.Net;
|
|
||||||
using Moonlight.App.Database.Entities;
|
using Moonlight.App.Database.Entities;
|
||||||
using Moonlight.App.Exceptions;
|
using Moonlight.App.Exceptions;
|
||||||
using Moonlight.App.Helpers;
|
using Moonlight.App.Helpers;
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
using System.Text;
|
using System.Text;
|
||||||
using Logging.Net;
|
|
||||||
using Moonlight.App.ApiClients.Google.Requests;
|
using Moonlight.App.ApiClients.Google.Requests;
|
||||||
using Moonlight.App.Database.Entities;
|
using Moonlight.App.Database.Entities;
|
||||||
using Moonlight.App.Exceptions;
|
using Moonlight.App.Exceptions;
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
using Logging.Net;
|
using Microsoft.EntityFrameworkCore;
|
||||||
using Microsoft.EntityFrameworkCore;
|
|
||||||
using MineStatLib;
|
using MineStatLib;
|
||||||
using Moonlight.App.ApiClients.Daemon.Resources;
|
using Moonlight.App.ApiClients.Daemon.Resources;
|
||||||
using Moonlight.App.ApiClients.Wings;
|
using Moonlight.App.ApiClients.Wings;
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
using Discord;
|
using Discord;
|
||||||
using Discord.Webhook;
|
using Discord.Webhook;
|
||||||
using Logging.Net;
|
|
||||||
using Moonlight.App.Database.Entities;
|
using Moonlight.App.Database.Entities;
|
||||||
using Moonlight.App.Events;
|
using Moonlight.App.Events;
|
||||||
|
using Moonlight.App.Helpers;
|
||||||
using Moonlight.App.Services.Files;
|
using Moonlight.App.Services.Files;
|
||||||
|
|
||||||
namespace Moonlight.App.Services.Background;
|
namespace Moonlight.App.Services.Background;
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
using System.Text;
|
using System.Text;
|
||||||
using Logging.Net;
|
|
||||||
using Microsoft.Extensions.Primitives;
|
using Microsoft.Extensions.Primitives;
|
||||||
using Moonlight.App.Helpers;
|
using Moonlight.App.Helpers;
|
||||||
using Moonlight.App.Services.Files;
|
using Moonlight.App.Services.Files;
|
||||||
|
|||||||
@@ -1,6 +1,5 @@
|
|||||||
using Discord;
|
using Discord;
|
||||||
using Discord.WebSocket;
|
using Discord.WebSocket;
|
||||||
using Logging.Net;
|
|
||||||
|
|
||||||
namespace Moonlight.App.Services.DiscordBot.Commands;
|
namespace Moonlight.App.Services.DiscordBot.Commands;
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,5 @@
|
|||||||
using Discord;
|
using Discord;
|
||||||
using Discord.WebSocket;
|
using Discord.WebSocket;
|
||||||
using Logging.Net;
|
|
||||||
using Microsoft.EntityFrameworkCore;
|
using Microsoft.EntityFrameworkCore;
|
||||||
using Moonlight.App.Repositories;
|
using Moonlight.App.Repositories;
|
||||||
using Moonlight.App.Repositories.Servers;
|
using Moonlight.App.Repositories.Servers;
|
||||||
|
|||||||
@@ -1,8 +1,7 @@
|
|||||||
using System.Diagnostics;
|
using System.Diagnostics;
|
||||||
using Discord;
|
using Discord;
|
||||||
using Discord.Commands;
|
|
||||||
using Discord.WebSocket;
|
using Discord.WebSocket;
|
||||||
using Logging.Net;
|
using Moonlight.App.Helpers;
|
||||||
using Moonlight.App.Services.DiscordBot.Commands;
|
using Moonlight.App.Services.DiscordBot.Commands;
|
||||||
using Moonlight.App.Services.DiscordBot.Modules;
|
using Moonlight.App.Services.DiscordBot.Modules;
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
using System.Diagnostics;
|
using System.Diagnostics;
|
||||||
using Discord.WebSocket;
|
using Discord.WebSocket;
|
||||||
using Logging.Net;
|
using Moonlight.App.Helpers;
|
||||||
|
|
||||||
namespace Moonlight.App.Services.DiscordBot.Modules;
|
namespace Moonlight.App.Services.DiscordBot.Modules;
|
||||||
|
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
using Discord;
|
using Discord;
|
||||||
using Discord.WebSocket;
|
using Discord.WebSocket;
|
||||||
using Logging.Net;
|
|
||||||
using Microsoft.EntityFrameworkCore;
|
using Microsoft.EntityFrameworkCore;
|
||||||
using Moonlight.App.ApiClients.Wings;
|
using Moonlight.App.ApiClients.Wings;
|
||||||
|
using Moonlight.App.Helpers;
|
||||||
using Moonlight.App.Repositories;
|
using Moonlight.App.Repositories;
|
||||||
using Moonlight.App.Repositories.Servers;
|
using Moonlight.App.Repositories.Servers;
|
||||||
|
|
||||||
|
|||||||
@@ -5,13 +5,12 @@ using CloudFlare.Client.Api.Result;
|
|||||||
using CloudFlare.Client.Api.Zones;
|
using CloudFlare.Client.Api.Zones;
|
||||||
using CloudFlare.Client.Api.Zones.DnsRecord;
|
using CloudFlare.Client.Api.Zones.DnsRecord;
|
||||||
using CloudFlare.Client.Enumerators;
|
using CloudFlare.Client.Enumerators;
|
||||||
using Logging.Net;
|
|
||||||
using Microsoft.EntityFrameworkCore;
|
using Microsoft.EntityFrameworkCore;
|
||||||
using Moonlight.App.Database.Entities;
|
using Moonlight.App.Database.Entities;
|
||||||
using Moonlight.App.Exceptions;
|
using Moonlight.App.Exceptions;
|
||||||
|
using Moonlight.App.Helpers;
|
||||||
using Moonlight.App.Models.Misc;
|
using Moonlight.App.Models.Misc;
|
||||||
using Moonlight.App.Repositories.Domains;
|
using Moonlight.App.Repositories.Domains;
|
||||||
using Moonlight.App.Services.LogServices;
|
|
||||||
using DnsRecord = Moonlight.App.Models.Misc.DnsRecord;
|
using DnsRecord = Moonlight.App.Models.Misc.DnsRecord;
|
||||||
|
|
||||||
namespace Moonlight.App.Services;
|
namespace Moonlight.App.Services;
|
||||||
@@ -21,18 +20,15 @@ public class DomainService
|
|||||||
private readonly DomainRepository DomainRepository;
|
private readonly DomainRepository DomainRepository;
|
||||||
private readonly SharedDomainRepository SharedDomainRepository;
|
private readonly SharedDomainRepository SharedDomainRepository;
|
||||||
private readonly CloudFlareClient Client;
|
private readonly CloudFlareClient Client;
|
||||||
private readonly AuditLogService AuditLogService;
|
|
||||||
private readonly string AccountId;
|
private readonly string AccountId;
|
||||||
|
|
||||||
public DomainService(
|
public DomainService(
|
||||||
ConfigService configService,
|
ConfigService configService,
|
||||||
DomainRepository domainRepository,
|
DomainRepository domainRepository,
|
||||||
SharedDomainRepository sharedDomainRepository,
|
SharedDomainRepository sharedDomainRepository)
|
||||||
AuditLogService auditLogService)
|
|
||||||
{
|
{
|
||||||
DomainRepository = domainRepository;
|
DomainRepository = domainRepository;
|
||||||
SharedDomainRepository = sharedDomainRepository;
|
SharedDomainRepository = sharedDomainRepository;
|
||||||
AuditLogService = auditLogService;
|
|
||||||
|
|
||||||
var config = configService
|
var config = configService
|
||||||
.GetSection("Moonlight")
|
.GetSection("Moonlight")
|
||||||
@@ -191,11 +187,7 @@ public class DomainService
|
|||||||
}));
|
}));
|
||||||
}
|
}
|
||||||
|
|
||||||
await AuditLogService.Log(AuditLogType.AddDomainRecord, x =>
|
//TODO: AuditLog
|
||||||
{
|
|
||||||
x.Add<Domain>(d.Id);
|
|
||||||
x.Add<DnsRecord>(dnsRecord.Name);
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task UpdateDnsRecord(Domain d, DnsRecord dnsRecord)
|
public async Task UpdateDnsRecord(Domain d, DnsRecord dnsRecord)
|
||||||
@@ -225,11 +217,7 @@ public class DomainService
|
|||||||
}));
|
}));
|
||||||
}
|
}
|
||||||
|
|
||||||
await AuditLogService.Log(AuditLogType.UpdateDomainRecord, x =>
|
//TODO: AuditLog
|
||||||
{
|
|
||||||
x.Add<Domain>(d.Id);
|
|
||||||
x.Add<DnsRecord>(dnsRecord.Name);
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task DeleteDnsRecord(Domain d, DnsRecord dnsRecord)
|
public async Task DeleteDnsRecord(Domain d, DnsRecord dnsRecord)
|
||||||
@@ -240,11 +228,7 @@ public class DomainService
|
|||||||
await Client.Zones.DnsRecords.DeleteAsync(domain.SharedDomain.CloudflareId, dnsRecord.Id)
|
await Client.Zones.DnsRecords.DeleteAsync(domain.SharedDomain.CloudflareId, dnsRecord.Id)
|
||||||
);
|
);
|
||||||
|
|
||||||
await AuditLogService.Log(AuditLogType.DeleteDomainRecord, x =>
|
//TODO: AuditLog
|
||||||
{
|
|
||||||
x.Add<Domain>(d.Id);
|
|
||||||
x.Add<DnsRecord>(dnsRecord.Name);
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private Domain EnsureData(Domain domain)
|
private Domain EnsureData(Domain domain)
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
using Logging.Net;
|
using Moonlight.App.Helpers;
|
||||||
using Moonlight.App.Helpers;
|
|
||||||
|
|
||||||
namespace Moonlight.App.Services.Files;
|
namespace Moonlight.App.Services.Files;
|
||||||
|
|
||||||
|
|||||||
@@ -1,93 +0,0 @@
|
|||||||
using Moonlight.App.Database.Entities.LogsEntries;
|
|
||||||
using Moonlight.App.Models.Log;
|
|
||||||
using Moonlight.App.Models.Misc;
|
|
||||||
using Moonlight.App.Repositories.LogEntries;
|
|
||||||
using Moonlight.App.Services.Sessions;
|
|
||||||
using Newtonsoft.Json;
|
|
||||||
|
|
||||||
namespace Moonlight.App.Services.LogServices;
|
|
||||||
|
|
||||||
public class AuditLogService
|
|
||||||
{
|
|
||||||
private readonly AuditLogEntryRepository Repository;
|
|
||||||
private readonly IHttpContextAccessor HttpContextAccessor;
|
|
||||||
|
|
||||||
public AuditLogService(
|
|
||||||
AuditLogEntryRepository repository,
|
|
||||||
IHttpContextAccessor httpContextAccessor)
|
|
||||||
{
|
|
||||||
Repository = repository;
|
|
||||||
HttpContextAccessor = httpContextAccessor;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Task Log(AuditLogType type, Action<AuditLogParameters> data)
|
|
||||||
{
|
|
||||||
var ip = GetIp();
|
|
||||||
var al = new AuditLogParameters();
|
|
||||||
data(al);
|
|
||||||
|
|
||||||
var entry = new AuditLogEntry()
|
|
||||||
{
|
|
||||||
Ip = ip,
|
|
||||||
Type = type,
|
|
||||||
System = false,
|
|
||||||
JsonData = al.Build()
|
|
||||||
};
|
|
||||||
|
|
||||||
Repository.Add(entry);
|
|
||||||
|
|
||||||
return Task.CompletedTask;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Task LogSystem(AuditLogType type, Action<AuditLogParameters> data)
|
|
||||||
{
|
|
||||||
var al = new AuditLogParameters();
|
|
||||||
data(al);
|
|
||||||
|
|
||||||
var entry = new AuditLogEntry()
|
|
||||||
{
|
|
||||||
Type = type,
|
|
||||||
System = true,
|
|
||||||
JsonData = al.Build()
|
|
||||||
};
|
|
||||||
|
|
||||||
Repository.Add(entry);
|
|
||||||
|
|
||||||
return Task.CompletedTask;
|
|
||||||
}
|
|
||||||
|
|
||||||
private string GetIp()
|
|
||||||
{
|
|
||||||
if (HttpContextAccessor.HttpContext == null)
|
|
||||||
return "N/A";
|
|
||||||
|
|
||||||
if(HttpContextAccessor.HttpContext.Request.Headers.ContainsKey("X-Real-IP"))
|
|
||||||
{
|
|
||||||
return HttpContextAccessor.HttpContext.Request.Headers["X-Real-IP"]!;
|
|
||||||
}
|
|
||||||
|
|
||||||
return HttpContextAccessor.HttpContext.Connection.RemoteIpAddress!.ToString();
|
|
||||||
}
|
|
||||||
|
|
||||||
public class AuditLogParameters
|
|
||||||
{
|
|
||||||
private List<LogData> Data = new List<LogData>();
|
|
||||||
|
|
||||||
public void Add<T>(object? data)
|
|
||||||
{
|
|
||||||
if(data == null)
|
|
||||||
return;
|
|
||||||
|
|
||||||
Data.Add(new LogData()
|
|
||||||
{
|
|
||||||
Type = typeof(T),
|
|
||||||
Value = data.ToString()
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
internal string Build()
|
|
||||||
{
|
|
||||||
return JsonConvert.SerializeObject(Data);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,118 +0,0 @@
|
|||||||
using System.Diagnostics;
|
|
||||||
using System.Reflection;
|
|
||||||
using Moonlight.App.Database.Entities.LogsEntries;
|
|
||||||
using Moonlight.App.Models.Log;
|
|
||||||
using Moonlight.App.Repositories.LogEntries;
|
|
||||||
using Moonlight.App.Services.Sessions;
|
|
||||||
using Newtonsoft.Json;
|
|
||||||
|
|
||||||
namespace Moonlight.App.Services.LogServices;
|
|
||||||
|
|
||||||
public class ErrorLogService
|
|
||||||
{
|
|
||||||
private readonly ErrorLogEntryRepository Repository;
|
|
||||||
private readonly IHttpContextAccessor HttpContextAccessor;
|
|
||||||
|
|
||||||
public ErrorLogService(ErrorLogEntryRepository repository, IHttpContextAccessor httpContextAccessor)
|
|
||||||
{
|
|
||||||
Repository = repository;
|
|
||||||
HttpContextAccessor = httpContextAccessor;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Task Log(Exception exception, Action<ErrorLogParameters> data)
|
|
||||||
{
|
|
||||||
var ip = GetIp();
|
|
||||||
var al = new ErrorLogParameters();
|
|
||||||
data(al);
|
|
||||||
|
|
||||||
var entry = new ErrorLogEntry()
|
|
||||||
{
|
|
||||||
Ip = ip,
|
|
||||||
System = false,
|
|
||||||
JsonData = al.Build(),
|
|
||||||
Class = NameOfCallingClass(),
|
|
||||||
Stacktrace = exception.ToStringDemystified()
|
|
||||||
};
|
|
||||||
|
|
||||||
Repository.Add(entry);
|
|
||||||
|
|
||||||
return Task.CompletedTask;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Task LogSystem(Exception exception, Action<ErrorLogParameters> data)
|
|
||||||
{
|
|
||||||
var al = new ErrorLogParameters();
|
|
||||||
data(al);
|
|
||||||
|
|
||||||
var entry = new ErrorLogEntry()
|
|
||||||
{
|
|
||||||
System = true,
|
|
||||||
JsonData = al.Build(),
|
|
||||||
Class = NameOfCallingClass(),
|
|
||||||
Stacktrace = exception.ToStringDemystified()
|
|
||||||
};
|
|
||||||
|
|
||||||
Repository.Add(entry);
|
|
||||||
|
|
||||||
return Task.CompletedTask;
|
|
||||||
}
|
|
||||||
|
|
||||||
private string NameOfCallingClass(int skipFrames = 4)
|
|
||||||
{
|
|
||||||
string fullName;
|
|
||||||
Type? declaringType;
|
|
||||||
|
|
||||||
do
|
|
||||||
{
|
|
||||||
MethodBase method = new StackFrame(skipFrames, false).GetMethod()!;
|
|
||||||
declaringType = method.DeclaringType;
|
|
||||||
if (declaringType == null)
|
|
||||||
{
|
|
||||||
return method.Name;
|
|
||||||
}
|
|
||||||
skipFrames++;
|
|
||||||
if (declaringType.Name.Contains("<"))
|
|
||||||
fullName = declaringType.ReflectedType!.Name;
|
|
||||||
else
|
|
||||||
fullName = declaringType.Name;
|
|
||||||
}
|
|
||||||
while (declaringType.Module.Name.Equals("mscorlib.dll", StringComparison.OrdinalIgnoreCase) | fullName.Contains("Log"));
|
|
||||||
|
|
||||||
return fullName;
|
|
||||||
}
|
|
||||||
|
|
||||||
private string GetIp()
|
|
||||||
{
|
|
||||||
if (HttpContextAccessor.HttpContext == null)
|
|
||||||
return "N/A";
|
|
||||||
|
|
||||||
if(HttpContextAccessor.HttpContext.Request.Headers.ContainsKey("X-Real-IP"))
|
|
||||||
{
|
|
||||||
return HttpContextAccessor.HttpContext.Request.Headers["X-Real-IP"]!;
|
|
||||||
}
|
|
||||||
|
|
||||||
return HttpContextAccessor.HttpContext.Connection.RemoteIpAddress!.ToString();
|
|
||||||
}
|
|
||||||
|
|
||||||
public class ErrorLogParameters
|
|
||||||
{
|
|
||||||
private List<LogData> Data = new List<LogData>();
|
|
||||||
|
|
||||||
public void Add<T>(object? data)
|
|
||||||
{
|
|
||||||
if(data == null)
|
|
||||||
return;
|
|
||||||
|
|
||||||
Data.Add(new LogData()
|
|
||||||
{
|
|
||||||
Type = typeof(T),
|
|
||||||
Value = data.ToString()
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
internal string Build()
|
|
||||||
{
|
|
||||||
return JsonConvert.SerializeObject(Data);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,45 +0,0 @@
|
|||||||
using Logging.Net;
|
|
||||||
using Moonlight.App.Helpers;
|
|
||||||
using Moonlight.App.Models.Misc;
|
|
||||||
|
|
||||||
namespace Moonlight.App.Services.LogServices;
|
|
||||||
|
|
||||||
public class LogService
|
|
||||||
{
|
|
||||||
public LogService()
|
|
||||||
{
|
|
||||||
Task.Run(ClearLog);
|
|
||||||
}
|
|
||||||
|
|
||||||
private async Task ClearLog()
|
|
||||||
{
|
|
||||||
while (true)
|
|
||||||
{
|
|
||||||
await Task.Delay(TimeSpan.FromMinutes(15));
|
|
||||||
|
|
||||||
if (GetMessages().Length > 500)
|
|
||||||
{
|
|
||||||
if (Logger.UsedLogger is CacheLogger cacheLogger)
|
|
||||||
{
|
|
||||||
cacheLogger.Clear(250); //TODO: config
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
Logger.Warn("Log service cannot access cache. Is Logging.Net using CacheLogger?");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public LogEntry[] GetMessages()
|
|
||||||
{
|
|
||||||
if (Logger.UsedLogger is CacheLogger cacheLogger)
|
|
||||||
{
|
|
||||||
return cacheLogger.GetMessages();
|
|
||||||
}
|
|
||||||
|
|
||||||
Logger.Warn("Log service cannot access cache. Is Logging.Net using CacheLogger?");
|
|
||||||
|
|
||||||
return Array.Empty<LogEntry>();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,92 +0,0 @@
|
|||||||
using Moonlight.App.Database.Entities.LogsEntries;
|
|
||||||
using Moonlight.App.Models.Log;
|
|
||||||
using Moonlight.App.Models.Misc;
|
|
||||||
using Moonlight.App.Repositories.LogEntries;
|
|
||||||
using Moonlight.App.Services.Sessions;
|
|
||||||
using Newtonsoft.Json;
|
|
||||||
|
|
||||||
namespace Moonlight.App.Services.LogServices;
|
|
||||||
|
|
||||||
public class SecurityLogService
|
|
||||||
{
|
|
||||||
private readonly SecurityLogEntryRepository Repository;
|
|
||||||
private readonly IHttpContextAccessor HttpContextAccessor;
|
|
||||||
|
|
||||||
public SecurityLogService(SecurityLogEntryRepository repository, IHttpContextAccessor httpContextAccessor)
|
|
||||||
{
|
|
||||||
Repository = repository;
|
|
||||||
HttpContextAccessor = httpContextAccessor;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Task Log(SecurityLogType type, Action<SecurityLogParameters> data)
|
|
||||||
{
|
|
||||||
var ip = GetIp();
|
|
||||||
var al = new SecurityLogParameters();
|
|
||||||
data(al);
|
|
||||||
|
|
||||||
var entry = new SecurityLogEntry()
|
|
||||||
{
|
|
||||||
Ip = ip,
|
|
||||||
Type = type,
|
|
||||||
System = false,
|
|
||||||
JsonData = al.Build()
|
|
||||||
};
|
|
||||||
|
|
||||||
Repository.Add(entry);
|
|
||||||
|
|
||||||
return Task.CompletedTask;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Task LogSystem(SecurityLogType type, Action<SecurityLogParameters> data)
|
|
||||||
{
|
|
||||||
var al = new SecurityLogParameters();
|
|
||||||
data(al);
|
|
||||||
|
|
||||||
var entry = new SecurityLogEntry()
|
|
||||||
{
|
|
||||||
Type = type,
|
|
||||||
System = true,
|
|
||||||
JsonData = al.Build()
|
|
||||||
};
|
|
||||||
|
|
||||||
Repository.Add(entry);
|
|
||||||
|
|
||||||
return Task.CompletedTask;
|
|
||||||
}
|
|
||||||
|
|
||||||
private string GetIp()
|
|
||||||
{
|
|
||||||
if (HttpContextAccessor.HttpContext == null)
|
|
||||||
return "N/A";
|
|
||||||
|
|
||||||
if(HttpContextAccessor.HttpContext.Request.Headers.ContainsKey("X-Real-IP"))
|
|
||||||
{
|
|
||||||
return HttpContextAccessor.HttpContext.Request.Headers["X-Real-IP"]!;
|
|
||||||
}
|
|
||||||
|
|
||||||
return HttpContextAccessor.HttpContext.Connection.RemoteIpAddress!.ToString();
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
public class SecurityLogParameters
|
|
||||||
{
|
|
||||||
private List<LogData> Data = new List<LogData>();
|
|
||||||
|
|
||||||
public void Add<T>(object? data)
|
|
||||||
{
|
|
||||||
if(data == null)
|
|
||||||
return;
|
|
||||||
|
|
||||||
Data.Add(new LogData()
|
|
||||||
{
|
|
||||||
Type = typeof(T),
|
|
||||||
Value = data.ToString()
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
internal string Build()
|
|
||||||
{
|
|
||||||
return JsonConvert.SerializeObject(Data);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,5 +1,4 @@
|
|||||||
using Logging.Net;
|
using MimeKit;
|
||||||
using MimeKit;
|
|
||||||
using Moonlight.App.Database.Entities;
|
using Moonlight.App.Database.Entities;
|
||||||
using Moonlight.App.Exceptions;
|
using Moonlight.App.Exceptions;
|
||||||
using Moonlight.App.Helpers;
|
using Moonlight.App.Helpers;
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
using System.Net;
|
using System.Net;
|
||||||
using Logging.Net;
|
using Moonlight.App.Helpers;
|
||||||
|
|
||||||
namespace Moonlight.App.Services.Mail;
|
namespace Moonlight.App.Services.Mail;
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
using Logging.Net;
|
using Moonlight.App.Helpers;
|
||||||
using Octokit;
|
using Octokit;
|
||||||
using Repository = LibGit2Sharp.Repository;
|
using Repository = LibGit2Sharp.Repository;
|
||||||
|
|
||||||
|
|||||||
@@ -4,9 +4,7 @@ using JWT.Builder;
|
|||||||
using JWT.Exceptions;
|
using JWT.Exceptions;
|
||||||
using Moonlight.App.Exceptions;
|
using Moonlight.App.Exceptions;
|
||||||
using Moonlight.App.Helpers;
|
using Moonlight.App.Helpers;
|
||||||
using Moonlight.App.Models.Misc;
|
|
||||||
using Moonlight.App.Repositories;
|
using Moonlight.App.Repositories;
|
||||||
using Moonlight.App.Services.LogServices;
|
|
||||||
|
|
||||||
namespace Moonlight.App.Services;
|
namespace Moonlight.App.Services;
|
||||||
|
|
||||||
@@ -14,15 +12,12 @@ public class OneTimeJwtService
|
|||||||
{
|
{
|
||||||
private readonly ConfigService ConfigService;
|
private readonly ConfigService ConfigService;
|
||||||
private readonly RevokeRepository RevokeRepository;
|
private readonly RevokeRepository RevokeRepository;
|
||||||
private readonly SecurityLogService SecurityLogService;
|
|
||||||
|
|
||||||
public OneTimeJwtService(ConfigService configService,
|
public OneTimeJwtService(ConfigService configService,
|
||||||
RevokeRepository revokeRepository,
|
RevokeRepository revokeRepository)
|
||||||
SecurityLogService securityLogService)
|
|
||||||
{
|
{
|
||||||
ConfigService = configService;
|
ConfigService = configService;
|
||||||
RevokeRepository = revokeRepository;
|
RevokeRepository = revokeRepository;
|
||||||
SecurityLogService = securityLogService;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public string Generate(Action<Dictionary<string, string>> options, TimeSpan? validTime = null)
|
public string Generate(Action<Dictionary<string, string>> options, TimeSpan? validTime = null)
|
||||||
@@ -76,10 +71,7 @@ public class OneTimeJwtService
|
|||||||
}
|
}
|
||||||
catch (SignatureVerificationException)
|
catch (SignatureVerificationException)
|
||||||
{
|
{
|
||||||
await SecurityLogService.LogSystem(SecurityLogType.ManipulatedJwt, x =>
|
Logger.Warn($"Detected a manipulated JWT: {token}", "security");
|
||||||
{
|
|
||||||
x.Add<string>(token);
|
|
||||||
});
|
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
catch (Exception e)
|
catch (Exception e)
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
using Logging.Net;
|
using Microsoft.EntityFrameworkCore;
|
||||||
using Microsoft.EntityFrameworkCore;
|
|
||||||
using Moonlight.App.ApiClients.Wings;
|
using Moonlight.App.ApiClients.Wings;
|
||||||
using Moonlight.App.ApiClients.Wings.Requests;
|
using Moonlight.App.ApiClients.Wings.Requests;
|
||||||
using Moonlight.App.ApiClients.Wings.Resources;
|
using Moonlight.App.ApiClients.Wings.Resources;
|
||||||
@@ -13,7 +12,6 @@ using Moonlight.App.Helpers.Wings;
|
|||||||
using Moonlight.App.Models.Misc;
|
using Moonlight.App.Models.Misc;
|
||||||
using Moonlight.App.Repositories;
|
using Moonlight.App.Repositories;
|
||||||
using Moonlight.App.Repositories.Servers;
|
using Moonlight.App.Repositories.Servers;
|
||||||
using Moonlight.App.Services.LogServices;
|
|
||||||
using FileAccess = Moonlight.App.Helpers.Files.FileAccess;
|
using FileAccess = Moonlight.App.Helpers.Files.FileAccess;
|
||||||
|
|
||||||
namespace Moonlight.App.Services;
|
namespace Moonlight.App.Services;
|
||||||
@@ -30,9 +28,6 @@ public class ServerService
|
|||||||
private readonly UserService UserService;
|
private readonly UserService UserService;
|
||||||
private readonly ConfigService ConfigService;
|
private readonly ConfigService ConfigService;
|
||||||
private readonly WingsJwtHelper WingsJwtHelper;
|
private readonly WingsJwtHelper WingsJwtHelper;
|
||||||
private readonly SecurityLogService SecurityLogService;
|
|
||||||
private readonly AuditLogService AuditLogService;
|
|
||||||
private readonly ErrorLogService ErrorLogService;
|
|
||||||
private readonly NodeService NodeService;
|
private readonly NodeService NodeService;
|
||||||
private readonly DateTimeService DateTimeService;
|
private readonly DateTimeService DateTimeService;
|
||||||
private readonly EventSystem Event;
|
private readonly EventSystem Event;
|
||||||
@@ -46,9 +41,6 @@ public class ServerService
|
|||||||
UserService userService,
|
UserService userService,
|
||||||
ConfigService configService,
|
ConfigService configService,
|
||||||
WingsJwtHelper wingsJwtHelper,
|
WingsJwtHelper wingsJwtHelper,
|
||||||
SecurityLogService securityLogService,
|
|
||||||
AuditLogService auditLogService,
|
|
||||||
ErrorLogService errorLogService,
|
|
||||||
NodeService nodeService,
|
NodeService nodeService,
|
||||||
NodeAllocationRepository nodeAllocationRepository,
|
NodeAllocationRepository nodeAllocationRepository,
|
||||||
DateTimeService dateTimeService,
|
DateTimeService dateTimeService,
|
||||||
@@ -63,9 +55,6 @@ public class ServerService
|
|||||||
UserService = userService;
|
UserService = userService;
|
||||||
ConfigService = configService;
|
ConfigService = configService;
|
||||||
WingsJwtHelper = wingsJwtHelper;
|
WingsJwtHelper = wingsJwtHelper;
|
||||||
SecurityLogService = securityLogService;
|
|
||||||
AuditLogService = auditLogService;
|
|
||||||
ErrorLogService = errorLogService;
|
|
||||||
NodeService = nodeService;
|
NodeService = nodeService;
|
||||||
NodeAllocationRepository = nodeAllocationRepository;
|
NodeAllocationRepository = nodeAllocationRepository;
|
||||||
DateTimeService = dateTimeService;
|
DateTimeService = dateTimeService;
|
||||||
@@ -107,11 +96,7 @@ public class ServerService
|
|||||||
Action = rawSignal
|
Action = rawSignal
|
||||||
});
|
});
|
||||||
|
|
||||||
await AuditLogService.Log(AuditLogType.ChangePowerState, x =>
|
//TODO: AuditLog
|
||||||
{
|
|
||||||
x.Add<Server>(server.Uuid);
|
|
||||||
x.Add<PowerSignal>(rawSignal);
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<ServerBackup> CreateBackup(Server server)
|
public async Task<ServerBackup> CreateBackup(Server server)
|
||||||
@@ -140,12 +125,7 @@ public class ServerService
|
|||||||
Ignore = ""
|
Ignore = ""
|
||||||
});
|
});
|
||||||
|
|
||||||
await AuditLogService.Log(AuditLogType.CreateBackup,
|
//TODO: AuditLog
|
||||||
x =>
|
|
||||||
{
|
|
||||||
x.Add<Server>(server.Uuid);
|
|
||||||
x.Add<ServerBackup>(backup.Uuid);
|
|
||||||
});
|
|
||||||
|
|
||||||
return backup;
|
return backup;
|
||||||
}
|
}
|
||||||
@@ -182,12 +162,7 @@ public class ServerService
|
|||||||
Adapter = "wings"
|
Adapter = "wings"
|
||||||
});
|
});
|
||||||
|
|
||||||
await AuditLogService.Log(AuditLogType.RestoreBackup,
|
//TODO: AuditLog
|
||||||
x =>
|
|
||||||
{
|
|
||||||
x.Add<Server>(server.Uuid);
|
|
||||||
x.Add<ServerBackup>(serverBackup.Uuid);
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task DeleteBackup(Server server, ServerBackup serverBackup)
|
public async Task DeleteBackup(Server server, ServerBackup serverBackup)
|
||||||
@@ -220,13 +195,7 @@ public class ServerService
|
|||||||
|
|
||||||
await Event.Emit("wings.backups.delete", backup);
|
await Event.Emit("wings.backups.delete", backup);
|
||||||
|
|
||||||
await AuditLogService.Log(AuditLogType.DeleteBackup,
|
//TODO: AuditLog
|
||||||
x =>
|
|
||||||
{
|
|
||||||
x.Add<Server>(server.Uuid);
|
|
||||||
x.Add<ServerBackup>(backup.Uuid);
|
|
||||||
}
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<string> DownloadBackup(Server s, ServerBackup serverBackup)
|
public async Task<string> DownloadBackup(Server s, ServerBackup serverBackup)
|
||||||
@@ -239,12 +208,7 @@ public class ServerService
|
|||||||
claims.Add("backup_uuid", serverBackup.Uuid.ToString());
|
claims.Add("backup_uuid", serverBackup.Uuid.ToString());
|
||||||
});
|
});
|
||||||
|
|
||||||
await AuditLogService.Log(AuditLogType.DownloadBackup,
|
//TODO: AuditLog
|
||||||
x =>
|
|
||||||
{
|
|
||||||
x.Add<Server>(server.Uuid);
|
|
||||||
x.Add<ServerBackup>(serverBackup.Uuid);
|
|
||||||
});
|
|
||||||
|
|
||||||
if (server.Node.Ssl)
|
if (server.Node.Ssl)
|
||||||
return $"https://{server.Node.Fqdn}:{server.Node.HttpPort}/download/backup?token={token}";
|
return $"https://{server.Node.Fqdn}:{server.Node.HttpPort}/download/backup?token={token}";
|
||||||
@@ -346,17 +310,14 @@ public class ServerService
|
|||||||
StartOnCompletion = false
|
StartOnCompletion = false
|
||||||
});
|
});
|
||||||
|
|
||||||
await AuditLogService.Log(AuditLogType.CreateServer, x => { x.Add<Server>(newServerData.Uuid); });
|
//TODO: AuditLog
|
||||||
|
|
||||||
return newServerData;
|
return newServerData;
|
||||||
}
|
}
|
||||||
catch (Exception e)
|
catch (Exception e)
|
||||||
{
|
{
|
||||||
await ErrorLogService.Log(e, x =>
|
Logger.Error("Error creating server on wings");
|
||||||
{
|
Logger.Error(e);
|
||||||
x.Add<Server>(newServerData.Uuid);
|
|
||||||
x.Add<Node>(node.Id);
|
|
||||||
});
|
|
||||||
|
|
||||||
ServerRepository.Delete(newServerData); //TODO Remove unsinged table stuff
|
ServerRepository.Delete(newServerData); //TODO Remove unsinged table stuff
|
||||||
|
|
||||||
@@ -373,7 +334,7 @@ public class ServerService
|
|||||||
server.Installing = true;
|
server.Installing = true;
|
||||||
ServerRepository.Update(server);
|
ServerRepository.Update(server);
|
||||||
|
|
||||||
await AuditLogService.Log(AuditLogType.ReinstallServer, x => { x.Add<Server>(server.Uuid); });
|
//TODO: AuditLog
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<Server> SftpServerLogin(int serverId, int id, string password)
|
public async Task<Server> SftpServerLogin(int serverId, int id, string password)
|
||||||
@@ -382,7 +343,7 @@ public class ServerService
|
|||||||
|
|
||||||
if (server == null)
|
if (server == null)
|
||||||
{
|
{
|
||||||
await SecurityLogService.LogSystem(SecurityLogType.SftpBruteForce, x => { x.Add<int>(id); });
|
Logger.Warn($"Detected an sftp bruteforce attempt. ID: {id} Password: {password}", "security");
|
||||||
throw new Exception("Server not found");
|
throw new Exception("Server not found");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
using Logging.Net;
|
using Moonlight.App.Services.Files;
|
||||||
using Moonlight.App.Services.Files;
|
|
||||||
|
|
||||||
namespace Moonlight.App.Services.Sessions;
|
namespace Moonlight.App.Services.Sessions;
|
||||||
|
|
||||||
|
|||||||
@@ -2,12 +2,10 @@
|
|||||||
using JWT.Algorithms;
|
using JWT.Algorithms;
|
||||||
using JWT.Builder;
|
using JWT.Builder;
|
||||||
using JWT.Exceptions;
|
using JWT.Exceptions;
|
||||||
using Logging.Net;
|
|
||||||
using Moonlight.App.Database.Entities;
|
using Moonlight.App.Database.Entities;
|
||||||
using Moonlight.App.Helpers;
|
using Moonlight.App.Helpers;
|
||||||
using Moonlight.App.Models.Misc;
|
using Moonlight.App.Models.Misc;
|
||||||
using Moonlight.App.Repositories;
|
using Moonlight.App.Repositories;
|
||||||
using Moonlight.App.Services.LogServices;
|
|
||||||
using UAParser;
|
using UAParser;
|
||||||
|
|
||||||
namespace Moonlight.App.Services.Sessions;
|
namespace Moonlight.App.Services.Sessions;
|
||||||
@@ -16,8 +14,6 @@ public class IdentityService
|
|||||||
{
|
{
|
||||||
private readonly UserRepository UserRepository;
|
private readonly UserRepository UserRepository;
|
||||||
private readonly CookieService CookieService;
|
private readonly CookieService CookieService;
|
||||||
private readonly SecurityLogService SecurityLogService;
|
|
||||||
private readonly ErrorLogService ErrorLogService;
|
|
||||||
private readonly IHttpContextAccessor HttpContextAccessor;
|
private readonly IHttpContextAccessor HttpContextAccessor;
|
||||||
private readonly string Secret;
|
private readonly string Secret;
|
||||||
|
|
||||||
@@ -27,15 +23,11 @@ public class IdentityService
|
|||||||
CookieService cookieService,
|
CookieService cookieService,
|
||||||
UserRepository userRepository,
|
UserRepository userRepository,
|
||||||
IHttpContextAccessor httpContextAccessor,
|
IHttpContextAccessor httpContextAccessor,
|
||||||
ConfigService configService,
|
ConfigService configService)
|
||||||
SecurityLogService securityLogService,
|
|
||||||
ErrorLogService errorLogService)
|
|
||||||
{
|
{
|
||||||
CookieService = cookieService;
|
CookieService = cookieService;
|
||||||
UserRepository = userRepository;
|
UserRepository = userRepository;
|
||||||
HttpContextAccessor = httpContextAccessor;
|
HttpContextAccessor = httpContextAccessor;
|
||||||
SecurityLogService = securityLogService;
|
|
||||||
ErrorLogService = errorLogService;
|
|
||||||
|
|
||||||
Secret = configService
|
Secret = configService
|
||||||
.GetSection("Moonlight")
|
.GetSection("Moonlight")
|
||||||
@@ -90,15 +82,13 @@ public class IdentityService
|
|||||||
}
|
}
|
||||||
catch (SignatureVerificationException)
|
catch (SignatureVerificationException)
|
||||||
{
|
{
|
||||||
await SecurityLogService.Log(SecurityLogType.ManipulatedJwt, x =>
|
Logger.Warn($"Detected a manipulated JWT: {token}", "security");
|
||||||
{
|
|
||||||
x.Add<string>(token);
|
|
||||||
});
|
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
catch (Exception e)
|
catch (Exception e)
|
||||||
{
|
{
|
||||||
await ErrorLogService.Log(e, x => {});
|
Logger.Error("Error reading jwt");
|
||||||
|
Logger.Error(e);
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -134,7 +124,8 @@ public class IdentityService
|
|||||||
}
|
}
|
||||||
catch (Exception e)
|
catch (Exception e)
|
||||||
{
|
{
|
||||||
await ErrorLogService.Log(e, x => {});
|
Logger.Error("Unexpected error while processing token");
|
||||||
|
Logger.Error(e);
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -78,7 +78,7 @@ public class SmartTranslateService
|
|||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
Logging.Net.Logger.Error(ex);
|
Logger.Error(ex);
|
||||||
return key;
|
return key;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,5 @@
|
|||||||
using Logging.Net;
|
using Moonlight.App.Database.Entities;
|
||||||
using Moonlight.App.Database;
|
using Moonlight.App.Helpers;
|
||||||
using Moonlight.App.Database.Entities;
|
|
||||||
using Moonlight.App.Repositories;
|
using Moonlight.App.Repositories;
|
||||||
using Moonlight.App.Services.Sessions;
|
using Moonlight.App.Services.Sessions;
|
||||||
|
|
||||||
@@ -66,8 +65,6 @@ public class StatisticsCaptureService
|
|||||||
AddEntry("databasesCount", databasesRepo.Get().Count());
|
AddEntry("databasesCount", databasesRepo.Get().Count());
|
||||||
AddEntry("sessionsCount", sessionService.GetAll().Length);
|
AddEntry("sessionsCount", sessionService.GetAll().Length);
|
||||||
}
|
}
|
||||||
|
|
||||||
Logger.Log("Statistics are weird");
|
|
||||||
}
|
}
|
||||||
catch (Exception e)
|
catch (Exception e)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
using Logging.Net;
|
using Microsoft.AspNetCore.Components.Forms;
|
||||||
using Microsoft.AspNetCore.Components.Forms;
|
|
||||||
using Moonlight.App.Database.Entities;
|
using Moonlight.App.Database.Entities;
|
||||||
using Moonlight.App.Events;
|
using Moonlight.App.Events;
|
||||||
using Moonlight.App.Services.Files;
|
using Moonlight.App.Services.Files;
|
||||||
|
|||||||
@@ -1,7 +1,4 @@
|
|||||||
using Moonlight.App.Database.Entities;
|
using Moonlight.App.Repositories;
|
||||||
using Moonlight.App.Models.Misc;
|
|
||||||
using Moonlight.App.Repositories;
|
|
||||||
using Moonlight.App.Services.LogServices;
|
|
||||||
using Moonlight.App.Services.Sessions;
|
using Moonlight.App.Services.Sessions;
|
||||||
using OtpNet;
|
using OtpNet;
|
||||||
|
|
||||||
@@ -11,16 +8,13 @@ public class TotpService
|
|||||||
{
|
{
|
||||||
private readonly IdentityService IdentityService;
|
private readonly IdentityService IdentityService;
|
||||||
private readonly UserRepository UserRepository;
|
private readonly UserRepository UserRepository;
|
||||||
private readonly AuditLogService AuditLogService;
|
|
||||||
|
|
||||||
public TotpService(
|
public TotpService(
|
||||||
IdentityService identityService,
|
IdentityService identityService,
|
||||||
UserRepository userRepository,
|
UserRepository userRepository)
|
||||||
AuditLogService auditLogService)
|
|
||||||
{
|
{
|
||||||
IdentityService = identityService;
|
IdentityService = identityService;
|
||||||
UserRepository = userRepository;
|
UserRepository = userRepository;
|
||||||
AuditLogService = auditLogService;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public Task<bool> Verify(string secret, string code)
|
public Task<bool> Verify(string secret, string code)
|
||||||
@@ -52,10 +46,7 @@ public class TotpService
|
|||||||
|
|
||||||
UserRepository.Update(user);
|
UserRepository.Update(user);
|
||||||
|
|
||||||
await AuditLogService.Log(AuditLogType.EnableTotp, x =>
|
//TODO: AuditLog
|
||||||
{
|
|
||||||
x.Add<User>(user.Email);
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task EnforceTotpLogin()
|
public async Task EnforceTotpLogin()
|
||||||
@@ -74,10 +65,7 @@ public class TotpService
|
|||||||
|
|
||||||
UserRepository.Update(user);
|
UserRepository.Update(user);
|
||||||
|
|
||||||
await AuditLogService.Log(AuditLogType.DisableTotp,x =>
|
//TODO: AuditLog
|
||||||
{
|
|
||||||
x.Add<User>(user.Email);
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private string GenerateSecret()
|
private string GenerateSecret()
|
||||||
|
|||||||
@@ -5,7 +5,6 @@ using Moonlight.App.Exceptions;
|
|||||||
using Moonlight.App.Helpers;
|
using Moonlight.App.Helpers;
|
||||||
using Moonlight.App.Models.Misc;
|
using Moonlight.App.Models.Misc;
|
||||||
using Moonlight.App.Repositories;
|
using Moonlight.App.Repositories;
|
||||||
using Moonlight.App.Services.LogServices;
|
|
||||||
using Moonlight.App.Services.Mail;
|
using Moonlight.App.Services.Mail;
|
||||||
using Moonlight.App.Services.Sessions;
|
using Moonlight.App.Services.Sessions;
|
||||||
|
|
||||||
@@ -15,8 +14,6 @@ public class UserService
|
|||||||
{
|
{
|
||||||
private readonly UserRepository UserRepository;
|
private readonly UserRepository UserRepository;
|
||||||
private readonly TotpService TotpService;
|
private readonly TotpService TotpService;
|
||||||
private readonly SecurityLogService SecurityLogService;
|
|
||||||
private readonly AuditLogService AuditLogService;
|
|
||||||
private readonly MailService MailService;
|
private readonly MailService MailService;
|
||||||
private readonly IdentityService IdentityService;
|
private readonly IdentityService IdentityService;
|
||||||
private readonly IpLocateService IpLocateService;
|
private readonly IpLocateService IpLocateService;
|
||||||
@@ -28,8 +25,6 @@ public class UserService
|
|||||||
UserRepository userRepository,
|
UserRepository userRepository,
|
||||||
TotpService totpService,
|
TotpService totpService,
|
||||||
ConfigService configService,
|
ConfigService configService,
|
||||||
SecurityLogService securityLogService,
|
|
||||||
AuditLogService auditLogService,
|
|
||||||
MailService mailService,
|
MailService mailService,
|
||||||
IdentityService identityService,
|
IdentityService identityService,
|
||||||
IpLocateService ipLocateService,
|
IpLocateService ipLocateService,
|
||||||
@@ -37,8 +32,6 @@ public class UserService
|
|||||||
{
|
{
|
||||||
UserRepository = userRepository;
|
UserRepository = userRepository;
|
||||||
TotpService = totpService;
|
TotpService = totpService;
|
||||||
SecurityLogService = securityLogService;
|
|
||||||
AuditLogService = auditLogService;
|
|
||||||
MailService = mailService;
|
MailService = mailService;
|
||||||
IdentityService = identityService;
|
IdentityService = identityService;
|
||||||
IpLocateService = ipLocateService;
|
IpLocateService = ipLocateService;
|
||||||
@@ -85,10 +78,7 @@ public class UserService
|
|||||||
|
|
||||||
await MailService.SendMail(user!, "register", values => {});
|
await MailService.SendMail(user!, "register", values => {});
|
||||||
|
|
||||||
await AuditLogService.Log(AuditLogType.Register, x =>
|
//TODO: AuditLog
|
||||||
{
|
|
||||||
x.Add<User>(user.Email);
|
|
||||||
});
|
|
||||||
|
|
||||||
return await GenerateToken(user);
|
return await GenerateToken(user);
|
||||||
}
|
}
|
||||||
@@ -102,11 +92,7 @@ public class UserService
|
|||||||
|
|
||||||
if (user == null)
|
if (user == null)
|
||||||
{
|
{
|
||||||
await SecurityLogService.Log(SecurityLogType.LoginFail, x =>
|
Logger.Warn($"Failed login attempt. Email: {email} Password: {password}", "security");
|
||||||
{
|
|
||||||
x.Add<User>(email);
|
|
||||||
x.Add<string>(password);
|
|
||||||
});
|
|
||||||
throw new DisplayException("Email and password combination not found");
|
throw new DisplayException("Email and password combination not found");
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -115,11 +101,7 @@ public class UserService
|
|||||||
return user.TotpEnabled;
|
return user.TotpEnabled;
|
||||||
}
|
}
|
||||||
|
|
||||||
await SecurityLogService.Log(SecurityLogType.LoginFail, x =>
|
Logger.Warn($"Failed login attempt. Email: {email} Password: {password}", "security");
|
||||||
{
|
|
||||||
x.Add<User>(email);
|
|
||||||
x.Add<string>(password);
|
|
||||||
});
|
|
||||||
throw new DisplayException("Email and password combination not found");;
|
throw new DisplayException("Email and password combination not found");;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -144,28 +126,18 @@ public class UserService
|
|||||||
|
|
||||||
if (totpCodeValid)
|
if (totpCodeValid)
|
||||||
{
|
{
|
||||||
await AuditLogService.Log(AuditLogType.Login, x =>
|
//TODO: AuditLog
|
||||||
{
|
|
||||||
x.Add<User>(email);
|
|
||||||
});
|
|
||||||
return await GenerateToken(user, true);
|
return await GenerateToken(user, true);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
await SecurityLogService.Log(SecurityLogType.LoginFail, x =>
|
Logger.Warn($"Failed login attempt. Email: {email} Password: {password}", "security");
|
||||||
{
|
|
||||||
x.Add<User>(email);
|
|
||||||
x.Add<string>(password);
|
|
||||||
});
|
|
||||||
throw new DisplayException("2FA code invalid");
|
throw new DisplayException("2FA code invalid");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
await AuditLogService.Log(AuditLogType.Login, x =>
|
//TODO: AuditLog
|
||||||
{
|
|
||||||
x.Add<User>(email);
|
|
||||||
});
|
|
||||||
return await GenerateToken(user!, true);
|
return await GenerateToken(user!, true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -178,10 +150,7 @@ public class UserService
|
|||||||
|
|
||||||
if (isSystemAction)
|
if (isSystemAction)
|
||||||
{
|
{
|
||||||
await AuditLogService.LogSystem(AuditLogType.ChangePassword, x=>
|
//TODO: AuditLog
|
||||||
{
|
|
||||||
x.Add<User>(user.Email);
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@@ -194,10 +163,7 @@ public class UserService
|
|||||||
values.Add("Location", location);
|
values.Add("Location", location);
|
||||||
});
|
});
|
||||||
|
|
||||||
await AuditLogService.Log(AuditLogType.ChangePassword, x =>
|
//TODO: AuditLog
|
||||||
{
|
|
||||||
x.Add<User>(user.Email);
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -207,28 +173,18 @@ public class UserService
|
|||||||
|
|
||||||
if (user == null)
|
if (user == null)
|
||||||
{
|
{
|
||||||
await SecurityLogService.LogSystem(SecurityLogType.SftpBruteForce, x =>
|
Logger.Warn($"Detected an sftp bruteforce attempt. ID: {id} Password: {password}", "security");
|
||||||
{
|
|
||||||
x.Add<int>(id);
|
|
||||||
});
|
|
||||||
|
|
||||||
throw new Exception("Invalid username");
|
throw new Exception("Invalid username");
|
||||||
}
|
}
|
||||||
|
|
||||||
if (BCrypt.Net.BCrypt.Verify(password, user.Password))
|
if (BCrypt.Net.BCrypt.Verify(password, user.Password))
|
||||||
{
|
{
|
||||||
await AuditLogService.LogSystem(AuditLogType.Login, x =>
|
//TODO: AuditLog
|
||||||
{
|
|
||||||
x.Add<User>(user.Email);
|
|
||||||
});
|
|
||||||
return user;
|
return user;
|
||||||
}
|
}
|
||||||
|
|
||||||
await SecurityLogService.LogSystem(SecurityLogType.SftpBruteForce, x =>
|
Logger.Warn($"Detected an sftp bruteforce attempt. ID: {id} Password: {password}", "security");
|
||||||
{
|
|
||||||
x.Add<int>(id);
|
|
||||||
x.Add<string>(password);
|
|
||||||
});
|
|
||||||
throw new Exception("Invalid userid or password");
|
throw new Exception("Invalid userid or password");
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -271,7 +227,7 @@ public class UserService
|
|||||||
var newPassword = StringHelper.GenerateString(16);
|
var newPassword = StringHelper.GenerateString(16);
|
||||||
await ChangePassword(user, newPassword, true);
|
await ChangePassword(user, newPassword, true);
|
||||||
|
|
||||||
await AuditLogService.Log(AuditLogType.PasswordReset, x => {});
|
//TODO: AuditLog
|
||||||
|
|
||||||
var location = await IpLocateService.GetLocation();
|
var location = await IpLocateService.GetLocation();
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,4 @@
|
|||||||
using System.Net;
|
using DnsClient;
|
||||||
using DnsClient;
|
|
||||||
using Logging.Net;
|
|
||||||
using Microsoft.EntityFrameworkCore;
|
using Microsoft.EntityFrameworkCore;
|
||||||
using Moonlight.App.ApiClients.CloudPanel;
|
using Moonlight.App.ApiClients.CloudPanel;
|
||||||
using Moonlight.App.ApiClients.CloudPanel.Requests;
|
using Moonlight.App.ApiClients.CloudPanel.Requests;
|
||||||
|
|||||||
@@ -26,7 +26,6 @@
|
|||||||
<PackageReference Include="GravatarSharp.Core" Version="1.0.1.2" />
|
<PackageReference Include="GravatarSharp.Core" Version="1.0.1.2" />
|
||||||
<PackageReference Include="JWT" Version="10.0.2" />
|
<PackageReference Include="JWT" Version="10.0.2" />
|
||||||
<PackageReference Include="LibGit2Sharp" Version="0.27.2" />
|
<PackageReference Include="LibGit2Sharp" Version="0.27.2" />
|
||||||
<PackageReference Include="Logging.Net" Version="1.1.3" />
|
|
||||||
<PackageReference Include="MailKit" Version="4.0.0" />
|
<PackageReference Include="MailKit" Version="4.0.0" />
|
||||||
<PackageReference Include="Mappy.Net" Version="1.0.2" />
|
<PackageReference Include="Mappy.Net" Version="1.0.2" />
|
||||||
<PackageReference Include="Markdig" Version="0.31.0" />
|
<PackageReference Include="Markdig" Version="0.31.0" />
|
||||||
@@ -47,6 +46,9 @@
|
|||||||
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="7.0.0" />
|
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="7.0.0" />
|
||||||
<PackageReference Include="QRCoder" Version="1.4.3" />
|
<PackageReference Include="QRCoder" Version="1.4.3" />
|
||||||
<PackageReference Include="RestSharp" Version="109.0.0-preview.1" />
|
<PackageReference Include="RestSharp" Version="109.0.0-preview.1" />
|
||||||
|
<PackageReference Include="Serilog" Version="3.0.0" />
|
||||||
|
<PackageReference Include="Serilog.Sinks.Console" Version="4.1.1-dev-00910" />
|
||||||
|
<PackageReference Include="Serilog.Sinks.File" Version="5.0.1-dev-00947" />
|
||||||
<PackageReference Include="SSH.NET" Version="2020.0.2" />
|
<PackageReference Include="SSH.NET" Version="2020.0.2" />
|
||||||
<PackageReference Include="UAParser" Version="3.1.47" />
|
<PackageReference Include="UAParser" Version="3.1.47" />
|
||||||
<PackageReference Include="XtermBlazor" Version="1.8.1" />
|
<PackageReference Include="XtermBlazor" Version="1.8.1" />
|
||||||
|
|||||||
@@ -2,7 +2,6 @@ using BlazorDownloadFile;
|
|||||||
using BlazorTable;
|
using BlazorTable;
|
||||||
using CurrieTechnologies.Razor.SweetAlert2;
|
using CurrieTechnologies.Razor.SweetAlert2;
|
||||||
using HealthChecks.UI.Client;
|
using HealthChecks.UI.Client;
|
||||||
using Logging.Net;
|
|
||||||
using Moonlight.App.ApiClients.CloudPanel;
|
using Moonlight.App.ApiClients.CloudPanel;
|
||||||
using Moonlight.App.ApiClients.Daemon;
|
using Moonlight.App.ApiClients.Daemon;
|
||||||
using Moonlight.App.ApiClients.Modrinth;
|
using Moonlight.App.ApiClients.Modrinth;
|
||||||
@@ -24,13 +23,14 @@ using Moonlight.App.Services.Background;
|
|||||||
using Moonlight.App.Services.DiscordBot;
|
using Moonlight.App.Services.DiscordBot;
|
||||||
using Moonlight.App.Services.Files;
|
using Moonlight.App.Services.Files;
|
||||||
using Moonlight.App.Services.Interop;
|
using Moonlight.App.Services.Interop;
|
||||||
using Moonlight.App.Services.LogServices;
|
|
||||||
using Moonlight.App.Services.Mail;
|
using Moonlight.App.Services.Mail;
|
||||||
using Moonlight.App.Services.Minecraft;
|
using Moonlight.App.Services.Minecraft;
|
||||||
using Moonlight.App.Services.Notifications;
|
using Moonlight.App.Services.Notifications;
|
||||||
using Moonlight.App.Services.Sessions;
|
using Moonlight.App.Services.Sessions;
|
||||||
using Moonlight.App.Services.Statistics;
|
using Moonlight.App.Services.Statistics;
|
||||||
using Moonlight.App.Services.SupportChat;
|
using Moonlight.App.Services.SupportChat;
|
||||||
|
using Serilog;
|
||||||
|
using Serilog.Sinks.SystemConsole.Themes;
|
||||||
|
|
||||||
namespace Moonlight
|
namespace Moonlight
|
||||||
{
|
{
|
||||||
@@ -38,7 +38,12 @@ namespace Moonlight
|
|||||||
{
|
{
|
||||||
public static async Task Main(string[] args)
|
public static async Task Main(string[] args)
|
||||||
{
|
{
|
||||||
Logger.UsedLogger = new CacheLogger();
|
Log.Logger = new LoggerConfiguration()
|
||||||
|
.MinimumLevel.Verbose()
|
||||||
|
.Enrich.FromLogContext()
|
||||||
|
.WriteTo.Console(
|
||||||
|
outputTemplate: "{Timestamp:HH:mm:ss} [{Level:u3}] {SourceContext} {Message:lj}{NewLine}{Exception}")
|
||||||
|
.CreateLogger();
|
||||||
|
|
||||||
Logger.Info($"Working dir: {Directory.GetCurrentDirectory()}");
|
Logger.Info($"Working dir: {Directory.GetCurrentDirectory()}");
|
||||||
|
|
||||||
@@ -140,10 +145,6 @@ namespace Moonlight
|
|||||||
builder.Services.AddScoped<SubscriptionAdminService>();
|
builder.Services.AddScoped<SubscriptionAdminService>();
|
||||||
|
|
||||||
// Loggers
|
// Loggers
|
||||||
builder.Services.AddScoped<SecurityLogService>();
|
|
||||||
builder.Services.AddScoped<AuditLogService>();
|
|
||||||
builder.Services.AddScoped<ErrorLogService>();
|
|
||||||
builder.Services.AddScoped<LogService>();
|
|
||||||
builder.Services.AddScoped<MailService>();
|
builder.Services.AddScoped<MailService>();
|
||||||
builder.Services.AddSingleton<TrashMailDetectorService>();
|
builder.Services.AddSingleton<TrashMailDetectorService>();
|
||||||
|
|
||||||
|
|||||||
@@ -8,11 +8,11 @@
|
|||||||
@using Moonlight.App.Services.Interop
|
@using Moonlight.App.Services.Interop
|
||||||
@using Moonlight.App.Services
|
@using Moonlight.App.Services
|
||||||
@using Moonlight.App.Exceptions
|
@using Moonlight.App.Exceptions
|
||||||
@using Logging.Net
|
|
||||||
@using Moonlight.App.Database.Entities
|
@using Moonlight.App.Database.Entities
|
||||||
@using Moonlight.App.Models.Misc
|
@using Moonlight.App.Models.Misc
|
||||||
@using Moonlight.App.Services.Sessions
|
@using Moonlight.App.Services.Sessions
|
||||||
@using System.ComponentModel.DataAnnotations
|
@using System.ComponentModel.DataAnnotations
|
||||||
|
@using Moonlight.App.Helpers
|
||||||
@using Moonlight.App.Models.Forms
|
@using Moonlight.App.Models.Forms
|
||||||
|
|
||||||
@inject AlertService AlertService
|
@inject AlertService AlertService
|
||||||
|
|||||||
@@ -1,66 +0,0 @@
|
|||||||
@using Logging.Net
|
|
||||||
@using Moonlight.App.Services.LogServices
|
|
||||||
@using Moonlight.App.Services.Sessions
|
|
||||||
|
|
||||||
@inherits ErrorBoundary
|
|
||||||
|
|
||||||
@inject ErrorLogService ErrorLogService
|
|
||||||
|
|
||||||
@if (CurrentException is null)
|
|
||||||
{
|
|
||||||
@ChildContent
|
|
||||||
}
|
|
||||||
else if (ErrorContent is not null)
|
|
||||||
{
|
|
||||||
<div class="card card-flush h-md-100">
|
|
||||||
<div class="card-body d-flex flex-column justify-content-between mt-9 bgi-no-repeat bgi-size-cover bgi-position-x-center pb-0">
|
|
||||||
<div class="mb-10">
|
|
||||||
<div class="fs-2hx fw-bold text-gray-800 text-center mb-13">
|
|
||||||
<span class="me-2">
|
|
||||||
<TL>Ooops. This component is crashed</TL>
|
|
||||||
</span>
|
|
||||||
</div>
|
|
||||||
<div class="text-center">
|
|
||||||
<TL>This component is crashed. The error has been reported to the moonlight team</TL>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
<div class="card card-flush h-md-100">
|
|
||||||
<div class="card-body d-flex flex-column justify-content-between mt-9 bgi-no-repeat bgi-size-cover bgi-position-x-center pb-0">
|
|
||||||
<div class="mb-10">
|
|
||||||
<div class="fs-2hx fw-bold text-gray-800 text-center mb-13">
|
|
||||||
<span class="me-2">
|
|
||||||
<TL>Ooops. This component is crashed</TL>
|
|
||||||
</span>
|
|
||||||
</div>
|
|
||||||
<div class="text-center">
|
|
||||||
<TL>This component is crashed. The error has been reported to the moonlight team</TL>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
}
|
|
||||||
|
|
||||||
@code
|
|
||||||
{
|
|
||||||
List<Exception> receivedExceptions = new();
|
|
||||||
|
|
||||||
protected override async Task OnErrorAsync(Exception exception)
|
|
||||||
{
|
|
||||||
receivedExceptions.Add(exception);
|
|
||||||
|
|
||||||
await ErrorLogService.Log(exception, x => {});
|
|
||||||
|
|
||||||
await base.OnErrorAsync(exception);
|
|
||||||
}
|
|
||||||
|
|
||||||
public new void Recover()
|
|
||||||
{
|
|
||||||
receivedExceptions.Clear();
|
|
||||||
base.Recover();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
@using Logging.Net
|
@using Moonlight.App.Services.Sessions
|
||||||
@using Moonlight.App.Services.Sessions
|
@using Moonlight.App.Helpers
|
||||||
|
|
||||||
@inherits ErrorBoundary
|
@inherits ErrorBoundary
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
@using Logging.Net
|
@using Moonlight.App.Exceptions
|
||||||
@using Moonlight.App.Exceptions
|
@using Moonlight.App.Helpers
|
||||||
@using Moonlight.App.Services
|
@using Moonlight.App.Services
|
||||||
@using Moonlight.App.Services.Interop
|
@using Moonlight.App.Services.Interop
|
||||||
@using Moonlight.App.Services.Sessions
|
@using Moonlight.App.Services.Sessions
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
@using Moonlight.App.Services.Interop
|
@using Moonlight.App.Services.Interop
|
||||||
@using Moonlight.App.Exceptions
|
@using Moonlight.App.Exceptions
|
||||||
@using Moonlight.App.Services
|
@using Moonlight.App.Services
|
||||||
@using Logging.Net
|
|
||||||
@using Moonlight.App.ApiClients.CloudPanel
|
@using Moonlight.App.ApiClients.CloudPanel
|
||||||
@using Moonlight.App.ApiClients.Daemon
|
@using Moonlight.App.ApiClients.Daemon
|
||||||
@using Moonlight.App.ApiClients.Modrinth
|
@using Moonlight.App.ApiClients.Modrinth
|
||||||
@using Moonlight.App.ApiClients.Wings
|
@using Moonlight.App.ApiClients.Wings
|
||||||
|
@using Moonlight.App.Helpers
|
||||||
@inherits ErrorBoundaryBase
|
@inherits ErrorBoundaryBase
|
||||||
|
|
||||||
@inject AlertService AlertService
|
@inject AlertService AlertService
|
||||||
@@ -42,7 +42,7 @@ else
|
|||||||
{
|
{
|
||||||
if (ConfigService.DebugMode)
|
if (ConfigService.DebugMode)
|
||||||
{
|
{
|
||||||
Logger.Warn(exception);
|
Logger.Verbose(exception);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (exception is DisplayException displayException)
|
if (exception is DisplayException displayException)
|
||||||
|
|||||||
@@ -1,6 +1,5 @@
|
|||||||
@using Moonlight.App.Helpers.Files
|
@using Moonlight.App.Helpers.Files
|
||||||
@using Moonlight.App.Helpers
|
@using Moonlight.App.Helpers
|
||||||
@using Logging.Net
|
|
||||||
@using Moonlight.App.Services
|
@using Moonlight.App.Services
|
||||||
@using Moonlight.App.Services.Interop
|
@using Moonlight.App.Services.Interop
|
||||||
@using BlazorDownloadFile
|
@using BlazorDownloadFile
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
@using Moonlight.App.Helpers.Files
|
@using Moonlight.App.Helpers.Files
|
||||||
@using Logging.Net
|
|
||||||
|
|
||||||
<div class="badge badge-lg badge-light-primary">
|
<div class="badge badge-lg badge-light-primary">
|
||||||
<div class="d-flex align-items-center flex-wrap">
|
<div class="d-flex align-items-center flex-wrap">
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
@using Moonlight.App.Helpers.Files
|
@using Moonlight.App.Helpers.Files
|
||||||
@using Moonlight.App.Services
|
@using Moonlight.App.Services
|
||||||
@using Moonlight.App.Services.Interop
|
@using Moonlight.App.Services.Interop
|
||||||
@using Logging.Net
|
@using Moonlight.App.Helpers
|
||||||
|
|
||||||
@inject ToastService ToastService
|
@inject ToastService ToastService
|
||||||
@inject SmartTranslateService SmartTranslateService
|
@inject SmartTranslateService SmartTranslateService
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
@using Moonlight.App.Helpers.Files
|
@using Moonlight.App.Helpers.Files
|
||||||
@using Logging.Net
|
|
||||||
@using BlazorContextMenu
|
@using BlazorContextMenu
|
||||||
@using Moonlight.App.Helpers
|
@using Moonlight.App.Helpers
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
@typeparam T
|
@typeparam T
|
||||||
@using Logging.Net
|
|
||||||
@inherits InputBase<T>
|
@inherits InputBase<T>
|
||||||
|
|
||||||
<div class="dropdown w-100">
|
<div class="dropdown w-100">
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
@using Moonlight.App.Helpers.Files
|
@using Moonlight.App.Helpers.Files
|
||||||
@using Moonlight.App.Services
|
@using Moonlight.App.Services
|
||||||
@using Moonlight.App.Services.Interop
|
@using Moonlight.App.Services.Interop
|
||||||
@using Logging.Net
|
|
||||||
|
|
||||||
@inject ToastService ToastService
|
@inject ToastService ToastService
|
||||||
@inject SmartTranslateService SmartTranslateService
|
@inject SmartTranslateService SmartTranslateService
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
@using Moonlight.App.Services.Interop
|
@using Moonlight.App.Services.Interop
|
||||||
@using Logging.Net
|
|
||||||
|
|
||||||
@inject ReCaptchaService ReCaptchaService
|
@inject ReCaptchaService ReCaptchaService
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
@using Microsoft.AspNetCore.Components.Rendering
|
@using Microsoft.AspNetCore.Components.Rendering
|
||||||
@using Logging.Net
|
|
||||||
@using Moonlight.App.Services
|
@using Moonlight.App.Services
|
||||||
|
|
||||||
@inject SmartTranslateService SmartTranslateService
|
@inject SmartTranslateService SmartTranslateService
|
||||||
|
|||||||
@@ -3,10 +3,10 @@
|
|||||||
@using Moonlight.App.Repositories
|
@using Moonlight.App.Repositories
|
||||||
@using Moonlight.App.Repositories.Domains
|
@using Moonlight.App.Repositories.Domains
|
||||||
@using Moonlight.App.Database.Entities
|
@using Moonlight.App.Database.Entities
|
||||||
|
@using Moonlight.App.Helpers
|
||||||
@using Moonlight.App.Models.Misc
|
@using Moonlight.App.Models.Misc
|
||||||
@using Moonlight.App.Services
|
@using Moonlight.App.Services
|
||||||
@using Newtonsoft.Json
|
@using Newtonsoft.Json
|
||||||
@using Logging.Net
|
|
||||||
|
|
||||||
@inject ServerRepository ServerRepository
|
@inject ServerRepository ServerRepository
|
||||||
@inject UserRepository UserRepository
|
@inject UserRepository UserRepository
|
||||||
|
|||||||
@@ -4,9 +4,9 @@
|
|||||||
@using Moonlight.Shared.Components.Navigations
|
@using Moonlight.Shared.Components.Navigations
|
||||||
@using Moonlight.App.Services
|
@using Moonlight.App.Services
|
||||||
@using Moonlight.App.Services.Interop
|
@using Moonlight.App.Services.Interop
|
||||||
@using Logging.Net
|
|
||||||
@using BlazorTable
|
@using BlazorTable
|
||||||
@using Moonlight.App.ApiClients.Wings.Resources
|
@using Moonlight.App.ApiClients.Wings.Resources
|
||||||
|
@using Moonlight.App.Helpers
|
||||||
|
|
||||||
@inject NodeRepository NodeRepository
|
@inject NodeRepository NodeRepository
|
||||||
@inject AlertService AlertService
|
@inject AlertService AlertService
|
||||||
@@ -131,7 +131,8 @@
|
|||||||
}
|
}
|
||||||
catch (Exception e)
|
catch (Exception e)
|
||||||
{
|
{
|
||||||
Logger.Debug(e.Message);
|
Logger.Verbose($"Error fetching status for node '{node.Name}'");
|
||||||
|
Logger.Verbose(e);
|
||||||
}
|
}
|
||||||
|
|
||||||
await InvokeAsync(StateHasChanged);
|
await InvokeAsync(StateHasChanged);
|
||||||
|
|||||||
@@ -1,13 +1,8 @@
|
|||||||
@page "/admin/servers/cleanup"
|
@page "/admin/servers/cleanup"
|
||||||
|
|
||||||
@using Moonlight.App.Services
|
|
||||||
@using Moonlight.App.Models.Misc
|
|
||||||
@using Moonlight.App.Services.LogServices
|
|
||||||
@using Moonlight.App.Events
|
@using Moonlight.App.Events
|
||||||
@using Moonlight.App.Services.Background
|
@using Moonlight.App.Services.Background
|
||||||
|
|
||||||
@inject CleanupService CleanupService
|
@inject CleanupService CleanupService
|
||||||
@inject AuditLogService AuditLogService
|
|
||||||
@inject EventSystem Event
|
@inject EventSystem Event
|
||||||
|
|
||||||
@implements IDisposable
|
@implements IDisposable
|
||||||
|
|||||||
@@ -1,13 +1,13 @@
|
|||||||
@page "/admin/servers/images"
|
@page "/admin/servers/images"
|
||||||
|
|
||||||
@using BlazorTable
|
@using BlazorTable
|
||||||
@using Logging.Net
|
|
||||||
@using Microsoft.EntityFrameworkCore
|
@using Microsoft.EntityFrameworkCore
|
||||||
@using Moonlight.App.Database.Entities
|
@using Moonlight.App.Database.Entities
|
||||||
@using Moonlight.App.Repositories
|
@using Moonlight.App.Repositories
|
||||||
@using Moonlight.App.Services
|
@using Moonlight.App.Services
|
||||||
@using Moonlight.App.Services.Interop
|
@using Moonlight.App.Services.Interop
|
||||||
@using System.Text
|
@using System.Text
|
||||||
|
@using Moonlight.App.Helpers
|
||||||
@using Newtonsoft.Json
|
@using Newtonsoft.Json
|
||||||
|
|
||||||
@inject Repository<Image> ImageRepository
|
@inject Repository<Image> ImageRepository
|
||||||
|
|||||||
@@ -4,8 +4,8 @@
|
|||||||
@using Moonlight.App.Services
|
@using Moonlight.App.Services
|
||||||
@using Microsoft.EntityFrameworkCore
|
@using Microsoft.EntityFrameworkCore
|
||||||
@using Moonlight.App.Exceptions
|
@using Moonlight.App.Exceptions
|
||||||
|
@using Moonlight.App.Helpers
|
||||||
@using Moonlight.App.Services.Interop
|
@using Moonlight.App.Services.Interop
|
||||||
@using Logging.Net
|
|
||||||
@using Moonlight.App.Models.Forms
|
@using Moonlight.App.Models.Forms
|
||||||
|
|
||||||
@inject NodeRepository NodeRepository
|
@inject NodeRepository NodeRepository
|
||||||
|
|||||||
@@ -3,37 +3,18 @@
|
|||||||
@using BlazorTable
|
@using BlazorTable
|
||||||
@using Moonlight.App.Models.Misc
|
@using Moonlight.App.Models.Misc
|
||||||
@using Moonlight.App.Services
|
@using Moonlight.App.Services
|
||||||
@using Moonlight.App.Services.LogServices
|
|
||||||
@using Moonlight.Shared.Components.Navigations
|
@using Moonlight.Shared.Components.Navigations
|
||||||
|
|
||||||
@inject LogService LogService
|
|
||||||
@inject SmartTranslateService SmartTranslateService
|
@inject SmartTranslateService SmartTranslateService
|
||||||
|
|
||||||
<OnlyAdmin>
|
<OnlyAdmin>
|
||||||
<AdminSystemNavigation Index="1"/>
|
<AdminSystemNavigation Index="1"/>
|
||||||
|
|
||||||
<div class="card">
|
|
||||||
<div class="card-body">
|
|
||||||
<LazyLoader Load="Load">
|
|
||||||
<Table TableItem="LogEntry" Items="LogEntries" PageSize="25" TableClass="table table-row-bordered table-row-gray-100 align-middle gs-0 gy-3" TableHeadClass="fw-bold text-muted">
|
|
||||||
<Column TableItem="LogEntry" Title="@(SmartTranslateService.Translate("Time"))" Field="@(x => x.CreatedAt)" Sortable="true" Filterable="false"></Column>
|
|
||||||
<Column TableItem="LogEntry" Title="@(SmartTranslateService.Translate("Log level"))" Field="@(x => x.Level)" Sortable="true" Filterable="false"></Column>
|
|
||||||
<Column TableItem="LogEntry" Title="@(SmartTranslateService.Translate("Log message"))" Field="@(x => x.Message)" Sortable="false" Filterable="true"></Column>
|
|
||||||
<Pager ShowPageNumber="true" ShowTotalCount="true"/>
|
|
||||||
</Table>
|
|
||||||
</LazyLoader>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</OnlyAdmin>
|
</OnlyAdmin>
|
||||||
|
|
||||||
@code
|
@code
|
||||||
{
|
{
|
||||||
private LogEntry[] LogEntries;
|
|
||||||
|
|
||||||
private Task Load(LazyLoader arg)
|
private Task Load(LazyLoader arg)
|
||||||
{
|
{
|
||||||
LogEntries = LogService.GetMessages();
|
|
||||||
|
|
||||||
return Task.CompletedTask;
|
return Task.CompletedTask;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -3,7 +3,6 @@
|
|||||||
@using Moonlight.Shared.Components.Navigations
|
@using Moonlight.Shared.Components.Navigations
|
||||||
@using Moonlight.App.Services.Sessions
|
@using Moonlight.App.Services.Sessions
|
||||||
@using BlazorTable
|
@using BlazorTable
|
||||||
@using Logging.Net
|
|
||||||
@using Moonlight.App.Helpers
|
@using Moonlight.App.Helpers
|
||||||
@using Moonlight.App.Models.Misc
|
@using Moonlight.App.Models.Misc
|
||||||
@using Moonlight.App.Services
|
@using Moonlight.App.Services
|
||||||
|
|||||||
@@ -2,7 +2,6 @@
|
|||||||
|
|
||||||
@using Moonlight.Shared.Components.Navigations
|
@using Moonlight.Shared.Components.Navigations
|
||||||
@using QRCoder
|
@using QRCoder
|
||||||
@using Moonlight.App.Services.LogServices
|
|
||||||
@using Moonlight.App.Services.Sessions
|
@using Moonlight.App.Services.Sessions
|
||||||
@using Moonlight.App.Services
|
@using Moonlight.App.Services
|
||||||
@using Moonlight.App.Services.Interop
|
@using Moonlight.App.Services.Interop
|
||||||
@@ -11,7 +10,6 @@
|
|||||||
@using Moonlight.App.Models.Misc
|
@using Moonlight.App.Models.Misc
|
||||||
|
|
||||||
@inject SmartTranslateService SmartTranslateService
|
@inject SmartTranslateService SmartTranslateService
|
||||||
@inject AuditLogService AuditLogService
|
|
||||||
@inject TotpService TotpService
|
@inject TotpService TotpService
|
||||||
@inject NavigationManager NavigationManager
|
@inject NavigationManager NavigationManager
|
||||||
@inject IdentityService IdentityService
|
@inject IdentityService IdentityService
|
||||||
@@ -257,7 +255,7 @@
|
|||||||
|
|
||||||
private async void Enable()
|
private async void Enable()
|
||||||
{
|
{
|
||||||
await AuditLogService.Log(AuditLogType.EnableTotp, x => x.Add<string>("Totp enabled"));
|
//TODO: AuditLog
|
||||||
await TotpService.Enable();
|
await TotpService.Enable();
|
||||||
TotpEnabled = await TotpService.GetEnabled();
|
TotpEnabled = await TotpService.GetEnabled();
|
||||||
TotpSecret = await TotpService.GetSecret();
|
TotpSecret = await TotpService.GetSecret();
|
||||||
@@ -283,7 +281,7 @@
|
|||||||
|
|
||||||
private async void Disable()
|
private async void Disable()
|
||||||
{
|
{
|
||||||
await AuditLogService.Log(AuditLogType.DisableTotp, x => x.Add<string>("Totp disabled"));
|
//TODO: AuditLog
|
||||||
await TotpService.Disable();
|
await TotpService.Disable();
|
||||||
NavigationManager.NavigateTo(NavigationManager.Uri, true);
|
NavigationManager.NavigateTo(NavigationManager.Uri, true);
|
||||||
}
|
}
|
||||||
@@ -307,7 +305,7 @@
|
|||||||
{
|
{
|
||||||
await UserService.ChangePassword(User, Password);
|
await UserService.ChangePassword(User, Password);
|
||||||
|
|
||||||
await AuditLogService.Log(AuditLogType.PasswordChange, x => x.Add<string>("The password has been set to a new one"));
|
//TODO: AuditLog
|
||||||
|
|
||||||
// Reload to make the user login again
|
// Reload to make the user login again
|
||||||
NavigationManager.NavigateTo(NavigationManager.Uri, true);
|
NavigationManager.NavigateTo(NavigationManager.Uri, true);
|
||||||
|
|||||||
@@ -2,7 +2,6 @@
|
|||||||
@using Task = System.Threading.Tasks.Task
|
@using Task = System.Threading.Tasks.Task
|
||||||
@using Moonlight.App.Repositories.Servers
|
@using Moonlight.App.Repositories.Servers
|
||||||
@using Microsoft.EntityFrameworkCore
|
@using Microsoft.EntityFrameworkCore
|
||||||
@using Logging.Net
|
|
||||||
@using Moonlight.App.Database.Entities
|
@using Moonlight.App.Database.Entities
|
||||||
@using Moonlight.App.Events
|
@using Moonlight.App.Events
|
||||||
@using Moonlight.App.Helpers.Wings
|
@using Moonlight.App.Helpers.Wings
|
||||||
@@ -293,10 +292,6 @@
|
|||||||
await DynamicBackgroundService.Change(Image.BackgroundImageUrl);
|
await DynamicBackgroundService.Change(Image.BackgroundImageUrl);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
|
||||||
{
|
|
||||||
Logger.Debug("Server is null");
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private async Task ReconnectConsole()
|
private async Task ReconnectConsole()
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
@using Moonlight.App.Services
|
@using Moonlight.App.Services
|
||||||
@using Moonlight.App.Services.Addon
|
@using Moonlight.App.Services.Addon
|
||||||
@using Moonlight.App.ApiClients.Modrinth.Resources
|
@using Moonlight.App.ApiClients.Modrinth.Resources
|
||||||
@using Logging.Net
|
@using Moonlight.App.Helpers
|
||||||
@using Moonlight.App.Services.Interop
|
@using Moonlight.App.Services.Interop
|
||||||
|
|
||||||
@inject ServerAddonPluginService AddonPluginService
|
@inject ServerAddonPluginService AddonPluginService
|
||||||
@@ -147,7 +147,8 @@ else
|
|||||||
}
|
}
|
||||||
catch (Exception e)
|
catch (Exception e)
|
||||||
{
|
{
|
||||||
Logger.Info(e.Message);
|
Logger.Warn("Error installing plugin");
|
||||||
|
Logger.Warn(e);
|
||||||
throw;
|
throw;
|
||||||
}
|
}
|
||||||
finally
|
finally
|
||||||
|
|||||||
@@ -1,6 +1,5 @@
|
|||||||
@using Moonlight.App.Services
|
@using Moonlight.App.Services
|
||||||
@using Moonlight.App.Helpers
|
@using Moonlight.App.Helpers
|
||||||
@using Logging.Net
|
|
||||||
@using BlazorContextMenu
|
@using BlazorContextMenu
|
||||||
@using Moonlight.App.Database.Entities
|
@using Moonlight.App.Database.Entities
|
||||||
@using Moonlight.App.Events
|
@using Moonlight.App.Events
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
@using Moonlight.App.Repositories
|
@using Moonlight.App.Repositories
|
||||||
@using Moonlight.Shared.Components.Partials
|
@using Moonlight.Shared.Components.Partials
|
||||||
@using Task = System.Threading.Tasks.Task
|
@using Task = System.Threading.Tasks.Task
|
||||||
@using Logging.Net
|
|
||||||
@using Moonlight.App.Database.Entities
|
@using Moonlight.App.Database.Entities
|
||||||
|
|
||||||
@inject NodeRepository NodeRepository
|
@inject NodeRepository NodeRepository
|
||||||
|
|||||||
@@ -3,7 +3,6 @@
|
|||||||
@using Moonlight.App.Database.Entities
|
@using Moonlight.App.Database.Entities
|
||||||
@using Moonlight.App.Repositories
|
@using Moonlight.App.Repositories
|
||||||
@using Moonlight.App.Repositories.Servers
|
@using Moonlight.App.Repositories.Servers
|
||||||
@using Logging.Net
|
|
||||||
@using Moonlight.App.Helpers
|
@using Moonlight.App.Helpers
|
||||||
@using Moonlight.App.Services.Minecraft
|
@using Moonlight.App.Services.Minecraft
|
||||||
|
|
||||||
|
|||||||
@@ -1,10 +1,6 @@
|
|||||||
@using Moonlight.App.Services
|
@using Moonlight.App.Services
|
||||||
@using Task = System.Threading.Tasks.Task
|
@using Task = System.Threading.Tasks.Task
|
||||||
@using Moonlight.Shared.Components.Partials
|
|
||||||
@using Moonlight.App.Helpers
|
|
||||||
@using Moonlight.App.Repositories
|
|
||||||
@using Moonlight.App.Repositories.Servers
|
@using Moonlight.App.Repositories.Servers
|
||||||
@using Logging.Net
|
|
||||||
@using Moonlight.App.ApiClients.Wings
|
@using Moonlight.App.ApiClients.Wings
|
||||||
@using Moonlight.App.Database.Entities
|
@using Moonlight.App.Database.Entities
|
||||||
|
|
||||||
|
|||||||
@@ -3,7 +3,6 @@
|
|||||||
@using Moonlight.App.Database.Entities
|
@using Moonlight.App.Database.Entities
|
||||||
@using Moonlight.App.Helpers
|
@using Moonlight.App.Helpers
|
||||||
@using Moonlight.App.Services.SupportChat
|
@using Moonlight.App.Services.SupportChat
|
||||||
@using Logging.Net
|
|
||||||
@using System.Text.RegularExpressions
|
@using System.Text.RegularExpressions
|
||||||
@using Moonlight.App.Services.Files
|
@using Moonlight.App.Services.Files
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user