2011-04-10 02:44:01 +00:00
|
|
|
|
using System.Web.Mvc;
|
2010-10-08 03:35:04 +00:00
|
|
|
|
using NzbDrone.Core.Providers;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Web.Controllers
|
|
|
|
|
{
|
|
|
|
|
public class NotificationController : Controller
|
|
|
|
|
{
|
2011-04-08 23:48:47 +00:00
|
|
|
|
private readonly NotificationProvider _notifications;
|
2010-10-08 03:35:04 +00:00
|
|
|
|
//
|
|
|
|
|
// GET: /Notification/
|
|
|
|
|
|
2011-04-08 23:48:47 +00:00
|
|
|
|
public NotificationController(NotificationProvider notificationProvider)
|
2010-10-08 03:35:04 +00:00
|
|
|
|
{
|
|
|
|
|
_notifications = notificationProvider;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[HttpGet]
|
|
|
|
|
public JsonResult Index()
|
|
|
|
|
{
|
2010-10-18 06:06:16 +00:00
|
|
|
|
string message = string.Empty;
|
2011-05-13 04:46:26 +00:00
|
|
|
|
|
|
|
|
|
var basic = _notifications.BasicNotifications;
|
|
|
|
|
|
|
|
|
|
if (basic.Count != 0)
|
|
|
|
|
{
|
|
|
|
|
message = basic[0].Title;
|
|
|
|
|
|
|
|
|
|
if (basic[0].AutoDismiss)
|
|
|
|
|
_notifications.Dismiss(basic[0].Id);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
else
|
2010-10-18 06:06:16 +00:00
|
|
|
|
{
|
2011-05-13 04:46:26 +00:00
|
|
|
|
if (_notifications.GetProgressNotifications.Count != 0)
|
|
|
|
|
message = _notifications.GetProgressNotifications[0].CurrentMessage;
|
2010-10-18 06:06:16 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return Json(message, JsonRequestBehavior.AllowGet);
|
2010-10-08 03:35:04 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2011-04-10 02:44:01 +00:00
|
|
|
|
}
|