| | 1 | | using System; |
| | 2 | | using System.ComponentModel; |
| | 3 | | using System.ComponentModel.DataAnnotations; |
| | 4 | | using System.Globalization; |
| | 5 | | using System.Linq; |
| | 6 | | using Jellyfin.Api.Helpers; |
| | 7 | | using Jellyfin.Api.ModelBinders; |
| | 8 | | using Jellyfin.Data.Enums; |
| | 9 | | using Jellyfin.Extensions; |
| | 10 | | using MediaBrowser.Controller.Drawing; |
| | 11 | | using MediaBrowser.Controller.Dto; |
| | 12 | | using MediaBrowser.Controller.Entities; |
| | 13 | | using MediaBrowser.Controller.Entities.Audio; |
| | 14 | | using MediaBrowser.Controller.Entities.TV; |
| | 15 | | using MediaBrowser.Controller.Library; |
| | 16 | | using MediaBrowser.Controller.LiveTv; |
| | 17 | | using MediaBrowser.Model.Entities; |
| | 18 | | using MediaBrowser.Model.Search; |
| | 19 | | using Microsoft.AspNetCore.Authorization; |
| | 20 | | using Microsoft.AspNetCore.Http; |
| | 21 | | using Microsoft.AspNetCore.Mvc; |
| | 22 | |
|
| | 23 | | namespace Jellyfin.Api.Controllers; |
| | 24 | |
|
| | 25 | | /// <summary> |
| | 26 | | /// Search controller. |
| | 27 | | /// </summary> |
| | 28 | | [Route("Search/Hints")] |
| | 29 | | [Authorize] |
| | 30 | | public class SearchController : BaseJellyfinApiController |
| | 31 | | { |
| | 32 | | private readonly ISearchEngine _searchEngine; |
| | 33 | | private readonly ILibraryManager _libraryManager; |
| | 34 | | private readonly IDtoService _dtoService; |
| | 35 | | private readonly IImageProcessor _imageProcessor; |
| | 36 | |
|
| | 37 | | /// <summary> |
| | 38 | | /// Initializes a new instance of the <see cref="SearchController"/> class. |
| | 39 | | /// </summary> |
| | 40 | | /// <param name="searchEngine">Instance of <see cref="ISearchEngine"/> interface.</param> |
| | 41 | | /// <param name="libraryManager">Instance of <see cref="ILibraryManager"/> interface.</param> |
| | 42 | | /// <param name="dtoService">Instance of <see cref="IDtoService"/> interface.</param> |
| | 43 | | /// <param name="imageProcessor">Instance of <see cref="IImageProcessor"/> interface.</param> |
| 0 | 44 | | public SearchController( |
| 0 | 45 | | ISearchEngine searchEngine, |
| 0 | 46 | | ILibraryManager libraryManager, |
| 0 | 47 | | IDtoService dtoService, |
| 0 | 48 | | IImageProcessor imageProcessor) |
| | 49 | | { |
| 0 | 50 | | _searchEngine = searchEngine; |
| 0 | 51 | | _libraryManager = libraryManager; |
| 0 | 52 | | _dtoService = dtoService; |
| 0 | 53 | | _imageProcessor = imageProcessor; |
| 0 | 54 | | } |
| | 55 | |
|
| | 56 | | /// <summary> |
| | 57 | | /// Gets the search hint result. |
| | 58 | | /// </summary> |
| | 59 | | /// <param name="startIndex">Optional. The record index to start at. All items with a lower index will be dropped fr |
| | 60 | | /// <param name="limit">Optional. The maximum number of records to return.</param> |
| | 61 | | /// <param name="userId">Optional. Supply a user id to search within a user's library or omit to search all.</param> |
| | 62 | | /// <param name="searchTerm">The search term to filter on.</param> |
| | 63 | | /// <param name="includeItemTypes">If specified, only results with the specified item types are returned. This allow |
| | 64 | | /// <param name="excludeItemTypes">If specified, results with these item types are filtered out. This allows multipl |
| | 65 | | /// <param name="mediaTypes">If specified, only results with the specified media types are returned. This allows mul |
| | 66 | | /// <param name="parentId">If specified, only children of the parent are returned.</param> |
| | 67 | | /// <param name="isMovie">Optional filter for movies.</param> |
| | 68 | | /// <param name="isSeries">Optional filter for series.</param> |
| | 69 | | /// <param name="isNews">Optional filter for news.</param> |
| | 70 | | /// <param name="isKids">Optional filter for kids.</param> |
| | 71 | | /// <param name="isSports">Optional filter for sports.</param> |
| | 72 | | /// <param name="includePeople">Optional filter whether to include people.</param> |
| | 73 | | /// <param name="includeMedia">Optional filter whether to include media.</param> |
| | 74 | | /// <param name="includeGenres">Optional filter whether to include genres.</param> |
| | 75 | | /// <param name="includeStudios">Optional filter whether to include studios.</param> |
| | 76 | | /// <param name="includeArtists">Optional filter whether to include artists.</param> |
| | 77 | | /// <response code="200">Search hint returned.</response> |
| | 78 | | /// <returns>An <see cref="SearchHintResult"/> with the results of the search.</returns> |
| | 79 | | [HttpGet] |
| | 80 | | [Description("Gets search hints based on a search term")] |
| | 81 | | [ProducesResponseType(StatusCodes.Status200OK)] |
| | 82 | | public ActionResult<SearchHintResult> GetSearchHints( |
| | 83 | | [FromQuery] int? startIndex, |
| | 84 | | [FromQuery] int? limit, |
| | 85 | | [FromQuery] Guid? userId, |
| | 86 | | [FromQuery, Required] string searchTerm, |
| | 87 | | [FromQuery, ModelBinder(typeof(CommaDelimitedCollectionModelBinder))] BaseItemKind[] includeItemTypes, |
| | 88 | | [FromQuery, ModelBinder(typeof(CommaDelimitedCollectionModelBinder))] BaseItemKind[] excludeItemTypes, |
| | 89 | | [FromQuery, ModelBinder(typeof(CommaDelimitedCollectionModelBinder))] MediaType[] mediaTypes, |
| | 90 | | [FromQuery] Guid? parentId, |
| | 91 | | [FromQuery] bool? isMovie, |
| | 92 | | [FromQuery] bool? isSeries, |
| | 93 | | [FromQuery] bool? isNews, |
| | 94 | | [FromQuery] bool? isKids, |
| | 95 | | [FromQuery] bool? isSports, |
| | 96 | | [FromQuery] bool includePeople = true, |
| | 97 | | [FromQuery] bool includeMedia = true, |
| | 98 | | [FromQuery] bool includeGenres = true, |
| | 99 | | [FromQuery] bool includeStudios = true, |
| | 100 | | [FromQuery] bool includeArtists = true) |
| | 101 | | { |
| 0 | 102 | | userId = RequestHelpers.GetUserId(User, userId); |
| 0 | 103 | | var result = _searchEngine.GetSearchHints(new SearchQuery |
| 0 | 104 | | { |
| 0 | 105 | | Limit = limit, |
| 0 | 106 | | SearchTerm = searchTerm, |
| 0 | 107 | | IncludeArtists = includeArtists, |
| 0 | 108 | | IncludeGenres = includeGenres, |
| 0 | 109 | | IncludeMedia = includeMedia, |
| 0 | 110 | | IncludePeople = includePeople, |
| 0 | 111 | | IncludeStudios = includeStudios, |
| 0 | 112 | | StartIndex = startIndex, |
| 0 | 113 | | UserId = userId.Value, |
| 0 | 114 | | IncludeItemTypes = includeItemTypes, |
| 0 | 115 | | ExcludeItemTypes = excludeItemTypes, |
| 0 | 116 | | MediaTypes = mediaTypes, |
| 0 | 117 | | ParentId = parentId, |
| 0 | 118 | |
|
| 0 | 119 | | IsKids = isKids, |
| 0 | 120 | | IsMovie = isMovie, |
| 0 | 121 | | IsNews = isNews, |
| 0 | 122 | | IsSeries = isSeries, |
| 0 | 123 | | IsSports = isSports |
| 0 | 124 | | }); |
| | 125 | |
|
| 0 | 126 | | return new SearchHintResult(result.Items.Select(GetSearchHintResult).ToArray(), result.TotalRecordCount); |
| | 127 | | } |
| | 128 | |
|
| | 129 | | /// <summary> |
| | 130 | | /// Gets the search hint result. |
| | 131 | | /// </summary> |
| | 132 | | /// <param name="hintInfo">The hint info.</param> |
| | 133 | | /// <returns>SearchHintResult.</returns> |
| | 134 | | private SearchHint GetSearchHintResult(SearchHintInfo hintInfo) |
| | 135 | | { |
| 0 | 136 | | var item = hintInfo.Item; |
| | 137 | |
|
| 0 | 138 | | var result = new SearchHint |
| 0 | 139 | | { |
| 0 | 140 | | Name = item.Name, |
| 0 | 141 | | IndexNumber = item.IndexNumber, |
| 0 | 142 | | ParentIndexNumber = item.ParentIndexNumber, |
| 0 | 143 | | Id = item.Id, |
| 0 | 144 | | Type = item.GetBaseItemKind(), |
| 0 | 145 | | MediaType = item.MediaType, |
| 0 | 146 | | MatchedTerm = hintInfo.MatchedTerm, |
| 0 | 147 | | RunTimeTicks = item.RunTimeTicks, |
| 0 | 148 | | ProductionYear = item.ProductionYear, |
| 0 | 149 | | ChannelId = item.ChannelId, |
| 0 | 150 | | EndDate = item.EndDate |
| 0 | 151 | | }; |
| | 152 | |
|
| | 153 | | #pragma warning disable CS0618 |
| | 154 | | // Kept for compatibility with older clients |
| 0 | 155 | | result.ItemId = result.Id; |
| | 156 | | #pragma warning restore CS0618 |
| | 157 | |
|
| 0 | 158 | | if (item.IsFolder) |
| | 159 | | { |
| 0 | 160 | | result.IsFolder = true; |
| | 161 | | } |
| | 162 | |
|
| 0 | 163 | | var primaryImageTag = _imageProcessor.GetImageCacheTag(item, ImageType.Primary); |
| | 164 | |
|
| 0 | 165 | | if (primaryImageTag is not null) |
| | 166 | | { |
| 0 | 167 | | result.PrimaryImageTag = primaryImageTag; |
| 0 | 168 | | result.PrimaryImageAspectRatio = _dtoService.GetPrimaryImageAspectRatio(item); |
| | 169 | | } |
| | 170 | |
|
| 0 | 171 | | SetThumbImageInfo(result, item); |
| 0 | 172 | | SetBackdropImageInfo(result, item); |
| | 173 | |
|
| | 174 | | switch (item) |
| | 175 | | { |
| | 176 | | case IHasSeries hasSeries: |
| 0 | 177 | | result.Series = hasSeries.SeriesName; |
| 0 | 178 | | break; |
| | 179 | | case LiveTvProgram program: |
| 0 | 180 | | result.StartDate = program.StartDate; |
| 0 | 181 | | break; |
| | 182 | | case Series series: |
| 0 | 183 | | if (series.Status.HasValue) |
| | 184 | | { |
| 0 | 185 | | result.Status = series.Status.Value.ToString(); |
| | 186 | | } |
| | 187 | |
|
| 0 | 188 | | break; |
| | 189 | | case MusicAlbum album: |
| 0 | 190 | | result.Artists = album.Artists; |
| 0 | 191 | | result.AlbumArtist = album.AlbumArtist; |
| 0 | 192 | | break; |
| | 193 | | case Audio song: |
| 0 | 194 | | result.AlbumArtist = song.AlbumArtists?.FirstOrDefault(); |
| 0 | 195 | | result.Artists = song.Artists; |
| | 196 | |
|
| 0 | 197 | | MusicAlbum musicAlbum = song.AlbumEntity; |
| | 198 | |
|
| 0 | 199 | | if (musicAlbum is not null) |
| | 200 | | { |
| 0 | 201 | | result.Album = musicAlbum.Name; |
| 0 | 202 | | result.AlbumId = musicAlbum.Id; |
| | 203 | | } |
| | 204 | | else |
| | 205 | | { |
| 0 | 206 | | result.Album = song.Album; |
| | 207 | | } |
| | 208 | |
|
| | 209 | | break; |
| | 210 | | } |
| | 211 | |
|
| 0 | 212 | | if (!item.ChannelId.IsEmpty()) |
| | 213 | | { |
| 0 | 214 | | var channel = _libraryManager.GetItemById<BaseItem>(item.ChannelId); |
| 0 | 215 | | result.ChannelName = channel?.Name; |
| | 216 | | } |
| | 217 | |
|
| 0 | 218 | | return result; |
| | 219 | | } |
| | 220 | |
|
| | 221 | | private void SetThumbImageInfo(SearchHint hint, BaseItem item) |
| | 222 | | { |
| 0 | 223 | | var itemWithImage = item.HasImage(ImageType.Thumb) ? item : null; |
| | 224 | |
|
| 0 | 225 | | if (itemWithImage is null && item is Episode) |
| | 226 | | { |
| 0 | 227 | | itemWithImage = GetParentWithImage<Series>(item, ImageType.Thumb); |
| | 228 | | } |
| | 229 | |
|
| 0 | 230 | | itemWithImage ??= GetParentWithImage<BaseItem>(item, ImageType.Thumb); |
| | 231 | |
|
| 0 | 232 | | if (itemWithImage is not null) |
| | 233 | | { |
| 0 | 234 | | var tag = _imageProcessor.GetImageCacheTag(itemWithImage, ImageType.Thumb); |
| | 235 | |
|
| 0 | 236 | | if (tag is not null) |
| | 237 | | { |
| 0 | 238 | | hint.ThumbImageTag = tag; |
| 0 | 239 | | hint.ThumbImageItemId = itemWithImage.Id.ToString("N", CultureInfo.InvariantCulture); |
| | 240 | | } |
| | 241 | | } |
| 0 | 242 | | } |
| | 243 | |
|
| | 244 | | private void SetBackdropImageInfo(SearchHint hint, BaseItem item) |
| | 245 | | { |
| 0 | 246 | | var itemWithImage = (item.HasImage(ImageType.Backdrop) ? item : null) |
| 0 | 247 | | ?? GetParentWithImage<BaseItem>(item, ImageType.Backdrop); |
| | 248 | |
|
| 0 | 249 | | if (itemWithImage is not null) |
| | 250 | | { |
| 0 | 251 | | var tag = _imageProcessor.GetImageCacheTag(itemWithImage, ImageType.Backdrop); |
| | 252 | |
|
| 0 | 253 | | if (tag is not null) |
| | 254 | | { |
| 0 | 255 | | hint.BackdropImageTag = tag; |
| 0 | 256 | | hint.BackdropImageItemId = itemWithImage.Id.ToString("N", CultureInfo.InvariantCulture); |
| | 257 | | } |
| | 258 | | } |
| 0 | 259 | | } |
| | 260 | |
|
| | 261 | | private T? GetParentWithImage<T>(BaseItem item, ImageType type) |
| | 262 | | where T : BaseItem |
| | 263 | | { |
| 0 | 264 | | return item.GetParents().OfType<T>().FirstOrDefault(i => i.HasImage(type)); |
| | 265 | | } |
| | 266 | | } |