2011-07-02 10:56:58 +02:00
|
|
|
|
using System;
|
|
|
|
|
using System.Diagnostics;
|
|
|
|
|
using System.Threading;
|
|
|
|
|
using System.Web.Mvc;
|
2011-06-14 03:23:04 +02:00
|
|
|
|
using MvcMiniProfiler;
|
2010-10-08 05:35:04 +02:00
|
|
|
|
using NzbDrone.Core.Providers;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Web.Controllers
|
|
|
|
|
{
|
|
|
|
|
public class NotificationController : Controller
|
|
|
|
|
{
|
2011-04-09 01:48:47 +02:00
|
|
|
|
private readonly NotificationProvider _notifications;
|
2010-10-08 05:35:04 +02:00
|
|
|
|
//
|
|
|
|
|
// GET: /Notification/
|
|
|
|
|
|
2011-04-09 01:48:47 +02:00
|
|
|
|
public NotificationController(NotificationProvider notificationProvider)
|
2010-10-08 05:35:04 +02:00
|
|
|
|
{
|
|
|
|
|
_notifications = notificationProvider;
|
|
|
|
|
}
|
|
|
|
|
|
2011-07-02 10:56:58 +02:00
|
|
|
|
[HttpGet]
|
|
|
|
|
public JsonResult Comet(string message)
|
|
|
|
|
{
|
|
|
|
|
MiniProfiler.Stop(true);
|
|
|
|
|
|
|
|
|
|
var currentMessage = GetCurrentMessage();
|
|
|
|
|
|
2011-07-02 19:41:10 +02:00
|
|
|
|
while (message == currentMessage)
|
2011-07-02 10:56:58 +02:00
|
|
|
|
{
|
|
|
|
|
Thread.Sleep(250);
|
|
|
|
|
currentMessage = GetCurrentMessage();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return Json(currentMessage, JsonRequestBehavior.AllowGet);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private string GetCurrentMessage()
|
|
|
|
|
{
|
2011-08-05 06:38:18 +02:00
|
|
|
|
var notes = _notifications.ProgressNotifications;
|
|
|
|
|
|
2011-09-03 03:16:08 +02:00
|
|
|
|
if (_notifications.ProgressNotifications.Count > 0)
|
2011-07-02 10:56:58 +02:00
|
|
|
|
return _notifications.ProgressNotifications[0].CurrentMessage;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return string.Empty;
|
|
|
|
|
}
|
2010-10-08 05:35:04 +02:00
|
|
|
|
}
|
2011-04-10 04:44:01 +02:00
|
|
|
|
}
|