< Summary - Jellyfin

Information
Class: Jellyfin.Server.Implementations.Item.OrderMapper
Assembly: Jellyfin.Server.Implementations
File(s): /srv/git/jellyfin/Jellyfin.Server.Implementations/Item/OrderMapper.cs
Line coverage
31%
Covered lines: 10
Uncovered lines: 22
Coverable lines: 32
Total lines: 57
Line coverage: 31.2%
Branch coverage
20%
Covered branches: 6
Total branches: 29
Branch coverage: 20.6%
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
MapOrderByField(...)20.68%3412928.12%

File(s)

/srv/git/jellyfin/Jellyfin.Server.Implementations/Item/OrderMapper.cs

#LineLine coverage
 1using System;
 2using System.Linq;
 3using System.Linq.Expressions;
 4using Jellyfin.Data.Enums;
 5using Jellyfin.Database.Implementations.Entities;
 6using MediaBrowser.Controller.Entities;
 7using Microsoft.EntityFrameworkCore;
 8
 9namespace Jellyfin.Server.Implementations.Item;
 10
 11/// <summary>
 12/// Static class for methods which maps types of ordering to their respecting ordering functions.
 13/// </summary>
 14public static class OrderMapper
 15{
 16    /// <summary>
 17    /// Creates Func to be executed later with a given BaseItemEntity input for sorting items on query.
 18    /// </summary>
 19    /// <param name="sortBy">Item property to sort by.</param>
 20    /// <param name="query">Context Query.</param>
 21    /// <returns>Func to be executed later for sorting query.</returns>
 22    public static Expression<Func<BaseItemEntity, object?>> MapOrderByField(ItemSortBy sortBy, InternalItemsQuery query)
 23    {
 12024        return sortBy switch
 12025        {
 026            ItemSortBy.AirTime => e => e.SortName, // TODO
 027            ItemSortBy.Runtime => e => e.RunTimeTicks,
 4628            ItemSortBy.Random => e => EF.Functions.Random(),
 129            ItemSortBy.DatePlayed => e => e.UserData!.FirstOrDefault(f => f.UserId.Equals(query.User!.Id))!.LastPlayedDa
 030            ItemSortBy.PlayCount => e => e.UserData!.FirstOrDefault(f => f.UserId.Equals(query.User!.Id))!.PlayCount,
 031            ItemSortBy.IsFavoriteOrLiked => e => e.UserData!.FirstOrDefault(f => f.UserId.Equals(query.User!.Id))!.IsFav
 3632            ItemSortBy.IsFolder => e => e.IsFolder,
 033            ItemSortBy.IsPlayed => e => e.UserData!.FirstOrDefault(f => f.UserId.Equals(query.User!.Id))!.Played,
 034            ItemSortBy.IsUnplayed => e => !e.UserData!.FirstOrDefault(f => f.UserId.Equals(query.User!.Id))!.Played,
 035            ItemSortBy.DateLastContentAdded => e => e.DateLastMediaAdded,
 036            ItemSortBy.Artist => e => e.ItemValues!.Where(f => f.ItemValue.Type == ItemValueType.Artist).Select(f => f.I
 037            ItemSortBy.AlbumArtist => e => e.ItemValues!.Where(f => f.ItemValue.Type == ItemValueType.AlbumArtist).Selec
 038            ItemSortBy.Studio => e => e.ItemValues!.Where(f => f.ItemValue.Type == ItemValueType.Studios).Select(f => f.
 039            ItemSortBy.OfficialRating => e => e.InheritedParentalRatingValue,
 12040            // ItemSortBy.SeriesDatePlayed => "(Select MAX(LastPlayedDate) from TypedBaseItems B" + GetJoinUserDataText(
 041            ItemSortBy.SeriesSortName => e => e.SeriesName,
 12042            // ItemSortBy.AiredEpisodeOrder => "AiredEpisodeOrder",
 043            ItemSortBy.Album => e => e.Album,
 044            ItemSortBy.DateCreated => e => e.DateCreated,
 145            ItemSortBy.PremiereDate => e => (e.PremiereDate ?? (e.ProductionYear.HasValue ? DateTime.MinValue.AddYears(e
 046            ItemSortBy.StartDate => e => e.StartDate,
 047            ItemSortBy.Name => e => e.Name,
 048            ItemSortBy.CommunityRating => e => e.CommunityRating,
 049            ItemSortBy.ProductionYear => e => e.ProductionYear,
 050            ItemSortBy.CriticRating => e => e.CriticRating,
 051            ItemSortBy.VideoBitRate => e => e.TotalBitrate,
 052            ItemSortBy.ParentIndexNumber => e => e.ParentIndexNumber,
 053            ItemSortBy.IndexNumber => e => e.IndexNumber,
 3654            _ => e => e.SortName
 12055        };
 56    }
 57}