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

101 lines
2.5 KiB
C#
Raw Normal View History

2015-01-25 01:34:50 -05:00
using System;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
2015-01-26 17:47:16 -05:00
using System.Runtime.Serialization;
2013-02-20 20:33:05 -05:00
namespace MediaBrowser.Controller.Entities
{
/// <summary>
/// Class Year
/// </summary>
2013-06-27 15:29:58 -04:00
public class Year : BaseItem, IItemByName
2013-02-20 20:33:05 -05:00
{
2016-04-30 19:05:21 -04:00
public override List<string> GetUserDataKeys()
{
2016-04-30 19:05:21 -04:00
var list = base.GetUserDataKeys();
list.Insert(0, "Year-" + Name);
return list;
}
/// <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 17:47:16 -05:00
[IgnoreDataMember]
public override string ContainingFolderPath
{
get
{
return Path;
}
}
2015-02-06 00:39:07 -05:00
public override bool CanDelete()
{
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 17:47:16 -05:00
[IgnoreDataMember]
public override bool IsOwnedItem
{
get
{
return false;
}
}
2015-02-18 23:37:44 -05:00
public override bool IsSaveLocalMetadataEnabled()
{
return true;
}
public IEnumerable<BaseItem> GetTaggedItems(IEnumerable<BaseItem> inputItems)
{
int year;
2015-01-26 17:47:16 -05:00
var usCulture = new CultureInfo("en-US");
if (!int.TryParse(Name, NumberStyles.Integer, usCulture, out year))
{
return inputItems;
}
return inputItems.Where(i => i.ProductionYear.HasValue && i.ProductionYear.Value == year);
}
2015-01-25 01:34:50 -05:00
2015-01-26 17:47:16 -05:00
public int? GetYearValue()
{
int i;
if (int.TryParse(Name, NumberStyles.Integer, CultureInfo.InvariantCulture, out i))
{
return i;
}
return null;
}
2015-01-25 01:34:50 -05:00
2015-01-26 17:47:16 -05:00
public Func<BaseItem, bool> GetItemFilter()
2015-01-25 01:34:50 -05:00
{
2015-01-26 17:47:16 -05:00
var val = GetYearValue();
return i => i.ProductionYear.HasValue && val.HasValue && i.ProductionYear.Value == val.Value;
2015-01-25 01:34:50 -05:00
}
2015-06-28 21:10:45 -04:00
[IgnoreDataMember]
public override bool SupportsPeople
{
get
{
return false;
}
}
2013-02-20 20:33:05 -05:00
}
}