| | 1 | | using System; |
| | 2 | | using System.ComponentModel.DataAnnotations; |
| | 3 | | using System.Linq; |
| | 4 | | using Jellyfin.Api.Extensions; |
| | 5 | | using Jellyfin.Api.Helpers; |
| | 6 | | using Jellyfin.Api.ModelBinders; |
| | 7 | | using Jellyfin.Data.Enums; |
| | 8 | | using Jellyfin.Database.Implementations.Entities; |
| | 9 | | using Jellyfin.Database.Implementations.Enums; |
| | 10 | | using Jellyfin.Extensions; |
| | 11 | | using MediaBrowser.Controller.Dto; |
| | 12 | | using MediaBrowser.Controller.Entities; |
| | 13 | | using MediaBrowser.Controller.Library; |
| | 14 | | using MediaBrowser.Model.Dto; |
| | 15 | | using MediaBrowser.Model.Entities; |
| | 16 | | using MediaBrowser.Model.Querying; |
| | 17 | | using Microsoft.AspNetCore.Authorization; |
| | 18 | | using Microsoft.AspNetCore.Http; |
| | 19 | | using Microsoft.AspNetCore.Mvc; |
| | 20 | |
|
| | 21 | | namespace Jellyfin.Api.Controllers; |
| | 22 | |
|
| | 23 | | /// <summary> |
| | 24 | | /// The artists controller. |
| | 25 | | /// </summary> |
| | 26 | | [Route("Artists")] |
| | 27 | | [Authorize] |
| | 28 | | public class ArtistsController : BaseJellyfinApiController |
| | 29 | | { |
| | 30 | | private readonly ILibraryManager _libraryManager; |
| | 31 | | private readonly IUserManager _userManager; |
| | 32 | | private readonly IDtoService _dtoService; |
| | 33 | |
|
| | 34 | | /// <summary> |
| | 35 | | /// Initializes a new instance of the <see cref="ArtistsController"/> class. |
| | 36 | | /// </summary> |
| | 37 | | /// <param name="libraryManager">Instance of the <see cref="ILibraryManager"/> interface.</param> |
| | 38 | | /// <param name="userManager">Instance of the <see cref="IUserManager"/> interface.</param> |
| | 39 | | /// <param name="dtoService">Instance of the <see cref="IDtoService"/> interface.</param> |
| 0 | 40 | | public ArtistsController( |
| 0 | 41 | | ILibraryManager libraryManager, |
| 0 | 42 | | IUserManager userManager, |
| 0 | 43 | | IDtoService dtoService) |
| | 44 | | { |
| 0 | 45 | | _libraryManager = libraryManager; |
| 0 | 46 | | _userManager = userManager; |
| 0 | 47 | | _dtoService = dtoService; |
| 0 | 48 | | } |
| | 49 | |
|
| | 50 | | /// <summary> |
| | 51 | | /// Gets all artists from a given item, folder, or the entire library. |
| | 52 | | /// </summary> |
| | 53 | | /// <param name="minCommunityRating">Optional filter by minimum community rating.</param> |
| | 54 | | /// <param name="startIndex">Optional. The record index to start at. All items with a lower index will be dropped fr |
| | 55 | | /// <param name="limit">Optional. The maximum number of records to return.</param> |
| | 56 | | /// <param name="searchTerm">Optional. Search term.</param> |
| | 57 | | /// <param name="parentId">Specify this to localize the search to a specific item or folder. Omit to use the root.</ |
| | 58 | | /// <param name="fields">Optional. Specify additional fields of information to return in the output.</param> |
| | 59 | | /// <param name="excludeItemTypes">Optional. If specified, results will be filtered out based on item type. This all |
| | 60 | | /// <param name="includeItemTypes">Optional. If specified, results will be filtered based on item type. This allows |
| | 61 | | /// <param name="filters">Optional. Specify additional filters to apply.</param> |
| | 62 | | /// <param name="isFavorite">Optional filter by items that are marked as favorite, or not.</param> |
| | 63 | | /// <param name="mediaTypes">Optional filter by MediaType. Allows multiple, comma delimited.</param> |
| | 64 | | /// <param name="genres">Optional. If specified, results will be filtered based on genre. This allows multiple, pipe |
| | 65 | | /// <param name="genreIds">Optional. If specified, results will be filtered based on genre id. This allows multiple, |
| | 66 | | /// <param name="officialRatings">Optional. If specified, results will be filtered based on OfficialRating. This all |
| | 67 | | /// <param name="tags">Optional. If specified, results will be filtered based on tag. This allows multiple, pipe del |
| | 68 | | /// <param name="years">Optional. If specified, results will be filtered based on production year. This allows multi |
| | 69 | | /// <param name="enableUserData">Optional, include user data.</param> |
| | 70 | | /// <param name="imageTypeLimit">Optional, the max number of images to return, per image type.</param> |
| | 71 | | /// <param name="enableImageTypes">Optional. The image types to include in the output.</param> |
| | 72 | | /// <param name="person">Optional. If specified, results will be filtered to include only those containing the speci |
| | 73 | | /// <param name="personIds">Optional. If specified, results will be filtered to include only those containing the sp |
| | 74 | | /// <param name="personTypes">Optional. If specified, along with Person, results will be filtered to include only th |
| | 75 | | /// <param name="studios">Optional. If specified, results will be filtered based on studio. This allows multiple, pi |
| | 76 | | /// <param name="studioIds">Optional. If specified, results will be filtered based on studio id. This allows multipl |
| | 77 | | /// <param name="userId">User id.</param> |
| | 78 | | /// <param name="nameStartsWithOrGreater">Optional filter by items whose name is sorted equally or greater than a gi |
| | 79 | | /// <param name="nameStartsWith">Optional filter by items whose name is sorted equally than a given input string.</p |
| | 80 | | /// <param name="nameLessThan">Optional filter by items whose name is equally or lesser than a given input string.</ |
| | 81 | | /// <param name="sortBy">Optional. Specify one or more sort orders, comma delimited.</param> |
| | 82 | | /// <param name="sortOrder">Sort Order - Ascending,Descending.</param> |
| | 83 | | /// <param name="enableImages">Optional, include image information in output.</param> |
| | 84 | | /// <param name="enableTotalRecordCount">Total record count.</param> |
| | 85 | | /// <response code="200">Artists returned.</response> |
| | 86 | | /// <returns>An <see cref="OkResult"/> containing the artists.</returns> |
| | 87 | | [HttpGet] |
| | 88 | | [ProducesResponseType(StatusCodes.Status200OK)] |
| | 89 | | public ActionResult<QueryResult<BaseItemDto>> GetArtists( |
| | 90 | | [FromQuery] double? minCommunityRating, |
| | 91 | | [FromQuery] int? startIndex, |
| | 92 | | [FromQuery] int? limit, |
| | 93 | | [FromQuery] string? searchTerm, |
| | 94 | | [FromQuery] Guid? parentId, |
| | 95 | | [FromQuery, ModelBinder(typeof(CommaDelimitedCollectionModelBinder))] ItemFields[] fields, |
| | 96 | | [FromQuery, ModelBinder(typeof(CommaDelimitedCollectionModelBinder))] BaseItemKind[] excludeItemTypes, |
| | 97 | | [FromQuery, ModelBinder(typeof(CommaDelimitedCollectionModelBinder))] BaseItemKind[] includeItemTypes, |
| | 98 | | [FromQuery, ModelBinder(typeof(CommaDelimitedCollectionModelBinder))] ItemFilter[] filters, |
| | 99 | | [FromQuery] bool? isFavorite, |
| | 100 | | [FromQuery, ModelBinder(typeof(CommaDelimitedCollectionModelBinder))] MediaType[] mediaTypes, |
| | 101 | | [FromQuery, ModelBinder(typeof(PipeDelimitedCollectionModelBinder))] string[] genres, |
| | 102 | | [FromQuery, ModelBinder(typeof(CommaDelimitedCollectionModelBinder))] Guid[] genreIds, |
| | 103 | | [FromQuery, ModelBinder(typeof(PipeDelimitedCollectionModelBinder))] string[] officialRatings, |
| | 104 | | [FromQuery, ModelBinder(typeof(PipeDelimitedCollectionModelBinder))] string[] tags, |
| | 105 | | [FromQuery, ModelBinder(typeof(CommaDelimitedCollectionModelBinder))] int[] years, |
| | 106 | | [FromQuery] bool? enableUserData, |
| | 107 | | [FromQuery] int? imageTypeLimit, |
| | 108 | | [FromQuery, ModelBinder(typeof(CommaDelimitedCollectionModelBinder))] ImageType[] enableImageTypes, |
| | 109 | | [FromQuery] string? person, |
| | 110 | | [FromQuery, ModelBinder(typeof(CommaDelimitedCollectionModelBinder))] Guid[] personIds, |
| | 111 | | [FromQuery, ModelBinder(typeof(CommaDelimitedCollectionModelBinder))] string[] personTypes, |
| | 112 | | [FromQuery, ModelBinder(typeof(PipeDelimitedCollectionModelBinder))] string[] studios, |
| | 113 | | [FromQuery, ModelBinder(typeof(CommaDelimitedCollectionModelBinder))] Guid[] studioIds, |
| | 114 | | [FromQuery] Guid? userId, |
| | 115 | | [FromQuery] string? nameStartsWithOrGreater, |
| | 116 | | [FromQuery] string? nameStartsWith, |
| | 117 | | [FromQuery] string? nameLessThan, |
| | 118 | | [FromQuery, ModelBinder(typeof(CommaDelimitedCollectionModelBinder))] ItemSortBy[] sortBy, |
| | 119 | | [FromQuery, ModelBinder(typeof(CommaDelimitedCollectionModelBinder))] SortOrder[] sortOrder, |
| | 120 | | [FromQuery] bool? enableImages = true, |
| | 121 | | [FromQuery] bool enableTotalRecordCount = true) |
| | 122 | | { |
| 0 | 123 | | userId = RequestHelpers.GetUserId(User, userId); |
| 0 | 124 | | var dtoOptions = new DtoOptions { Fields = fields } |
| 0 | 125 | | .AddClientFields(User) |
| 0 | 126 | | .AddAdditionalDtoOptions(enableImages, enableUserData, imageTypeLimit, enableImageTypes); |
| | 127 | |
|
| 0 | 128 | | User? user = null; |
| 0 | 129 | | BaseItem parentItem = _libraryManager.GetParentItem(parentId, userId); |
| | 130 | |
|
| 0 | 131 | | if (!userId.IsNullOrEmpty()) |
| | 132 | | { |
| 0 | 133 | | user = _userManager.GetUserById(userId.Value); |
| | 134 | | } |
| | 135 | |
|
| 0 | 136 | | var query = new InternalItemsQuery(user) |
| 0 | 137 | | { |
| 0 | 138 | | ExcludeItemTypes = excludeItemTypes, |
| 0 | 139 | | IncludeItemTypes = includeItemTypes, |
| 0 | 140 | | MediaTypes = mediaTypes, |
| 0 | 141 | | StartIndex = startIndex, |
| 0 | 142 | | Limit = limit, |
| 0 | 143 | | IsFavorite = isFavorite, |
| 0 | 144 | | NameLessThan = nameLessThan, |
| 0 | 145 | | NameStartsWith = nameStartsWith, |
| 0 | 146 | | NameStartsWithOrGreater = nameStartsWithOrGreater, |
| 0 | 147 | | Tags = tags, |
| 0 | 148 | | OfficialRatings = officialRatings, |
| 0 | 149 | | Genres = genres, |
| 0 | 150 | | GenreIds = genreIds, |
| 0 | 151 | | StudioIds = studioIds, |
| 0 | 152 | | Person = person, |
| 0 | 153 | | PersonIds = personIds, |
| 0 | 154 | | PersonTypes = personTypes, |
| 0 | 155 | | Years = years, |
| 0 | 156 | | MinCommunityRating = minCommunityRating, |
| 0 | 157 | | DtoOptions = dtoOptions, |
| 0 | 158 | | SearchTerm = searchTerm, |
| 0 | 159 | | EnableTotalRecordCount = enableTotalRecordCount, |
| 0 | 160 | | OrderBy = RequestHelpers.GetOrderBy(sortBy, sortOrder) |
| 0 | 161 | | }; |
| | 162 | |
|
| 0 | 163 | | if (parentId.HasValue) |
| | 164 | | { |
| 0 | 165 | | if (parentItem is Folder) |
| | 166 | | { |
| 0 | 167 | | query.AncestorIds = new[] { parentId.Value }; |
| | 168 | | } |
| | 169 | | else |
| | 170 | | { |
| 0 | 171 | | query.ItemIds = new[] { parentId.Value }; |
| | 172 | | } |
| | 173 | | } |
| | 174 | |
|
| | 175 | | // Studios |
| 0 | 176 | | if (studios.Length != 0) |
| | 177 | | { |
| 0 | 178 | | query.StudioIds = studios.Select(i => |
| 0 | 179 | | { |
| 0 | 180 | | try |
| 0 | 181 | | { |
| 0 | 182 | | return _libraryManager.GetStudio(i); |
| 0 | 183 | | } |
| 0 | 184 | | catch |
| 0 | 185 | | { |
| 0 | 186 | | return null; |
| 0 | 187 | | } |
| 0 | 188 | | }).Where(i => i is not null).Select(i => i!.Id).ToArray(); |
| | 189 | | } |
| | 190 | |
|
| 0 | 191 | | foreach (var filter in filters) |
| | 192 | | { |
| | 193 | | switch (filter) |
| | 194 | | { |
| | 195 | | case ItemFilter.Dislikes: |
| 0 | 196 | | query.IsLiked = false; |
| 0 | 197 | | break; |
| | 198 | | case ItemFilter.IsFavorite: |
| 0 | 199 | | query.IsFavorite = true; |
| 0 | 200 | | break; |
| | 201 | | case ItemFilter.IsFavoriteOrLikes: |
| 0 | 202 | | query.IsFavoriteOrLiked = true; |
| 0 | 203 | | break; |
| | 204 | | case ItemFilter.IsFolder: |
| 0 | 205 | | query.IsFolder = true; |
| 0 | 206 | | break; |
| | 207 | | case ItemFilter.IsNotFolder: |
| 0 | 208 | | query.IsFolder = false; |
| 0 | 209 | | break; |
| | 210 | | case ItemFilter.IsPlayed: |
| 0 | 211 | | query.IsPlayed = true; |
| 0 | 212 | | break; |
| | 213 | | case ItemFilter.IsResumable: |
| 0 | 214 | | query.IsResumable = true; |
| 0 | 215 | | break; |
| | 216 | | case ItemFilter.IsUnplayed: |
| 0 | 217 | | query.IsPlayed = false; |
| 0 | 218 | | break; |
| | 219 | | case ItemFilter.Likes: |
| 0 | 220 | | query.IsLiked = true; |
| | 221 | | break; |
| | 222 | | } |
| | 223 | | } |
| | 224 | |
|
| 0 | 225 | | var result = _libraryManager.GetArtists(query); |
| | 226 | |
|
| 0 | 227 | | var dtos = result.Items.Select(i => |
| 0 | 228 | | { |
| 0 | 229 | | var (baseItem, itemCounts) = i; |
| 0 | 230 | | var dto = _dtoService.GetItemByNameDto(baseItem, dtoOptions, null, user); |
| 0 | 231 | |
|
| 0 | 232 | | if (includeItemTypes.Length != 0) |
| 0 | 233 | | { |
| 0 | 234 | | dto.ChildCount = itemCounts.ItemCount; |
| 0 | 235 | | dto.ProgramCount = itemCounts.ProgramCount; |
| 0 | 236 | | dto.SeriesCount = itemCounts.SeriesCount; |
| 0 | 237 | | dto.EpisodeCount = itemCounts.EpisodeCount; |
| 0 | 238 | | dto.MovieCount = itemCounts.MovieCount; |
| 0 | 239 | | dto.TrailerCount = itemCounts.TrailerCount; |
| 0 | 240 | | dto.AlbumCount = itemCounts.AlbumCount; |
| 0 | 241 | | dto.SongCount = itemCounts.SongCount; |
| 0 | 242 | | dto.ArtistCount = itemCounts.ArtistCount; |
| 0 | 243 | | } |
| 0 | 244 | |
|
| 0 | 245 | | return dto; |
| 0 | 246 | | }); |
| | 247 | |
|
| 0 | 248 | | return new QueryResult<BaseItemDto>( |
| 0 | 249 | | query.StartIndex, |
| 0 | 250 | | result.TotalRecordCount, |
| 0 | 251 | | dtos.ToArray()); |
| | 252 | | } |
| | 253 | |
|
| | 254 | | /// <summary> |
| | 255 | | /// Gets all album artists from a given item, folder, or the entire library. |
| | 256 | | /// </summary> |
| | 257 | | /// <param name="minCommunityRating">Optional filter by minimum community rating.</param> |
| | 258 | | /// <param name="startIndex">Optional. The record index to start at. All items with a lower index will be dropped fr |
| | 259 | | /// <param name="limit">Optional. The maximum number of records to return.</param> |
| | 260 | | /// <param name="searchTerm">Optional. Search term.</param> |
| | 261 | | /// <param name="parentId">Specify this to localize the search to a specific item or folder. Omit to use the root.</ |
| | 262 | | /// <param name="fields">Optional. Specify additional fields of information to return in the output.</param> |
| | 263 | | /// <param name="excludeItemTypes">Optional. If specified, results will be filtered out based on item type. This all |
| | 264 | | /// <param name="includeItemTypes">Optional. If specified, results will be filtered based on item type. This allows |
| | 265 | | /// <param name="filters">Optional. Specify additional filters to apply.</param> |
| | 266 | | /// <param name="isFavorite">Optional filter by items that are marked as favorite, or not.</param> |
| | 267 | | /// <param name="mediaTypes">Optional filter by MediaType. Allows multiple, comma delimited.</param> |
| | 268 | | /// <param name="genres">Optional. If specified, results will be filtered based on genre. This allows multiple, pipe |
| | 269 | | /// <param name="genreIds">Optional. If specified, results will be filtered based on genre id. This allows multiple, |
| | 270 | | /// <param name="officialRatings">Optional. If specified, results will be filtered based on OfficialRating. This all |
| | 271 | | /// <param name="tags">Optional. If specified, results will be filtered based on tag. This allows multiple, pipe del |
| | 272 | | /// <param name="years">Optional. If specified, results will be filtered based on production year. This allows multi |
| | 273 | | /// <param name="enableUserData">Optional, include user data.</param> |
| | 274 | | /// <param name="imageTypeLimit">Optional, the max number of images to return, per image type.</param> |
| | 275 | | /// <param name="enableImageTypes">Optional. The image types to include in the output.</param> |
| | 276 | | /// <param name="person">Optional. If specified, results will be filtered to include only those containing the speci |
| | 277 | | /// <param name="personIds">Optional. If specified, results will be filtered to include only those containing the sp |
| | 278 | | /// <param name="personTypes">Optional. If specified, along with Person, results will be filtered to include only th |
| | 279 | | /// <param name="studios">Optional. If specified, results will be filtered based on studio. This allows multiple, pi |
| | 280 | | /// <param name="studioIds">Optional. If specified, results will be filtered based on studio id. This allows multipl |
| | 281 | | /// <param name="userId">User id.</param> |
| | 282 | | /// <param name="nameStartsWithOrGreater">Optional filter by items whose name is sorted equally or greater than a gi |
| | 283 | | /// <param name="nameStartsWith">Optional filter by items whose name is sorted equally than a given input string.</p |
| | 284 | | /// <param name="nameLessThan">Optional filter by items whose name is equally or lesser than a given input string.</ |
| | 285 | | /// <param name="sortBy">Optional. Specify one or more sort orders, comma delimited.</param> |
| | 286 | | /// <param name="sortOrder">Sort Order - Ascending,Descending.</param> |
| | 287 | | /// <param name="enableImages">Optional, include image information in output.</param> |
| | 288 | | /// <param name="enableTotalRecordCount">Total record count.</param> |
| | 289 | | /// <response code="200">Album artists returned.</response> |
| | 290 | | /// <returns>An <see cref="OkResult"/> containing the album artists.</returns> |
| | 291 | | [HttpGet("AlbumArtists")] |
| | 292 | | [ProducesResponseType(StatusCodes.Status200OK)] |
| | 293 | | public ActionResult<QueryResult<BaseItemDto>> GetAlbumArtists( |
| | 294 | | [FromQuery] double? minCommunityRating, |
| | 295 | | [FromQuery] int? startIndex, |
| | 296 | | [FromQuery] int? limit, |
| | 297 | | [FromQuery] string? searchTerm, |
| | 298 | | [FromQuery] Guid? parentId, |
| | 299 | | [FromQuery, ModelBinder(typeof(CommaDelimitedCollectionModelBinder))] ItemFields[] fields, |
| | 300 | | [FromQuery, ModelBinder(typeof(CommaDelimitedCollectionModelBinder))] BaseItemKind[] excludeItemTypes, |
| | 301 | | [FromQuery, ModelBinder(typeof(CommaDelimitedCollectionModelBinder))] BaseItemKind[] includeItemTypes, |
| | 302 | | [FromQuery, ModelBinder(typeof(CommaDelimitedCollectionModelBinder))] ItemFilter[] filters, |
| | 303 | | [FromQuery] bool? isFavorite, |
| | 304 | | [FromQuery, ModelBinder(typeof(CommaDelimitedCollectionModelBinder))] MediaType[] mediaTypes, |
| | 305 | | [FromQuery, ModelBinder(typeof(PipeDelimitedCollectionModelBinder))] string[] genres, |
| | 306 | | [FromQuery, ModelBinder(typeof(CommaDelimitedCollectionModelBinder))] Guid[] genreIds, |
| | 307 | | [FromQuery, ModelBinder(typeof(PipeDelimitedCollectionModelBinder))] string[] officialRatings, |
| | 308 | | [FromQuery, ModelBinder(typeof(PipeDelimitedCollectionModelBinder))] string[] tags, |
| | 309 | | [FromQuery, ModelBinder(typeof(CommaDelimitedCollectionModelBinder))] int[] years, |
| | 310 | | [FromQuery] bool? enableUserData, |
| | 311 | | [FromQuery] int? imageTypeLimit, |
| | 312 | | [FromQuery, ModelBinder(typeof(CommaDelimitedCollectionModelBinder))] ImageType[] enableImageTypes, |
| | 313 | | [FromQuery] string? person, |
| | 314 | | [FromQuery, ModelBinder(typeof(CommaDelimitedCollectionModelBinder))] Guid[] personIds, |
| | 315 | | [FromQuery, ModelBinder(typeof(CommaDelimitedCollectionModelBinder))] string[] personTypes, |
| | 316 | | [FromQuery, ModelBinder(typeof(PipeDelimitedCollectionModelBinder))] string[] studios, |
| | 317 | | [FromQuery, ModelBinder(typeof(CommaDelimitedCollectionModelBinder))] Guid[] studioIds, |
| | 318 | | [FromQuery] Guid? userId, |
| | 319 | | [FromQuery] string? nameStartsWithOrGreater, |
| | 320 | | [FromQuery] string? nameStartsWith, |
| | 321 | | [FromQuery] string? nameLessThan, |
| | 322 | | [FromQuery, ModelBinder(typeof(CommaDelimitedCollectionModelBinder))] ItemSortBy[] sortBy, |
| | 323 | | [FromQuery, ModelBinder(typeof(CommaDelimitedCollectionModelBinder))] SortOrder[] sortOrder, |
| | 324 | | [FromQuery] bool? enableImages = true, |
| | 325 | | [FromQuery] bool enableTotalRecordCount = true) |
| | 326 | | { |
| 0 | 327 | | userId = RequestHelpers.GetUserId(User, userId); |
| 0 | 328 | | var dtoOptions = new DtoOptions { Fields = fields } |
| 0 | 329 | | .AddClientFields(User) |
| 0 | 330 | | .AddAdditionalDtoOptions(enableImages, enableUserData, imageTypeLimit, enableImageTypes); |
| | 331 | |
|
| 0 | 332 | | User? user = null; |
| 0 | 333 | | BaseItem parentItem = _libraryManager.GetParentItem(parentId, userId); |
| | 334 | |
|
| 0 | 335 | | if (!userId.IsNullOrEmpty()) |
| | 336 | | { |
| 0 | 337 | | user = _userManager.GetUserById(userId.Value); |
| | 338 | | } |
| | 339 | |
|
| 0 | 340 | | var query = new InternalItemsQuery(user) |
| 0 | 341 | | { |
| 0 | 342 | | ExcludeItemTypes = excludeItemTypes, |
| 0 | 343 | | IncludeItemTypes = includeItemTypes, |
| 0 | 344 | | MediaTypes = mediaTypes, |
| 0 | 345 | | StartIndex = startIndex, |
| 0 | 346 | | Limit = limit, |
| 0 | 347 | | IsFavorite = isFavorite, |
| 0 | 348 | | NameLessThan = nameLessThan, |
| 0 | 349 | | NameStartsWith = nameStartsWith, |
| 0 | 350 | | NameStartsWithOrGreater = nameStartsWithOrGreater, |
| 0 | 351 | | Tags = tags, |
| 0 | 352 | | OfficialRatings = officialRatings, |
| 0 | 353 | | Genres = genres, |
| 0 | 354 | | GenreIds = genreIds, |
| 0 | 355 | | StudioIds = studioIds, |
| 0 | 356 | | Person = person, |
| 0 | 357 | | PersonIds = personIds, |
| 0 | 358 | | PersonTypes = personTypes, |
| 0 | 359 | | Years = years, |
| 0 | 360 | | MinCommunityRating = minCommunityRating, |
| 0 | 361 | | DtoOptions = dtoOptions, |
| 0 | 362 | | SearchTerm = searchTerm, |
| 0 | 363 | | EnableTotalRecordCount = enableTotalRecordCount, |
| 0 | 364 | | OrderBy = RequestHelpers.GetOrderBy(sortBy, sortOrder) |
| 0 | 365 | | }; |
| | 366 | |
|
| 0 | 367 | | if (parentId.HasValue) |
| | 368 | | { |
| 0 | 369 | | if (parentItem is Folder) |
| | 370 | | { |
| 0 | 371 | | query.AncestorIds = new[] { parentId.Value }; |
| | 372 | | } |
| | 373 | | else |
| | 374 | | { |
| 0 | 375 | | query.ItemIds = new[] { parentId.Value }; |
| | 376 | | } |
| | 377 | | } |
| | 378 | |
|
| | 379 | | // Studios |
| 0 | 380 | | if (studios.Length != 0) |
| | 381 | | { |
| 0 | 382 | | query.StudioIds = studios.Select(i => |
| 0 | 383 | | { |
| 0 | 384 | | try |
| 0 | 385 | | { |
| 0 | 386 | | return _libraryManager.GetStudio(i); |
| 0 | 387 | | } |
| 0 | 388 | | catch |
| 0 | 389 | | { |
| 0 | 390 | | return null; |
| 0 | 391 | | } |
| 0 | 392 | | }).Where(i => i is not null).Select(i => i!.Id).ToArray(); |
| | 393 | | } |
| | 394 | |
|
| 0 | 395 | | foreach (var filter in filters) |
| | 396 | | { |
| | 397 | | switch (filter) |
| | 398 | | { |
| | 399 | | case ItemFilter.Dislikes: |
| 0 | 400 | | query.IsLiked = false; |
| 0 | 401 | | break; |
| | 402 | | case ItemFilter.IsFavorite: |
| 0 | 403 | | query.IsFavorite = true; |
| 0 | 404 | | break; |
| | 405 | | case ItemFilter.IsFavoriteOrLikes: |
| 0 | 406 | | query.IsFavoriteOrLiked = true; |
| 0 | 407 | | break; |
| | 408 | | case ItemFilter.IsFolder: |
| 0 | 409 | | query.IsFolder = true; |
| 0 | 410 | | break; |
| | 411 | | case ItemFilter.IsNotFolder: |
| 0 | 412 | | query.IsFolder = false; |
| 0 | 413 | | break; |
| | 414 | | case ItemFilter.IsPlayed: |
| 0 | 415 | | query.IsPlayed = true; |
| 0 | 416 | | break; |
| | 417 | | case ItemFilter.IsResumable: |
| 0 | 418 | | query.IsResumable = true; |
| 0 | 419 | | break; |
| | 420 | | case ItemFilter.IsUnplayed: |
| 0 | 421 | | query.IsPlayed = false; |
| 0 | 422 | | break; |
| | 423 | | case ItemFilter.Likes: |
| 0 | 424 | | query.IsLiked = true; |
| | 425 | | break; |
| | 426 | | } |
| | 427 | | } |
| | 428 | |
|
| 0 | 429 | | var result = _libraryManager.GetAlbumArtists(query); |
| | 430 | |
|
| 0 | 431 | | var dtos = result.Items.Select(i => |
| 0 | 432 | | { |
| 0 | 433 | | var (baseItem, itemCounts) = i; |
| 0 | 434 | | var dto = _dtoService.GetItemByNameDto(baseItem, dtoOptions, null, user); |
| 0 | 435 | |
|
| 0 | 436 | | if (includeItemTypes.Length != 0) |
| 0 | 437 | | { |
| 0 | 438 | | dto.ChildCount = itemCounts.ItemCount; |
| 0 | 439 | | dto.ProgramCount = itemCounts.ProgramCount; |
| 0 | 440 | | dto.SeriesCount = itemCounts.SeriesCount; |
| 0 | 441 | | dto.EpisodeCount = itemCounts.EpisodeCount; |
| 0 | 442 | | dto.MovieCount = itemCounts.MovieCount; |
| 0 | 443 | | dto.TrailerCount = itemCounts.TrailerCount; |
| 0 | 444 | | dto.AlbumCount = itemCounts.AlbumCount; |
| 0 | 445 | | dto.SongCount = itemCounts.SongCount; |
| 0 | 446 | | dto.ArtistCount = itemCounts.ArtistCount; |
| 0 | 447 | | } |
| 0 | 448 | |
|
| 0 | 449 | | return dto; |
| 0 | 450 | | }); |
| | 451 | |
|
| 0 | 452 | | return new QueryResult<BaseItemDto>( |
| 0 | 453 | | query.StartIndex, |
| 0 | 454 | | result.TotalRecordCount, |
| 0 | 455 | | dtos.ToArray()); |
| | 456 | | } |
| | 457 | |
|
| | 458 | | /// <summary> |
| | 459 | | /// Gets an artist by name. |
| | 460 | | /// </summary> |
| | 461 | | /// <param name="name">Studio name.</param> |
| | 462 | | /// <param name="userId">Optional. Filter by user id, and attach user data.</param> |
| | 463 | | /// <response code="200">Artist returned.</response> |
| | 464 | | /// <returns>An <see cref="OkResult"/> containing the artist.</returns> |
| | 465 | | [HttpGet("{name}")] |
| | 466 | | [ProducesResponseType(StatusCodes.Status200OK)] |
| | 467 | | public ActionResult<BaseItemDto> GetArtistByName([FromRoute, Required] string name, [FromQuery] Guid? userId) |
| | 468 | | { |
| 0 | 469 | | userId = RequestHelpers.GetUserId(User, userId); |
| 0 | 470 | | var dtoOptions = new DtoOptions().AddClientFields(User); |
| | 471 | |
|
| 0 | 472 | | var item = _libraryManager.GetArtist(name, dtoOptions); |
| | 473 | |
|
| 0 | 474 | | if (!userId.IsNullOrEmpty()) |
| | 475 | | { |
| 0 | 476 | | var user = _userManager.GetUserById(userId.Value); |
| | 477 | |
|
| 0 | 478 | | return _dtoService.GetBaseItemDto(item, dtoOptions, user); |
| | 479 | | } |
| | 480 | |
|
| 0 | 481 | | return _dtoService.GetBaseItemDto(item, dtoOptions); |
| | 482 | | } |
| | 483 | | } |