2011-04-10 04:44:01 +02:00
|
|
|
|
using System.Web.Mvc;
|
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;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[HttpGet]
|
|
|
|
|
public JsonResult Index()
|
|
|
|
|
{
|
2010-10-18 08:06:16 +02:00
|
|
|
|
string message = string.Empty;
|
|
|
|
|
if (_notifications.GetProgressNotifications.Count != 0)
|
|
|
|
|
{
|
2011-04-24 07:48:12 +02:00
|
|
|
|
message = _notifications.GetProgressNotifications[0].CurrentMessage;
|
2010-10-18 08:06:16 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return Json(message, JsonRequestBehavior.AllowGet);
|
2010-10-08 05:35:04 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
2011-04-10 04:44:01 +02:00
|
|
|
|
}
|