jellyfin/Emby.Notifications/Api/NotificationsService.cs

183 lines
6.9 KiB
C#
Raw Normal View History

using System;
2014-04-25 22:15:50 +02:00
using System.Collections.Generic;
2014-04-27 05:42:05 +02:00
using System.Linq;
2013-07-06 23:23:32 +02:00
using System.Threading;
using System.Threading.Tasks;
using MediaBrowser.Controller.Library;
using MediaBrowser.Controller.Net;
using MediaBrowser.Controller.Notifications;
2018-09-12 19:26:21 +02:00
using MediaBrowser.Model.Dto;
using MediaBrowser.Model.Notifications;
using MediaBrowser.Model.Services;
2013-07-06 23:23:32 +02:00
2018-09-12 19:26:21 +02:00
namespace Emby.Notifications.Api
2013-07-06 23:23:32 +02:00
{
2014-03-23 21:07:02 +01:00
[Route("/Notifications/{UserId}", "GET", Summary = "Gets notifications")]
2013-07-06 23:23:32 +02:00
public class GetNotifications : IReturn<NotificationResult>
{
[ApiMember(Name = "UserId", Description = "User Id", IsRequired = true, DataType = "string", ParameterType = "path", Verb = "GET")]
public string UserId { get; set; }
2013-07-06 23:23:32 +02:00
[ApiMember(Name = "IsRead", Description = "An optional filter by IsRead", IsRequired = false, DataType = "bool", ParameterType = "query", Verb = "GET")]
public bool? IsRead { get; set; }
[ApiMember(Name = "StartIndex", Description = "Optional. The record index to start at. All items with a lower index will be dropped from the results.", IsRequired = false, DataType = "int", ParameterType = "query", Verb = "GET")]
public int? StartIndex { get; set; }
[ApiMember(Name = "Limit", Description = "Optional. The maximum number of records to return", IsRequired = false, DataType = "int", ParameterType = "query", Verb = "GET")]
public int? Limit { get; set; }
}
2018-09-12 19:26:21 +02:00
public class Notification
{
public string Id { get; set; }
public string UserId { get; set; }
public DateTime Date { get; set; }
public bool IsRead { get; set; }
public string Name { get; set; }
public string Description { get; set; }
public string Url { get; set; }
public NotificationLevel Level { get; set; }
}
public class NotificationResult
{
public Notification[] Notifications { get; set; }
public int TotalRecordCount { get; set; }
}
public class NotificationsSummary
{
public int UnreadCount { get; set; }
public NotificationLevel MaxUnreadNotificationLevel { get; set; }
}
2014-03-23 21:07:02 +01:00
[Route("/Notifications/{UserId}/Summary", "GET", Summary = "Gets a notification summary for a user")]
2013-07-06 23:23:32 +02:00
public class GetNotificationsSummary : IReturn<NotificationsSummary>
{
[ApiMember(Name = "UserId", Description = "User Id", IsRequired = true, DataType = "string", ParameterType = "path", Verb = "GET")]
2014-04-25 22:15:50 +02:00
public string UserId { get; set; }
2013-07-06 23:23:32 +02:00
}
2014-04-27 05:42:05 +02:00
[Route("/Notifications/Types", "GET", Summary = "Gets notification types")]
public class GetNotificationTypes : IReturn<List<NotificationTypeInfo>>
{
}
[Route("/Notifications/Services", "GET", Summary = "Gets notification types")]
2018-09-12 19:26:21 +02:00
public class GetNotificationServices : IReturn<List<NameIdPair>>
2014-04-27 05:42:05 +02:00
{
}
2014-04-27 06:35:04 +02:00
[Route("/Notifications/Admin", "POST", Summary = "Sends a notification to all admin users")]
2014-04-27 05:42:05 +02:00
public class AddAdminNotification : IReturnVoid
2013-07-06 23:23:32 +02:00
{
2014-04-27 05:42:05 +02:00
[ApiMember(Name = "Name", Description = "The notification's name", IsRequired = true, DataType = "string", ParameterType = "query", Verb = "POST")]
public string Name { get; set; }
[ApiMember(Name = "Description", Description = "The notification's description", IsRequired = true, DataType = "string", ParameterType = "query", Verb = "POST")]
public string Description { get; set; }
2013-07-06 23:23:32 +02:00
2014-04-27 05:42:05 +02:00
[ApiMember(Name = "ImageUrl", Description = "The notification's image url", IsRequired = false, DataType = "string", ParameterType = "query", Verb = "POST")]
public string ImageUrl { get; set; }
[ApiMember(Name = "Url", Description = "The notification's info url", IsRequired = false, DataType = "string", ParameterType = "query", Verb = "POST")]
public string Url { get; set; }
[ApiMember(Name = "Level", Description = "The notification level", IsRequired = false, DataType = "string", ParameterType = "query", Verb = "POST")]
public NotificationLevel Level { get; set; }
}
2014-03-23 21:07:02 +01:00
[Route("/Notifications/{UserId}/Read", "POST", Summary = "Marks notifications as read")]
2013-07-06 23:23:32 +02:00
public class MarkRead : IReturnVoid
{
[ApiMember(Name = "UserId", Description = "User Id", IsRequired = true, DataType = "string", ParameterType = "path", Verb = "POST")]
2014-04-25 22:15:50 +02:00
public string UserId { get; set; }
2013-07-06 23:23:32 +02:00
[ApiMember(Name = "Ids", Description = "A list of notification ids, comma delimited", IsRequired = true, DataType = "string", ParameterType = "query", Verb = "POST", AllowMultiple = true)]
public string Ids { get; set; }
}
2014-03-23 21:07:02 +01:00
[Route("/Notifications/{UserId}/Unread", "POST", Summary = "Marks notifications as unread")]
2013-07-06 23:23:32 +02:00
public class MarkUnread : IReturnVoid
{
[ApiMember(Name = "UserId", Description = "User Id", IsRequired = true, DataType = "string", ParameterType = "path", Verb = "POST")]
2014-04-25 22:15:50 +02:00
public string UserId { get; set; }
2013-07-06 23:23:32 +02:00
[ApiMember(Name = "Ids", Description = "A list of notification ids, comma delimited", IsRequired = true, DataType = "string", ParameterType = "query", Verb = "POST", AllowMultiple = true)]
public string Ids { get; set; }
}
[Authenticated]
2018-09-12 19:26:21 +02:00
public class NotificationsService : IService
2013-07-06 23:23:32 +02:00
{
2014-04-25 22:15:50 +02:00
private readonly INotificationManager _notificationManager;
2014-04-27 05:42:05 +02:00
private readonly IUserManager _userManager;
2013-07-06 23:23:32 +02:00
2018-09-12 19:26:21 +02:00
public NotificationsService(INotificationManager notificationManager, IUserManager userManager)
2013-07-06 23:23:32 +02:00
{
2014-04-25 22:15:50 +02:00
_notificationManager = notificationManager;
2014-04-27 05:42:05 +02:00
_userManager = userManager;
2013-07-06 23:23:32 +02:00
}
2014-04-27 05:42:05 +02:00
public object Get(GetNotificationTypes request)
{
2018-09-12 19:26:21 +02:00
return _notificationManager.GetNotificationTypes();
2014-04-27 05:42:05 +02:00
}
public object Get(GetNotificationServices request)
{
2018-09-12 19:26:21 +02:00
return _notificationManager.GetNotificationServices().ToList();
2014-04-27 05:42:05 +02:00
}
2013-07-06 23:23:32 +02:00
public object Get(GetNotificationsSummary request)
{
2018-09-12 19:26:21 +02:00
return new NotificationsSummary
{
2013-07-06 23:23:32 +02:00
2018-09-12 19:26:21 +02:00
};
2013-07-06 23:23:32 +02:00
}
2018-09-12 19:26:21 +02:00
public Task Post(AddAdminNotification request)
2014-04-27 05:42:05 +02:00
{
// This endpoint really just exists as post of a real with sickbeard
2018-09-12 19:26:21 +02:00
return AddNotification(request);
2014-04-27 05:42:05 +02:00
}
2018-09-12 19:26:21 +02:00
private Task AddNotification(AddAdminNotification request)
2014-04-27 05:42:05 +02:00
{
var notification = new NotificationRequest
{
Date = DateTime.UtcNow,
Description = request.Description,
Level = request.Level,
Name = request.Name,
Url = request.Url,
2018-09-12 19:26:21 +02:00
UserIds = _userManager.Users.Where(i => i.Policy.IsAdministrator).Select(i => i.Id).ToArray()
2014-04-27 05:42:05 +02:00
};
2018-09-12 19:26:21 +02:00
return _notificationManager.SendNotification(notification, CancellationToken.None);
2013-07-06 23:23:32 +02:00
}
public void Post(MarkRead request)
{
}
public void Post(MarkUnread request)
{
}
public object Get(GetNotifications request)
{
2018-09-12 19:26:21 +02:00
return new NotificationResult();
2013-07-06 23:23:32 +02:00
}
}
}