2010-10-10 21:00:07 +02:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using NzbDrone.Core.Entities.Notification;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Providers.Fakes
|
|
|
|
|
{
|
|
|
|
|
class FakeNotificationProvider : INotificationProvider
|
|
|
|
|
{
|
|
|
|
|
private readonly Dictionary<Guid, BasicNotification> _basicNotifications = new Dictionary<Guid, BasicNotification>();
|
|
|
|
|
private readonly Dictionary<Guid, ProgressNotification> _progressNotification = new Dictionary<Guid, ProgressNotification>();
|
|
|
|
|
private readonly Object _lock = new object();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ProgressNotification fakeNotification = new ProgressNotification("Updating Series");
|
2010-10-12 04:49:27 +02:00
|
|
|
|
ProgressNotification fakeNotification2 = new ProgressNotification("Updating Series2");
|
2010-10-10 21:00:07 +02:00
|
|
|
|
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-12 04:49:27 +02:00
|
|
|
|
public List<ProgressNotification> GetProgressNotifications
|
2010-10-10 21:00:07 +02:00
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
fakeNotification.Status = NotificationStatus.InProgress;
|
2010-10-12 04:49:27 +02:00
|
|
|
|
fakeNotification.Status = NotificationStatus.InProgress;
|
|
|
|
|
fakeNotification2.CurrentStatus = DateTime.UtcNow.ToString();
|
2010-10-10 21:00:07 +02:00
|
|
|
|
fakeNotification.CurrentStatus = DateTime.Now.ToString();
|
2010-10-18 08:06:16 +02:00
|
|
|
|
return new List<ProgressNotification> { fakeNotification };
|
2010-10-10 21:00:07 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void Dismiss(Guid notificationId)
|
|
|
|
|
{
|
|
|
|
|
lock (_lock)
|
|
|
|
|
{
|
|
|
|
|
if (_basicNotifications.ContainsKey(notificationId))
|
|
|
|
|
{
|
|
|
|
|
_basicNotifications.Remove(notificationId);
|
|
|
|
|
}
|
|
|
|
|
else if (_progressNotification.ContainsKey(notificationId))
|
|
|
|
|
{
|
|
|
|
|
_progressNotification.Remove(notificationId);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|