2010-10-08 03:35:04 +00:00
|
|
|
|
using System;
|
2010-10-12 02:49:27 +00:00
|
|
|
|
using System.Linq;
|
2010-10-08 03:35:04 +00:00
|
|
|
|
using System.Collections.Generic;
|
2010-10-21 01:49:23 +00:00
|
|
|
|
using NzbDrone.Core.Model.Notification;
|
2010-10-08 03:35:04 +00:00
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Providers
|
|
|
|
|
{
|
2011-04-08 23:48:47 +00:00
|
|
|
|
public class NotificationProvider
|
2010-10-08 03:35:04 +00:00
|
|
|
|
{
|
|
|
|
|
private readonly Dictionary<Guid, BasicNotification> _basicNotifications = new Dictionary<Guid, BasicNotification>();
|
2010-10-12 02:49:27 +00:00
|
|
|
|
private Dictionary<Guid, ProgressNotification> _progressNotification = new Dictionary<Guid, ProgressNotification>();
|
2010-10-08 03:35:04 +00:00
|
|
|
|
private readonly Object _lock = new object();
|
|
|
|
|
|
2011-04-08 23:55:23 +00:00
|
|
|
|
public virtual void Register(ProgressNotification notification)
|
2010-10-08 03:35:04 +00:00
|
|
|
|
{
|
|
|
|
|
_progressNotification.Add(notification.Id, notification);
|
|
|
|
|
}
|
|
|
|
|
|
2011-04-08 23:55:23 +00:00
|
|
|
|
public virtual void Register(BasicNotification notification)
|
2010-10-08 03:35:04 +00:00
|
|
|
|
{
|
|
|
|
|
_basicNotifications.Add(notification.Id, notification);
|
|
|
|
|
}
|
|
|
|
|
|
2011-04-08 23:55:23 +00:00
|
|
|
|
public virtual List<BasicNotification> BasicNotifications
|
2010-10-08 03:35:04 +00:00
|
|
|
|
{
|
|
|
|
|
get { return new List<BasicNotification>(_basicNotifications.Values); }
|
|
|
|
|
}
|
|
|
|
|
|
2011-04-08 23:55:23 +00:00
|
|
|
|
public virtual List<ProgressNotification> GetProgressNotifications
|
2010-10-08 03:35:04 +00:00
|
|
|
|
{
|
2010-11-06 00:43:13 +00:00
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return new List<ProgressNotification>(_progressNotification.Values.Where(p => p.Status == ProgressNotificationStatus.InProgress));
|
|
|
|
|
}
|
2010-10-08 03:35:04 +00:00
|
|
|
|
}
|
|
|
|
|
|
2011-04-08 23:55:23 +00:00
|
|
|
|
public virtual void Dismiss(Guid notificationId)
|
2010-10-08 03:35:04 +00:00
|
|
|
|
{
|
|
|
|
|
lock (_lock)
|
|
|
|
|
{
|
|
|
|
|
if (_basicNotifications.ContainsKey(notificationId))
|
|
|
|
|
{
|
|
|
|
|
_basicNotifications.Remove(notificationId);
|
|
|
|
|
}
|
|
|
|
|
else if (_progressNotification.ContainsKey(notificationId))
|
|
|
|
|
{
|
|
|
|
|
_progressNotification.Remove(notificationId);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|