Files
lux/EgwCoreLib.Lux.Data/Services/Config/ConfGlassService.cs
T
Samuele E. Locatelli (W11-AI) 912af1e60e Aggiunta commenti, part I
2026-03-18 19:27:19 +01:00

111 lines
3.4 KiB
C#

using EgwCoreLib.Lux.Data.DbModel.Config;
using EgwCoreLib.Lux.Data.Repository.Config;
using Microsoft.Extensions.Configuration;
using StackExchange.Redis;
namespace EgwCoreLib.Lux.Data.Services.Config
{
public class ConfGlassService : BaseServ, IConfGlassService
{
#region Public Constructors
public ConfGlassService(
IConfiguration config,
IConnectionMultiplexer redis,
IConfGlassRepository repo) : base(config, redis)
{
_className = "ConfGlass";
_repo = repo;
}
#endregion Public Constructors
#region Public Methods
/// <summary>
/// Eliminazione record
/// </summary>
/// <param name="rec2del"></param>
/// <returns></returns>
public async Task<bool> DeleteAsync(GlassModel rec2del)
{
return await TraceAsync($"{_className}.Delete", async (activity) =>
{
var dbResult = await _repo.GetByIdAsync(rec2del.GlassID);
if (dbResult == null) return false;
// 3. Eseguo la cancellazione
bool success = await _repo.DeleteAsync(dbResult);
// 4. Se ha avuto successo, pulisco la cache
if (success)
{
await ClearCacheAsync($"{_redisBaseKey}:{_className}");
}
return success;
});
}
/// <summary>
/// Elenco completo Glass da DB
/// </summary>
/// <returns></returns>
public async Task<List<GlassModel>> GetAllAsync()
{
// Uso helper TraceAsync che gestisce automaticamente StartActivity, Log e Exception tracking
return await TraceAsync($"{_className}.GetAll", async (activity) =>
{
return await GetOrSetCacheAsync(
$"{_redisBaseKey}:{_className}:ALL",
async () => await _repo.GetAllAsync(),
UltraLongCache
);
});
}
/// <summary>
/// Upsert record Glass (aggiorna o inserisce)
/// </summary>
/// <param name="upsRec"></param>
/// <returns></returns>
public async Task<bool> UpsertAsync(GlassModel upsRec)
{
return await TraceAsync($"{_className}.Upsert", async (activity) =>
{
var currRec = await _repo.GetByIdAsync(upsRec.GlassID);
string operation = "UPDATE";
bool success = false;
if (currRec != null)
{
upsRec.Code = string.IsNullOrEmpty(upsRec.Code) ? $"{upsRec.GlassID:0000}" : upsRec.Code;
success = await _repo.UpdateAsync(upsRec);
}
else
{
operation = "INSERT";
success = await _repo.AddAsync(upsRec);
}
activity?.SetTag("db.operation", operation);
if (success)
{
await ClearCacheAsync($"{_redisBaseKey}:{_className}");
}
return success;
});
}
#endregion Public Methods
#region Private Fields
private readonly string _className;
private readonly IConfGlassRepository _repo;
#endregion Private Fields
}
}