added send to user mode

pull/702/head
Luke Pulverenti 10 years ago
parent bfe76e2077
commit 9a27cbab8c

@ -37,7 +37,6 @@ namespace MediaBrowser.Api.Library
} }
[Route("/Videos/{Id}/Subtitles/{Index}", "GET")] [Route("/Videos/{Id}/Subtitles/{Index}", "GET")]
[Route("/Videos/{Id}/Subtitles/{Index}/stream.srt", "GET")]
[Api(Description = "Gets an external subtitle file")] [Api(Description = "Gets an external subtitle file")]
public class GetSubtitle public class GetSubtitle
{ {

@ -14,42 +14,50 @@ namespace MediaBrowser.Model.Configuration
new NotificationOption new NotificationOption
{ {
Type = NotificationType.TaskFailed.ToString(), Type = NotificationType.TaskFailed.ToString(),
Enabled = true Enabled = true,
SendToUserMode = SendToUserType.Admins
}, },
new NotificationOption new NotificationOption
{ {
Type = NotificationType.ServerRestartRequired.ToString(), Type = NotificationType.ServerRestartRequired.ToString(),
Enabled = true Enabled = true,
SendToUserMode = SendToUserType.Admins
}, },
new NotificationOption new NotificationOption
{ {
Type = NotificationType.ApplicationUpdateAvailable.ToString(), Type = NotificationType.ApplicationUpdateAvailable.ToString(),
Enabled = true Enabled = true,
SendToUserMode = SendToUserType.Admins
}, },
new NotificationOption new NotificationOption
{ {
Type = NotificationType.ApplicationUpdateInstalled.ToString(), Type = NotificationType.ApplicationUpdateInstalled.ToString(),
Enabled = true Enabled = true,
SendToUserMode = SendToUserType.Admins
}, },
new NotificationOption new NotificationOption
{ {
Type = NotificationType.PluginUpdateInstalled.ToString(), Type = NotificationType.PluginUpdateInstalled.ToString(),
Enabled = true Enabled = true,
SendToUserMode = SendToUserType.Admins
}, },
new NotificationOption new NotificationOption
{ {
Type = NotificationType.PluginUninstalled.ToString(), Type = NotificationType.PluginUninstalled.ToString(),
Enabled = true Enabled = true,
SendToUserMode = SendToUserType.Admins
}, },
new NotificationOption new NotificationOption
{ {
Type = NotificationType.InstallationFailed.ToString(), Type = NotificationType.InstallationFailed.ToString(),
Enabled = true Enabled = true,
SendToUserMode = SendToUserType.Admins
}, },
new NotificationOption new NotificationOption
{ {
Type = NotificationType.PluginInstalled.ToString(), Type = NotificationType.PluginInstalled.ToString(),
Enabled = true Enabled = true,
SendToUserMode = SendToUserType.Admins
} }
}; };
} }
@ -82,12 +90,26 @@ namespace MediaBrowser.Model.Configuration
!opt.DisabledMonitorUsers.Contains(userId, StringComparer.OrdinalIgnoreCase); !opt.DisabledMonitorUsers.Contains(userId, StringComparer.OrdinalIgnoreCase);
} }
public bool IsEnabledToSendToUser(string type, string userId) public bool IsEnabledToSendToUser(string type, string userId, UserConfiguration userConfig)
{ {
var opt = GetOptions(type); var opt = GetOptions(type);
return opt != null && opt.Enabled && if (opt != null && opt.Enabled)
!opt.DisabledSendToUsers.Contains(userId, StringComparer.OrdinalIgnoreCase); {
if (opt.SendToUserMode == SendToUserType.All)
{
return true;
}
if (opt.SendToUserMode == SendToUserType.Admins && userConfig.IsAdministrator)
{
return true;
}
return opt.SendToUsers.Contains(userId, StringComparer.OrdinalIgnoreCase);
}
return false;
} }
} }
@ -101,9 +123,9 @@ namespace MediaBrowser.Model.Configuration
public string[] DisabledMonitorUsers { get; set; } public string[] DisabledMonitorUsers { get; set; }
/// <summary> /// <summary>
/// User Ids to not send to (it's opt out) /// User Ids to send to (if SendToUserMode == Custom)
/// </summary> /// </summary>
public string[] DisabledSendToUsers { get; set; } public string[] SendToUsers { get; set; }
/// <summary> /// <summary>
/// Gets or sets a value indicating whether this <see cref="NotificationOption"/> is enabled. /// Gets or sets a value indicating whether this <see cref="NotificationOption"/> is enabled.
@ -122,28 +144,41 @@ namespace MediaBrowser.Model.Configuration
/// </summary> /// </summary>
/// <value>The disabled services.</value> /// <value>The disabled services.</value>
public string[] DisabledServices { get; set; } public string[] DisabledServices { get; set; }
/// <summary>
/// Gets or sets the send to user mode.
/// </summary>
/// <value>The send to user mode.</value>
public SendToUserType SendToUserMode { get; set; }
public NotificationOption() public NotificationOption()
{ {
DisabledServices = new string[] { }; DisabledServices = new string[] { };
DisabledMonitorUsers = new string[] { }; DisabledMonitorUsers = new string[] { };
DisabledSendToUsers = new string[] { }; SendToUsers = new string[] { };
} }
} }
public enum NotificationType public enum NotificationType
{ {
TaskFailed,
InstallationFailed,
NewLibraryContent,
ServerRestartRequired,
ApplicationUpdateAvailable, ApplicationUpdateAvailable,
ApplicationUpdateInstalled, ApplicationUpdateInstalled,
AudioPlayback,
GamePlayback,
InstallationFailed,
PluginInstalled, PluginInstalled,
PluginUpdateInstalled, PluginUpdateInstalled,
PluginUninstalled, PluginUninstalled,
AudioPlayback, NewLibraryContent,
GamePlayback, ServerRestartRequired,
TaskFailed,
VideoPlayback VideoPlayback
} }
public enum SendToUserType
{
All = 0,
Admins = 1,
Custom = 2
}
} }

