2014-02-07 03:10:13 +00:00
|
|
|
|
using MediaBrowser.Controller.Providers;
|
2014-03-09 22:14:44 +00:00
|
|
|
|
using System;
|
2013-09-10 18:56:00 +00:00
|
|
|
|
using System.Collections.Generic;
|
2014-03-09 22:14:44 +00:00
|
|
|
|
using System.Linq;
|
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-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 18:56:00 +00:00
|
|
|
|
|
2013-04-13 18:02:30 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the user data key.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>System.String.</returns>
|
2015-01-24 22:33:26 +00:00
|
|
|
|
protected override string CreateUserDataKey()
|
2013-04-13 18:02:30 +00:00
|
|
|
|
{
|
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
|
|
|
|
}
|
2014-03-09 22:14:44 +00:00
|
|
|
|
|
|
|
|
|
public IEnumerable<BaseItem> GetTaggedItems(IEnumerable<BaseItem> inputItems)
|
|
|
|
|
{
|
2015-01-25 06:34:50 +00:00
|
|
|
|
return inputItems.Where(ItemFilter);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public Func<BaseItem, bool> ItemFilter
|
|
|
|
|
{
|
|
|
|
|
get { return i => i.People.Any(p => string.Equals(p.Name, Name, StringComparison.OrdinalIgnoreCase)); }
|
2014-03-09 22:14:44 +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;
|
|
|
|
|
}
|
2014-06-30 13:28:38 +00:00
|
|
|
|
|
|
|
|
|
public bool IsType(string type)
|
|
|
|
|
{
|
|
|
|
|
return string.Equals(Type, type, StringComparison.OrdinalIgnoreCase) || string.Equals(Role, type, StringComparison.OrdinalIgnoreCase);
|
|
|
|
|
}
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
|
|
|
|
}
|