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.
23 lines
889 B
23 lines
889 B
using FluentValidation;
|
|
using NzbDrone.Core.Configuration;
|
|
using NzbDrone.Core.Validation.Paths;
|
|
|
|
namespace NzbDrone.Api.Config
|
|
{
|
|
public class MediaManagementConfigModule : NzbDroneConfigModule<MediaManagementConfigResource>
|
|
{
|
|
public MediaManagementConfigModule(IConfigService configService, PathExistsValidator pathExistsValidator)
|
|
: base(configService)
|
|
{
|
|
SharedValidator.RuleFor(c => c.FileChmod).NotEmpty();
|
|
SharedValidator.RuleFor(c => c.FolderChmod).NotEmpty();
|
|
SharedValidator.RuleFor(c => c.RecycleBin).IsValidPath().SetValidator(pathExistsValidator).When(c => !string.IsNullOrWhiteSpace(c.RecycleBin));
|
|
}
|
|
|
|
protected override MediaManagementConfigResource ToResource(IConfigService model)
|
|
{
|
|
return MediaManagementConfigResourceMapper.ToResource(model);
|
|
}
|
|
}
|
|
}
|