| | 1 | | using System; |
| | 2 | | using System.Collections.Generic; |
| | 3 | | using System.ComponentModel.DataAnnotations; |
| | 4 | | using System.Globalization; |
| | 5 | | using System.Linq; |
| | 6 | | using Jellyfin.Api.Extensions; |
| | 7 | | using Jellyfin.Api.Helpers; |
| | 8 | | using Jellyfin.Api.ModelBinders; |
| | 9 | | using Jellyfin.Api.Models.UserViewDtos; |
| | 10 | | using Jellyfin.Data.Enums; |
| | 11 | | using MediaBrowser.Common.Extensions; |
| | 12 | | using MediaBrowser.Controller.Dto; |
| | 13 | | using MediaBrowser.Controller.Entities; |
| | 14 | | using MediaBrowser.Controller.Library; |
| | 15 | | using MediaBrowser.Model.Dto; |
| | 16 | | using MediaBrowser.Model.Library; |
| | 17 | | using MediaBrowser.Model.Querying; |
| | 18 | | using Microsoft.AspNetCore.Authorization; |
| | 19 | | using Microsoft.AspNetCore.Http; |
| | 20 | | using Microsoft.AspNetCore.Mvc; |
| | 21 | |
|
| | 22 | | namespace Jellyfin.Api.Controllers; |
| | 23 | |
|
| | 24 | | /// <summary> |
| | 25 | | /// User views controller. |
| | 26 | | /// </summary> |
| | 27 | | [Route("")] |
| | 28 | | [Authorize] |
| | 29 | | public class UserViewsController : BaseJellyfinApiController |
| | 30 | | { |
| | 31 | | private readonly IUserManager _userManager; |
| | 32 | | private readonly IUserViewManager _userViewManager; |
| | 33 | | private readonly IDtoService _dtoService; |
| | 34 | | private readonly ILibraryManager _libraryManager; |
| | 35 | |
|
| | 36 | | /// <summary> |
| | 37 | | /// Initializes a new instance of the <see cref="UserViewsController"/> class. |
| | 38 | | /// </summary> |
| | 39 | | /// <param name="userManager">Instance of the <see cref="IUserManager"/> interface.</param> |
| | 40 | | /// <param name="userViewManager">Instance of the <see cref="IUserViewManager"/> interface.</param> |
| | 41 | | /// <param name="dtoService">Instance of the <see cref="IDtoService"/> interface.</param> |
| | 42 | | /// <param name="libraryManager">Instance of the <see cref="ILibraryManager"/> interface.</param> |
| 0 | 43 | | public UserViewsController( |
| 0 | 44 | | IUserManager userManager, |
| 0 | 45 | | IUserViewManager userViewManager, |
| 0 | 46 | | IDtoService dtoService, |
| 0 | 47 | | ILibraryManager libraryManager) |
| | 48 | | { |
| 0 | 49 | | _userManager = userManager; |
| 0 | 50 | | _userViewManager = userViewManager; |
| 0 | 51 | | _dtoService = dtoService; |
| 0 | 52 | | _libraryManager = libraryManager; |
| 0 | 53 | | } |
| | 54 | |
|
| | 55 | | /// <summary> |
| | 56 | | /// Get user views. |
| | 57 | | /// </summary> |
| | 58 | | /// <param name="userId">User id.</param> |
| | 59 | | /// <param name="includeExternalContent">Whether or not to include external views such as channels or live tv.</para |
| | 60 | | /// <param name="presetViews">Preset views.</param> |
| | 61 | | /// <param name="includeHidden">Whether or not to include hidden content.</param> |
| | 62 | | /// <response code="200">User views returned.</response> |
| | 63 | | /// <returns>An <see cref="OkResult"/> containing the user views.</returns> |
| | 64 | | [HttpGet("UserViews")] |
| | 65 | | [ProducesResponseType(StatusCodes.Status200OK)] |
| | 66 | | public QueryResult<BaseItemDto> GetUserViews( |
| | 67 | | [FromQuery] Guid? userId, |
| | 68 | | [FromQuery] bool? includeExternalContent, |
| | 69 | | [FromQuery, ModelBinder(typeof(CommaDelimitedCollectionModelBinder))] CollectionType?[] presetViews, |
| | 70 | | [FromQuery] bool includeHidden = false) |
| | 71 | | { |
| 0 | 72 | | userId = RequestHelpers.GetUserId(User, userId); |
| 0 | 73 | | var user = _userManager.GetUserById(userId.Value) ?? throw new ResourceNotFoundException(); |
| | 74 | |
|
| 0 | 75 | | var query = new UserViewQuery { User = user, IncludeHidden = includeHidden }; |
| | 76 | |
|
| 0 | 77 | | if (includeExternalContent.HasValue) |
| | 78 | | { |
| 0 | 79 | | query.IncludeExternalContent = includeExternalContent.Value; |
| | 80 | | } |
| | 81 | |
|
| 0 | 82 | | if (presetViews.Length != 0) |
| | 83 | | { |
| 0 | 84 | | query.PresetViews = presetViews; |
| | 85 | | } |
| | 86 | |
|
| 0 | 87 | | var folders = _userViewManager.GetUserViews(query); |
| | 88 | |
|
| 0 | 89 | | var dtoOptions = new DtoOptions().AddClientFields(User); |
| 0 | 90 | | dtoOptions.Fields = [..dtoOptions.Fields, ItemFields.PrimaryImageAspectRatio, ItemFields.DisplayPreferencesId]; |
| | 91 | |
|
| 0 | 92 | | var dtos = Array.ConvertAll(folders, i => _dtoService.GetBaseItemDto(i, dtoOptions, user)); |
| | 93 | |
|
| 0 | 94 | | return new QueryResult<BaseItemDto>(dtos); |
| | 95 | | } |
| | 96 | |
|
| | 97 | | /// <summary> |
| | 98 | | /// Get user views. |
| | 99 | | /// </summary> |
| | 100 | | /// <param name="userId">User id.</param> |
| | 101 | | /// <param name="includeExternalContent">Whether or not to include external views such as channels or live tv.</para |
| | 102 | | /// <param name="presetViews">Preset views.</param> |
| | 103 | | /// <param name="includeHidden">Whether or not to include hidden content.</param> |
| | 104 | | /// <response code="200">User views returned.</response> |
| | 105 | | /// <returns>An <see cref="OkResult"/> containing the user views.</returns> |
| | 106 | | [HttpGet("Users/{userId}/Views")] |
| | 107 | | [ProducesResponseType(StatusCodes.Status200OK)] |
| | 108 | | [Obsolete("Kept for backwards compatibility")] |
| | 109 | | [ApiExplorerSettings(IgnoreApi = true)] |
| | 110 | | public QueryResult<BaseItemDto> GetUserViewsLegacy( |
| | 111 | | [FromRoute, Required] Guid userId, |
| | 112 | | [FromQuery] bool? includeExternalContent, |
| | 113 | | [FromQuery, ModelBinder(typeof(CommaDelimitedCollectionModelBinder))] CollectionType?[] presetViews, |
| | 114 | | [FromQuery] bool includeHidden = false) |
| | 115 | | => GetUserViews(userId, includeExternalContent, presetViews, includeHidden); |
| | 116 | |
|
| | 117 | | /// <summary> |
| | 118 | | /// Get user view grouping options. |
| | 119 | | /// </summary> |
| | 120 | | /// <param name="userId">User id.</param> |
| | 121 | | /// <response code="200">User view grouping options returned.</response> |
| | 122 | | /// <response code="404">User not found.</response> |
| | 123 | | /// <returns> |
| | 124 | | /// An <see cref="OkResult"/> containing the user view grouping options |
| | 125 | | /// or a <see cref="NotFoundResult"/> if user not found. |
| | 126 | | /// </returns> |
| | 127 | | [HttpGet("UserViews/GroupingOptions")] |
| | 128 | | [ProducesResponseType(StatusCodes.Status200OK)] |
| | 129 | | [ProducesResponseType(StatusCodes.Status404NotFound)] |
| | 130 | | public ActionResult<IEnumerable<SpecialViewOptionDto>> GetGroupingOptions([FromQuery] Guid? userId) |
| | 131 | | { |
| 0 | 132 | | userId = RequestHelpers.GetUserId(User, userId); |
| 0 | 133 | | var user = _userManager.GetUserById(userId.Value); |
| 0 | 134 | | if (user is null) |
| | 135 | | { |
| 0 | 136 | | return NotFound(); |
| | 137 | | } |
| | 138 | |
|
| 0 | 139 | | return Ok(_libraryManager.GetUserRootFolder() |
| 0 | 140 | | .GetChildren(user, true) |
| 0 | 141 | | .OfType<Folder>() |
| 0 | 142 | | .Where(UserView.IsEligibleForGrouping) |
| 0 | 143 | | .Select(i => new SpecialViewOptionDto |
| 0 | 144 | | { |
| 0 | 145 | | Name = i.Name, |
| 0 | 146 | | Id = i.Id.ToString("N", CultureInfo.InvariantCulture) |
| 0 | 147 | | }) |
| 0 | 148 | | .OrderBy(i => i.Name) |
| 0 | 149 | | .AsEnumerable()); |
| | 150 | | } |
| | 151 | |
|
| | 152 | | /// <summary> |
| | 153 | | /// Get user view grouping options. |
| | 154 | | /// </summary> |
| | 155 | | /// <param name="userId">User id.</param> |
| | 156 | | /// <response code="200">User view grouping options returned.</response> |
| | 157 | | /// <response code="404">User not found.</response> |
| | 158 | | /// <returns> |
| | 159 | | /// An <see cref="OkResult"/> containing the user view grouping options |
| | 160 | | /// or a <see cref="NotFoundResult"/> if user not found. |
| | 161 | | /// </returns> |
| | 162 | | [HttpGet("Users/{userId}/GroupingOptions")] |
| | 163 | | [ProducesResponseType(StatusCodes.Status200OK)] |
| | 164 | | [ProducesResponseType(StatusCodes.Status404NotFound)] |
| | 165 | | [Obsolete("Kept for backwards compatibility")] |
| | 166 | | [ApiExplorerSettings(IgnoreApi = true)] |
| | 167 | | public ActionResult<IEnumerable<SpecialViewOptionDto>> GetGroupingOptionsLegacy( |
| | 168 | | [FromRoute, Required] Guid userId) |
| | 169 | | => GetGroupingOptions(userId); |
| | 170 | | } |