2014-04-15 03:54:52 +00:00
|
|
|
|
using MediaBrowser.Model.Configuration;
|
2014-09-14 18:47:48 +00:00
|
|
|
|
using MediaBrowser.Model.Connect;
|
2014-12-16 05:01:57 +00:00
|
|
|
|
using MediaBrowser.Model.Users;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
using System;
|
2014-04-15 03:54:52 +00:00
|
|
|
|
using System.Diagnostics;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
using System.Runtime.Serialization;
|
|
|
|
|
|
2013-02-21 17:50:46 +00:00
|
|
|
|
namespace MediaBrowser.Model.Dto
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
2013-02-21 17:50:46 +00:00
|
|
|
|
/// Class UserDto
|
2013-02-21 01:33:05 +00:00
|
|
|
|
/// </summary>
|
2014-01-12 09:31:24 +00:00
|
|
|
|
[DebuggerDisplay("Name = {Name}, ID = {Id}, HasPassword = {HasPassword}")]
|
2016-07-15 19:53:28 +00:00
|
|
|
|
public class UserDto : IItemDto, IHasServerId
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the name.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The name.</value>
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
|
2014-10-24 04:54:35 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the server identifier.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The server identifier.</value>
|
|
|
|
|
public string ServerId { get; set; }
|
2015-01-31 03:19:41 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the name of the server.
|
|
|
|
|
/// This is not used by the server and is for client-side usage only.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The name of the server.</value>
|
|
|
|
|
public string ServerName { get; set; }
|
|
|
|
|
|
2014-09-14 18:47:48 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the name of the connect user.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The name of the connect user.</value>
|
|
|
|
|
public string ConnectUserName { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the connect user identifier.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The connect user identifier.</value>
|
|
|
|
|
public string ConnectUserId { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the type of the connect link.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The type of the connect link.</value>
|
2014-10-14 04:22:17 +00:00
|
|
|
|
public UserLinkType? ConnectLinkType { get; set; }
|
2014-09-14 18:47:48 +00:00
|
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the id.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The id.</value>
|
2013-04-13 18:02:30 +00:00
|
|
|
|
public string Id { get; set; }
|
2015-01-30 05:18:32 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the offline password.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The offline password.</value>
|
|
|
|
|
public string OfflinePassword { get; set; }
|
2015-02-14 19:36:40 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the offline password salt.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The offline password salt.</value>
|
|
|
|
|
public string OfflinePasswordSalt { get; set; }
|
2015-01-30 05:18:32 +00:00
|
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the primary image tag.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The primary image tag.</value>
|
2014-05-08 20:09:53 +00:00
|
|
|
|
public string PrimaryImageTag { get; set; }
|
2013-02-21 01:33:05 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets a value indicating whether this instance has password.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value><c>true</c> if this instance has password; otherwise, <c>false</c>.</value>
|
|
|
|
|
public bool HasPassword { get; set; }
|
|
|
|
|
|
2014-12-16 05:01:57 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets a value indicating whether this instance has configured password.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value><c>true</c> if this instance has configured password; otherwise, <c>false</c>.</value>
|
2014-08-15 16:35:41 +00:00
|
|
|
|
public bool HasConfiguredPassword { get; set; }
|
2015-01-29 06:06:24 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets a value indicating whether this instance has configured easy password.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value><c>true</c> if this instance has configured easy password; otherwise, <c>false</c>.</value>
|
|
|
|
|
public bool HasConfiguredEasyPassword { get; set; }
|
2014-08-15 16:35:41 +00:00
|
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the last login date.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The last login date.</value>
|
|
|
|
|
public DateTime? LastLoginDate { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the last activity date.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The last activity date.</value>
|
|
|
|
|
public DateTime? LastActivityDate { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the configuration.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The configuration.</value>
|
|
|
|
|
public UserConfiguration Configuration { get; set; }
|
|
|
|
|
|
2014-12-16 05:01:57 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the policy.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The policy.</value>
|
|
|
|
|
public UserPolicy Policy { get; set; }
|
|
|
|
|
|
2013-03-08 16:40:01 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the primary image aspect ratio.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The primary image aspect ratio.</value>
|
|
|
|
|
public double? PrimaryImageAspectRatio { get; set; }
|
2013-04-21 01:17:59 +00:00
|
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets a value indicating whether this instance has primary image.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value><c>true</c> if this instance has primary image; otherwise, <c>false</c>.</value>
|
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
public bool HasPrimaryImage
|
|
|
|
|
{
|
2014-05-08 20:09:53 +00:00
|
|
|
|
get { return PrimaryImageTag != null; }
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-04-21 01:17:59 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Initializes a new instance of the <see cref="UserDto"/> class.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public UserDto()
|
|
|
|
|
{
|
|
|
|
|
Configuration = new UserConfiguration();
|
2014-12-16 05:01:57 +00:00
|
|
|
|
Policy = new UserPolicy();
|
2013-04-21 01:17:59 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-05-29 15:25:39 +00:00
|
|
|
|
public override string ToString()
|
|
|
|
|
{
|
|
|
|
|
return Name ?? base.ToString();
|
|
|
|
|
}
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
|
|
|
|
}
|