jellyfin/MediaBrowser.Api/UserService.cs

488 lines
16 KiB
C#
Raw Normal View History

2013-02-21 02:33:05 +01:00
using MediaBrowser.Common.Extensions;
2014-07-13 06:55:56 +02:00
using MediaBrowser.Common.Net;
2014-07-10 05:48:08 +02:00
using MediaBrowser.Controller.Configuration;
using MediaBrowser.Controller.Dto;
2013-02-21 02:33:05 +01:00
using MediaBrowser.Controller.Library;
using MediaBrowser.Controller.Net;
2014-02-12 05:29:13 +01:00
using MediaBrowser.Controller.Session;
2014-10-16 05:26:39 +02:00
using MediaBrowser.Model.Connect;
using MediaBrowser.Model.Dto;
2013-07-08 18:13:21 +02:00
using MediaBrowser.Model.Users;
2013-12-07 16:52:38 +01:00
using ServiceStack;
2013-12-11 04:42:25 +01:00
using ServiceStack.Text.Controller;
2013-02-21 02:33:05 +01:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace MediaBrowser.Api
{
/// <summary>
/// Class GetUsers
/// </summary>
2014-03-23 20:36:25 +01:00
[Route("/Users", "GET", Summary = "Gets a list of users")]
2014-07-08 03:41:03 +02:00
[Authenticated]
public class GetUsers : IReturn<List<UserDto>>
2013-02-21 02:33:05 +01:00
{
2013-09-17 04:44:06 +02:00
[ApiMember(Name = "IsHidden", Description = "Optional filter by IsHidden=true or false", IsRequired = false, DataType = "bool", ParameterType = "query", Verb = "GET")]
2013-07-08 18:13:21 +02:00
public bool? IsHidden { get; set; }
[ApiMember(Name = "IsDisabled", Description = "Optional filter by IsDisabled=true or false", IsRequired = false, DataType = "bool", ParameterType = "query", Verb = "GET")]
public bool? IsDisabled { get; set; }
2014-10-20 05:04:45 +02:00
[ApiMember(Name = "IsGuest", Description = "Optional filter by IsGuest=true or false", IsRequired = false, DataType = "bool", ParameterType = "query", Verb = "GET")]
public bool? IsGuest { get; set; }
2013-02-21 02:33:05 +01:00
}
2014-03-23 20:36:25 +01:00
[Route("/Users/Public", "GET", Summary = "Gets a list of publicly visible users for display on a login screen.")]
2013-07-08 19:13:18 +02:00
public class GetPublicUsers : IReturn<List<UserDto>>
{
}
2013-09-17 04:44:06 +02:00
2013-02-21 02:33:05 +01:00
/// <summary>
/// Class GetUser
/// </summary>
2014-03-23 20:36:25 +01:00
[Route("/Users/{Id}", "GET", Summary = "Gets a user by Id")]
2014-10-29 00:17:55 +01:00
[Authenticated(EscapeParentalControl = true)]
public class GetUser : IReturn<UserDto>
2013-02-21 02:33:05 +01:00
{
/// <summary>
/// Gets or sets the id.
/// </summary>
/// <value>The id.</value>
2013-03-05 06:08:27 +01:00
[ApiMember(Name = "User Id", IsRequired = true, DataType = "string", ParameterType = "path", Verb = "GET")]
2013-02-21 02:33:05 +01:00
public Guid Id { get; set; }
}
/// <summary>
/// Class DeleteUser
/// </summary>
2014-03-23 20:36:25 +01:00
[Route("/Users/{Id}", "DELETE", Summary = "Deletes a user")]
[Authenticated]
2013-02-21 02:33:05 +01:00
public class DeleteUser : IReturnVoid
{
/// <summary>
/// Gets or sets the id.
/// </summary>
/// <value>The id.</value>
2013-03-08 20:14:09 +01:00
[ApiMember(Name = "User Id", IsRequired = true, DataType = "string", ParameterType = "path", Verb = "DELETE")]
2013-02-21 02:33:05 +01:00
public Guid Id { get; set; }
}
/// <summary>
/// Class AuthenticateUser
/// </summary>
2014-03-23 20:36:25 +01:00
[Route("/Users/{Id}/Authenticate", "POST", Summary = "Authenticates a user")]
2014-02-09 22:11:11 +01:00
public class AuthenticateUser : IReturn<AuthenticationResult>
2013-02-21 02:33:05 +01:00
{
/// <summary>
/// Gets or sets the id.
/// </summary>
/// <value>The id.</value>
2013-03-08 20:14:09 +01:00
[ApiMember(Name = "User Id", IsRequired = true, DataType = "string", ParameterType = "path", Verb = "POST")]
2013-02-21 02:33:05 +01:00
public Guid Id { get; set; }
/// <summary>
/// Gets or sets the password.
/// </summary>
/// <value>The password.</value>
2013-03-08 20:14:09 +01:00
[ApiMember(Name = "Password", IsRequired = true, DataType = "string", ParameterType = "body", Verb = "POST")]
2013-02-21 02:33:05 +01:00
public string Password { get; set; }
}
2013-07-08 18:13:21 +02:00
/// <summary>
/// Class AuthenticateUser
/// </summary>
2014-03-23 20:36:25 +01:00
[Route("/Users/AuthenticateByName", "POST", Summary = "Authenticates a user")]
2013-07-08 18:13:21 +02:00
public class AuthenticateUserByName : IReturn<AuthenticationResult>
{
/// <summary>
/// Gets or sets the id.
/// </summary>
/// <value>The id.</value>
[ApiMember(Name = "Username", IsRequired = true, DataType = "string", ParameterType = "body", Verb = "POST")]
public string Username { get; set; }
2013-07-08 18:13:21 +02:00
/// <summary>
/// Gets or sets the password.
/// </summary>
/// <value>The password.</value>
[ApiMember(Name = "Password", IsRequired = true, DataType = "string", ParameterType = "body", Verb = "POST")]
public string Password { get; set; }
2014-10-17 06:52:41 +02:00
[ApiMember(Name = "PasswordMd5", IsRequired = true, DataType = "string", ParameterType = "body", Verb = "POST")]
public string PasswordMd5 { get; set; }
2013-07-08 18:13:21 +02:00
}
2013-02-21 02:33:05 +01:00
/// <summary>
/// Class UpdateUserPassword
/// </summary>
2014-03-23 20:36:25 +01:00
[Route("/Users/{Id}/Password", "POST", Summary = "Updates a user's password")]
[Authenticated]
2013-02-21 02:33:05 +01:00
public class UpdateUserPassword : IReturnVoid
{
/// <summary>
/// Gets or sets the id.
/// </summary>
/// <value>The id.</value>
public Guid Id { get; set; }
/// <summary>
/// Gets or sets the password.
/// </summary>
/// <value>The password.</value>
public string CurrentPassword { get; set; }
/// <summary>
/// Gets or sets the new password.
/// </summary>
/// <value>The new password.</value>
public string NewPassword { get; set; }
/// <summary>
/// Gets or sets a value indicating whether [reset password].
/// </summary>
/// <value><c>true</c> if [reset password]; otherwise, <c>false</c>.</value>
public bool ResetPassword { get; set; }
}
/// <summary>
/// Class UpdateUser
/// </summary>
2014-03-23 20:36:25 +01:00
[Route("/Users/{Id}", "POST", Summary = "Updates a user")]
[Authenticated]
2013-03-05 03:05:59 +01:00
public class UpdateUser : UserDto, IReturnVoid
2013-02-21 02:33:05 +01:00
{
}
/// <summary>
/// Class CreateUser
/// </summary>
2014-03-23 20:36:25 +01:00
[Route("/Users", "POST", Summary = "Creates a user")]
[Authenticated]
2013-03-05 03:05:59 +01:00
public class CreateUser : UserDto, IReturn<UserDto>
2013-02-21 02:33:05 +01:00
{
}
/// <summary>
/// Class UsersService
/// </summary>
public class UserService : BaseApiService, IHasAuthorization
2013-02-21 02:33:05 +01:00
{
/// <summary>
/// The _user manager
/// </summary>
private readonly IUserManager _userManager;
2013-09-04 19:02:19 +02:00
private readonly IDtoService _dtoService;
2014-02-12 05:29:13 +01:00
private readonly ISessionManager _sessionMananger;
2014-07-10 05:48:08 +02:00
private readonly IServerConfigurationManager _config;
2014-07-13 06:55:56 +02:00
private readonly INetworkManager _networkManager;
public IAuthorizationContext AuthorizationContext { get; set; }
2013-02-24 22:53:54 +01:00
/// <summary>
/// Initializes a new instance of the <see cref="UserService" /> class.
/// </summary>
/// <param name="userManager">The user manager.</param>
2014-02-12 05:29:13 +01:00
/// <param name="dtoService">The dto service.</param>
2014-07-08 03:41:03 +02:00
/// <param name="sessionMananger">The session mananger.</param>
2014-07-13 06:55:56 +02:00
public UserService(IUserManager userManager, IDtoService dtoService, ISessionManager sessionMananger, IServerConfigurationManager config, INetworkManager networkManager)
2013-02-24 22:53:54 +01:00
{
_userManager = userManager;
2013-09-04 19:02:19 +02:00
_dtoService = dtoService;
2014-02-12 05:47:16 +01:00
_sessionMananger = sessionMananger;
2014-07-10 05:48:08 +02:00
_config = config;
2014-07-13 06:55:56 +02:00
_networkManager = networkManager;
2013-02-24 22:53:54 +01:00
}
2013-07-08 19:13:18 +02:00
public object Get(GetPublicUsers request)
{
2014-10-16 05:26:39 +02:00
// If the startup wizard hasn't been completed then just return all users
if (!_config.Configuration.IsStartupWizardCompleted)
2014-07-08 03:41:03 +02:00
{
2014-07-10 05:48:08 +02:00
return Get(new GetUsers
{
IsDisabled = false
});
2014-07-08 03:41:03 +02:00
}
2014-10-16 05:26:39 +02:00
var authInfo = AuthorizationContext.GetAuthorizationInfo(Request);
var isDashboard = string.Equals(authInfo.Client, "Dashboard", StringComparison.OrdinalIgnoreCase);
if (Request.IsLocal && isDashboard)
{
var users = _userManager.Users
.Where(i => !i.Configuration.IsDisabled && !(i.ConnectLinkType.HasValue && i.ConnectLinkType.Value == UserLinkType.Guest))
.ToList();
return ToOptimizedResult(users);
}
2014-07-13 06:55:56 +02:00
// TODO: Uncomment this once all clients can handle an empty user list.
return Get(new GetUsers
2013-07-08 19:13:18 +02:00
{
2014-07-13 06:55:56 +02:00
IsHidden = false,
IsDisabled = false
});
//// TODO: Add or is authenticated
//if (Request.IsLocal || IsInLocalNetwork(Request.RemoteIp))
//{
// return Get(new GetUsers
// {
// IsHidden = false,
// IsDisabled = false
// });
//}
//// Return empty when external
//return ToOptimizedResult(new List<UserDto>());
}
2013-02-21 02:33:05 +01:00
/// <summary>
/// Gets the specified request.
/// </summary>
/// <param name="request">The request.</param>
/// <returns>System.Object.</returns>
public object Get(GetUsers request)
{
2013-07-08 18:13:21 +02:00
var users = _userManager.Users;
if (request.IsDisabled.HasValue)
{
users = users.Where(i => i.Configuration.IsDisabled == request.IsDisabled.Value);
}
if (request.IsHidden.HasValue)
{
users = users.Where(i => i.Configuration.IsHidden == request.IsHidden.Value);
}
2014-08-18 16:20:02 +02:00
2014-10-20 05:04:45 +02:00
if (request.IsGuest.HasValue)
{
users = users.Where(i => (i.ConnectLinkType.HasValue && i.ConnectLinkType.Value == UserLinkType.Guest) == request.IsGuest.Value);
}
2013-09-17 04:44:06 +02:00
var result = users
.OrderBy(u => u.Name)
2014-08-15 18:35:41 +02:00
.Select(i => _userManager.GetUserDto(i, Request.RemoteIp))
2013-09-17 04:44:06 +02:00
.ToList();
2013-02-21 02:33:05 +01:00
return ToOptimizedSerializedResultUsingCache(result);
2013-02-21 02:33:05 +01:00
}
/// <summary>
/// Gets the specified request.
/// </summary>
/// <param name="request">The request.</param>
/// <returns>System.Object.</returns>
public object Get(GetUser request)
{
var user = _userManager.GetUserById(request.Id);
2013-02-21 02:33:05 +01:00
if (user == null)
{
throw new ResourceNotFoundException("User not found");
}
2014-08-15 18:35:41 +02:00
var result = _userManager.GetUserDto(user, Request.RemoteIp);
2013-02-21 02:33:05 +01:00
return ToOptimizedSerializedResultUsingCache(result);
2013-02-21 02:33:05 +01:00
}
/// <summary>
/// Deletes the specified request.
/// </summary>
/// <param name="request">The request.</param>
2014-08-18 16:20:02 +02:00
public void Delete(DeleteUser request)
{
var task = DeleteAsync(request);
Task.WaitAll(task);
}
public async Task DeleteAsync(DeleteUser request)
2013-02-21 02:33:05 +01:00
{
var user = _userManager.GetUserById(request.Id);
2013-02-21 02:33:05 +01:00
if (user == null)
{
throw new ResourceNotFoundException("User not found");
}
2014-08-17 07:38:13 +02:00
await _sessionMananger.RevokeUserTokens(user.Id.ToString("N")).ConfigureAwait(false);
2014-10-14 06:22:17 +02:00
2014-08-17 07:38:13 +02:00
await _userManager.DeleteUser(user).ConfigureAwait(false);
2013-02-21 02:33:05 +01:00
}
/// <summary>
/// Posts the specified request.
/// </summary>
/// <param name="request">The request.</param>
public object Post(AuthenticateUser request)
2013-02-21 02:33:05 +01:00
{
var user = _userManager.GetUserById(request.Id);
2013-02-21 02:33:05 +01:00
if (user == null)
{
throw new ResourceNotFoundException("User not found");
}
2014-07-02 20:34:08 +02:00
return Post(new AuthenticateUserByName
2014-02-26 05:38:21 +01:00
{
2014-07-02 20:34:08 +02:00
Username = user.Name,
Password = request.Password
});
}
2014-02-26 05:38:21 +01:00
2014-08-17 07:38:13 +02:00
public async Task<object> Post(AuthenticateUserByName request)
2014-07-02 20:34:08 +02:00
{
var auth = AuthorizationContext.GetAuthorizationInfo(Request);
2013-07-08 18:13:21 +02:00
2014-07-15 03:25:58 +02:00
if (string.IsNullOrWhiteSpace(auth.Client))
{
auth.Client = "Unknown app";
}
if (string.IsNullOrWhiteSpace(auth.Device))
{
auth.Device = "Unknown device";
}
if (string.IsNullOrWhiteSpace(auth.Version))
{
auth.Version = "Unknown version";
}
if (string.IsNullOrWhiteSpace(auth.DeviceId))
{
auth.DeviceId = "Unknown device id";
}
2014-08-17 07:38:13 +02:00
var result = await _sessionMananger.AuthenticateNewSession(new AuthenticationRequest
2014-08-11 00:13:17 +02:00
{
App = auth.Client,
AppVersion = auth.Version,
DeviceId = auth.DeviceId,
DeviceName = auth.Device,
2014-10-17 06:52:41 +02:00
PasswordSha1 = request.Password,
PasswordMd5 = request.PasswordMd5,
2014-08-11 00:13:17 +02:00
RemoteEndPoint = Request.RemoteIp,
Username = request.Username
2014-08-17 07:38:13 +02:00
}, Request.IsLocal).ConfigureAwait(false);
2013-07-08 18:13:21 +02:00
2014-07-02 20:34:08 +02:00
return ToOptimizedResult(result);
2013-02-21 02:33:05 +01:00
}
/// <summary>
/// Posts the specified request.
/// </summary>
/// <param name="request">The request.</param>
2014-08-18 16:20:02 +02:00
public void Post(UpdateUserPassword request)
{
var task = PostAsync(request);
Task.WaitAll(task);
}
public async Task PostAsync(UpdateUserPassword request)
2013-02-21 02:33:05 +01:00
{
var user = _userManager.GetUserById(request.Id);
2013-02-21 02:33:05 +01:00
if (user == null)
{
throw new ResourceNotFoundException("User not found");
}
if (request.ResetPassword)
{
2014-08-17 07:38:13 +02:00
await _userManager.ResetPassword(user).ConfigureAwait(false);
2013-02-21 02:33:05 +01:00
}
else
{
2014-08-17 07:38:13 +02:00
var success = await _userManager.AuthenticateUser(user.Name, request.CurrentPassword, Request.RemoteIp).ConfigureAwait(false);
2013-02-21 02:33:05 +01:00
if (!success)
{
2014-07-22 03:29:06 +02:00
throw new ArgumentException("Invalid user or password entered.");
2013-02-21 02:33:05 +01:00
}
2014-08-17 07:38:13 +02:00
await _userManager.ChangePassword(user, request.NewPassword).ConfigureAwait(false);
2013-02-21 02:33:05 +01:00
}
}
2014-08-18 16:20:02 +02:00
2013-02-21 02:33:05 +01:00
/// <summary>
/// Posts the specified request.
/// </summary>
/// <param name="request">The request.</param>
2014-08-18 16:20:02 +02:00
public void Post(UpdateUser request)
{
var task = PostAsync(request);
Task.WaitAll(task);
}
public async Task PostAsync(UpdateUser request)
2013-02-21 02:33:05 +01:00
{
// We need to parse this manually because we told service stack not to with IRequiresRequestStream
// https://code.google.com/p/servicestack/source/browse/trunk/Common/ServiceStack.Text/ServiceStack.Text/Controller/PathInfo.cs
2013-12-07 16:52:38 +01:00
var pathInfo = PathInfo.Parse(Request.PathInfo);
2013-02-21 02:33:05 +01:00
var id = new Guid(pathInfo.GetArgumentValue<string>(1));
2013-02-24 22:53:54 +01:00
2013-03-05 03:05:59 +01:00
var dtoUser = request;
2013-02-21 02:33:05 +01:00
var user = _userManager.GetUserById(id);
2013-02-21 02:33:05 +01:00
// If removing admin access
if (!dtoUser.Configuration.IsAdministrator && user.Configuration.IsAdministrator)
{
if (_userManager.Users.Count(i => i.Configuration.IsAdministrator) == 1)
{
throw new ArgumentException("There must be at least one user in the system with administrative access.");
}
}
2013-07-08 21:31:45 +02:00
// If disabling
if (dtoUser.Configuration.IsDisabled && user.Configuration.IsAdministrator)
{
throw new ArgumentException("Administrators cannot be disabled.");
}
// If disabling
2013-07-08 18:13:21 +02:00
if (dtoUser.Configuration.IsDisabled && !user.Configuration.IsDisabled)
{
if (_userManager.Users.Count(i => !i.Configuration.IsDisabled) == 1)
{
throw new ArgumentException("There must be at least one enabled user in the system.");
}
2014-07-08 03:41:03 +02:00
2014-08-17 07:38:13 +02:00
await _sessionMananger.RevokeUserTokens(user.Id.ToString("N")).ConfigureAwait(false);
2013-07-08 18:13:21 +02:00
}
2014-08-11 00:13:17 +02:00
var task = user.Name.Equals(dtoUser.Name, StringComparison.Ordinal) ?
_userManager.UpdateUser(user) :
2014-07-08 03:41:03 +02:00
_userManager.RenameUser(user, dtoUser.Name);
2013-02-21 02:33:05 +01:00
2014-08-17 07:38:13 +02:00
await task.ConfigureAwait(false);
2013-02-21 02:33:05 +01:00
2014-06-22 07:52:31 +02:00
user.UpdateConfiguration(dtoUser.Configuration);
2013-02-21 02:33:05 +01:00
}
/// <summary>
/// Posts the specified request.
/// </summary>
/// <param name="request">The request.</param>
/// <returns>System.Object.</returns>
public object Post(CreateUser request)
{
2013-03-05 03:05:59 +01:00
var dtoUser = request;
2013-02-21 02:33:05 +01:00
var newUser = _userManager.CreateUser(dtoUser.Name).Result;
2013-02-21 02:33:05 +01:00
2014-06-22 07:52:31 +02:00
newUser.UpdateConfiguration(dtoUser.Configuration);
2014-08-15 18:35:41 +02:00
var result = _userManager.GetUserDto(newUser, Request.RemoteIp);
2013-02-21 02:33:05 +01:00
return ToOptimizedResult(result);
}
}
}