Files
jellyfin-jellyfin-1/MediaBrowser.Controller/Entities/Studio.cs

65 lines
1.6 KiB
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
2013-02-20 20:33:05 -05:00
namespace MediaBrowser.Controller.Entities
{
/// <summary>
/// Class Studio
/// </summary>
2014-07-14 21:25:58 -04:00
public class Studio : BaseItem, IItemByName, IHasTags
2013-02-20 20:33:05 -05:00
{
2014-07-14 21:25:58 -04:00
public List<string> Tags { get; set; }
public Studio()
{
Tags = new List<string>();
}
/// <summary>
/// Gets the user data key.
/// </summary>
/// <returns>System.String.</returns>
2015-01-24 17:33:26 -05:00
protected override string CreateUserDataKey()
{
2013-04-22 00:38:03 -04:00
return "Studio-" + Name;
}
/// <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;
}
}
public IEnumerable<BaseItem> GetTaggedItems(IEnumerable<BaseItem> inputItems)
{
2015-01-25 01:34:50 -05:00
return inputItems.Where(ItemFilter);
}
public Func<BaseItem, bool> ItemFilter
{
get { return i => i.Studios.Contains(Name, StringComparer.OrdinalIgnoreCase); }
}
2013-02-20 20:33:05 -05:00
}
}