|
@@ -0,0 +1,299 @@
|
|
|
+using System;
|
|
|
+using System.Collections.Generic;
|
|
|
+using System.Linq;
|
|
|
+using Jellyfin.Api.Constants;
|
|
|
+using Jellyfin.Api.Extensions;
|
|
|
+using Jellyfin.Data.Entities;
|
|
|
+using MediaBrowser.Controller.Dto;
|
|
|
+using MediaBrowser.Controller.Entities;
|
|
|
+using MediaBrowser.Controller.Library;
|
|
|
+using MediaBrowser.Controller.Playlists;
|
|
|
+using MediaBrowser.Model.Dto;
|
|
|
+using MediaBrowser.Model.Querying;
|
|
|
+using Microsoft.AspNetCore.Authorization;
|
|
|
+using Microsoft.AspNetCore.Mvc;
|
|
|
+
|
|
|
+namespace Jellyfin.Api.Controllers
|
|
|
+{
|
|
|
+ /// <summary>
|
|
|
+ /// The instant mix controller.
|
|
|
+ /// </summary>
|
|
|
+ [Authorize(Policy = Policies.DefaultAuthorization)]
|
|
|
+ public class InstantMixController : BaseJellyfinApiController
|
|
|
+ {
|
|
|
+ private readonly IUserManager _userManager;
|
|
|
+ private readonly IDtoService _dtoService;
|
|
|
+ private readonly ILibraryManager _libraryManager;
|
|
|
+ private readonly IMusicManager _musicManager;
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// Initializes a new instance of the <see cref="InstantMixController"/> class.
|
|
|
+ /// </summary>
|
|
|
+ /// <param name="userManager">Instance of the <see cref="IUserManager"/> interface.</param>
|
|
|
+ /// <param name="dtoService">Instance of the <see cref="IDtoService"/> interface.</param>
|
|
|
+ /// <param name="musicManager">Instance of the <see cref="IMusicManager"/> interface.</param>
|
|
|
+ /// <param name="libraryManager">Instance of the <see cref="ILibraryManager"/> interface.</param>
|
|
|
+ public InstantMixController(
|
|
|
+ IUserManager userManager,
|
|
|
+ IDtoService dtoService,
|
|
|
+ IMusicManager musicManager,
|
|
|
+ ILibraryManager libraryManager)
|
|
|
+ {
|
|
|
+ _userManager = userManager;
|
|
|
+ _dtoService = dtoService;
|
|
|
+ _musicManager = musicManager;
|
|
|
+ _libraryManager = libraryManager;
|
|
|
+ }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// Creates an instant playlist based on a given song.
|
|
|
+ /// </summary>
|
|
|
+ /// <param name="id">The item id.</param>
|
|
|
+ /// <param name="userId">Optional. Filter by user id, and attach user data.</param>
|
|
|
+ /// <param name="limit">Optional. The maximum number of records to return.</param>
|
|
|
+ /// <param name="fields">Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimeted. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines, TrailerUrls.</param>
|
|
|
+ /// <param name="enableImages">Optional. Include image information in output.</param>
|
|
|
+ /// <param name="enableUserData">Optional. Include user data.</param>
|
|
|
+ /// <param name="imageTypeLimit">Optional. The max number of images to return, per image type.</param>
|
|
|
+ /// <param name="enableImageTypes">Optional. The image types to include in the output.</param>
|
|
|
+ /// <returns>A <see cref="QueryResult{BaseItemDto}"/> with the playlist items.</returns>
|
|
|
+ [HttpGet("/Songs/{id}/InstantMix")]
|
|
|
+ public ActionResult<QueryResult<BaseItemDto>> GetInstantMixFromSong(
|
|
|
+ [FromRoute] Guid id,
|
|
|
+ [FromQuery] Guid userId,
|
|
|
+ [FromQuery] int? limit,
|
|
|
+ [FromQuery] string fields,
|
|
|
+ [FromQuery] bool? enableImages,
|
|
|
+ [FromQuery] bool? enableUserData,
|
|
|
+ [FromQuery] int? imageTypeLimit,
|
|
|
+ [FromQuery] string? enableImageTypes)
|
|
|
+ {
|
|
|
+ var item = _libraryManager.GetItemById(id);
|
|
|
+ var user = _userManager.GetUserById(userId);
|
|
|
+ var dtoOptions = new DtoOptions()
|
|
|
+ .AddItemFields(fields)
|
|
|
+ .AddClientFields(Request)
|
|
|
+ .AddAdditionalDtoOptions(enableImages, enableUserData, imageTypeLimit, enableImageTypes!);
|
|
|
+ var items = _musicManager.GetInstantMixFromItem(item, user, dtoOptions);
|
|
|
+ return GetResult(items, user, limit, dtoOptions);
|
|
|
+ }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// Creates an instant playlist based on a given song.
|
|
|
+ /// </summary>
|
|
|
+ /// <param name="id">The item id.</param>
|
|
|
+ /// <param name="userId">Optional. Filter by user id, and attach user data.</param>
|
|
|
+ /// <param name="limit">Optional. The maximum number of records to return.</param>
|
|
|
+ /// <param name="fields">Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimeted. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines, TrailerUrls.</param>
|
|
|
+ /// <param name="enableImages">Optional. Include image information in output.</param>
|
|
|
+ /// <param name="enableUserData">Optional. Include user data.</param>
|
|
|
+ /// <param name="imageTypeLimit">Optional. The max number of images to return, per image type.</param>
|
|
|
+ /// <param name="enableImageTypes">Optional. The image types to include in the output.</param>
|
|
|
+ /// <returns>A <see cref="QueryResult{BaseItemDto}"/> with the playlist items.</returns>
|
|
|
+ [HttpGet("/Albums/{id}/InstantMix")]
|
|
|
+ public ActionResult<QueryResult<BaseItemDto>> GetInstantMixFromAlbum(
|
|
|
+ [FromRoute] Guid id,
|
|
|
+ [FromQuery] Guid userId,
|
|
|
+ [FromQuery] int? limit,
|
|
|
+ [FromQuery] string fields,
|
|
|
+ [FromQuery] bool? enableImages,
|
|
|
+ [FromQuery] bool? enableUserData,
|
|
|
+ [FromQuery] int? imageTypeLimit,
|
|
|
+ [FromQuery] string? enableImageTypes)
|
|
|
+ {
|
|
|
+ var album = _libraryManager.GetItemById(id);
|
|
|
+ var user = _userManager.GetUserById(userId);
|
|
|
+ var dtoOptions = new DtoOptions()
|
|
|
+ .AddItemFields(fields)
|
|
|
+ .AddClientFields(Request)
|
|
|
+ .AddAdditionalDtoOptions(enableImages, enableUserData, imageTypeLimit, enableImageTypes!);
|
|
|
+ var items = _musicManager.GetInstantMixFromItem(album, user, dtoOptions);
|
|
|
+ return GetResult(items, user, limit, dtoOptions);
|
|
|
+ }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// Creates an instant playlist based on a given song.
|
|
|
+ /// </summary>
|
|
|
+ /// <param name="id">The item id.</param>
|
|
|
+ /// <param name="userId">Optional. Filter by user id, and attach user data.</param>
|
|
|
+ /// <param name="limit">Optional. The maximum number of records to return.</param>
|
|
|
+ /// <param name="fields">Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimeted. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines, TrailerUrls.</param>
|
|
|
+ /// <param name="enableImages">Optional. Include image information in output.</param>
|
|
|
+ /// <param name="enableUserData">Optional. Include user data.</param>
|
|
|
+ /// <param name="imageTypeLimit">Optional. The max number of images to return, per image type.</param>
|
|
|
+ /// <param name="enableImageTypes">Optional. The image types to include in the output.</param>
|
|
|
+ /// <returns>A <see cref="QueryResult{BaseItemDto}"/> with the playlist items.</returns>
|
|
|
+ [HttpGet("/Playlists/{id}/InstantMix")]
|
|
|
+ public ActionResult<QueryResult<BaseItemDto>> GetInstantMixFromPlaylist(
|
|
|
+ [FromRoute] Guid id,
|
|
|
+ [FromQuery] Guid userId,
|
|
|
+ [FromQuery] int? limit,
|
|
|
+ [FromQuery] string fields,
|
|
|
+ [FromQuery] bool? enableImages,
|
|
|
+ [FromQuery] bool? enableUserData,
|
|
|
+ [FromQuery] int? imageTypeLimit,
|
|
|
+ [FromQuery] string? enableImageTypes)
|
|
|
+ {
|
|
|
+ var playlist = (Playlist)_libraryManager.GetItemById(id);
|
|
|
+ var user = _userManager.GetUserById(userId);
|
|
|
+ var dtoOptions = new DtoOptions()
|
|
|
+ .AddItemFields(fields)
|
|
|
+ .AddClientFields(Request)
|
|
|
+ .AddAdditionalDtoOptions(enableImages, enableUserData, imageTypeLimit, enableImageTypes!);
|
|
|
+ var items = _musicManager.GetInstantMixFromItem(playlist, user, dtoOptions);
|
|
|
+ return GetResult(items, user, limit, dtoOptions);
|
|
|
+ }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// Creates an instant playlist based on a given song.
|
|
|
+ /// </summary>
|
|
|
+ /// <param name="name">The genre name.</param>
|
|
|
+ /// <param name="userId">Optional. Filter by user id, and attach user data.</param>
|
|
|
+ /// <param name="limit">Optional. The maximum number of records to return.</param>
|
|
|
+ /// <param name="fields">Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimeted. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines, TrailerUrls.</param>
|
|
|
+ /// <param name="enableImages">Optional. Include image information in output.</param>
|
|
|
+ /// <param name="enableUserData">Optional. Include user data.</param>
|
|
|
+ /// <param name="imageTypeLimit">Optional. The max number of images to return, per image type.</param>
|
|
|
+ /// <param name="enableImageTypes">Optional. The image types to include in the output.</param>
|
|
|
+ /// <returns>A <see cref="QueryResult{BaseItemDto}"/> with the playlist items.</returns>
|
|
|
+ [HttpGet("/MusicGenres/{name}/InstantMix")]
|
|
|
+ public ActionResult<QueryResult<BaseItemDto>> GetInstantMixFromMusicGenre(
|
|
|
+ [FromRoute] string name,
|
|
|
+ [FromQuery] Guid userId,
|
|
|
+ [FromQuery] int? limit,
|
|
|
+ [FromQuery] string fields,
|
|
|
+ [FromQuery] bool? enableImages,
|
|
|
+ [FromQuery] bool? enableUserData,
|
|
|
+ [FromQuery] int? imageTypeLimit,
|
|
|
+ [FromQuery] string? enableImageTypes)
|
|
|
+ {
|
|
|
+ var user = _userManager.GetUserById(userId);
|
|
|
+ var dtoOptions = new DtoOptions()
|
|
|
+ .AddItemFields(fields)
|
|
|
+ .AddClientFields(Request)
|
|
|
+ .AddAdditionalDtoOptions(enableImages, enableUserData, imageTypeLimit, enableImageTypes!);
|
|
|
+ var items = _musicManager.GetInstantMixFromGenres(new[] { name }, user, dtoOptions);
|
|
|
+ return GetResult(items, user, limit, dtoOptions);
|
|
|
+ }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// Creates an instant playlist based on a given song.
|
|
|
+ /// </summary>
|
|
|
+ /// <param name="id">The item id.</param>
|
|
|
+ /// <param name="userId">Optional. Filter by user id, and attach user data.</param>
|
|
|
+ /// <param name="limit">Optional. The maximum number of records to return.</param>
|
|
|
+ /// <param name="fields">Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimeted. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines, TrailerUrls.</param>
|
|
|
+ /// <param name="enableImages">Optional. Include image information in output.</param>
|
|
|
+ /// <param name="enableUserData">Optional. Include user data.</param>
|
|
|
+ /// <param name="imageTypeLimit">Optional. The max number of images to return, per image type.</param>
|
|
|
+ /// <param name="enableImageTypes">Optional. The image types to include in the output.</param>
|
|
|
+ /// <returns>A <see cref="QueryResult{BaseItemDto}"/> with the playlist items.</returns>
|
|
|
+ [HttpGet("/Artists/InstantMix")]
|
|
|
+ public ActionResult<QueryResult<BaseItemDto>> GetInstantMixFromArtists(
|
|
|
+ [FromRoute] Guid id,
|
|
|
+ [FromQuery] Guid userId,
|
|
|
+ [FromQuery] int? limit,
|
|
|
+ [FromQuery] string fields,
|
|
|
+ [FromQuery] bool? enableImages,
|
|
|
+ [FromQuery] bool? enableUserData,
|
|
|
+ [FromQuery] int? imageTypeLimit,
|
|
|
+ [FromQuery] string? enableImageTypes)
|
|
|
+ {
|
|
|
+ var item = _libraryManager.GetItemById(id);
|
|
|
+ var user = _userManager.GetUserById(userId);
|
|
|
+ var dtoOptions = new DtoOptions()
|
|
|
+ .AddItemFields(fields)
|
|
|
+ .AddClientFields(Request)
|
|
|
+ .AddAdditionalDtoOptions(enableImages, enableUserData, imageTypeLimit, enableImageTypes!);
|
|
|
+ var items = _musicManager.GetInstantMixFromItem(item, user, dtoOptions);
|
|
|
+ return GetResult(items, user, limit, dtoOptions);
|
|
|
+ }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// Creates an instant playlist based on a given song.
|
|
|
+ /// </summary>
|
|
|
+ /// <param name="id">The item id.</param>
|
|
|
+ /// <param name="userId">Optional. Filter by user id, and attach user data.</param>
|
|
|
+ /// <param name="limit">Optional. The maximum number of records to return.</param>
|
|
|
+ /// <param name="fields">Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimeted. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines, TrailerUrls.</param>
|
|
|
+ /// <param name="enableImages">Optional. Include image information in output.</param>
|
|
|
+ /// <param name="enableUserData">Optional. Include user data.</param>
|
|
|
+ /// <param name="imageTypeLimit">Optional. The max number of images to return, per image type.</param>
|
|
|
+ /// <param name="enableImageTypes">Optional. The image types to include in the output.</param>
|
|
|
+ /// <returns>A <see cref="QueryResult{BaseItemDto}"/> with the playlist items.</returns>
|
|
|
+ [HttpGet("/MusicGenres/InstantMix")]
|
|
|
+ public ActionResult<QueryResult<BaseItemDto>> GetInstantMixFromMusicGenres(
|
|
|
+ [FromRoute] Guid id,
|
|
|
+ [FromQuery] Guid userId,
|
|
|
+ [FromQuery] int? limit,
|
|
|
+ [FromQuery] string fields,
|
|
|
+ [FromQuery] bool? enableImages,
|
|
|
+ [FromQuery] bool? enableUserData,
|
|
|
+ [FromQuery] int? imageTypeLimit,
|
|
|
+ [FromQuery] string? enableImageTypes)
|
|
|
+ {
|
|
|
+ var item = _libraryManager.GetItemById(id);
|
|
|
+ var user = _userManager.GetUserById(userId);
|
|
|
+ var dtoOptions = new DtoOptions()
|
|
|
+ .AddItemFields(fields)
|
|
|
+ .AddClientFields(Request)
|
|
|
+ .AddAdditionalDtoOptions(enableImages, enableUserData, imageTypeLimit, enableImageTypes!);
|
|
|
+ var items = _musicManager.GetInstantMixFromItem(item, user, dtoOptions);
|
|
|
+ return GetResult(items, user, limit, dtoOptions);
|
|
|
+ }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// Creates an instant playlist based on a given song.
|
|
|
+ /// </summary>
|
|
|
+ /// <param name="id">The item id.</param>
|
|
|
+ /// <param name="userId">Optional. Filter by user id, and attach user data.</param>
|
|
|
+ /// <param name="limit">Optional. The maximum number of records to return.</param>
|
|
|
+ /// <param name="fields">Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimeted. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines, TrailerUrls.</param>
|
|
|
+ /// <param name="enableImages">Optional. Include image information in output.</param>
|
|
|
+ /// <param name="enableUserData">Optional. Include user data.</param>
|
|
|
+ /// <param name="imageTypeLimit">Optional. The max number of images to return, per image type.</param>
|
|
|
+ /// <param name="enableImageTypes">Optional. The image types to include in the output.</param>
|
|
|
+ /// <returns>A <see cref="QueryResult{BaseItemDto}"/> with the playlist items.</returns>
|
|
|
+ [HttpGet("/Items/{id}/InstantMix")]
|
|
|
+ public ActionResult<QueryResult<BaseItemDto>> GetInstantMixFromItem(
|
|
|
+ [FromRoute] Guid id,
|
|
|
+ [FromQuery] Guid userId,
|
|
|
+ [FromQuery] int? limit,
|
|
|
+ [FromQuery] string fields,
|
|
|
+ [FromQuery] bool? enableImages,
|
|
|
+ [FromQuery] bool? enableUserData,
|
|
|
+ [FromQuery] int? imageTypeLimit,
|
|
|
+ [FromQuery] string? enableImageTypes)
|
|
|
+ {
|
|
|
+ var item = _libraryManager.GetItemById(id);
|
|
|
+ var user = _userManager.GetUserById(userId);
|
|
|
+ var dtoOptions = new DtoOptions()
|
|
|
+ .AddItemFields(fields)
|
|
|
+ .AddClientFields(Request)
|
|
|
+ .AddAdditionalDtoOptions(enableImages, enableUserData, imageTypeLimit, enableImageTypes!);
|
|
|
+ var items = _musicManager.GetInstantMixFromItem(item, user, dtoOptions);
|
|
|
+ return GetResult(items, user, limit, dtoOptions);
|
|
|
+ }
|
|
|
+
|
|
|
+ private QueryResult<BaseItemDto> GetResult(List<BaseItem> items, User user, int? limit, DtoOptions dtoOptions)
|
|
|
+ {
|
|
|
+ var list = items;
|
|
|
+
|
|
|
+ var result = new QueryResult<BaseItemDto>
|
|
|
+ {
|
|
|
+ TotalRecordCount = list.Count
|
|
|
+ };
|
|
|
+
|
|
|
+ if (limit.HasValue)
|
|
|
+ {
|
|
|
+ list = list.Take(limit.Value).ToList();
|
|
|
+ }
|
|
|
+
|
|
|
+ var returnList = _dtoService.GetBaseItemDtos(list, dtoOptions, user);
|
|
|
+
|
|
|
+ result.Items = returnList;
|
|
|
+
|
|
|
+ return result;
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|