2013-09-19 00:24:50 +00:00
|
|
|
|
using NzbDrone.Common.Serializer;
|
2013-05-19 23:17:32 +00:00
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Notifications
|
|
|
|
|
{
|
|
|
|
|
public interface INotificationSettingsProvider
|
|
|
|
|
{
|
|
|
|
|
TSetting Get<TSetting>(INotification indexer) where TSetting : INotifcationSettings, new();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class NotificationSettingsProvider : INotificationSettingsProvider
|
|
|
|
|
{
|
|
|
|
|
private readonly INotificationRepository _notificationRepository;
|
|
|
|
|
|
|
|
|
|
public NotificationSettingsProvider(INotificationRepository notificationRepository)
|
|
|
|
|
{
|
|
|
|
|
_notificationRepository = notificationRepository;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public TSetting Get<TSetting>(INotification indexer) where TSetting : INotifcationSettings, new()
|
|
|
|
|
{
|
|
|
|
|
var indexerDef = _notificationRepository.Find(indexer.Name);
|
|
|
|
|
|
|
|
|
|
if (indexerDef == null || string.IsNullOrWhiteSpace(indexerDef.Settings))
|
|
|
|
|
{
|
|
|
|
|
return new TSetting();
|
|
|
|
|
}
|
|
|
|
|
|
2013-09-19 00:24:50 +00:00
|
|
|
|
return Json.Deserialize<TSetting>(indexerDef.Settings);
|
2013-05-19 23:17:32 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|