Radarr/NzbDrone.Core/Providers/ConfigProvider.cs

74 lines
2.0 KiB
C#
Raw Normal View History

2010-09-23 03:19:47 +00:00
using System;
2010-10-05 06:21:18 +00:00
using NLog;
using NzbDrone.Core.Entities;
2010-09-23 03:19:47 +00:00
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-10-05 06:21:18 +00:00
private static readonly Logger Logger = LogManager.GetCurrentClassLogger();
2010-09-23 03:19:47 +00:00
private readonly IRepository _sonicRepo;
2010-10-05 06:21:18 +00:00
public ConfigProvider(IRepository dataRepository)
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-28 05:58:49 +00:00
get { return GetValue(SERIES_ROOTS); }
2010-09-24 05:21:45 +00:00
2010-09-28 05:58:49 +00:00
set { SetValue(SERIES_ROOTS, value); }
2010-09-23 03:19:47 +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);
2010-09-28 06:09:24 +00:00
if (dbValue != null && !String.IsNullOrEmpty(dbValue.Value))
return dbValue.Value;
2010-09-23 03:19:47 +00:00
2010-10-05 06:21:18 +00:00
Logger.Debug("Unable to find config key '{0}' defaultValue:'{1}'", key, defaultValue);
2010-09-28 06:09:24 +00:00
if (makePermanent)
SetValue(key, defaultValue.ToString());
2010-09-23 03:19:47 +00:00
value = defaultValue.ToString();
return value;
}
public void SetValue(string key, string value)
2010-09-23 03:19:47 +00:00
{
2010-09-28 06:09:24 +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-10-05 06:21:18 +00:00
Logger.Debug("Writing Setting to file. Key:'{0}' Value:'{1}'", key, value);
2010-09-23 03:19:47 +00:00
var dbValue = _sonicRepo.Single<Config>(key);
2010-09-28 06:09:24 +00:00
if (dbValue == null)
{
2010-10-05 06:21:18 +00:00
_sonicRepo.Add(new Config
{
Key = key,
Value = value
});
2010-09-28 06:09:24 +00:00
}
else
{
dbValue.Value = value;
_sonicRepo.Update(dbValue);
}
2010-09-23 03:19:47 +00:00
}
}
}