jellyfin/MediaBrowser.Controller/Entities/Person.cs

159 lines
4.2 KiB
C#
Raw Normal View History

2015-02-19 05:37:44 +01:00
using MediaBrowser.Controller.Providers;
using System;
using System.Collections.Generic;
using System.Linq;
2015-02-19 05:37:44 +01:00
using System.Runtime.Serialization;
2013-02-21 02:33:05 +01:00
namespace MediaBrowser.Controller.Entities
{
/// <summary>
/// This is the full Person object that can be retrieved with all of it's data.
/// </summary>
public class Person : BaseItem, IItemByName, IHasLookupInfo<PersonLookupInfo>
2013-02-21 02:33:05 +01:00
{
/// <summary>
/// Gets or sets the place of birth.
/// </summary>
/// <value>The place of birth.</value>
public string PlaceOfBirth { get; set; }
2015-01-26 23:47:16 +01:00
/// <summary>
/// Gets the user data key.
/// </summary>
/// <returns>System.String.</returns>
2015-01-24 23:33:26 +01:00
protected override string CreateUserDataKey()
{
2013-04-22 06:38:03 +02:00
return "Person-" + Name;
}
2014-02-07 04:10:13 +01:00
public PersonLookupInfo GetLookupInfo()
2014-02-07 04:10:13 +01: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>
2015-01-26 23:47:16 +01:00
[IgnoreDataMember]
public override string ContainingFolderPath
{
get
{
return Path;
}
}
2015-02-06 06:39:07 +01:00
public override bool CanDelete()
{
return false;
}
2015-02-19 05:37:44 +01:00
public override bool IsSaveLocalMetadataEnabled()
{
return true;
}
2015-07-14 21:04:16 +02:00
[IgnoreDataMember]
public override bool EnableAlphaNumericSorting
{
get
{
return false;
}
}
/// <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>
2015-01-26 23:47:16 +01:00
[IgnoreDataMember]
public override bool IsOwnedItem
{
get
{
return false;
}
2014-02-07 04:10:13 +01:00
}
public IEnumerable<BaseItem> GetTaggedItems(IEnumerable<BaseItem> inputItems)
{
2015-07-07 04:25:23 +02:00
var itemsWithPerson = LibraryManager.GetItemIds(new InternalItemsQuery
{
Person = Name
});
return inputItems.Where(i => itemsWithPerson.Contains(i.Id));
2015-01-25 07:34:50 +01:00
}
2015-01-26 23:47:16 +01:00
public Func<BaseItem, bool> GetItemFilter()
2015-01-25 07:34:50 +01:00
{
2015-06-28 18:36:25 +02:00
return i => LibraryManager.GetPeople(i).Any(p => string.Equals(p.Name, Name, StringComparison.OrdinalIgnoreCase));
}
2015-06-29 03:10:45 +02:00
[IgnoreDataMember]
public override bool SupportsPeople
{
get
{
return false;
}
}
2015-10-29 14:28:05 +01:00
[IgnoreDataMember]
public override bool SupportsAncestors
{
get
{
return false;
}
}
2013-02-21 02:33:05 +01:00
}
/// <summary>
/// This is the small Person stub that is attached to BaseItems
/// </summary>
public class PersonInfo
{
2015-07-08 18:10:34 +02:00
public Guid ItemId { get; set; }
2013-02-21 02:33:05 +01:00
/// <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; }
/// <summary>
/// Gets or sets the sort order - ascending
/// </summary>
/// <value>The sort order.</value>
public int? SortOrder { get; set; }
2013-02-21 02:33:05 +01: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 15:28:38 +02:00
public bool IsType(string type)
{
return string.Equals(Type, type, StringComparison.OrdinalIgnoreCase) || string.Equals(Role, type, StringComparison.OrdinalIgnoreCase);
}
2013-02-21 02:33:05 +01:00
}
}