| | 1 | | using System.Collections.Frozen; |
| | 2 | | using System.Collections.Generic; |
| | 3 | | using System.Threading.Channels; |
| | 4 | | using Emby.Server.Implementations.Playlists; |
| | 5 | | using Jellyfin.Data.Enums; |
| | 6 | | using MediaBrowser.Controller.Entities; |
| | 7 | | using MediaBrowser.Controller.Entities.Audio; |
| | 8 | | using MediaBrowser.Controller.Entities.Movies; |
| | 9 | | using MediaBrowser.Controller.Entities.TV; |
| | 10 | | using MediaBrowser.Controller.LiveTv; |
| | 11 | | using MediaBrowser.Controller.Persistence; |
| | 12 | | using MediaBrowser.Controller.Playlists; |
| | 13 | |
|
| | 14 | | namespace Emby.Server.Implementations.Data; |
| | 15 | |
|
| | 16 | | /// <inheritdoc /> |
| | 17 | | public class ItemTypeLookup : IItemTypeLookup |
| | 18 | | { |
| | 19 | | /// <inheritdoc /> |
| 21 | 20 | | public IReadOnlyList<string> MusicGenreTypes { get; } = [ |
| 21 | 21 | | typeof(Audio).FullName!, |
| 21 | 22 | | typeof(MusicVideo).FullName!, |
| 21 | 23 | | typeof(MusicAlbum).FullName!, |
| 21 | 24 | | typeof(MusicArtist).FullName!, |
| 21 | 25 | | ]; |
| | 26 | |
|
| | 27 | | /// <inheritdoc /> |
| 21 | 28 | | public IReadOnlyDictionary<BaseItemKind, string> BaseItemKindNames { get; } = new Dictionary<BaseItemKind, string>() |
| 21 | 29 | | { |
| 21 | 30 | | { BaseItemKind.AggregateFolder, typeof(AggregateFolder).FullName! }, |
| 21 | 31 | | { BaseItemKind.Audio, typeof(Audio).FullName! }, |
| 21 | 32 | | { BaseItemKind.AudioBook, typeof(AudioBook).FullName! }, |
| 21 | 33 | | { BaseItemKind.BasePluginFolder, typeof(BasePluginFolder).FullName! }, |
| 21 | 34 | | { BaseItemKind.Book, typeof(Book).FullName! }, |
| 21 | 35 | | { BaseItemKind.BoxSet, typeof(BoxSet).FullName! }, |
| 21 | 36 | | { BaseItemKind.Channel, typeof(Channel).FullName! }, |
| 21 | 37 | | { BaseItemKind.CollectionFolder, typeof(CollectionFolder).FullName! }, |
| 21 | 38 | | { BaseItemKind.Episode, typeof(Episode).FullName! }, |
| 21 | 39 | | { BaseItemKind.Folder, typeof(Folder).FullName! }, |
| 21 | 40 | | { BaseItemKind.Genre, typeof(Genre).FullName! }, |
| 21 | 41 | | { BaseItemKind.Movie, typeof(Movie).FullName! }, |
| 21 | 42 | | { BaseItemKind.LiveTvChannel, typeof(LiveTvChannel).FullName! }, |
| 21 | 43 | | { BaseItemKind.LiveTvProgram, typeof(LiveTvProgram).FullName! }, |
| 21 | 44 | | { BaseItemKind.MusicAlbum, typeof(MusicAlbum).FullName! }, |
| 21 | 45 | | { BaseItemKind.MusicArtist, typeof(MusicArtist).FullName! }, |
| 21 | 46 | | { BaseItemKind.MusicGenre, typeof(MusicGenre).FullName! }, |
| 21 | 47 | | { BaseItemKind.MusicVideo, typeof(MusicVideo).FullName! }, |
| 21 | 48 | | { BaseItemKind.Person, typeof(Person).FullName! }, |
| 21 | 49 | | { BaseItemKind.Photo, typeof(Photo).FullName! }, |
| 21 | 50 | | { BaseItemKind.PhotoAlbum, typeof(PhotoAlbum).FullName! }, |
| 21 | 51 | | { BaseItemKind.Playlist, typeof(Playlist).FullName! }, |
| 21 | 52 | | { BaseItemKind.PlaylistsFolder, typeof(PlaylistsFolder).FullName! }, |
| 21 | 53 | | { BaseItemKind.Season, typeof(Season).FullName! }, |
| 21 | 54 | | { BaseItemKind.Series, typeof(Series).FullName! }, |
| 21 | 55 | | { BaseItemKind.Studio, typeof(Studio).FullName! }, |
| 21 | 56 | | { BaseItemKind.Trailer, typeof(Trailer).FullName! }, |
| 21 | 57 | | { BaseItemKind.TvChannel, typeof(LiveTvChannel).FullName! }, |
| 21 | 58 | | { BaseItemKind.TvProgram, typeof(LiveTvProgram).FullName! }, |
| 21 | 59 | | { BaseItemKind.UserRootFolder, typeof(UserRootFolder).FullName! }, |
| 21 | 60 | | { BaseItemKind.UserView, typeof(UserView).FullName! }, |
| 21 | 61 | | { BaseItemKind.Video, typeof(Video).FullName! }, |
| 21 | 62 | | { BaseItemKind.Year, typeof(Year).FullName! } |
| 21 | 63 | | }.ToFrozenDictionary(); |
| | 64 | | } |