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

93 lines
2.3 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
{
/// <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 "Year-" + 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>
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
}
2013-02-20 20:33:05 -05:00
}
}