using MediaBrowser.Controller.Entities;
using MediaBrowser.Controller.Entities.Audio;
using MediaBrowser.Controller.Sorting;
using MediaBrowser.Model.Querying;
using System;
namespace MediaBrowser.Server.Implementations.Sorting
{
///
/// Class ArtistComparer
///
public class ArtistComparer : IBaseItemComparer
{
///
/// Compares the specified x.
///
/// The x.
/// The y.
/// System.Int32.
public int Compare(BaseItem x, BaseItem y)
{
return string.Compare(GetValue(x), GetValue(y), StringComparison.CurrentCultureIgnoreCase);
}
///
/// Gets the value.
///
/// The x.
/// System.String.
private string GetValue(BaseItem x)
{
var audio = x as Audio;
if (audio == null)
{
return string.Empty;
}
return audio.Artists.Count == 0 ? null : audio.Artists[0];
}
///
/// Gets the name.
///
/// The name.
public string Name
{
get { return ItemSortBy.Artist; }
}
}
}