mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 08:22:35 +01:00
48 lines
1.2 KiB
C#
48 lines
1.2 KiB
C#
using System.Threading;
|
|
using System.Web.Mvc;
|
|
using System.Web.UI;
|
|
using NzbDrone.Core.Providers;
|
|
using StackExchange.Profiling;
|
|
|
|
namespace NzbDrone.Web.Controllers
|
|
{
|
|
public class NotificationController : Controller
|
|
{
|
|
private readonly NotificationProvider _notificationProvider;
|
|
|
|
//
|
|
// GET: /Notification/
|
|
|
|
public NotificationController(NotificationProvider notificationProvider)
|
|
{
|
|
_notificationProvider = notificationProvider;
|
|
}
|
|
|
|
[HttpGet]
|
|
[OutputCache(NoStore = true, Location = OutputCacheLocation.None)]
|
|
public JsonResult Comet(string message)
|
|
{
|
|
MiniProfiler.Stop(true);
|
|
|
|
var currentMessage = GetCurrentMessage();
|
|
|
|
while (message == currentMessage)
|
|
{
|
|
Thread.Sleep(250);
|
|
currentMessage = GetCurrentMessage();
|
|
}
|
|
|
|
return Json(currentMessage, JsonRequestBehavior.AllowGet);
|
|
}
|
|
|
|
private string GetCurrentMessage()
|
|
{
|
|
var notification = _notificationProvider.GetCurrent();
|
|
|
|
if (notification != null)
|
|
return notification.CurrentMessage;
|
|
|
|
return string.Empty;
|
|
}
|
|
}
|
|
} |