2010-10-07 20:35:04 -07:00
|
|
|
using System;
|
2010-10-11 19:49:27 -07:00
|
|
|
using System.Linq;
|
2010-10-07 20:35:04 -07:00
|
|
|
using System.Collections.Generic;
|
2010-10-20 18:49:23 -07:00
|
|
|
using NzbDrone.Core.Model.Notification;
|
2010-10-07 20:35:04 -07:00
|
|
|
|
|
|
|
namespace NzbDrone.Core.Providers
|
|
|
|
{
|
|
|
|
class NotificationProvider : INotificationProvider
|
|
|
|
{
|
|
|
|
private readonly Dictionary<Guid, BasicNotification> _basicNotifications = new Dictionary<Guid, BasicNotification>();
|
2010-10-11 19:49:27 -07:00
|
|
|
private Dictionary<Guid, ProgressNotification> _progressNotification = new Dictionary<Guid, ProgressNotification>();
|
2010-10-07 20:35:04 -07:00
|
|
|
private readonly Object _lock = new object();
|
|
|
|
|
|
|
|
public void Register(ProgressNotification notification)
|
|
|
|
{
|
|
|
|
_progressNotification.Add(notification.Id, notification);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void Register(BasicNotification notification)
|
|
|
|
{
|
|
|
|
_basicNotifications.Add(notification.Id, notification);
|
|
|
|
}
|
|
|
|
|
|
|
|
public List<BasicNotification> BasicNotifications
|
|
|
|
{
|
|
|
|
get { return new List<BasicNotification>(_basicNotifications.Values); }
|
|
|
|
}
|
|
|
|
|
2010-10-11 19:49:27 -07:00
|
|
|
public List<ProgressNotification> GetProgressNotifications
|
2010-10-07 20:35:04 -07:00
|
|
|
{
|
2010-11-05 17:43:13 -07:00
|
|
|
get
|
|
|
|
{
|
|
|
|
return new List<ProgressNotification>(_progressNotification.Values.Where(p => p.Status == ProgressNotificationStatus.InProgress));
|
|
|
|
}
|
2010-10-07 20:35:04 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
public void Dismiss(Guid notificationId)
|
|
|
|
{
|
|
|
|
lock (_lock)
|
|
|
|
{
|
|
|
|
if (_basicNotifications.ContainsKey(notificationId))
|
|
|
|
{
|
|
|
|
_basicNotifications.Remove(notificationId);
|
|
|
|
}
|
|
|
|
else if (_progressNotification.ContainsKey(notificationId))
|
|
|
|
{
|
|
|
|
_progressNotification.Remove(notificationId);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|