mirror of https://github.com/ErsatzTV/ErsatzTV.git
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.
32 lines
1.2 KiB
32 lines
1.2 KiB
using ErsatzTV.Core; |
|
using ErsatzTV.Core.Domain; |
|
using ErsatzTV.Core.Interfaces.Repositories; |
|
using Serilog.Core; |
|
|
|
namespace ErsatzTV.Application.Configuration; |
|
|
|
public class UpdateGeneralSettingsHandler : IRequestHandler<UpdateGeneralSettings, Either<BaseError, Unit>> |
|
{ |
|
private readonly IConfigElementRepository _configElementRepository; |
|
private readonly LoggingLevelSwitch _loggingLevelSwitch; |
|
|
|
public UpdateGeneralSettingsHandler( |
|
LoggingLevelSwitch loggingLevelSwitch, |
|
IConfigElementRepository configElementRepository) |
|
{ |
|
_loggingLevelSwitch = loggingLevelSwitch; |
|
_configElementRepository = configElementRepository; |
|
} |
|
|
|
public async Task<Either<BaseError, Unit>> Handle( |
|
UpdateGeneralSettings request, |
|
CancellationToken cancellationToken) => await ApplyUpdate(request.GeneralSettings); |
|
|
|
private async Task<Unit> ApplyUpdate(GeneralSettingsViewModel generalSettings) |
|
{ |
|
await _configElementRepository.Upsert(ConfigElementKey.MinimumLogLevel, generalSettings.MinimumLogLevel); |
|
_loggingLevelSwitch.MinimumLevel = generalSettings.MinimumLogLevel; |
|
|
|
return Unit.Default; |
|
} |
|
}
|
|
|