mirror of
https://github.com/hargata/lubelog.git
synced 2025-12-10 00:46:08 -06:00
154 lines
6.4 KiB
C#
154 lines
6.4 KiB
C#
using CarCareTracker.External.Interfaces;
|
|
using CarCareTracker.Models;
|
|
using Microsoft.Extensions.Caching.Memory;
|
|
using System.Security.Claims;
|
|
|
|
namespace CarCareTracker.Helper
|
|
{
|
|
public interface IConfigHelper
|
|
{
|
|
UserConfig GetUserConfig(ClaimsPrincipal user);
|
|
bool SaveUserConfig(ClaimsPrincipal user, UserConfig configData);
|
|
string GetLogoUrl();
|
|
public bool DeleteUserConfig(int userId);
|
|
}
|
|
public class ConfigHelper : IConfigHelper
|
|
{
|
|
private readonly IConfiguration _config;
|
|
private readonly IUserConfigDataAccess _userConfig;
|
|
private IMemoryCache _cache;
|
|
public ConfigHelper(IConfiguration serverConfig,
|
|
IUserConfigDataAccess userConfig,
|
|
IMemoryCache memoryCache)
|
|
{
|
|
_config = serverConfig;
|
|
_userConfig = userConfig;
|
|
_cache = memoryCache;
|
|
}
|
|
public string GetLogoUrl()
|
|
{
|
|
var logoUrl = _config["LUBELOGGER_LOGO_URL"];
|
|
if (string.IsNullOrWhiteSpace(logoUrl))
|
|
{
|
|
logoUrl = "/defaults/lubelogger_logo.png";
|
|
}
|
|
return logoUrl;
|
|
}
|
|
public bool SaveUserConfig(ClaimsPrincipal user, UserConfig configData)
|
|
{
|
|
var storedUserId = user.FindFirstValue(ClaimTypes.NameIdentifier);
|
|
int userId = 0;
|
|
if (storedUserId != null)
|
|
{
|
|
userId = int.Parse(storedUserId);
|
|
}
|
|
bool isRootUser = user.IsInRole(nameof(UserData.IsRootUser)) || userId == -1;
|
|
if (isRootUser)
|
|
{
|
|
try
|
|
{
|
|
if (!File.Exists(StaticHelper.UserConfigPath))
|
|
{
|
|
//if file doesn't exist it might be because it's running on a mounted volume in docker.
|
|
File.WriteAllText(StaticHelper.UserConfigPath, System.Text.Json.JsonSerializer.Serialize(new UserConfig()));
|
|
}
|
|
var configFileContents = File.ReadAllText(StaticHelper.UserConfigPath);
|
|
var existingUserConfig = System.Text.Json.JsonSerializer.Deserialize<UserConfig>(configFileContents);
|
|
if (existingUserConfig is not null)
|
|
{
|
|
//copy over settings that are off limits on the settings page.
|
|
configData.EnableAuth = existingUserConfig.EnableAuth;
|
|
configData.UserNameHash = existingUserConfig.UserNameHash;
|
|
configData.UserPasswordHash = existingUserConfig.UserPasswordHash;
|
|
}
|
|
else
|
|
{
|
|
configData.EnableAuth = false;
|
|
configData.UserNameHash = string.Empty;
|
|
configData.UserPasswordHash = string.Empty;
|
|
}
|
|
File.WriteAllText(StaticHelper.UserConfigPath, System.Text.Json.JsonSerializer.Serialize(configData));
|
|
_cache.Set<UserConfig>($"userConfig_{userId}", configData);
|
|
return true;
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
return false;
|
|
}
|
|
} else
|
|
{
|
|
var userConfig = new UserConfigData()
|
|
{
|
|
Id = userId,
|
|
UserConfig = configData
|
|
};
|
|
var result = _userConfig.SaveUserConfig(userConfig);
|
|
_cache.Set<UserConfig>($"userConfig_{userId}", configData);
|
|
return result;
|
|
}
|
|
}
|
|
public bool DeleteUserConfig(int userId)
|
|
{
|
|
_cache.Remove($"userConfig_{userId}");
|
|
var result = _userConfig.DeleteUserConfig(userId);
|
|
return result;
|
|
}
|
|
public UserConfig GetUserConfig(ClaimsPrincipal user)
|
|
{
|
|
var serverConfig = new UserConfig
|
|
{
|
|
EnableCsvImports = bool.Parse(_config[nameof(UserConfig.EnableCsvImports)]),
|
|
UseDarkMode = bool.Parse(_config[nameof(UserConfig.UseDarkMode)]),
|
|
UseMPG = bool.Parse(_config[nameof(UserConfig.UseMPG)]),
|
|
UseDescending = bool.Parse(_config[nameof(UserConfig.UseDescending)]),
|
|
EnableAuth = bool.Parse(_config[nameof(UserConfig.EnableAuth)]),
|
|
HideZero = bool.Parse(_config[nameof(UserConfig.HideZero)]),
|
|
UseUKMPG = bool.Parse(_config[nameof(UserConfig.UseUKMPG)]),
|
|
UseMarkDownOnSavedNotes = bool.Parse(_config[nameof(UserConfig.UseMarkDownOnSavedNotes)]),
|
|
UseThreeDecimalGasCost = bool.Parse(_config[nameof(UserConfig.UseThreeDecimalGasCost)]),
|
|
EnableAutoReminderRefresh = bool.Parse(_config[nameof(UserConfig.EnableAutoReminderRefresh)]),
|
|
EnableAutoOdometerInsert = bool.Parse(_config[nameof(UserConfig.EnableAutoOdometerInsert)]),
|
|
VisibleTabs = _config.GetSection("VisibleTabs").Get<List<ImportMode>>(),
|
|
DefaultTab = (ImportMode)int.Parse(_config[nameof(UserConfig.DefaultTab)])
|
|
};
|
|
int userId = 0;
|
|
if (user != null)
|
|
{
|
|
var storedUserId = user.FindFirstValue(ClaimTypes.NameIdentifier);
|
|
if (storedUserId != null)
|
|
{
|
|
userId = int.Parse(storedUserId);
|
|
}
|
|
} else
|
|
{
|
|
return serverConfig;
|
|
}
|
|
return _cache.GetOrCreate<UserConfig>($"userConfig_{userId}", entry =>
|
|
{
|
|
entry.SlidingExpiration = TimeSpan.FromHours(1);
|
|
if (!user.Identity.IsAuthenticated)
|
|
{
|
|
return serverConfig;
|
|
}
|
|
bool isRootUser = user.IsInRole(nameof(UserData.IsRootUser)) || userId == -1;
|
|
if (isRootUser)
|
|
{
|
|
return serverConfig;
|
|
}
|
|
else
|
|
{
|
|
var result = _userConfig.GetUserConfig(userId);
|
|
if (result == null)
|
|
{
|
|
return serverConfig;
|
|
}
|
|
else
|
|
{
|
|
return result.UserConfig;
|
|
}
|
|
}
|
|
});
|
|
}
|
|
}
|
|
}
|