< Summary - Jellyfin

Information
Class: Emby.Server.Implementations.Sorting.OfficialRatingComparer
Assembly: Emby.Server.Implementations
File(s): /srv/git/jellyfin/Emby.Server.Implementations/Sorting/OfficialRatingComparer.cs
Line coverage
25%
Covered lines: 3
Uncovered lines: 9
Coverable lines: 12
Total lines: 54
Line coverage: 25%
Branch coverage
0%
Covered branches: 0
Total branches: 10
Branch coverage: 0%
Method coverage

Feature is only available for sponsors

Upgrade to PRO version

Coverage history

Coverage history 0 25 50 75 100

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity Line coverage
.ctor(...)100%11100%
get_Type()100%11100%
Compare(...)0%110100%

File(s)

/srv/git/jellyfin/Emby.Server.Implementations/Sorting/OfficialRatingComparer.cs

#LineLine coverage
 1using System;
 2using Jellyfin.Data.Enums;
 3using MediaBrowser.Controller.Entities;
 4using MediaBrowser.Controller.Sorting;
 5using MediaBrowser.Model.Entities;
 6using MediaBrowser.Model.Globalization;
 7
 8namespace Emby.Server.Implementations.Sorting;
 9
 10/// <summary>
 11/// Class providing comparison for official ratings.
 12/// </summary>
 13public class OfficialRatingComparer : IBaseItemComparer
 14{
 15    private readonly ILocalizationManager _localizationManager;
 16
 17    /// <summary>
 18    /// Initializes a new instance of the <see cref="OfficialRatingComparer"/> class.
 19    /// </summary>
 20    /// <param name="localizationManager">Instance of the <see cref="ILocalizationManager"/> interface.</param>
 21    public OfficialRatingComparer(ILocalizationManager localizationManager)
 22    {
 2123        _localizationManager = localizationManager;
 2124    }
 25
 26    /// <summary>
 27    /// Gets the name.
 28    /// </summary>
 29    /// <value>The name.</value>
 130    public ItemSortBy Type => ItemSortBy.OfficialRating;
 31
 32    /// <summary>
 33    /// Compares the specified x.
 34    /// </summary>
 35    /// <param name="x">The x.</param>
 36    /// <param name="y">The y.</param>
 37    /// <returns>System.Int32.</returns>
 38    public int Compare(BaseItem? x, BaseItem? y)
 39    {
 040        ArgumentNullException.ThrowIfNull(x);
 041        ArgumentNullException.ThrowIfNull(y);
 042        var zeroRating = new ParentalRatingScore(0, 0);
 43
 044        var ratingX = string.IsNullOrEmpty(x.OfficialRating) ? zeroRating : _localizationManager.GetRatingScore(x.Offici
 045        var ratingY = string.IsNullOrEmpty(y.OfficialRating) ? zeroRating : _localizationManager.GetRatingScore(y.Offici
 046        var scoreCompare = ratingX.Score.CompareTo(ratingY.Score);
 047        if (scoreCompare is 0)
 48        {
 049            return (ratingX.SubScore ?? 0).CompareTo(ratingY.SubScore ?? 0);
 50        }
 51
 052        return scoreCompare;
 53    }
 54}