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

43 lines
1.1 KiB
C#
Raw Normal View History

#nullable disable
#pragma warning disable CS1591
using System;
using Jellyfin.Extensions;
using MediaBrowser.Controller.Entities;
2014-03-08 19:17:05 +01:00
using MediaBrowser.Controller.Sorting;
using MediaBrowser.Model.Querying;
namespace Emby.Server.Implementations.Sorting
2014-03-08 19:17:05 +01:00
{
public class StudioComparer : IBaseItemComparer
{
2021-10-02 19:23:05 +02:00
/// <summary>
/// Gets the name.
/// </summary>
/// <value>The name.</value>
public string Name => ItemSortBy.Studio;
2014-03-08 19:17:05 +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)
2019-10-25 12:47:20 +02:00
{
throw new ArgumentNullException(nameof(x));
2019-10-25 12:47:20 +02:00
}
if (y == null)
2019-10-25 12:47:20 +02:00
{
throw new ArgumentNullException(nameof(y));
2019-10-25 12:47:20 +02:00
}
return AlphanumericComparator.CompareValues(x.Studios.FirstOrDefault(), y.Studios.FirstOrDefault());
2014-03-08 19:17:05 +01:00
}
}
}