You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
recyclarr/src/Recyclarr.Compatibility/ServiceInformation.cs

25 lines
680 B

using Flurl.Http;
using Recyclarr.Config.Models;
using Recyclarr.ServarrApi.System;
using Serilog;
namespace Recyclarr.Compatibility;
public class ServiceInformation(ISystemApiService api, ILogger log) : IServiceInformation
{
public async Task<Version> GetVersion(IServiceConfiguration config)
{
try
{
var status = await api.GetStatus(config);
log.Debug("{Service} Version: {Version}", status.AppName, status.Version);
return new Version(status.Version);
}
catch (FlurlHttpException)
{
log.Error("Unable to obtain service version information");
throw;
}
}
}