diff --git a/Shared/Utilities/Logger.cs b/Shared/Utilities/Logger.cs deleted file mode 100644 index b56087f31..000000000 --- a/Shared/Utilities/Logger.cs +++ /dev/null @@ -1,172 +0,0 @@ -using Remotely.Shared.Enums; -using Remotely.Shared.Services; -using Remotely.Shared.Utilities; -using System; -using System.Diagnostics; -using System.IO; -using System.Linq; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; -using System.Threading; -using System.Threading.Tasks; - -namespace Remotely.Shared.Utilities; - -[Obsolete("Please use ILogger via dependency injection.")] -public static class Logger -{ - private static string? _logDir; - - private static string LogDir - { - get - { - if (!string.IsNullOrWhiteSpace(_logDir)) - { - return _logDir; - } - - if (OperatingSystem.IsWindows()) - { - _logDir = Directory.CreateDirectory(Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.CommonApplicationData), "Remotely", "Logs")).FullName; - } - else - { - _logDir = Directory.CreateDirectory("/var/log/remotely").FullName; - } - return _logDir; - } - } - - private static string LogPath => Path.Combine(LogDir, $"LogFile_{DateTime.Now:yyyy-MM-dd}.log"); - private static SemaphoreSlim WriteLock { get; } = new(1, 1); - public static void Debug(string message, [CallerMemberName] string callerName = "") - { - try - { - WriteLock.Wait(); - - if (EnvironmentHelper.IsDebug) - { - CheckLogFileExists(); - - File.AppendAllText(LogPath, $"{DateTimeOffset.Now:yyyy-MM-dd HH:mm:ss.fff}\t[Debug]\t[{callerName}]\t{message}{Environment.NewLine}"); - } - - System.Diagnostics.Debug.WriteLine(message); - } - catch { } - finally - { - WriteLock.Release(); - } - } - - public static void DeleteLogs() - { - try - { - WriteLock.Wait(); - - if (File.Exists(LogPath)) - { - File.Delete(LogPath); - } - } - catch { } - finally - { - WriteLock.Release(); - } - } - - public static async Task ReadAllLogs() - { - try - { - WriteLock.Wait(); - - CheckLogFileExists(); - - return await File.ReadAllBytesAsync(LogPath); - } - catch (Exception ex) - { - Write(ex); - return Array.Empty(); - } - finally - { - WriteLock.Release(); - } - } - - public static void Write(string message, EventType eventType = EventType.Info, [CallerMemberName] string callerName = "") - { - try - { - WriteLock.Wait(); - - CheckLogFileExists(); - File.AppendAllText(LogPath, $"{DateTimeOffset.Now:yyyy-MM-dd HH:mm:ss.fff}\t[{eventType}]\t[{callerName}]\t{message}{Environment.NewLine}"); - Console.WriteLine(message); - } - catch { } - finally - { - WriteLock.Release(); - } - } - - public static void Write(Exception ex, EventType eventType = EventType.Error, [CallerMemberName] string callerName = "") - { - try - { - WriteLock.Wait(); - - CheckLogFileExists(); - - var exception = ex; - - while (exception != null) - { - File.AppendAllText(LogPath, $"{DateTimeOffset.Now:yyyy-MM-dd HH:mm:ss.fff}\t[{eventType}]\t[{callerName}]\t{exception.Message}\t{exception.StackTrace}\t{exception.Source}{Environment.NewLine}"); - Console.WriteLine(exception.Message); - exception = exception.InnerException; - } - } - catch { } - finally - { - WriteLock.Release(); - } - } - - public static void Write(Exception ex, string message, EventType eventType = EventType.Error, [CallerMemberName] string callerName = "") - { - Write(message, eventType, callerName); - Write(ex, eventType, callerName); - } - - private static void CheckLogFileExists() - { - if (!File.Exists(LogPath)) - { - File.Create(LogPath).Close(); - if (RuntimeInformation.IsOSPlatform(OSPlatform.Linux)) - { - Process.Start("sudo", $"chmod 775 {LogPath}").WaitForExit(); - } - } - if (File.Exists(LogPath)) - { - var fi = new FileInfo(LogPath); - while (fi.Length > 1000000) - { - var content = File.ReadAllLines(LogPath); - File.WriteAllLines(LogPath, content.Skip(10)); - fi = new FileInfo(LogPath); - } - } - } -} diff --git a/Shared/Utilities/PasswordGenerator.cs b/Shared/Utilities/PasswordGenerator.cs deleted file mode 100644 index 372682a01..000000000 --- a/Shared/Utilities/PasswordGenerator.cs +++ /dev/null @@ -1,15 +0,0 @@ -using System; -using System.Security.Cryptography; - -namespace Remotely.Shared.Utilities; - -public static class PasswordGenerator -{ - public static string GeneratePassword(int size) - { - var buffer = new byte[size]; - var rng = RandomNumberGenerator.Create(); - rng.GetNonZeroBytes(buffer); - return Convert.ToBase64String(buffer).Replace("=", ""); - } -}