You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
1.7 KiB
61 lines
1.7 KiB
using System.Web.Mvc;
|
|
|
|
namespace NzbDrone.Web.Models
|
|
{
|
|
public class JsonNotificationResult
|
|
{
|
|
private JsonNotificationResult()
|
|
{
|
|
Text = string.Empty;
|
|
}
|
|
|
|
public string Title { get; set; }
|
|
public string Text { get; set; }
|
|
public NotificationType NotificationType { get; set; }
|
|
|
|
|
|
public static JsonResult Info(string title, string text)
|
|
{
|
|
return GetJsonResult(NotificationType.Info, title, text);
|
|
}
|
|
|
|
public static JsonResult Info(string title)
|
|
{
|
|
return GetJsonResult(NotificationType.Info, title, string.Empty);
|
|
}
|
|
|
|
public static JsonResult Error(string title, string text)
|
|
{
|
|
return GetJsonResult(NotificationType.Error, title, text);
|
|
}
|
|
|
|
public static JsonResult Oops(string text)
|
|
{
|
|
return GetJsonResult(NotificationType.Error, "Oops!", text);
|
|
}
|
|
|
|
public static JsonResult Queued(string task)
|
|
{
|
|
return GetJsonResult(NotificationType.Info, "Added to queue", string.Format("{0} will start soon.", task.Trim()));
|
|
}
|
|
|
|
|
|
public static JsonResult GetJsonResult(NotificationType notificationType, string title, string text)
|
|
{
|
|
return new JsonResult
|
|
{
|
|
Data = new JsonNotificationResult { NotificationType = notificationType, Title = title, Text = text },
|
|
ContentType = null,
|
|
ContentEncoding = null,
|
|
JsonRequestBehavior = JsonRequestBehavior.AllowGet
|
|
};
|
|
}
|
|
}
|
|
|
|
public enum NotificationType
|
|
{
|
|
Info,
|
|
Error
|
|
}
|
|
|
|
} |