@ -1,5 +1,6 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using MediaBrowser.Model.Configuration;
namespace MediaBrowser.Model.Notifications namespace MediaBrowser.Model.Notifications
{ {
@ -48,6 +49,8 @@ namespace MediaBrowser.Model.Notifications
public Dictionary<string, string> Variables { get; set; } public Dictionary<string, string> Variables { get; set; }
public SendToUserType? SendToUserMode { get; set; }
public NotificationRequest() public NotificationRequest()
{ {
UserIds = new List<string>(); UserIds = new List<string>();

@ -75,15 +75,8 @@ namespace MediaBrowser.Server.Implementations.EntryPoints.Notifications
var installationInfo = e.Argument.Item1; var installationInfo = e.Argument.Item1;
var userIds = _userManager
.Users
.Where(i => i.Configuration.IsAdministrator && _config.Configuration.NotificationOptions.IsEnabledToSendToUser(type, i.Id.ToString("N")))
.Select(i => i.Id.ToString("N"))
.ToList();
var notification = new NotificationRequest var notification = new NotificationRequest
{ {
UserIds = userIds,
Description = installationInfo.Description, Description = installationInfo.Description,
NotificationType = type NotificationType = type
}; };
@ -100,15 +93,8 @@ namespace MediaBrowser.Server.Implementations.EntryPoints.Notifications
var installationInfo = e.Argument; var installationInfo = e.Argument;
var userIds = _userManager
.Users
.Where(i => i.Configuration.IsAdministrator && _config.Configuration.NotificationOptions.IsEnabledToSendToUser(type, i.Id.ToString("N")))
.Select(i => i.Id.ToString("N"))
.ToList();
var notification = new NotificationRequest var notification = new NotificationRequest
{ {
UserIds = userIds,
Description = installationInfo.description, Description = installationInfo.description,
NotificationType = type NotificationType = type
}; };
@ -129,15 +115,8 @@ namespace MediaBrowser.Server.Implementations.EntryPoints.Notifications
var type = NotificationType.ApplicationUpdateAvailable.ToString(); var type = NotificationType.ApplicationUpdateAvailable.ToString();
var userIds = _userManager
.Users
.Where(i => i.Configuration.IsAdministrator && _config.Configuration.NotificationOptions.IsEnabledToSendToUser(type, i.Id.ToString("N")))
.Select(i => i.Id.ToString("N"))
.ToList();
var notification = new NotificationRequest var notification = new NotificationRequest
{ {
UserIds = userIds,
Description = "Please see mediabrowser3.com for details.", Description = "Please see mediabrowser3.com for details.",
NotificationType = type NotificationType = type
}; };
@ -154,15 +133,8 @@ namespace MediaBrowser.Server.Implementations.EntryPoints.Notifications
var type = NotificationType.ServerRestartRequired.ToString(); var type = NotificationType.ServerRestartRequired.ToString();
var userIds = _userManager
.Users
.Where(i => i.Configuration.IsAdministrator && _config.Configuration.NotificationOptions.IsEnabledToSendToUser(type, i.Id.ToString("N")))
.Select(i => i.Id.ToString("N"))
.ToList();
var notification = new NotificationRequest var notification = new NotificationRequest
{ {
UserIds = userIds,
NotificationType = type NotificationType = type
}; };
@ -173,17 +145,11 @@ namespace MediaBrowser.Server.Implementations.EntryPoints.Notifications
{ {
var user = e.Users.FirstOrDefault(); var user = e.Users.FirstOrDefault();
var userIds = _userManager
.Users
.Where(i => NotifyOnPlayback(e.MediaInfo.MediaType, user, i))
.Select(i => i.Id.ToString("N"))
.ToList();
var item = e.MediaInfo; var item = e.MediaInfo;
var notification = new NotificationRequest var notification = new NotificationRequest
{ {
UserIds = userIds NotificationType = GetPlaybackNotificationType(item.MediaType)
}; };
notification.Variables["ItemName"] = item.Name; notification.Variables["ItemName"] = item.Name;
@ -193,71 +159,23 @@ namespace MediaBrowser.Server.Implementations.EntryPoints.Notifications
await SendNotification(notification).ConfigureAwait(false); await SendNotification(notification).ConfigureAwait(false);
} }
private bool NotifyOnPlayback(string mediaType, User playingUser, User notifiedUser) private string GetPlaybackNotificationType(string mediaType)
{ {
if (string.Equals(mediaType, MediaType.Audio, StringComparison.OrdinalIgnoreCase)) if (string.Equals(mediaType, MediaType.Audio, StringComparison.OrdinalIgnoreCase))
{ {
var type = NotificationType.AudioPlayback.ToString(); return NotificationType.AudioPlayback.ToString();
if (playingUser != null)
{
if (!_config.Configuration.NotificationOptions.IsEnabledToMonitorUser(
type, playingUser.Id.ToString("N")))
{
return false;
}
if (playingUser.Id == notifiedUser.Id)
{
return false;
}
}
return _config.Configuration.NotificationOptions.IsEnabledToSendToUser(type, notifiedUser.Id.ToString("N"));
} }
if (string.Equals(mediaType, MediaType.Game, StringComparison.OrdinalIgnoreCase)) if (string.Equals(mediaType, MediaType.Game, StringComparison.OrdinalIgnoreCase))
{ {
var type = NotificationType.GamePlayback.ToString(); return NotificationType.GamePlayback.ToString();
if (playingUser != null)
{
if (!_config.Configuration.NotificationOptions.IsEnabledToMonitorUser(
type, playingUser.Id.ToString("N")))
{
return false;
}
if (playingUser.Id == notifiedUser.Id)
{
return false;
}
}
return _config.Configuration.NotificationOptions.IsEnabledToSendToUser(type, notifiedUser.Id.ToString("N"));
} }
if (string.Equals(mediaType, MediaType.Video, StringComparison.OrdinalIgnoreCase)) if (string.Equals(mediaType, MediaType.Video, StringComparison.OrdinalIgnoreCase))
{ {
var type = NotificationType.VideoPlayback.ToString(); return NotificationType.VideoPlayback.ToString();
if (playingUser != null)
{
if (!_config.Configuration.NotificationOptions.IsEnabledToMonitorUser(
type, playingUser.Id.ToString("N")))
{
return false;
}
if (playingUser.Id == notifiedUser.Id)
{
return false;
}
}
return _config.Configuration.NotificationOptions.IsEnabledToSendToUser(type, notifiedUser.Id.ToString("N"));
} }
return false; return null;
} }
async void _libraryManager_ItemAdded(object sender, ItemChangeEventArgs e) async void _libraryManager_ItemAdded(object sender, ItemChangeEventArgs e)
@ -266,17 +184,10 @@ namespace MediaBrowser.Server.Implementations.EntryPoints.Notifications
{ {
var type = NotificationType.NewLibraryContent.ToString(); var type = NotificationType.NewLibraryContent.ToString();
var userIds = _userManager
.Users
.Where(i => _config.Configuration.NotificationOptions.IsEnabledToSendToUser(type, i.Id.ToString("N")))
.Select(i => i.Id.ToString("N"))
.ToList();
var item = e.Item; var item = e.Item;
var notification = new NotificationRequest var notification = new NotificationRequest
{ {
UserIds = userIds,
NotificationType = type NotificationType = type
}; };
@ -306,15 +217,8 @@ namespace MediaBrowser.Server.Implementations.EntryPoints.Notifications
{ {
var type = NotificationType.TaskFailed.ToString(); var type = NotificationType.TaskFailed.ToString();
var userIds = _userManager
.Users
.Where(i => i.Configuration.IsAdministrator && _config.Configuration.NotificationOptions.IsEnabledToSendToUser(type, i.Id.ToString("N")))
.Select(i => i.Id.ToString("N"))
.ToList();
var notification = new NotificationRequest var notification = new NotificationRequest
{ {
UserIds = userIds,
Description = result.ErrorMessage, Description = result.ErrorMessage,
Level = NotificationLevel.Error, Level = NotificationLevel.Error,
NotificationType = type NotificationType = type
@ -332,15 +236,8 @@ namespace MediaBrowser.Server.Implementations.EntryPoints.Notifications
var plugin = e.Argument; var plugin = e.Argument;
var userIds = _userManager
.Users
.Where(i => i.Configuration.IsAdministrator && _config.Configuration.NotificationOptions.IsEnabledToSendToUser(type, i.Id.ToString("N")))
.Select(i => i.Id.ToString("N"))
.ToList();
var notification = new NotificationRequest var notification = new NotificationRequest
{ {
UserIds = userIds,
NotificationType = type NotificationType = type
}; };
@ -356,15 +253,8 @@ namespace MediaBrowser.Server.Implementations.EntryPoints.Notifications
var type = NotificationType.InstallationFailed.ToString(); var type = NotificationType.InstallationFailed.ToString();
var userIds = _userManager
.Users
.Where(i => i.Configuration.IsAdministrator && _config.Configuration.NotificationOptions.IsEnabledToSendToUser(type, i.Id.ToString("N")))
.Select(i => i.Id.ToString("N"))
.ToList();
var notification = new NotificationRequest var notification = new NotificationRequest
{ {
UserIds = userIds,
Level = NotificationLevel.Error, Level = NotificationLevel.Error,
Description = e.Exception.Message, Description = e.Exception.Message,
NotificationType = type NotificationType = type

@ -77,6 +77,7 @@
"MaxParentalRatingHelp": "Content with a higher rating will be hidden from this user.", "MaxParentalRatingHelp": "Content with a higher rating will be hidden from this user.",
"LibraryAccessHelp": "Select the media folders to share with this user. Administrators will be able to edit all folders using the metadata manager.", "LibraryAccessHelp": "Select the media folders to share with this user. Administrators will be able to edit all folders using the metadata manager.",
"ButtonDeleteImage": "Delete Image", "ButtonDeleteImage": "Delete Image",
"LabelSelectUsers": "Select users:",
"ButtonUpload": "Upload", "ButtonUpload": "Upload",
"HeaderUploadNewImage": "Upload New Image", "HeaderUploadNewImage": "Upload New Image",
"LabelDropImageHere": "Drop Image Here", "LabelDropImageHere": "Drop Image Here",
@ -579,5 +580,8 @@
"CategorySystem": "System", "CategorySystem": "System",
"LabelMessageTitle": "Message title:", "LabelMessageTitle": "Message title:",
"LabelAvailableTokens": "Available tokens:", "LabelAvailableTokens": "Available tokens:",
"AdditionalNotificationServices": "Browse the plugin catalog to install additional notification services." "AdditionalNotificationServices": "Browse the plugin catalog to install additional notification services.",
"OptionAllUsers": "All users",
"OptionAdminUsers": "Administrators",
"OptionCustomUsers": "Custom"
} }

@ -1,4 +1,5 @@
using MediaBrowser.Controller.Localization; using MediaBrowser.Controller;
using MediaBrowser.Controller.Localization;
using MediaBrowser.Controller.Notifications; using MediaBrowser.Controller.Notifications;
using MediaBrowser.Model.Configuration; using MediaBrowser.Model.Configuration;
using MediaBrowser.Model.Notifications; using MediaBrowser.Model.Notifications;
@ -11,22 +12,18 @@ namespace MediaBrowser.Server.Implementations.Notifications
public class CoreNotificationTypes : INotificationTypeFactory public class CoreNotificationTypes : INotificationTypeFactory
{ {
private readonly ILocalizationManager _localization; private readonly ILocalizationManager _localization;
private readonly IServerApplicationHost _appHost;
public CoreNotificationTypes(ILocalizationManager localization) public CoreNotificationTypes(ILocalizationManager localization, IServerApplicationHost appHost)
{ {
_localization = localization; _localization = localization;
_appHost = appHost;
} }
public IEnumerable<NotificationTypeInfo> GetNotificationTypes() public IEnumerable<NotificationTypeInfo> GetNotificationTypes()
{ {
var knownTypes = new List<NotificationTypeInfo> var knownTypes = new List<NotificationTypeInfo>
{ {
new NotificationTypeInfo
{
Type = NotificationType.ApplicationUpdateAvailable.ToString(),
DefaultTitle = "A new version of Media Browser Server is available for download."
},
new NotificationTypeInfo new NotificationTypeInfo
{ {
Type = NotificationType.ApplicationUpdateInstalled.ToString(), Type = NotificationType.ApplicationUpdateInstalled.ToString(),
@ -104,6 +101,15 @@ namespace MediaBrowser.Server.Implementations.Notifications
} }
}; };
if (!_appHost.CanSelfUpdate)
{
knownTypes.Add(new NotificationTypeInfo
{
Type = NotificationType.ApplicationUpdateAvailable.ToString(),
DefaultTitle = "A new version of Media Browser Server is available for download."
});
}
foreach (var type in knownTypes) foreach (var type in knownTypes)
{ {
Update(type); Update(type);

@ -3,6 +3,7 @@ using MediaBrowser.Controller.Configuration;
using MediaBrowser.Controller.Entities; using MediaBrowser.Controller.Entities;
using MediaBrowser.Controller.Library; using MediaBrowser.Controller.Library;
using MediaBrowser.Controller.Notifications; using MediaBrowser.Controller.Notifications;
using MediaBrowser.Model.Configuration;
using MediaBrowser.Model.Logging; using MediaBrowser.Model.Logging;
using MediaBrowser.Model.Notifications; using MediaBrowser.Model.Notifications;
using System; using System;
@ -31,11 +32,15 @@ namespace MediaBrowser.Server.Implementations.Notifications
public Task SendNotification(NotificationRequest request, CancellationToken cancellationToken) public Task SendNotification(NotificationRequest request, CancellationToken cancellationToken)
{ {
var users = request.UserIds.Select(i => _userManager.GetUserById(new Guid(i)));
var notificationType = request.NotificationType; var notificationType = request.NotificationType;
var title = GetTitle(request); var options = string.IsNullOrWhiteSpace(notificationType) ?
null :
_config.Configuration.NotificationOptions.GetOptions(notificationType);
var users = GetUserIds(request, options).Select(i => _userManager.GetUserById(new Guid(i)));
var title = GetTitle(request, options);
var tasks = _services.Where(i => IsEnabled(i, notificationType)) var tasks = _services.Where(i => IsEnabled(i, notificationType))
.Select(i => SendNotification(request, i, users, title, cancellationToken)); .Select(i => SendNotification(request, i, users, title, cancellationToken));
@ -58,6 +63,43 @@ namespace MediaBrowser.Server.Implementations.Notifications
} }
private IEnumerable<string> GetUserIds(NotificationRequest request, NotificationOption options)
{
if (request.SendToUserMode.HasValue)
{
switch (request.SendToUserMode.Value)
{
case SendToUserType.Admins:
return _userManager.Users.Where(i => i.Configuration.IsAdministrator)
.Select(i => i.Id.ToString("N"));
case SendToUserType.All:
return _userManager.Users.Select(i => i.Id.ToString("N"));
case SendToUserType.Custom:
return request.UserIds;
default:
throw new ArgumentException("Unrecognized SendToUserMode: " + request.SendToUserMode.Value);
}
}
if (options != null)
{
switch (options.SendToUserMode)
{
case SendToUserType.Admins:
return _userManager.Users.Where(i => i.Configuration.IsAdministrator)
.Select(i => i.Id.ToString("N"));
case SendToUserType.All:
return _userManager.Users.Select(i => i.Id.ToString("N"));
case SendToUserType.Custom:
return options.SendToUsers;
default:
throw new ArgumentException("Unrecognized SendToUserMode: " + options.SendToUserMode);
}
}
return new List<string>();
}
private async Task SendNotification(NotificationRequest request, private async Task SendNotification(NotificationRequest request,
INotificationService service, INotificationService service,
string title, string title,
@ -86,7 +128,7 @@ namespace MediaBrowser.Server.Implementations.Notifications
} }
} }
private string GetTitle(NotificationRequest request) private string GetTitle(NotificationRequest request, NotificationOption options)
{ {
var title = request.Name; var title = request.Name;
@ -95,8 +137,6 @@ namespace MediaBrowser.Server.Implementations.Notifications
{ {
if (!string.IsNullOrEmpty(request.NotificationType)) if (!string.IsNullOrEmpty(request.NotificationType))
{ {
var options = _config.Configuration.NotificationOptions.GetOptions(request.NotificationType);
if (options != null) if (options != null)
{ {
title = options.Title; title = options.Title;

Loading…
Cancel
Save