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

40 lines
1 KiB
C#
Raw Normal View History

#pragma warning disable CS1591
using System;
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
{
public class CommunityRatingComparer : IBaseItemComparer
{
/// <summary>
/// Gets the name.
/// </summary>
/// <value>The name.</value>
public string Name => ItemSortBy.CommunityRating;
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)
{
if (x == null)
{
throw new ArgumentNullException(nameof(x));
}
if (y == null)
{
throw new ArgumentNullException(nameof(y));
}
2013-03-10 05:22:36 +01:00
return (x.CommunityRating ?? 0).CompareTo(y.CommunityRating ?? 0);
}
}
}