Sonarr/NzbDrone.Core/Controllers/DbConfigController.cs

79 lines
2.0 KiB
C#
Raw Normal View History

2010-09-23 03:19:47 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using log4net;
using NzbDrone.Core.Repository;
using SubSonic.Repository;
namespace NzbDrone.Core.Controllers
{
public class DbConfigController : IConfigController
{
2010-09-24 05:21:45 +00:00
private const string _seriesroots = "SeriesRoots";
2010-09-23 03:19:47 +00:00
private readonly IDiskController _diskController;
private readonly ILog _logger;
private readonly IRepository _sonicRepo;
public DbConfigController(ILog logger, IDiskController diskController, IRepository dataRepository)
{
_logger = logger;
_diskController = diskController;
_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(_seriesroots);
}
set
{
SetValue(_seriesroots, value);
}
2010-09-23 03:19:47 +00:00
}
2010-09-24 05:21:45 +00:00
2010-09-23 03:19:47 +00:00
private string GetValue(string key, object defaultValue, bool makePermanent)
{
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;
}
private void SetValue(string key, string value)
{
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-23 03:19:47 +00:00
_logger.DebugFormat("Writing Setting to file. Key:'{0}' Value:'{1}'", key, value);
2010-09-24 05:21:45 +00:00
_sonicRepo.Add(new Config { Key = key, Value = value });
2010-09-23 03:19:47 +00:00
}
}
}