6e5ec99ea1
* Move userId in API from route to optional query parameter * Standardize UserViewsController * Move userId to query in ImageController * Move userId to query in ItemsController * Move userId to query in PlaystateController * Move userId to query in SuggestionsController * Move userId from route to query in UserLibraryController * Clean up routes * Move userId to query in UserController * fix bad merge --------- Co-authored-by: Niels van Velzen <git@ndat.nl>
125 lines
4.9 KiB
C#
125 lines
4.9 KiB
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using Jellyfin.Api.Extensions;
|
|
using Jellyfin.Api.Helpers;
|
|
using Jellyfin.Api.ModelBinders;
|
|
using Jellyfin.Data.Entities;
|
|
using Jellyfin.Data.Enums;
|
|
using Jellyfin.Extensions;
|
|
using MediaBrowser.Controller.Dto;
|
|
using MediaBrowser.Controller.Entities;
|
|
using MediaBrowser.Controller.Library;
|
|
using MediaBrowser.Model.Dto;
|
|
using MediaBrowser.Model.Querying;
|
|
using Microsoft.AspNetCore.Authorization;
|
|
using Microsoft.AspNetCore.Http;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace Jellyfin.Api.Controllers;
|
|
|
|
/// <summary>
|
|
/// The suggestions controller.
|
|
/// </summary>
|
|
[Route("")]
|
|
[Authorize]
|
|
public class SuggestionsController : BaseJellyfinApiController
|
|
{
|
|
private readonly IDtoService _dtoService;
|
|
private readonly IUserManager _userManager;
|
|
private readonly ILibraryManager _libraryManager;
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="SuggestionsController"/> class.
|
|
/// </summary>
|
|
/// <param name="dtoService">Instance of the <see cref="IDtoService"/> interface.</param>
|
|
/// <param name="userManager">Instance of the <see cref="IUserManager"/> interface.</param>
|
|
/// <param name="libraryManager">Instance of the <see cref="ILibraryManager"/> interface.</param>
|
|
public SuggestionsController(
|
|
IDtoService dtoService,
|
|
IUserManager userManager,
|
|
ILibraryManager libraryManager)
|
|
{
|
|
_dtoService = dtoService;
|
|
_userManager = userManager;
|
|
_libraryManager = libraryManager;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets suggestions.
|
|
/// </summary>
|
|
/// <param name="userId">The user id.</param>
|
|
/// <param name="mediaType">The media types.</param>
|
|
/// <param name="type">The type.</param>
|
|
/// <param name="startIndex">Optional. The start index.</param>
|
|
/// <param name="limit">Optional. The limit.</param>
|
|
/// <param name="enableTotalRecordCount">Whether to enable the total record count.</param>
|
|
/// <response code="200">Suggestions returned.</response>
|
|
/// <returns>A <see cref="QueryResult{BaseItemDto}"/> with the suggestions.</returns>
|
|
[HttpGet("Items/Suggestions")]
|
|
[ProducesResponseType(StatusCodes.Status200OK)]
|
|
public ActionResult<QueryResult<BaseItemDto>> GetSuggestions(
|
|
[FromQuery] Guid? userId,
|
|
[FromQuery, ModelBinder(typeof(CommaDelimitedArrayModelBinder))] MediaType[] mediaType,
|
|
[FromQuery, ModelBinder(typeof(CommaDelimitedArrayModelBinder))] BaseItemKind[] type,
|
|
[FromQuery] int? startIndex,
|
|
[FromQuery] int? limit,
|
|
[FromQuery] bool enableTotalRecordCount = false)
|
|
{
|
|
User? user;
|
|
if (userId.IsNullOrEmpty())
|
|
{
|
|
user = null;
|
|
}
|
|
else
|
|
{
|
|
var requestUserId = RequestHelpers.GetUserId(User, userId);
|
|
user = _userManager.GetUserById(requestUserId);
|
|
}
|
|
|
|
var dtoOptions = new DtoOptions().AddClientFields(User);
|
|
var result = _libraryManager.GetItemsResult(new InternalItemsQuery(user)
|
|
{
|
|
OrderBy = new[] { (ItemSortBy.Random, SortOrder.Descending) },
|
|
MediaTypes = mediaType,
|
|
IncludeItemTypes = type,
|
|
IsVirtualItem = false,
|
|
StartIndex = startIndex,
|
|
Limit = limit,
|
|
DtoOptions = dtoOptions,
|
|
EnableTotalRecordCount = enableTotalRecordCount,
|
|
Recursive = true
|
|
});
|
|
|
|
var dtoList = _dtoService.GetBaseItemDtos(result.Items, dtoOptions, user);
|
|
|
|
return new QueryResult<BaseItemDto>(
|
|
startIndex,
|
|
result.TotalRecordCount,
|
|
dtoList);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets suggestions.
|
|
/// </summary>
|
|
/// <param name="userId">The user id.</param>
|
|
/// <param name="mediaType">The media types.</param>
|
|
/// <param name="type">The type.</param>
|
|
/// <param name="startIndex">Optional. The start index.</param>
|
|
/// <param name="limit">Optional. The limit.</param>
|
|
/// <param name="enableTotalRecordCount">Whether to enable the total record count.</param>
|
|
/// <response code="200">Suggestions returned.</response>
|
|
/// <returns>A <see cref="QueryResult{BaseItemDto}"/> with the suggestions.</returns>
|
|
[HttpGet("Users/{userId}/Suggestions")]
|
|
[ProducesResponseType(StatusCodes.Status200OK)]
|
|
[Obsolete("Kept for backwards compatibility")]
|
|
[ApiExplorerSettings(IgnoreApi = true)]
|
|
public ActionResult<QueryResult<BaseItemDto>> GetSuggestionsLegacy(
|
|
[FromRoute, Required] Guid userId,
|
|
[FromQuery, ModelBinder(typeof(CommaDelimitedArrayModelBinder))] MediaType[] mediaType,
|
|
[FromQuery, ModelBinder(typeof(CommaDelimitedArrayModelBinder))] BaseItemKind[] type,
|
|
[FromQuery] int? startIndex,
|
|
[FromQuery] int? limit,
|
|
[FromQuery] bool enableTotalRecordCount = false)
|
|
=> GetSuggestions(userId, mediaType, type, startIndex, limit, enableTotalRecordCount);
|
|
}
|