jellyfin/Emby.Server.Implementations/Sorting/PremiereDateComparer.cs

64 lines
1.7 KiB
C#
Raw Normal View History

using System;
using Jellyfin.Data.Enums;
using MediaBrowser.Controller.Entities;
2013-03-10 05:22:36 +01:00
using MediaBrowser.Controller.Sorting;
2013-03-10 06:36:39 +01:00
using MediaBrowser.Model.Querying;
2013-03-10 05:22:36 +01:00
namespace Emby.Server.Implementations.Sorting
2013-03-10 05:22:36 +01:00
{
/// <summary>
/// Class PremiereDateComparer.
2013-03-10 05:22:36 +01:00
/// </summary>
public class PremiereDateComparer : IBaseItemComparer
{
2021-10-02 19:23:05 +02:00
/// <summary>
/// Gets the name.
/// </summary>
/// <value>The name.</value>
public ItemSortBy Type => ItemSortBy.PremiereDate;
2021-10-02 19:23:05 +02:00
2013-03-10 05:22:36 +01:00
/// <summary>
/// Compares the specified x.
/// </summary>
/// <param name="x">The x.</param>
/// <param name="y">The y.</param>
/// <returns>System.Int32.</returns>
public int Compare(BaseItem? x, BaseItem? y)
2013-03-10 05:22:36 +01:00
{
return GetDate(x).CompareTo(GetDate(y));
}
/// <summary>
/// Gets the date.
/// </summary>
/// <param name="x">The x.</param>
/// <returns>DateTime.</returns>
private static DateTime GetDate(BaseItem? x)
2013-03-10 05:22:36 +01:00
{
2022-12-05 15:00:20 +01:00
if (x is null)
{
return DateTime.MinValue;
}
2013-03-10 05:22:36 +01:00
if (x.PremiereDate.HasValue)
{
return x.PremiereDate.Value;
}
2019-01-08 00:27:46 +01:00
2013-03-10 05:22:36 +01:00
if (x.ProductionYear.HasValue)
{
try
{
return new DateTime(x.ProductionYear.Value, 1, 1, 0, 0, 0, DateTimeKind.Utc);
}
catch (ArgumentOutOfRangeException)
{
// Don't blow up if the item has a bad ProductionYear, just return MinValue
}
2013-03-10 05:22:36 +01:00
}
2020-06-15 23:43:52 +02:00
2013-04-02 05:28:20 +02:00
return DateTime.MinValue;
2013-03-10 05:22:36 +01:00
}
}
}