2010-10-08 06:35:04 +03:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
2011-04-10 05:44:01 +03:00
|
|
|
using System.Linq;
|
2010-10-21 04:49:23 +03:00
|
|
|
using NzbDrone.Core.Model.Notification;
|
2010-10-08 06:35:04 +03:00
|
|
|
|
|
|
|
namespace NzbDrone.Core.Providers
|
|
|
|
{
|
2011-04-09 02:48:47 +03:00
|
|
|
public class NotificationProvider
|
2010-10-08 06:35:04 +03:00
|
|
|
{
|
|
|
|
|
2011-06-18 20:18:25 +03:00
|
|
|
private static readonly Object _lock = new object();
|
2010-10-08 06:35:04 +03:00
|
|
|
|
2011-06-18 20:18:25 +03:00
|
|
|
private static readonly Dictionary<Guid, ProgressNotification> _progressNotification =
|
2011-04-10 05:44:01 +03:00
|
|
|
new Dictionary<Guid, ProgressNotification>();
|
2010-10-08 06:35:04 +03:00
|
|
|
|
2011-07-02 11:56:58 +03:00
|
|
|
public virtual List<ProgressNotification> ProgressNotifications
|
2010-10-08 06:35:04 +03:00
|
|
|
{
|
2010-11-06 02:43:13 +02:00
|
|
|
get
|
|
|
|
{
|
2011-07-02 20:41:10 +03:00
|
|
|
lock (_lock)
|
|
|
|
{
|
|
|
|
var activeNotification =
|
|
|
|
_progressNotification.Values.Where(p => p.Status == ProgressNotificationStatus.InProgress).
|
|
|
|
ToList();
|
2011-04-24 07:06:34 +03:00
|
|
|
|
2011-07-02 20:41:10 +03:00
|
|
|
if (activeNotification.Count == 0)
|
|
|
|
{
|
|
|
|
//Get notifications that were recently done
|
|
|
|
activeNotification =
|
|
|
|
_progressNotification.Values.Where(p => p.CompletedTime >= DateTime.Now.AddSeconds(-3)).
|
|
|
|
OrderByDescending(c => c.CompletedTime).ToList();
|
2011-04-24 07:06:34 +03:00
|
|
|
|
2011-07-02 20:41:10 +03:00
|
|
|
}
|
2011-04-24 07:06:34 +03:00
|
|
|
|
2011-07-02 20:41:10 +03:00
|
|
|
return activeNotification.ToList();
|
2011-04-24 07:06:34 +03:00
|
|
|
}
|
2010-11-06 02:43:13 +02:00
|
|
|
}
|
2010-10-08 06:35:04 +03:00
|
|
|
}
|
|
|
|
|
2011-04-10 05:44:01 +03:00
|
|
|
public virtual void Register(ProgressNotification notification)
|
|
|
|
{
|
2011-07-02 20:41:10 +03:00
|
|
|
lock (_lock)
|
|
|
|
{
|
|
|
|
_progressNotification.Add(notification.Id, notification);
|
|
|
|
}
|
2011-04-10 05:44:01 +03:00
|
|
|
}
|
2010-10-08 06:35:04 +03:00
|
|
|
}
|
|
|
|
}
|