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

44 lines
1.2 KiB
C#
Raw Normal View History

2013-03-10 05:22:36 +01:00
using MediaBrowser.Controller.Entities;
using MediaBrowser.Controller.Entities.Audio;
using MediaBrowser.Controller.Sorting;
2013-03-10 06:36:39 +01:00
using MediaBrowser.Model.Querying;
using System;
2013-03-10 05:22:36 +01:00
namespace Emby.Server.Implementations.Sorting
2013-03-10 05:22:36 +01:00
{
/// <summary>
/// Class AlbumComparer
/// </summary>
public class AlbumComparer : IBaseItemComparer
{
/// <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)
{
return string.Compare(GetValue(x), GetValue(y), StringComparison.CurrentCultureIgnoreCase);
}
/// <summary>
/// Gets the value.
/// </summary>
/// <param name="x">The x.</param>
/// <returns>System.String.</returns>
private static string GetValue(BaseItem x)
2013-03-10 05:22:36 +01:00
{
var audio = x as Audio;
return audio == null ? string.Empty : audio.Album;
}
/// <summary>
/// Gets the name.
/// </summary>
/// <value>The name.</value>
public string Name => ItemSortBy.Album;
2013-03-10 05:22:36 +01:00
}
}