2019-01-13 19:54:44 +00:00
using System ;
2014-04-25 20:15:50 +00:00
using System.Collections.Generic ;
2014-04-27 03:42:05 +00:00
using System.Linq ;
2013-07-06 21:23:32 +00:00
using System.Threading ;
using System.Threading.Tasks ;
2019-01-13 19:18:07 +00:00
using MediaBrowser.Controller.Library ;
using MediaBrowser.Controller.Net ;
using MediaBrowser.Controller.Notifications ;
2018-09-12 17:26:21 +00:00
using MediaBrowser.Model.Dto ;
2019-01-13 19:18:07 +00:00
using MediaBrowser.Model.Notifications ;
using MediaBrowser.Model.Services ;
2013-07-06 21:23:32 +00:00
2018-09-12 17:26:21 +00:00
namespace Emby.Notifications.Api
2013-07-06 21:23:32 +00:00
{
2014-03-23 20:07:02 +00:00
[Route("/Notifications/{UserId}", "GET", Summary = "Gets notifications")]
2013-07-06 21:23:32 +00:00
public class GetNotifications : IReturn < NotificationResult >
{
[ApiMember(Name = "UserId", Description = "User Id", IsRequired = true, DataType = "string", ParameterType = "path", Verb = "GET")]
2013-07-16 01:33:47 +00:00
public string UserId { get ; set ; }
2013-07-06 21:23:32 +00: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 17:26:21 +00: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 20:07:02 +00:00
[Route("/Notifications/{UserId}/Summary", "GET", Summary = "Gets a notification summary for a user")]
2013-07-06 21:23:32 +00:00
public class GetNotificationsSummary : IReturn < NotificationsSummary >
{
[ApiMember(Name = "UserId", Description = "User Id", IsRequired = true, DataType = "string", ParameterType = "path", Verb = "GET")]
2014-04-25 20:15:50 +00:00
public string UserId { get ; set ; }
2013-07-06 21:23:32 +00:00
}
2014-04-27 03:42:05 +00: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 17:26:21 +00:00
public class GetNotificationServices : IReturn < List < NameIdPair > >
2014-04-27 03:42:05 +00:00
{
}
2014-04-27 04:35:04 +00:00
[Route("/Notifications/Admin", "POST", Summary = "Sends a notification to all admin users")]
2014-04-27 03:42:05 +00:00
public class AddAdminNotification : IReturnVoid
2013-07-06 21:23:32 +00:00
{
2014-04-27 03:42:05 +00: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 21:23:32 +00:00
2014-04-27 03:42:05 +00: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 20:07:02 +00:00
[Route("/Notifications/{UserId}/Read", "POST", Summary = "Marks notifications as read")]
2013-07-06 21:23:32 +00:00
public class MarkRead : IReturnVoid
{
[ApiMember(Name = "UserId", Description = "User Id", IsRequired = true, DataType = "string", ParameterType = "path", Verb = "POST")]
2014-04-25 20:15:50 +00:00
public string UserId { get ; set ; }
2013-07-06 21:23:32 +00: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 20:07:02 +00:00
[Route("/Notifications/{UserId}/Unread", "POST", Summary = "Marks notifications as unread")]
2013-07-06 21:23:32 +00:00
public class MarkUnread : IReturnVoid
{
[ApiMember(Name = "UserId", Description = "User Id", IsRequired = true, DataType = "string", ParameterType = "path", Verb = "POST")]
2014-04-25 20:15:50 +00:00
public string UserId { get ; set ; }
2013-07-06 21:23:32 +00: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-07-04 02:22:57 +00:00
[Authenticated]
2018-09-12 17:26:21 +00:00
public class NotificationsService : IService
2013-07-06 21:23:32 +00:00
{
2014-04-25 20:15:50 +00:00
private readonly INotificationManager _notificationManager ;
2014-04-27 03:42:05 +00:00
private readonly IUserManager _userManager ;
2013-07-06 21:23:32 +00:00
2018-09-12 17:26:21 +00:00
public NotificationsService ( INotificationManager notificationManager , IUserManager userManager )
2013-07-06 21:23:32 +00:00
{
2014-04-25 20:15:50 +00:00
_notificationManager = notificationManager ;
2014-04-27 03:42:05 +00:00
_userManager = userManager ;
2013-07-06 21:23:32 +00:00
}
2014-04-27 03:42:05 +00:00
public object Get ( GetNotificationTypes request )
{
2018-09-12 17:26:21 +00:00
return _notificationManager . GetNotificationTypes ( ) ;
2014-04-27 03:42:05 +00:00
}
public object Get ( GetNotificationServices request )
{
2018-09-12 17:26:21 +00:00
return _notificationManager . GetNotificationServices ( ) . ToList ( ) ;
2014-04-27 03:42:05 +00:00
}
2013-07-06 21:23:32 +00:00
public object Get ( GetNotificationsSummary request )
{
2018-09-12 17:26:21 +00:00
return new NotificationsSummary
{
2013-07-06 21:23:32 +00:00
2018-09-12 17:26:21 +00:00
} ;
2013-07-06 21:23:32 +00:00
}
2018-09-12 17:26:21 +00:00
public Task Post ( AddAdminNotification request )
2014-04-27 03:42:05 +00:00
{
// This endpoint really just exists as post of a real with sickbeard
2018-09-12 17:26:21 +00:00
return AddNotification ( request ) ;
2014-04-27 03:42:05 +00:00
}
2018-09-12 17:26:21 +00:00
private Task AddNotification ( AddAdminNotification request )
2014-04-27 03:42:05 +00:00
{
var notification = new NotificationRequest
{
Date = DateTime . UtcNow ,
Description = request . Description ,
Level = request . Level ,
Name = request . Name ,
Url = request . Url ,
2018-09-12 17:26:21 +00:00
UserIds = _userManager . Users . Where ( i = > i . Policy . IsAdministrator ) . Select ( i = > i . Id ) . ToArray ( )
2014-04-27 03:42:05 +00:00
} ;
2018-09-12 17:26:21 +00:00
return _notificationManager . SendNotification ( notification , CancellationToken . None ) ;
2013-07-06 21:23:32 +00:00
}
public void Post ( MarkRead request )
{
}
public void Post ( MarkUnread request )
{
}
public object Get ( GetNotifications request )
{
2018-09-12 17:26:21 +00:00
return new NotificationResult ( ) ;
2013-07-06 21:23:32 +00:00
}
}
}