2015-01-26 22:47:16 +00:00
|
|
|
|
using System.Runtime.Serialization;
|
|
|
|
|
using MediaBrowser.Controller.Entities.Audio;
|
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;
|
2016-06-17 13:06:13 +00:00
|
|
|
|
using MediaBrowser.Common.Extensions;
|
2013-09-10 18:56:00 +00:00
|
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
|
namespace MediaBrowser.Controller.Entities
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Class Genre
|
|
|
|
|
/// </summary>
|
2013-06-27 19:29:58 +00:00
|
|
|
|
public class Genre : BaseItem, IItemByName
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
2016-04-30 23:05:21 +00:00
|
|
|
|
public override List<string> GetUserDataKeys()
|
2013-04-13 18:02:30 +00:00
|
|
|
|
{
|
2016-04-30 23:05:21 +00:00
|
|
|
|
var list = base.GetUserDataKeys();
|
|
|
|
|
|
2016-06-17 13:06:13 +00:00
|
|
|
|
list.Insert(0, GetType().Name + "-" + (Name ?? string.Empty).RemoveDiacritics());
|
2016-04-30 23:05:21 +00:00
|
|
|
|
return list;
|
2013-04-13 18:02:30 +00:00
|
|
|
|
}
|
2013-09-10 18:56:00 +00:00
|
|
|
|
|
2016-06-17 13:06:13 +00:00
|
|
|
|
public override string PresentationUniqueKey
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return GetUserDataKeys()[0];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-02-07 22:40:03 +00:00
|
|
|
|
/// <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 22:47:16 +00:00
|
|
|
|
[IgnoreDataMember]
|
2014-02-07 22:40:03 +00:00
|
|
|
|
public override string ContainingFolderPath
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return Path;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-02-19 04:37:44 +00:00
|
|
|
|
public override bool IsSaveLocalMetadataEnabled()
|
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2015-02-06 05:39:07 +00:00
|
|
|
|
public override bool CanDelete()
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2014-02-07 22:40:03 +00:00
|
|
|
|
/// <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 22:47:16 +00:00
|
|
|
|
[IgnoreDataMember]
|
2014-02-07 22:40:03 +00:00
|
|
|
|
public override bool IsOwnedItem
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
2014-03-09 22:14:44 +00:00
|
|
|
|
|
|
|
|
|
public IEnumerable<BaseItem> GetTaggedItems(IEnumerable<BaseItem> inputItems)
|
|
|
|
|
{
|
2015-01-26 22:47:16 +00:00
|
|
|
|
return inputItems.Where(GetItemFilter());
|
2015-01-25 06:34:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-01-26 22:47:16 +00:00
|
|
|
|
public Func<BaseItem, bool> GetItemFilter()
|
2015-01-25 06:34:50 +00:00
|
|
|
|
{
|
2015-01-26 22:47:16 +00:00
|
|
|
|
return i => !(i is Game) && !(i is IHasMusicGenres) && i.Genres.Contains(Name, StringComparer.OrdinalIgnoreCase);
|
2014-03-09 22:14:44 +00:00
|
|
|
|
}
|
2015-06-29 01:10:45 +00:00
|
|
|
|
|
2016-05-07 17:47:41 +00:00
|
|
|
|
public IEnumerable<BaseItem> GetTaggedItems(InternalItemsQuery query)
|
|
|
|
|
{
|
|
|
|
|
query.Genres = new[] { Name };
|
|
|
|
|
query.ExcludeItemTypes = new[] { typeof(Game).Name, typeof(MusicVideo).Name, typeof(Audio.Audio).Name, typeof(MusicAlbum).Name, typeof(MusicArtist).Name };
|
|
|
|
|
|
|
|
|
|
return LibraryManager.GetItemList(query);
|
|
|
|
|
}
|
|
|
|
|
|
2015-06-29 01:10:45 +00:00
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
public override bool SupportsPeople
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
|
|
|
|
}
|