Sonarr/NzbDrone.Core/Providers/ConfigProvider.cs

86 lines
2.1 KiB
C#
Raw Normal View History

2010-09-23 03:19:47 +00:00
using System;
using log4net;
using NzbDrone.Core.Repository;
using SubSonic.Repository;
namespace NzbDrone.Core.Providers
2010-09-23 03:19:47 +00:00
{
public class ConfigProvider : IConfigProvider
2010-09-23 03:19:47 +00:00
{
private const string SERIES_ROOTS = "SeriesRoots";
2010-09-23 03:19:47 +00:00
private readonly ILog _logger;
private readonly IRepository _sonicRepo;
public ConfigProvider(ILog logger, IRepository dataRepository)
2010-09-23 03:19:47 +00:00
{
_logger = logger;
2010-09-23 03:19:47 +00:00
_sonicRepo = dataRepository;
}
2010-09-24 05:21:45 +00:00
private string GetValue(string key)
2010-09-23 03:19:47 +00:00
{
2010-09-24 05:21:45 +00:00
return GetValue(key, String.Empty, false);
2010-09-23 03:19:47 +00:00
}
2010-09-24 05:21:45 +00:00
public String SeriesRoot
2010-09-23 03:19:47 +00:00
{
2010-09-24 05:21:45 +00:00
get
{
return GetValue(SERIES_ROOTS);
2010-09-24 05:21:45 +00:00
}
set
{
SetValue(SERIES_ROOTS, value);
2010-09-24 05:21:45 +00:00
}
2010-09-23 03:19:47 +00:00
}
2010-09-24 05:21:45 +00:00
public string GetValue(string key, object defaultValue, bool makePermanent)
2010-09-23 03:19:47 +00:00
{
string value;
var dbValue = _sonicRepo.Single<Config>(key);
if (dbValue != null && !String.IsNullOrEmpty(dbValue.Value))
{
return dbValue.Value;
}
_logger.WarnFormat("Unable to find config key '{0}' defaultValue:'{1}'", key, defaultValue);
if (makePermanent)
{
SetValue(key, defaultValue.ToString());
}
value = defaultValue.ToString();
return value;
}
public void SetValue(string key, string value)
2010-09-23 03:19:47 +00:00
{
2010-09-24 05:37:48 +00:00
if (String.IsNullOrEmpty(key)) throw new ArgumentOutOfRangeException("key");
if (value == null) throw new ArgumentNullException("key");
2010-09-24 05:37:48 +00:00
2010-09-23 03:19:47 +00:00
_logger.DebugFormat("Writing Setting to file. Key:'{0}' Value:'{1}'", key, value);
var dbValue = _sonicRepo.Single<Config>(key);
if (dbValue == null)
{
_sonicRepo.Add(new Config { Key = key, Value = value });
}
else
{
dbValue.Value = value;
_sonicRepo.Update(dbValue);
}
2010-09-23 03:19:47 +00:00
}
}
}