mirror of
https://github.com/9ParsonsB/Pulsar.git
synced 2025-04-05 17:39:39 -04:00
Start working on Explorer Panel Backend now uses polymorphic de/serialization (net9)
58 lines
1.6 KiB
C#
58 lines
1.6 KiB
C#
namespace Pulsar.Features.Status;
|
|
|
|
using Observatory.Framework.Files;
|
|
|
|
public interface IStatusService : IJournalHandler<Status>;
|
|
|
|
public class StatusService
|
|
(
|
|
ILogger<StatusService> logger,
|
|
IOptions<PulsarConfiguration> options,
|
|
IEventHubContext hub
|
|
) : IStatusService
|
|
{
|
|
public string FileName => FileHandlerService.StatusFileName;
|
|
|
|
public async Task HandleFile(string filePath)
|
|
{
|
|
if (!FileHelper.ValidateFile(filePath))
|
|
{
|
|
return;
|
|
}
|
|
|
|
var file = File.Open(filePath, FileMode.Open, FileAccess.Read, FileShare.ReadWrite);
|
|
|
|
if (file.Length < 2)
|
|
{
|
|
logger.LogWarning("File {FilePath} is empty", filePath);
|
|
return;
|
|
}
|
|
|
|
var status = await JsonSerializer.DeserializeAsync<Status>(file);
|
|
|
|
if (status == null)
|
|
{
|
|
logger.LogWarning("Failed to deserialize status file {FilePath}", filePath);
|
|
return;
|
|
}
|
|
|
|
await hub.Clients.All.StatusUpdated(status);
|
|
}
|
|
|
|
public async Task<Status> Get()
|
|
{
|
|
var statusFile = Path.Join(options.Value.JournalDirectory, FileName);
|
|
|
|
if (!FileHelper.ValidateFile(statusFile))
|
|
{
|
|
return new Status();
|
|
}
|
|
|
|
await using var file = File.Open(statusFile, FileMode.Open, FileAccess.Read, FileShare.ReadWrite);
|
|
var status = await JsonSerializer.DeserializeAsync<Status>(file);
|
|
if (status != null) return status;
|
|
|
|
logger.LogWarning("Failed to deserialize status file {StatusFile}", statusFile);
|
|
return new Status();
|
|
}
|
|
} |