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.
|
|
|
namespace NzbDrone.Core.Organizer
|
|
|
|
{
|
|
|
|
public interface INamingConfigService
|
|
|
|
{
|
|
|
|
NamingConfig GetConfig();
|
|
|
|
void Save(NamingConfig namingConfig);
|
|
|
|
}
|
|
|
|
|
|
|
|
public class NamingConfigService : INamingConfigService
|
|
|
|
{
|
|
|
|
private readonly INamingConfigRepository _repository;
|
|
|
|
|
|
|
|
public NamingConfigService(INamingConfigRepository repository)
|
|
|
|
{
|
|
|
|
_repository = repository;
|
|
|
|
}
|
|
|
|
|
|
|
|
public NamingConfig GetConfig()
|
|
|
|
{
|
|
|
|
var config = _repository.SingleOrDefault();
|
|
|
|
|
|
|
|
if (config == null)
|
|
|
|
{
|
|
|
|
lock (_repository)
|
|
|
|
{
|
|
|
|
config = _repository.SingleOrDefault();
|
|
|
|
|
|
|
|
if (config == null)
|
|
|
|
{
|
|
|
|
_repository.Insert(NamingConfig.Default);
|
|
|
|
config = _repository.Single();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return config;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void Save(NamingConfig namingConfig)
|
|
|
|
{
|
|
|
|
_repository.Upsert(namingConfig);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|