1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-11-06 02:52:41 +01:00
Radarr/NzbDrone.Core/Providers/Fakes/FakeNotificationProvider.cs

59 lines
2.1 KiB
C#
Raw Normal View History

2010-10-10 21:00:07 +02:00
using System;
using System.Collections.Generic;
using NzbDrone.Core.Model.Notification;
2010-10-10 21:00:07 +02:00
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 = ProgressNotificationStatus.InProgress;
fakeNotification.Status = ProgressNotificationStatus.InProgress;
2010-10-12 04:49:27 +02:00
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);
}
}
}
}
}