| | 1 | | using System; |
| | 2 | | using System.Linq; |
| | 3 | | using Jellyfin.Api.Helpers; |
| | 4 | | using Jellyfin.Api.ModelBinders; |
| | 5 | | using Jellyfin.Data.Enums; |
| | 6 | | using Jellyfin.Extensions; |
| | 7 | | using MediaBrowser.Controller.Dto; |
| | 8 | | using MediaBrowser.Controller.Entities; |
| | 9 | | using MediaBrowser.Controller.Library; |
| | 10 | | using MediaBrowser.Model.Dto; |
| | 11 | | using MediaBrowser.Model.Querying; |
| | 12 | | using Microsoft.AspNetCore.Authorization; |
| | 13 | | using Microsoft.AspNetCore.Http; |
| | 14 | | using Microsoft.AspNetCore.Mvc; |
| | 15 | |
|
| | 16 | | namespace Jellyfin.Api.Controllers; |
| | 17 | |
|
| | 18 | | /// <summary> |
| | 19 | | /// Filters controller. |
| | 20 | | /// </summary> |
| | 21 | | [Route("")] |
| | 22 | | [Authorize] |
| | 23 | | public class FilterController : BaseJellyfinApiController |
| | 24 | | { |
| | 25 | | private readonly ILibraryManager _libraryManager; |
| | 26 | | private readonly IUserManager _userManager; |
| | 27 | |
|
| | 28 | | /// <summary> |
| | 29 | | /// Initializes a new instance of the <see cref="FilterController"/> class. |
| | 30 | | /// </summary> |
| | 31 | | /// <param name="libraryManager">Instance of the <see cref="ILibraryManager"/> interface.</param> |
| | 32 | | /// <param name="userManager">Instance of the <see cref="IUserManager"/> interface.</param> |
| 0 | 33 | | public FilterController(ILibraryManager libraryManager, IUserManager userManager) |
| | 34 | | { |
| 0 | 35 | | _libraryManager = libraryManager; |
| 0 | 36 | | _userManager = userManager; |
| 0 | 37 | | } |
| | 38 | |
|
| | 39 | | /// <summary> |
| | 40 | | /// Gets legacy query filters. |
| | 41 | | /// </summary> |
| | 42 | | /// <param name="userId">Optional. User id.</param> |
| | 43 | | /// <param name="parentId">Optional. Parent id.</param> |
| | 44 | | /// <param name="includeItemTypes">Optional. If specified, results will be filtered based on item type. This allows |
| | 45 | | /// <param name="mediaTypes">Optional. Filter by MediaType. Allows multiple, comma delimited.</param> |
| | 46 | | /// <response code="200">Legacy filters retrieved.</response> |
| | 47 | | /// <returns>Legacy query filters.</returns> |
| | 48 | | [HttpGet("Items/Filters")] |
| | 49 | | [ProducesResponseType(StatusCodes.Status200OK)] |
| | 50 | | public ActionResult<QueryFiltersLegacy> GetQueryFiltersLegacy( |
| | 51 | | [FromQuery] Guid? userId, |
| | 52 | | [FromQuery] Guid? parentId, |
| | 53 | | [FromQuery, ModelBinder(typeof(CommaDelimitedCollectionModelBinder))] BaseItemKind[] includeItemTypes, |
| | 54 | | [FromQuery, ModelBinder(typeof(CommaDelimitedCollectionModelBinder))] MediaType[] mediaTypes) |
| | 55 | | { |
| 0 | 56 | | userId = RequestHelpers.GetUserId(User, userId); |
| 0 | 57 | | var user = userId.IsNullOrEmpty() |
| 0 | 58 | | ? null |
| 0 | 59 | | : _userManager.GetUserById(userId.Value); |
| | 60 | |
|
| 0 | 61 | | BaseItem? item = null; |
| 0 | 62 | | if (includeItemTypes.Length != 1 |
| 0 | 63 | | || !(includeItemTypes[0] == BaseItemKind.BoxSet |
| 0 | 64 | | || includeItemTypes[0] == BaseItemKind.Playlist |
| 0 | 65 | | || includeItemTypes[0] == BaseItemKind.Trailer |
| 0 | 66 | | || includeItemTypes[0] == BaseItemKind.Program)) |
| | 67 | | { |
| 0 | 68 | | item = _libraryManager.GetParentItem(parentId, user?.Id); |
| | 69 | | } |
| | 70 | |
|
| 0 | 71 | | var query = new InternalItemsQuery |
| 0 | 72 | | { |
| 0 | 73 | | User = user, |
| 0 | 74 | | MediaTypes = mediaTypes, |
| 0 | 75 | | IncludeItemTypes = includeItemTypes, |
| 0 | 76 | | Recursive = true, |
| 0 | 77 | | EnableTotalRecordCount = false, |
| 0 | 78 | | DtoOptions = new DtoOptions |
| 0 | 79 | | { |
| 0 | 80 | | Fields = new[] { ItemFields.Genres, ItemFields.Tags }, |
| 0 | 81 | | EnableImages = false, |
| 0 | 82 | | EnableUserData = false |
| 0 | 83 | | } |
| 0 | 84 | | }; |
| | 85 | |
|
| 0 | 86 | | if (item is not Folder folder) |
| | 87 | | { |
| 0 | 88 | | return new QueryFiltersLegacy(); |
| | 89 | | } |
| | 90 | |
|
| 0 | 91 | | var itemList = folder.GetItemList(query); |
| 0 | 92 | | return new QueryFiltersLegacy |
| 0 | 93 | | { |
| 0 | 94 | | Years = itemList.Select(i => i.ProductionYear ?? -1) |
| 0 | 95 | | .Where(i => i > 0) |
| 0 | 96 | | .Distinct() |
| 0 | 97 | | .Order() |
| 0 | 98 | | .ToArray(), |
| 0 | 99 | |
|
| 0 | 100 | | Genres = itemList.SelectMany(i => i.Genres) |
| 0 | 101 | | .DistinctNames() |
| 0 | 102 | | .Order() |
| 0 | 103 | | .ToArray(), |
| 0 | 104 | |
|
| 0 | 105 | | Tags = itemList |
| 0 | 106 | | .SelectMany(i => i.Tags) |
| 0 | 107 | | .Distinct(StringComparer.OrdinalIgnoreCase) |
| 0 | 108 | | .Order() |
| 0 | 109 | | .ToArray(), |
| 0 | 110 | |
|
| 0 | 111 | | OfficialRatings = itemList |
| 0 | 112 | | .Select(i => i.OfficialRating) |
| 0 | 113 | | .Where(i => !string.IsNullOrWhiteSpace(i)) |
| 0 | 114 | | .Distinct(StringComparer.OrdinalIgnoreCase) |
| 0 | 115 | | .Order() |
| 0 | 116 | | .ToArray() |
| 0 | 117 | | }; |
| | 118 | | } |
| | 119 | |
|
| | 120 | | /// <summary> |
| | 121 | | /// Gets query filters. |
| | 122 | | /// </summary> |
| | 123 | | /// <param name="userId">Optional. User id.</param> |
| | 124 | | /// <param name="parentId">Optional. Specify this to localize the search to a specific item or folder. Omit to use t |
| | 125 | | /// <param name="includeItemTypes">Optional. If specified, results will be filtered based on item type. This allows |
| | 126 | | /// <param name="isAiring">Optional. Is item airing.</param> |
| | 127 | | /// <param name="isMovie">Optional. Is item movie.</param> |
| | 128 | | /// <param name="isSports">Optional. Is item sports.</param> |
| | 129 | | /// <param name="isKids">Optional. Is item kids.</param> |
| | 130 | | /// <param name="isNews">Optional. Is item news.</param> |
| | 131 | | /// <param name="isSeries">Optional. Is item series.</param> |
| | 132 | | /// <param name="recursive">Optional. Search recursive.</param> |
| | 133 | | /// <response code="200">Filters retrieved.</response> |
| | 134 | | /// <returns>Query filters.</returns> |
| | 135 | | [HttpGet("Items/Filters2")] |
| | 136 | | [ProducesResponseType(StatusCodes.Status200OK)] |
| | 137 | | public ActionResult<QueryFilters> GetQueryFilters( |
| | 138 | | [FromQuery] Guid? userId, |
| | 139 | | [FromQuery] Guid? parentId, |
| | 140 | | [FromQuery, ModelBinder(typeof(CommaDelimitedCollectionModelBinder))] BaseItemKind[] includeItemTypes, |
| | 141 | | [FromQuery] bool? isAiring, |
| | 142 | | [FromQuery] bool? isMovie, |
| | 143 | | [FromQuery] bool? isSports, |
| | 144 | | [FromQuery] bool? isKids, |
| | 145 | | [FromQuery] bool? isNews, |
| | 146 | | [FromQuery] bool? isSeries, |
| | 147 | | [FromQuery] bool? recursive) |
| | 148 | | { |
| 0 | 149 | | userId = RequestHelpers.GetUserId(User, userId); |
| 0 | 150 | | var user = userId.IsNullOrEmpty() |
| 0 | 151 | | ? null |
| 0 | 152 | | : _userManager.GetUserById(userId.Value); |
| | 153 | |
|
| 0 | 154 | | BaseItem? parentItem = null; |
| 0 | 155 | | if (includeItemTypes.Length == 1 |
| 0 | 156 | | && (includeItemTypes[0] == BaseItemKind.BoxSet |
| 0 | 157 | | || includeItemTypes[0] == BaseItemKind.Playlist |
| 0 | 158 | | || includeItemTypes[0] == BaseItemKind.Trailer |
| 0 | 159 | | || includeItemTypes[0] == BaseItemKind.Program)) |
| | 160 | | { |
| 0 | 161 | | parentItem = null; |
| | 162 | | } |
| 0 | 163 | | else if (parentId.HasValue) |
| | 164 | | { |
| 0 | 165 | | parentItem = _libraryManager.GetItemById<BaseItem>(parentId.Value); |
| | 166 | | } |
| | 167 | |
|
| 0 | 168 | | var filters = new QueryFilters(); |
| 0 | 169 | | var genreQuery = new InternalItemsQuery(user) |
| 0 | 170 | | { |
| 0 | 171 | | IncludeItemTypes = includeItemTypes, |
| 0 | 172 | | DtoOptions = new DtoOptions |
| 0 | 173 | | { |
| 0 | 174 | | Fields = Array.Empty<ItemFields>(), |
| 0 | 175 | | EnableImages = false, |
| 0 | 176 | | EnableUserData = false |
| 0 | 177 | | }, |
| 0 | 178 | | IsAiring = isAiring, |
| 0 | 179 | | IsMovie = isMovie, |
| 0 | 180 | | IsSports = isSports, |
| 0 | 181 | | IsKids = isKids, |
| 0 | 182 | | IsNews = isNews, |
| 0 | 183 | | IsSeries = isSeries |
| 0 | 184 | | }; |
| | 185 | |
|
| 0 | 186 | | if ((recursive ?? true) || parentItem is UserView || parentItem is ICollectionFolder) |
| | 187 | | { |
| 0 | 188 | | genreQuery.AncestorIds = parentItem is null ? Array.Empty<Guid>() : new[] { parentItem.Id }; |
| | 189 | | } |
| | 190 | | else |
| | 191 | | { |
| 0 | 192 | | genreQuery.Parent = parentItem; |
| | 193 | | } |
| | 194 | |
|
| 0 | 195 | | if (includeItemTypes.Length == 1 |
| 0 | 196 | | && (includeItemTypes[0] == BaseItemKind.MusicAlbum |
| 0 | 197 | | || includeItemTypes[0] == BaseItemKind.MusicVideo |
| 0 | 198 | | || includeItemTypes[0] == BaseItemKind.MusicArtist |
| 0 | 199 | | || includeItemTypes[0] == BaseItemKind.Audio)) |
| | 200 | | { |
| 0 | 201 | | filters.Genres = _libraryManager.GetMusicGenres(genreQuery).Items.Select(i => new NameGuidPair |
| 0 | 202 | | { |
| 0 | 203 | | Name = i.Item.Name, |
| 0 | 204 | | Id = i.Item.Id |
| 0 | 205 | | }).ToArray(); |
| | 206 | | } |
| | 207 | | else |
| | 208 | | { |
| 0 | 209 | | filters.Genres = _libraryManager.GetGenres(genreQuery).Items.Select(i => new NameGuidPair |
| 0 | 210 | | { |
| 0 | 211 | | Name = i.Item.Name, |
| 0 | 212 | | Id = i.Item.Id |
| 0 | 213 | | }).ToArray(); |
| | 214 | | } |
| | 215 | |
|
| 0 | 216 | | return filters; |
| | 217 | | } |
| | 218 | | } |