< Summary - Jellyfin

Information
Class: Emby.Server.Implementations.Data.ItemTypeLookup
Assembly: Emby.Server.Implementations
File(s): /srv/git/jellyfin/Emby.Server.Implementations/Data/ItemTypeLookup.cs
Line coverage
100%
Covered lines: 42
Uncovered lines: 0
Coverable lines: 42
Total lines: 64
Line coverage: 100%
Branch coverage
N/A
Covered branches: 0
Total branches: 0
Branch coverage: N/A
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%

File(s)

/srv/git/jellyfin/Emby.Server.Implementations/Data/ItemTypeLookup.cs

#LineLine coverage
 1using System.Collections.Frozen;
 2using System.Collections.Generic;
 3using System.Threading.Channels;
 4using Emby.Server.Implementations.Playlists;
 5using Jellyfin.Data.Enums;
 6using MediaBrowser.Controller.Entities;
 7using MediaBrowser.Controller.Entities.Audio;
 8using MediaBrowser.Controller.Entities.Movies;
 9using MediaBrowser.Controller.Entities.TV;
 10using MediaBrowser.Controller.LiveTv;
 11using MediaBrowser.Controller.Persistence;
 12using MediaBrowser.Controller.Playlists;
 13
 14namespace Emby.Server.Implementations.Data;
 15
 16/// <inheritdoc />
 17public class ItemTypeLookup : IItemTypeLookup
 18{
 19    /// <inheritdoc />
 2120    public IReadOnlyList<string> MusicGenreTypes { get; } = [
 2121         typeof(Audio).FullName!,
 2122         typeof(MusicVideo).FullName!,
 2123         typeof(MusicAlbum).FullName!,
 2124         typeof(MusicArtist).FullName!,
 2125    ];
 26
 27    /// <inheritdoc />
 2128    public IReadOnlyDictionary<BaseItemKind, string> BaseItemKindNames { get; } = new Dictionary<BaseItemKind, string>()
 2129    {
 2130        { BaseItemKind.AggregateFolder, typeof(AggregateFolder).FullName! },
 2131        { BaseItemKind.Audio, typeof(Audio).FullName! },
 2132        { BaseItemKind.AudioBook, typeof(AudioBook).FullName! },
 2133        { BaseItemKind.BasePluginFolder, typeof(BasePluginFolder).FullName! },
 2134        { BaseItemKind.Book, typeof(Book).FullName! },
 2135        { BaseItemKind.BoxSet, typeof(BoxSet).FullName! },
 2136        { BaseItemKind.Channel, typeof(Channel).FullName! },
 2137        { BaseItemKind.CollectionFolder, typeof(CollectionFolder).FullName! },
 2138        { BaseItemKind.Episode, typeof(Episode).FullName! },
 2139        { BaseItemKind.Folder, typeof(Folder).FullName! },
 2140        { BaseItemKind.Genre, typeof(Genre).FullName! },
 2141        { BaseItemKind.Movie, typeof(Movie).FullName! },
 2142        { BaseItemKind.LiveTvChannel, typeof(LiveTvChannel).FullName! },
 2143        { BaseItemKind.LiveTvProgram, typeof(LiveTvProgram).FullName! },
 2144        { BaseItemKind.MusicAlbum, typeof(MusicAlbum).FullName! },
 2145        { BaseItemKind.MusicArtist, typeof(MusicArtist).FullName! },
 2146        { BaseItemKind.MusicGenre, typeof(MusicGenre).FullName! },
 2147        { BaseItemKind.MusicVideo, typeof(MusicVideo).FullName! },
 2148        { BaseItemKind.Person, typeof(Person).FullName! },
 2149        { BaseItemKind.Photo, typeof(Photo).FullName! },
 2150        { BaseItemKind.PhotoAlbum, typeof(PhotoAlbum).FullName! },
 2151        { BaseItemKind.Playlist, typeof(Playlist).FullName! },
 2152        { BaseItemKind.PlaylistsFolder, typeof(PlaylistsFolder).FullName! },
 2153        { BaseItemKind.Season, typeof(Season).FullName! },
 2154        { BaseItemKind.Series, typeof(Series).FullName! },
 2155        { BaseItemKind.Studio, typeof(Studio).FullName! },
 2156        { BaseItemKind.Trailer, typeof(Trailer).FullName! },
 2157        { BaseItemKind.TvChannel, typeof(LiveTvChannel).FullName! },
 2158        { BaseItemKind.TvProgram, typeof(LiveTvProgram).FullName! },
 2159        { BaseItemKind.UserRootFolder, typeof(UserRootFolder).FullName! },
 2160        { BaseItemKind.UserView, typeof(UserView).FullName! },
 2161        { BaseItemKind.Video, typeof(Video).FullName! },
 2162        { BaseItemKind.Year, typeof(Year).FullName! }
 2163    }.ToFrozenDictionary();
 64}

Methods/Properties

.ctor()