jellyfin/Emby.Notifications/NotificationManager.cs

206 lines
6.9 KiB
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using MediaBrowser.Common.Configuration;
2014-07-02 14:34:08 -04:00
using MediaBrowser.Common.Extensions;
2014-04-26 23:42:05 -04:00
using MediaBrowser.Controller.Configuration;
using MediaBrowser.Controller.Entities;
2014-04-25 16:15:50 -04:00
using MediaBrowser.Controller.Library;
using MediaBrowser.Controller.Notifications;
2018-09-12 13:26:21 -04:00
using MediaBrowser.Model.Dto;
using MediaBrowser.Model.Notifications;
using Microsoft.Extensions.Logging;
2014-04-25 16:15:50 -04:00
2018-09-12 13:26:21 -04:00
namespace Emby.Notifications
2014-04-25 16:15:50 -04:00
{
public class NotificationManager : INotificationManager
{
private readonly ILogger _logger;
private readonly IUserManager _userManager;
2014-04-26 23:42:05 -04:00
private readonly IServerConfigurationManager _config;
2014-04-25 16:15:50 -04:00
private INotificationService[] _services;
2014-04-26 23:42:05 -04:00
private INotificationTypeFactory[] _typeFactories;
2014-04-25 16:15:50 -04:00
public NotificationManager(ILoggerFactory loggerFactory, IUserManager userManager, IServerConfigurationManager config)
2014-04-25 16:15:50 -04:00
{
_userManager = userManager;
2014-04-26 23:42:05 -04:00
_config = config;
_logger = loggerFactory.CreateLogger(GetType().Name);
2014-04-25 16:15:50 -04:00
}
2014-07-02 14:34:08 -04:00
private NotificationOptions GetConfiguration()
{
return _config.GetConfiguration<NotificationOptions>("notifications");
}
2014-04-25 16:15:50 -04:00
public Task SendNotification(NotificationRequest request, CancellationToken cancellationToken)
{
return SendNotification(request, null, cancellationToken);
}
public Task SendNotification(NotificationRequest request, BaseItem relatedItem, CancellationToken cancellationToken)
2014-04-25 16:15:50 -04:00
{
2014-04-26 23:42:05 -04:00
var notificationType = request.NotificationType;
2018-09-12 13:26:21 -04:00
var options = string.IsNullOrEmpty(notificationType) ?
2014-04-27 13:54:43 -04:00
null :
2014-07-02 14:34:08 -04:00
GetConfiguration().GetOptions(notificationType);
2014-04-27 13:54:43 -04:00
2014-04-27 15:30:12 -04:00
var users = GetUserIds(request, options)
.Select(i => _userManager.GetUserById(i))
.Where(i => relatedItem == null || relatedItem.IsVisibleStandalone(i))
.ToArray();
2014-04-27 13:54:43 -04:00
2018-09-12 13:26:21 -04:00
var title = request.Name;
var description = request.Description;
2014-04-26 23:42:05 -04:00
var tasks = _services.Where(i => IsEnabled(i, notificationType))
2014-04-30 23:24:55 -04:00
.Select(i => SendNotification(request, i, users, title, description, cancellationToken));
2014-04-25 16:15:50 -04:00
return Task.WhenAll(tasks);
}
2014-04-26 23:42:05 -04:00
private Task SendNotification(NotificationRequest request,
2014-04-25 16:15:50 -04:00
INotificationService service,
IEnumerable<User> users,
2014-04-26 23:42:05 -04:00
string title,
2014-04-30 11:07:02 -04:00
string description,
2014-04-25 16:15:50 -04:00
CancellationToken cancellationToken)
{
users = users.Where(i => IsEnabledForUser(service, i))
.ToList();
2014-04-30 11:07:02 -04:00
var tasks = users.Select(i => SendNotification(request, service, title, description, i, cancellationToken));
2014-04-25 16:15:50 -04:00
return Task.WhenAll(tasks);
}
2018-09-12 13:26:21 -04:00
private IEnumerable<Guid> GetUserIds(NotificationRequest request, NotificationOption options)
2014-04-27 13:54:43 -04:00
{
if (request.SendToUserMode.HasValue)
{
switch (request.SendToUserMode.Value)
{
case SendToUserType.Admins:
2014-12-20 01:06:27 -05:00
return _userManager.Users.Where(i => i.Policy.IsAdministrator)
2018-09-12 13:26:21 -04:00
.Select(i => i.Id);
2014-04-27 13:54:43 -04:00
case SendToUserType.All:
2018-09-12 13:26:21 -04:00
return _userManager.Users.Select(i => i.Id);
2014-04-27 13:54:43 -04:00
case SendToUserType.Custom:
return request.UserIds;
default:
throw new ArgumentException("Unrecognized SendToUserMode: " + request.SendToUserMode.Value);
}
}
2018-09-12 13:26:21 -04:00
if (options != null && !string.IsNullOrEmpty(request.NotificationType))
2014-04-27 13:54:43 -04:00
{
var config = GetConfiguration();
2014-07-17 20:39:07 -04:00
return _userManager.Users
2015-04-01 00:23:34 -04:00
.Where(i => config.IsEnabledToSendToUser(request.NotificationType, i.Id.ToString("N"), i.Policy))
2018-09-12 13:26:21 -04:00
.Select(i => i.Id);
2014-04-27 13:54:43 -04:00
}
2014-04-30 11:07:02 -04:00
return request.UserIds;
2014-04-27 13:54:43 -04:00
}
2014-04-26 23:42:05 -04:00
private async Task SendNotification(NotificationRequest request,
2014-04-25 16:15:50 -04:00
INotificationService service,
2014-04-26 23:42:05 -04:00
string title,
2014-04-30 11:07:02 -04:00
string description,
2014-04-25 16:15:50 -04:00
User user,
CancellationToken cancellationToken)
{
var notification = new UserNotification
{
Date = request.Date,
2014-04-30 11:07:02 -04:00
Description = description,
2014-04-25 16:15:50 -04:00
Level = request.Level,
2014-04-26 23:42:05 -04:00
Name = title,
2014-04-25 16:15:50 -04:00
Url = request.Url,
User = user
};
_logger.LogDebug("Sending notification via {0} to user {1}", service.Name, user.Name);
2014-04-26 23:42:05 -04:00
2014-04-25 16:15:50 -04:00
try
{
await service.SendNotification(notification, cancellationToken).ConfigureAwait(false);
}
catch (Exception ex)
{
2018-12-20 07:11:26 -05:00
_logger.LogError(ex, "Error sending notification to {0}", service.Name);
2014-04-25 16:15:50 -04:00
}
}
private bool IsEnabledForUser(INotificationService service, User user)
{
try
{
return service.IsEnabledForUser(user);
}
catch (Exception ex)
{
2018-12-20 07:11:26 -05:00
_logger.LogError(ex, "Error in IsEnabledForUser");
2014-04-25 16:15:50 -04:00
return false;
}
}
2014-04-26 23:42:05 -04:00
private bool IsEnabled(INotificationService service, string notificationType)
{
2015-09-19 22:06:56 -04:00
if (string.IsNullOrEmpty(notificationType))
{
return true;
}
return GetConfiguration().IsServiceEnabled(service.Name, notificationType);
2014-04-26 23:42:05 -04:00
}
public void AddParts(IEnumerable<INotificationService> services, IEnumerable<INotificationTypeFactory> notificationTypeFactories)
2014-04-25 16:15:50 -04:00
{
_services = services.ToArray();
2014-04-26 23:42:05 -04:00
_typeFactories = notificationTypeFactories.ToArray();
}
2017-08-19 15:43:35 -04:00
public List<NotificationTypeInfo> GetNotificationTypes()
2014-04-26 23:42:05 -04:00
{
var list = _typeFactories.Select(i =>
{
try
{
return i.GetNotificationTypes().ToList();
}
catch (Exception ex)
{
2018-12-20 07:11:26 -05:00
_logger.LogError(ex, "Error in GetNotificationTypes");
2014-04-26 23:42:05 -04:00
return new List<NotificationTypeInfo>();
}
}).SelectMany(i => i).ToList();
2014-07-02 14:34:08 -04:00
var config = GetConfiguration();
2014-04-26 23:42:05 -04:00
foreach (var i in list)
{
2014-07-02 14:34:08 -04:00
i.Enabled = config.IsEnabled(i.Type);
2014-04-26 23:42:05 -04:00
}
return list;
}
2018-09-12 13:26:21 -04:00
public IEnumerable<NameIdPair> GetNotificationServices()
2014-04-26 23:42:05 -04:00
{
2018-09-12 13:26:21 -04:00
return _services.Select(i => new NameIdPair
2014-04-26 23:42:05 -04:00
{
Name = i.Name,
Id = i.Name.GetMD5().ToString("N")
}).OrderBy(i => i.Name);
2014-04-25 16:15:50 -04:00
}
}
}