2013-07-08 16:13:21 +00:00
|
|
|
|
using MediaBrowser.Common.Events;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
using MediaBrowser.Common.Extensions;
|
2014-08-15 16:35:41 +00:00
|
|
|
|
using MediaBrowser.Common.Net;
|
2013-03-04 05:43:06 +00:00
|
|
|
|
using MediaBrowser.Controller.Configuration;
|
2014-08-15 16:35:41 +00:00
|
|
|
|
using MediaBrowser.Controller.Drawing;
|
|
|
|
|
using MediaBrowser.Controller.Dto;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
using MediaBrowser.Controller.Entities;
|
2013-02-27 20:25:45 +00:00
|
|
|
|
using MediaBrowser.Controller.Library;
|
2013-04-08 15:55:53 +00:00
|
|
|
|
using MediaBrowser.Controller.Persistence;
|
2014-01-28 18:37:01 +00:00
|
|
|
|
using MediaBrowser.Controller.Providers;
|
2014-06-22 05:52:31 +00:00
|
|
|
|
using MediaBrowser.Model.Configuration;
|
2014-08-15 16:35:41 +00:00
|
|
|
|
using MediaBrowser.Model.Dto;
|
|
|
|
|
using MediaBrowser.Model.Entities;
|
2014-05-08 20:09:53 +00:00
|
|
|
|
using MediaBrowser.Model.Events;
|
2013-02-27 20:25:45 +00:00
|
|
|
|
using MediaBrowser.Model.Logging;
|
2014-06-22 05:52:31 +00:00
|
|
|
|
using MediaBrowser.Model.Serialization;
|
2014-08-15 16:35:41 +00:00
|
|
|
|
using MediaBrowser.Server.Implementations.Security;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
2013-07-08 16:13:21 +00:00
|
|
|
|
using System.IO;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
using System.Linq;
|
2013-03-20 17:28:12 +00:00
|
|
|
|
using System.Security.Cryptography;
|
|
|
|
|
using System.Text;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
using System.Threading;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
2013-02-27 20:25:45 +00:00
|
|
|
|
namespace MediaBrowser.Server.Implementations.Library
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Class UserManager
|
|
|
|
|
/// </summary>
|
2013-02-27 20:25:45 +00:00
|
|
|
|
public class UserManager : IUserManager
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
2013-02-27 20:25:45 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the users.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The users.</value>
|
2013-12-26 14:20:30 +00:00
|
|
|
|
public IEnumerable<User> Users { get; private set; }
|
2013-03-16 05:52:33 +00:00
|
|
|
|
|
2013-02-21 21:39:53 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// The _logger
|
|
|
|
|
/// </summary>
|
|
|
|
|
private readonly ILogger _logger;
|
|
|
|
|
|
2013-03-04 05:43:06 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the configuration manager.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The configuration manager.</value>
|
|
|
|
|
private IServerConfigurationManager ConfigurationManager { get; set; }
|
|
|
|
|
|
2013-04-08 15:55:53 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the active user repository
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The user repository.</value>
|
2013-08-10 00:46:34 +00:00
|
|
|
|
private IUserRepository UserRepository { get; set; }
|
2014-08-10 22:13:17 +00:00
|
|
|
|
public event EventHandler<GenericEventArgs<User>> UserPasswordChanged;
|
2013-04-08 15:55:53 +00:00
|
|
|
|
|
2014-06-22 05:52:31 +00:00
|
|
|
|
private readonly IXmlSerializer _xmlSerializer;
|
|
|
|
|
|
2014-08-15 16:35:41 +00:00
|
|
|
|
private readonly INetworkManager _networkManager;
|
|
|
|
|
|
|
|
|
|
private readonly Func<IImageProcessor> _imageProcessorFactory;
|
|
|
|
|
private readonly Func<IDtoService> _dtoServiceFactory;
|
|
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Initializes a new instance of the <see cref="UserManager" /> class.
|
|
|
|
|
/// </summary>
|
2013-02-21 21:39:53 +00:00
|
|
|
|
/// <param name="logger">The logger.</param>
|
2013-03-04 05:43:06 +00:00
|
|
|
|
/// <param name="configurationManager">The configuration manager.</param>
|
2013-12-26 14:20:30 +00:00
|
|
|
|
/// <param name="userRepository">The user repository.</param>
|
2014-08-15 16:35:41 +00:00
|
|
|
|
public UserManager(ILogger logger, IServerConfigurationManager configurationManager, IUserRepository userRepository, IXmlSerializer xmlSerializer, INetworkManager networkManager, Func<IImageProcessor> imageProcessorFactory, Func<IDtoService> dtoServiceFactory)
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
2013-02-21 21:39:53 +00:00
|
|
|
|
_logger = logger;
|
2013-08-10 00:46:34 +00:00
|
|
|
|
UserRepository = userRepository;
|
2014-06-22 05:52:31 +00:00
|
|
|
|
_xmlSerializer = xmlSerializer;
|
2014-08-15 16:35:41 +00:00
|
|
|
|
_networkManager = networkManager;
|
|
|
|
|
_imageProcessorFactory = imageProcessorFactory;
|
|
|
|
|
_dtoServiceFactory = dtoServiceFactory;
|
2013-03-04 05:43:06 +00:00
|
|
|
|
ConfigurationManager = configurationManager;
|
2013-12-26 14:20:30 +00:00
|
|
|
|
Users = new List<User>();
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#region UserUpdated Event
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Occurs when [user updated].
|
|
|
|
|
/// </summary>
|
|
|
|
|
public event EventHandler<GenericEventArgs<User>> UserUpdated;
|
2014-06-22 05:52:31 +00:00
|
|
|
|
public event EventHandler<GenericEventArgs<User>> UserConfigurationUpdated;
|
|
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Called when [user updated].
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="user">The user.</param>
|
2013-02-27 20:25:45 +00:00
|
|
|
|
private void OnUserUpdated(User user)
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
2014-05-14 00:46:45 +00:00
|
|
|
|
EventHelper.FireEventIfNotNull(UserUpdated, this, new GenericEventArgs<User> { Argument = user }, _logger);
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#region UserDeleted Event
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Occurs when [user deleted].
|
|
|
|
|
/// </summary>
|
|
|
|
|
public event EventHandler<GenericEventArgs<User>> UserDeleted;
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Called when [user deleted].
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="user">The user.</param>
|
2013-02-27 20:25:45 +00:00
|
|
|
|
private void OnUserDeleted(User user)
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
2013-02-21 21:39:53 +00:00
|
|
|
|
EventHelper.QueueEventIfNotNull(UserDeleted, this, new GenericEventArgs<User> { Argument = user }, _logger);
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
|
|
|
|
#endregion
|
|
|
|
|
|
2013-02-27 20:25:45 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets a User by Id
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="id">The id.</param>
|
|
|
|
|
/// <returns>User.</returns>
|
|
|
|
|
/// <exception cref="System.ArgumentNullException"></exception>
|
|
|
|
|
public User GetUserById(Guid id)
|
|
|
|
|
{
|
|
|
|
|
if (id == Guid.Empty)
|
|
|
|
|
{
|
2013-04-05 19:02:48 +00:00
|
|
|
|
throw new ArgumentNullException("id");
|
2013-02-27 20:25:45 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return Users.FirstOrDefault(u => u.Id == id);
|
|
|
|
|
}
|
2013-03-16 05:52:33 +00:00
|
|
|
|
|
2013-12-26 14:20:30 +00:00
|
|
|
|
public async Task Initialize()
|
|
|
|
|
{
|
|
|
|
|
Users = await LoadUsers().ConfigureAwait(false);
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-15 16:35:41 +00:00
|
|
|
|
public async Task<bool> AuthenticateUser(string username, string password, string remoteEndPoint)
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
2014-07-02 18:34:08 +00:00
|
|
|
|
if (string.IsNullOrWhiteSpace(username))
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
2014-07-02 18:34:08 +00:00
|
|
|
|
throw new ArgumentNullException("username");
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-07-02 18:34:08 +00:00
|
|
|
|
var user = Users.First(i => string.Equals(username, i.Name, StringComparison.OrdinalIgnoreCase));
|
|
|
|
|
|
2013-07-08 16:13:21 +00:00
|
|
|
|
if (user.Configuration.IsDisabled)
|
|
|
|
|
{
|
2014-07-22 01:29:06 +00:00
|
|
|
|
throw new AuthenticationException(string.Format("The {0} account is currently disabled. Please consult with your administrator.", user.Name));
|
2013-07-08 16:13:21 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-08-15 16:35:41 +00:00
|
|
|
|
var success = string.Equals(GetPasswordHash(user), password.Replace("-", string.Empty), StringComparison.OrdinalIgnoreCase);
|
2013-02-21 01:33:05 +00:00
|
|
|
|
|
2014-08-15 16:35:41 +00:00
|
|
|
|
if (!success && _networkManager.IsInLocalNetwork(remoteEndPoint) && user.Configuration.EnableLocalPassword)
|
|
|
|
|
{
|
|
|
|
|
success = string.Equals(GetLocalPasswordHash(user), password.Replace("-", string.Empty), StringComparison.OrdinalIgnoreCase);
|
|
|
|
|
}
|
2013-02-21 01:33:05 +00:00
|
|
|
|
|
|
|
|
|
// Update LastActivityDate and LastLoginDate, then save
|
|
|
|
|
if (success)
|
|
|
|
|
{
|
|
|
|
|
user.LastActivityDate = user.LastLoginDate = DateTime.UtcNow;
|
|
|
|
|
await UpdateUser(user).ConfigureAwait(false);
|
|
|
|
|
}
|
|
|
|
|
|
2013-02-21 21:39:53 +00:00
|
|
|
|
_logger.Info("Authentication request for {0} {1}.", user.Name, (success ? "has succeeded" : "has been denied"));
|
2013-02-21 01:33:05 +00:00
|
|
|
|
|
|
|
|
|
return success;
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-15 16:35:41 +00:00
|
|
|
|
private string GetPasswordHash(User user)
|
|
|
|
|
{
|
|
|
|
|
return string.IsNullOrEmpty(user.Password)
|
|
|
|
|
? GetSha1String(string.Empty)
|
|
|
|
|
: user.Password;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private string GetLocalPasswordHash(User user)
|
|
|
|
|
{
|
|
|
|
|
return string.IsNullOrEmpty(user.LocalPassword)
|
|
|
|
|
? GetSha1String(string.Empty)
|
|
|
|
|
: user.LocalPassword;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private bool IsPasswordEmpty(string passwordHash)
|
|
|
|
|
{
|
|
|
|
|
return string.Equals(passwordHash, GetSha1String(string.Empty), StringComparison.OrdinalIgnoreCase);
|
|
|
|
|
}
|
|
|
|
|
|
2013-03-13 05:19:03 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the sha1 string.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="str">The STR.</param>
|
|
|
|
|
/// <returns>System.String.</returns>
|
|
|
|
|
private static string GetSha1String(string str)
|
|
|
|
|
{
|
|
|
|
|
using (var provider = SHA1.Create())
|
|
|
|
|
{
|
|
|
|
|
var hash = provider.ComputeHash(Encoding.UTF8.GetBytes(str));
|
|
|
|
|
return BitConverter.ToString(hash).Replace("-", string.Empty);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Loads the users from the repository
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>IEnumerable{User}.</returns>
|
2013-12-26 14:20:30 +00:00
|
|
|
|
private async Task<IEnumerable<User>> LoadUsers()
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
2013-04-08 15:55:53 +00:00
|
|
|
|
var users = UserRepository.RetrieveAllUsers().ToList();
|
2013-02-21 01:33:05 +00:00
|
|
|
|
|
|
|
|
|
// There always has to be at least one user.
|
|
|
|
|
if (users.Count == 0)
|
|
|
|
|
{
|
|
|
|
|
var name = Environment.UserName;
|
|
|
|
|
|
|
|
|
|
var user = InstantiateNewUser(name);
|
|
|
|
|
|
2013-12-06 20:07:34 +00:00
|
|
|
|
user.DateLastSaved = DateTime.UtcNow;
|
|
|
|
|
|
2013-12-26 14:20:30 +00:00
|
|
|
|
await UserRepository.SaveUser(user, CancellationToken.None).ConfigureAwait(false);
|
2013-02-21 01:33:05 +00:00
|
|
|
|
|
|
|
|
|
users.Add(user);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return users;
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-15 16:35:41 +00:00
|
|
|
|
public UserDto GetUserDto(User user, string remoteEndPoint = null)
|
|
|
|
|
{
|
|
|
|
|
if (user == null)
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentNullException("user");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var passwordHash = GetPasswordHash(user);
|
|
|
|
|
|
|
|
|
|
var hasConfiguredDefaultPassword = !IsPasswordEmpty(passwordHash);
|
|
|
|
|
|
|
|
|
|
var hasPassword = user.Configuration.EnableLocalPassword && !string.IsNullOrEmpty(remoteEndPoint) && _networkManager.IsInLocalNetwork(remoteEndPoint) ?
|
|
|
|
|
!IsPasswordEmpty(GetLocalPasswordHash(user)) :
|
|
|
|
|
hasConfiguredDefaultPassword;
|
|
|
|
|
|
|
|
|
|
var dto = new UserDto
|
|
|
|
|
{
|
|
|
|
|
Id = user.Id.ToString("N"),
|
|
|
|
|
Name = user.Name,
|
|
|
|
|
HasPassword = hasPassword,
|
|
|
|
|
HasConfiguredPassword = hasConfiguredDefaultPassword,
|
|
|
|
|
LastActivityDate = user.LastActivityDate,
|
|
|
|
|
LastLoginDate = user.LastLoginDate,
|
|
|
|
|
Configuration = user.Configuration
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
var image = user.GetImageInfo(ImageType.Primary, 0);
|
|
|
|
|
|
|
|
|
|
if (image != null)
|
|
|
|
|
{
|
|
|
|
|
dto.PrimaryImageTag = GetImageCacheTag(user, image);
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
_dtoServiceFactory().AttachPrimaryImageAspectRatio(dto, user);
|
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
|
|
|
|
// Have to use a catch-all unfortunately because some .net image methods throw plain Exceptions
|
|
|
|
|
_logger.ErrorException("Error generating PrimaryImageAspectRatio for {0}", ex, user.Name);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return dto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private string GetImageCacheTag(BaseItem item, ItemImageInfo image)
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
return _imageProcessorFactory().GetImageCacheTag(item, image);
|
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
|
|
|
|
_logger.ErrorException("Error getting {0} image info for {1}", ex, image.Type, image.Path);
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Refreshes metadata for each user
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
|
|
|
|
/// <returns>Task.</returns>
|
2014-03-07 18:48:55 +00:00
|
|
|
|
public Task RefreshUsersMetadata(CancellationToken cancellationToken)
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
2014-03-07 18:48:55 +00:00
|
|
|
|
var tasks = Users.Select(user => user.RefreshMetadata(new MetadataRefreshOptions(), cancellationToken)).ToList();
|
2013-02-21 01:33:05 +00:00
|
|
|
|
|
|
|
|
|
return Task.WhenAll(tasks);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Renames the user.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="user">The user.</param>
|
|
|
|
|
/// <param name="newName">The new name.</param>
|
|
|
|
|
/// <returns>Task.</returns>
|
|
|
|
|
/// <exception cref="System.ArgumentNullException">user</exception>
|
|
|
|
|
/// <exception cref="System.ArgumentException"></exception>
|
|
|
|
|
public async Task RenameUser(User user, string newName)
|
|
|
|
|
{
|
|
|
|
|
if (user == null)
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentNullException("user");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (string.IsNullOrEmpty(newName))
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentNullException("newName");
|
|
|
|
|
}
|
|
|
|
|
|
2013-02-27 20:25:45 +00:00
|
|
|
|
if (Users.Any(u => u.Id != user.Id && u.Name.Equals(newName, StringComparison.OrdinalIgnoreCase)))
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
|
|
|
|
throw new ArgumentException(string.Format("A user with the name '{0}' already exists.", newName));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (user.Name.Equals(newName, StringComparison.Ordinal))
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentException("The new and old names must be different.");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
await user.Rename(newName);
|
|
|
|
|
|
|
|
|
|
OnUserUpdated(user);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Updates the user.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="user">The user.</param>
|
|
|
|
|
/// <exception cref="System.ArgumentNullException">user</exception>
|
|
|
|
|
/// <exception cref="System.ArgumentException"></exception>
|
|
|
|
|
public async Task UpdateUser(User user)
|
|
|
|
|
{
|
|
|
|
|
if (user == null)
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentNullException("user");
|
|
|
|
|
}
|
|
|
|
|
|
2013-02-27 20:25:45 +00:00
|
|
|
|
if (user.Id == Guid.Empty || !Users.Any(u => u.Id.Equals(user.Id)))
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
|
|
|
|
throw new ArgumentException(string.Format("User with name '{0}' and Id {1} does not exist.", user.Name, user.Id));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
user.DateModified = DateTime.UtcNow;
|
2013-12-06 20:07:34 +00:00
|
|
|
|
user.DateLastSaved = DateTime.UtcNow;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
|
2013-04-08 15:55:53 +00:00
|
|
|
|
await UserRepository.SaveUser(user, CancellationToken.None).ConfigureAwait(false);
|
2013-02-21 01:33:05 +00:00
|
|
|
|
|
|
|
|
|
OnUserUpdated(user);
|
|
|
|
|
}
|
|
|
|
|
|
2013-07-07 02:01:14 +00:00
|
|
|
|
public event EventHandler<GenericEventArgs<User>> UserCreated;
|
2013-12-26 14:20:30 +00:00
|
|
|
|
|
2014-03-25 21:13:55 +00:00
|
|
|
|
private readonly SemaphoreSlim _userListLock = new SemaphoreSlim(1, 1);
|
|
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Creates the user.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="name">The name.</param>
|
|
|
|
|
/// <returns>User.</returns>
|
|
|
|
|
/// <exception cref="System.ArgumentNullException">name</exception>
|
|
|
|
|
/// <exception cref="System.ArgumentException"></exception>
|
|
|
|
|
public async Task<User> CreateUser(string name)
|
|
|
|
|
{
|
2014-07-26 17:30:15 +00:00
|
|
|
|
if (string.IsNullOrWhiteSpace(name))
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
|
|
|
|
throw new ArgumentNullException("name");
|
|
|
|
|
}
|
|
|
|
|
|
2013-02-27 20:25:45 +00:00
|
|
|
|
if (Users.Any(u => u.Name.Equals(name, StringComparison.OrdinalIgnoreCase)))
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
|
|
|
|
throw new ArgumentException(string.Format("A user with the name '{0}' already exists.", name));
|
|
|
|
|
}
|
|
|
|
|
|
2014-03-25 21:13:55 +00:00
|
|
|
|
await _userListLock.WaitAsync(CancellationToken.None).ConfigureAwait(false);
|
2013-02-21 01:33:05 +00:00
|
|
|
|
|
2014-03-25 21:13:55 +00:00
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
var user = InstantiateNewUser(name);
|
2013-02-21 01:33:05 +00:00
|
|
|
|
|
2014-03-25 21:13:55 +00:00
|
|
|
|
var list = Users.ToList();
|
|
|
|
|
list.Add(user);
|
|
|
|
|
Users = list;
|
2013-12-26 14:20:30 +00:00
|
|
|
|
|
2014-03-25 21:13:55 +00:00
|
|
|
|
user.DateLastSaved = DateTime.UtcNow;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
|
2014-03-25 21:13:55 +00:00
|
|
|
|
await UserRepository.SaveUser(user, CancellationToken.None).ConfigureAwait(false);
|
2013-12-26 14:20:30 +00:00
|
|
|
|
|
2014-03-25 21:13:55 +00:00
|
|
|
|
EventHelper.QueueEventIfNotNull(UserCreated, this, new GenericEventArgs<User> { Argument = user }, _logger);
|
|
|
|
|
|
|
|
|
|
return user;
|
|
|
|
|
}
|
|
|
|
|
finally
|
|
|
|
|
{
|
|
|
|
|
_userListLock.Release();
|
|
|
|
|
}
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Deletes the user.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="user">The user.</param>
|
|
|
|
|
/// <returns>Task.</returns>
|
|
|
|
|
/// <exception cref="System.ArgumentNullException">user</exception>
|
|
|
|
|
/// <exception cref="System.ArgumentException"></exception>
|
|
|
|
|
public async Task DeleteUser(User user)
|
|
|
|
|
{
|
|
|
|
|
if (user == null)
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentNullException("user");
|
|
|
|
|
}
|
|
|
|
|
|
2013-06-01 01:19:22 +00:00
|
|
|
|
var allUsers = Users.ToList();
|
|
|
|
|
|
|
|
|
|
if (allUsers.FirstOrDefault(u => u.Id == user.Id) == null)
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
|
|
|
|
throw new ArgumentException(string.Format("The user cannot be deleted because there is no user with the Name {0} and Id {1}.", user.Name, user.Id));
|
|
|
|
|
}
|
|
|
|
|
|
2013-06-01 01:19:22 +00:00
|
|
|
|
if (allUsers.Count == 1)
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentException(string.Format("The user '{0}' cannot be deleted because there must be at least one user in the system.", user.Name));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (user.Configuration.IsAdministrator && allUsers.Count(i => i.Configuration.IsAdministrator) == 1)
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
2013-06-01 01:19:22 +00:00
|
|
|
|
throw new ArgumentException(string.Format("The user '{0}' cannot be deleted because there must be at least one admin user in the system.", user.Name));
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-03-25 21:13:55 +00:00
|
|
|
|
await _userListLock.WaitAsync(CancellationToken.None).ConfigureAwait(false);
|
2014-02-21 05:04:11 +00:00
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
{
|
2014-03-25 21:13:55 +00:00
|
|
|
|
await UserRepository.DeleteUser(user, CancellationToken.None).ConfigureAwait(false);
|
|
|
|
|
|
|
|
|
|
var path = user.ConfigurationFilePath;
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
File.Delete(path);
|
|
|
|
|
}
|
|
|
|
|
catch (IOException ex)
|
|
|
|
|
{
|
|
|
|
|
_logger.ErrorException("Error deleting file {0}", ex, path);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Force this to be lazy loaded again
|
|
|
|
|
Users = await LoadUsers().ConfigureAwait(false);
|
|
|
|
|
|
|
|
|
|
OnUserDeleted(user);
|
2014-02-21 05:04:11 +00:00
|
|
|
|
}
|
2014-03-25 21:13:55 +00:00
|
|
|
|
finally
|
2013-04-22 15:46:23 +00:00
|
|
|
|
{
|
2014-03-25 21:13:55 +00:00
|
|
|
|
_userListLock.Release();
|
2013-04-22 15:46:23 +00:00
|
|
|
|
}
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-03-13 05:19:03 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Resets the password by clearing it.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>Task.</returns>
|
|
|
|
|
public Task ResetPassword(User user)
|
|
|
|
|
{
|
|
|
|
|
return ChangePassword(user, string.Empty);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Changes the password.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="user">The user.</param>
|
|
|
|
|
/// <param name="newPassword">The new password.</param>
|
|
|
|
|
/// <returns>Task.</returns>
|
2014-08-10 22:13:17 +00:00
|
|
|
|
public async Task ChangePassword(User user, string newPassword)
|
2013-03-13 05:19:03 +00:00
|
|
|
|
{
|
|
|
|
|
if (user == null)
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentNullException("user");
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-15 16:35:41 +00:00
|
|
|
|
user.Password = string.IsNullOrEmpty(newPassword) ? GetSha1String(string.Empty) : GetSha1String(newPassword);
|
2013-03-13 05:19:03 +00:00
|
|
|
|
|
2014-08-10 22:13:17 +00:00
|
|
|
|
await UpdateUser(user).ConfigureAwait(false);
|
|
|
|
|
|
|
|
|
|
EventHelper.FireEventIfNotNull(UserPasswordChanged, this, new GenericEventArgs<User>(user), _logger);
|
2013-03-13 05:19:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Instantiates the new user.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="name">The name.</param>
|
|
|
|
|
/// <returns>User.</returns>
|
|
|
|
|
private User InstantiateNewUser(string name)
|
|
|
|
|
{
|
|
|
|
|
return new User
|
|
|
|
|
{
|
|
|
|
|
Name = name,
|
|
|
|
|
Id = ("MBUser" + name).GetMD5(),
|
|
|
|
|
DateCreated = DateTime.UtcNow,
|
|
|
|
|
DateModified = DateTime.UtcNow
|
|
|
|
|
};
|
|
|
|
|
}
|
2013-07-07 02:01:14 +00:00
|
|
|
|
|
2014-06-22 05:52:31 +00:00
|
|
|
|
public void UpdateConfiguration(User user, UserConfiguration newConfiguration)
|
|
|
|
|
{
|
|
|
|
|
var xmlPath = user.ConfigurationFilePath;
|
|
|
|
|
Directory.CreateDirectory(Path.GetDirectoryName(xmlPath));
|
|
|
|
|
_xmlSerializer.SerializeToFile(newConfiguration, xmlPath);
|
2013-07-07 02:01:14 +00:00
|
|
|
|
|
2014-06-22 05:52:31 +00:00
|
|
|
|
EventHelper.FireEventIfNotNull(UserConfigurationUpdated, this, new GenericEventArgs<User> { Argument = user }, _logger);
|
|
|
|
|
}
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
|
|
|
|
}
|