2014-04-14 23:54:52 -04:00
|
|
|
|
using MediaBrowser.Model.Configuration;
|
2014-09-14 14:47:48 -04:00
|
|
|
|
using MediaBrowser.Model.Connect;
|
|
|
|
|
|
using MediaBrowser.Model.Extensions;
|
2013-02-20 20:33:05 -05:00
|
|
|
|
using System;
|
2014-04-14 23:54:52 -04:00
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
|
using System.Diagnostics;
|
2013-02-20 20:33:05 -05:00
|
|
|
|
using System.Runtime.Serialization;
|
|
|
|
|
|
|
2013-02-21 17:50:46 +00:00
|
|
|
|
namespace MediaBrowser.Model.Dto
|
2013-02-20 20:33:05 -05:00
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
2013-02-21 17:50:46 +00:00
|
|
|
|
/// Class UserDto
|
2013-02-20 20:33:05 -05:00
|
|
|
|
/// </summary>
|
2014-01-12 09:31:24 +00:00
|
|
|
|
[DebuggerDisplay("Name = {Name}, ID = {Id}, HasPassword = {HasPassword}")]
|
2014-06-29 15:59:52 -04:00
|
|
|
|
public class UserDto : IHasPropertyChangedEvent, IItemDto
|
2013-02-20 20:33:05 -05:00
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Gets or sets the name.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <value>The name.</value>
|
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
|
|
2014-09-14 14:47:48 -04: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>
|
|
|
|
|
|
public UserLinkType ConnectLinkType { get; set; }
|
|
|
|
|
|
|
2013-02-20 20:33:05 -05:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Gets or sets the id.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <value>The id.</value>
|
2013-04-13 14:02:30 -04:00
|
|
|
|
public string Id { get; set; }
|
2013-02-20 20:33:05 -05:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Gets or sets the primary image tag.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <value>The primary image tag.</value>
|
2014-05-08 16:09:53 -04:00
|
|
|
|
public string PrimaryImageTag { get; set; }
|
2013-02-20 20:33:05 -05: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-08-15 12:35:41 -04:00
|
|
|
|
public bool HasConfiguredPassword { get; set; }
|
|
|
|
|
|
|
2013-02-20 20:33:05 -05: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; }
|
|
|
|
|
|
|
2013-03-08 11:40:01 -05: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-20 21:17:59 -04:00
|
|
|
|
|
2013-06-05 08:35:18 -04:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Gets or sets the original primary image aspect ratio.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <value>The original primary image aspect ratio.</value>
|
|
|
|
|
|
public double? OriginalPrimaryImageAspectRatio { get; set; }
|
|
|
|
|
|
|
2013-02-20 20:33:05 -05: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 16:09:53 -04:00
|
|
|
|
get { return PrimaryImageTag != null; }
|
2013-02-20 20:33:05 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
2013-04-20 21:17:59 -04:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Initializes a new instance of the <see cref="UserDto"/> class.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public UserDto()
|
|
|
|
|
|
{
|
|
|
|
|
|
Configuration = new UserConfiguration();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Occurs when [property changed].
|
|
|
|
|
|
/// </summary>
|
2013-02-20 20:33:05 -05:00
|
|
|
|
public event PropertyChangedEventHandler PropertyChanged;
|
2013-05-29 11:25:39 -04:00
|
|
|
|
|
|
|
|
|
|
public override string ToString()
|
|
|
|
|
|
{
|
|
|
|
|
|
return Name ?? base.ToString();
|
|
|
|
|
|
}
|
2013-02-20 20:33:05 -05:00
|
|
|
|
}
|
|
|
|
|
|
}
|