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