2020-05-29 09:28:19 +00:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
2019-01-13 19:54:44 +00:00
|
|
|
using System;
|
2023-11-09 21:00:13 +00:00
|
|
|
using Jellyfin.Data.Enums;
|
2019-01-13 19:22:24 +00:00
|
|
|
using MediaBrowser.Controller.Entities;
|
2015-04-03 16:31:56 +00:00
|
|
|
using MediaBrowser.Controller.LiveTv;
|
|
|
|
using MediaBrowser.Controller.Sorting;
|
|
|
|
using MediaBrowser.Model.Querying;
|
|
|
|
|
2016-11-03 06:37:52 +00:00
|
|
|
namespace Emby.Server.Implementations.Sorting
|
2015-04-03 16:31:56 +00:00
|
|
|
{
|
|
|
|
public class StartDateComparer : IBaseItemComparer
|
|
|
|
{
|
2020-05-29 09:28:19 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Gets the name.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The name.</value>
|
2023-11-09 21:00:13 +00:00
|
|
|
public ItemSortBy Type => ItemSortBy.StartDate;
|
2020-05-29 09:28:19 +00:00
|
|
|
|
2015-04-03 16:31:56 +00: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 22:41:28 +00:00
|
|
|
public int Compare(BaseItem? x, BaseItem? y)
|
2015-04-03 16:31:56 +00:00
|
|
|
{
|
|
|
|
return GetDate(x).CompareTo(GetDate(y));
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets the date.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="x">The x.</param>
|
|
|
|
/// <returns>DateTime.</returns>
|
2023-02-15 22:41:28 +00:00
|
|
|
private static DateTime GetDate(BaseItem? x)
|
2015-04-03 16:31:56 +00:00
|
|
|
{
|
2020-05-29 09:28:19 +00:00
|
|
|
if (x is LiveTvProgram hasStartDate)
|
2015-04-03 16:31:56 +00:00
|
|
|
{
|
|
|
|
return hasStartDate.StartDate;
|
|
|
|
}
|
2020-05-29 09:28:19 +00:00
|
|
|
|
2015-04-03 16:31:56 +00:00
|
|
|
return DateTime.MinValue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|