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

47 lines
1.2 KiB
C#
Raw Normal View History

#pragma warning disable CS1591
using System;
using Jellyfin.Data.Enums;
using MediaBrowser.Controller.Entities;
2015-04-03 18:31:56 +02:00
using MediaBrowser.Controller.LiveTv;
using MediaBrowser.Controller.Sorting;
using MediaBrowser.Model.Querying;
namespace Emby.Server.Implementations.Sorting
2015-04-03 18:31:56 +02:00
{
public class StartDateComparer : IBaseItemComparer
{
/// <summary>
/// Gets the name.
/// </summary>
/// <value>The name.</value>
public ItemSortBy Type => ItemSortBy.StartDate;
2015-04-03 18:31:56 +02:00
/// <summary>
/// Compares the specified x.
/// </summary>
/// <param name="x">The x.</param>
/// <param name="y">The y.</param>
/// <returns>System.Int32.</returns>
2023-02-15 23:41:28 +01:00
public int Compare(BaseItem? x, BaseItem? y)
2015-04-03 18:31:56 +02:00
{
return GetDate(x).CompareTo(GetDate(y));
}
/// <summary>
/// Gets the date.
/// </summary>
/// <param name="x">The x.</param>
/// <returns>DateTime.</returns>
2023-02-15 23:41:28 +01:00
private static DateTime GetDate(BaseItem? x)
2015-04-03 18:31:56 +02:00
{
if (x is LiveTvProgram hasStartDate)
2015-04-03 18:31:56 +02:00
{
return hasStartDate.StartDate;
}
2015-04-03 18:31:56 +02:00
return DateTime.MinValue;
}
}
}