Radarr/NzbDrone.Core/Providers/Core/ConfigProvider.cs

273 lines
7.0 KiB
C#
Raw Normal View History

2010-09-23 03:19:47 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
2010-10-05 06:21:18 +00:00
using NLog;
using NzbDrone.Core.Model;
using NzbDrone.Core.Repository;
2010-09-23 03:19:47 +00:00
using SubSonic.Repository;
2011-04-04 03:50:12 +00:00
namespace NzbDrone.Core.Providers.Core
2010-09-23 03:19:47 +00:00
{
public class ConfigProvider
2010-09-23 03:19:47 +00:00
{
2010-10-05 06:21:18 +00:00
private static readonly Logger Logger = LogManager.GetCurrentClassLogger();
private readonly IRepository _repository;
2010-09-23 03:19:47 +00:00
public ConfigProvider(IRepository repository)
2010-09-23 03:19:47 +00:00
{
_repository = repository;
2010-09-23 03:19:47 +00:00
}
public IList<Config> All()
{
return _repository.All<Config>().ToList();
}
public ConfigProvider()
{
}
public virtual String ApiKey
2010-09-23 03:19:47 +00:00
{
get { return GetValue("ApiKey"); }
set { SetValue("ApiKey", value); }
2010-09-23 03:19:47 +00:00
}
public virtual String EpisodeNameFormat
{
get { return GetValue("EpisodeNameFormat"); }
set { SetValue("EpisodeNameFormat", value); }
}
public virtual String SeriesRoot
2010-09-23 03:19:47 +00:00
{
get { return GetValue("SeriesRoots"); }
set { SetValue("SeriesRoots", value); }
}
2010-09-24 05:21:45 +00:00
public virtual String NzbMatrixUsername
{
get { return GetValue("NzbMatrixUsername"); }
set { SetValue("NzbMatrixUsername", value); }
}
public virtual String NzbMatrixApiKey
{
get { return GetValue("NzbMatrixApiKey"); }
set { SetValue("NzbMatrixApiKey", value); }
}
public virtual String NzbsOrgUId
{
get { return GetValue("NzbsOrgUId"); }
set { SetValue("NzbsOrgUId", value); }
}
public virtual String NzbsOrgHash
{
get { return GetValue("NzbsOrgHash"); }
set { SetValue("NzbsOrgHash", value); }
}
public virtual String NzbsrusUId
{
get { return GetValue("NzbsrusUId"); }
set { SetValue("NzbsrusUId", value); }
}
public virtual String NzbsrusHash
{
get { return GetValue("NzbsrusHash"); }
set { SetValue("NzbsrusHash", value); }
}
public virtual String NewzbinUsername
{
get { return GetValue("NewzbinUsername"); }
set { SetValue("NewzbinUsername", value); }
}
public virtual String NewzbinPassword
{
get { return GetValue("NewzbinPassword"); }
set { SetValue("NewzbinPassword", value); }
}
public virtual int SyncFrequency
{
get { return GetValueInt("SyncFrequency"); }
set { SetValue("SyncFrequency", value); }
}
public virtual Boolean DownloadPropers
{
get { return GetValueBoolean("DownloadPropers"); }
set { SetValue("DownloadPropers", value); }
}
public virtual Int32 Retention
{
get { return GetValueInt("Retention"); }
set { SetValue("Retention", value); }
}
public virtual String SabHost
{
get { return GetValue("SabHost"); }
set { SetValue("SabHost", value); }
}
public virtual int SabPort
{
get { return GetValueInt("SabPort"); }
set { SetValue("SabPort", value); }
}
public virtual String SabApiKey
{
get { return GetValue("SabApiKey"); }
set { SetValue("SabApiKey", value); }
}
public virtual String SabUsername
{
get { return GetValue("SabUsername"); }
set { SetValue("SabUsername", value); }
}
public virtual String SabPassword
{
get { return GetValue("SabPassword"); }
set { SetValue("SabPassword", value); }
}
public virtual String SabTvCategory
{
get { return GetValue("SabTvCategory"); }
set { SetValue("SabTvCategory", value); }
}
public virtual SabnzbdPriorityType SabTvPriority
{
get { return (SabnzbdPriorityType)GetValueInt("SabTvPriority"); }
set { SetValue("SabTvPriority", (int)value); }
}
2011-05-09 03:31:01 +00:00
public virtual Boolean UseBlackhole
{
2011-05-09 03:31:01 +00:00
get { return GetValueBoolean("UseBlackhole"); }
set { SetValue("UseBlackhole", value); }
}
public virtual String BlackholeDirectory
{
get { return GetValue("BlackholeDirectory"); }
set { SetValue("BlackholeDirectory", value); }
}
public virtual bool UseSeasonFolder
{
get { return GetValueBoolean("Sorting_SeasonFolder", true); }
set { SetValue("Sorting_SeasonFolder", value); }
}
public virtual int DefaultQualityProfile
{
get { return GetValueInt("DefaultQualityProfile", 1); }
set { SetValue("DefaultQualityProfile", value); }
}
private string GetValue(string key)
{
return GetValue(key, String.Empty, false);
2010-09-23 03:19:47 +00:00
}
private bool GetValueBoolean(string key, bool defaultValue = false)
{
return Convert.ToBoolean(GetValue(key, defaultValue, false));
}
private int GetValueInt(string key, int defaultValue = 0)
{
return Convert.ToInt16(GetValue(key, defaultValue, false));
}
public virtual string GetValue(string key, object defaultValue, bool makePermanent)
2010-09-23 03:19:47 +00:00
{
string value;
var dbValue = _repository.Single<Config>(key);
2010-09-23 03:19:47 +00:00
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 virtual void SetValue(string key, Boolean value)
{
SetValue(key, value.ToString());
}
public virtual void SetValue(string key, int value)
{
SetValue(key, value.ToString());
}
public virtual 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 = _repository.Single<Config>(key);
2010-09-28 06:09:24 +00:00
if (dbValue == null)
{
_repository.Add(new Config
2011-04-10 02:44:01 +00:00
{
Key = key,
Value = value
});
2010-09-28 06:09:24 +00:00
}
else
{
dbValue.Value = value;
_repository.Update(dbValue);
}
2010-09-23 03:19:47 +00:00
}
}
}