2014-02-07 03:10:13 +00:00
|
|
|
|
using MediaBrowser.Controller.Providers;
|
|
|
|
|
using MediaBrowser.Model.Dto;
|
2013-09-10 18:56:00 +00:00
|
|
|
|
using System.Collections.Generic;
|
2013-12-02 21:46:22 +00:00
|
|
|
|
using System.Runtime.Serialization;
|
2013-09-10 18:56:00 +00:00
|
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
|
namespace MediaBrowser.Controller.Entities
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// This is the full Person object that can be retrieved with all of it's data.
|
|
|
|
|
/// </summary>
|
2014-02-07 22:40:03 +00:00
|
|
|
|
public class Person : BaseItem, IItemByName, IHasLookupInfo<PersonLookupInfo>
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
2013-09-10 18:56:00 +00:00
|
|
|
|
public Person()
|
|
|
|
|
{
|
2013-12-02 21:46:22 +00:00
|
|
|
|
UserItemCountList = new List<ItemByNameCounts>();
|
2013-09-10 18:56:00 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-12-05 16:50:21 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the place of birth.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The place of birth.</value>
|
|
|
|
|
public string PlaceOfBirth { get; set; }
|
|
|
|
|
|
2013-09-10 20:23:41 +00:00
|
|
|
|
[IgnoreDataMember]
|
2013-12-02 21:46:22 +00:00
|
|
|
|
public List<ItemByNameCounts> UserItemCountList { get; set; }
|
2013-09-10 18:56:00 +00:00
|
|
|
|
|
2013-04-13 18:02:30 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the user data key.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>System.String.</returns>
|
|
|
|
|
public override string GetUserDataKey()
|
|
|
|
|
{
|
2013-04-22 04:38:03 +00:00
|
|
|
|
return "Person-" + Name;
|
2013-04-13 18:02:30 +00:00
|
|
|
|
}
|
2014-02-07 03:10:13 +00:00
|
|
|
|
|
2014-02-07 22:40:03 +00:00
|
|
|
|
public PersonLookupInfo GetLookupInfo()
|
2014-02-07 03:10:13 +00:00
|
|
|
|
{
|
2014-02-07 22:40:03 +00:00
|
|
|
|
return GetItemLookupInfo<PersonLookupInfo>();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Returns the folder containing the item.
|
|
|
|
|
/// If the item is a folder, it returns the folder itself
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The containing folder path.</value>
|
|
|
|
|
public override string ContainingFolderPath
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return Path;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets a value indicating whether this instance is owned item.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value><c>true</c> if this instance is owned item; otherwise, <c>false</c>.</value>
|
|
|
|
|
public override bool IsOwnedItem
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2014-02-07 03:10:13 +00:00
|
|
|
|
}
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// This is the small Person stub that is attached to BaseItems
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class PersonInfo
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the name.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The name.</value>
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the role.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The role.</value>
|
|
|
|
|
public string Role { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the type.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The type.</value>
|
|
|
|
|
public string Type { get; set; }
|
|
|
|
|
|
2013-11-20 03:15:48 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the sort order - ascending
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The sort order.</value>
|
|
|
|
|
public int? SortOrder { get; set; }
|
|
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Returns a <see cref="System.String" /> that represents this instance.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>A <see cref="System.String" /> that represents this instance.</returns>
|
|
|
|
|
public override string ToString()
|
|
|
|
|
{
|
|
|
|
|
return Name;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|