| | 1 | | #pragma warning disable RS0030 // Do not use banned APIs |
| | 2 | | // Do not enforce that because EFCore cannot deal with cultures well. |
| | 3 | | #pragma warning disable CA1304 // Specify CultureInfo |
| | 4 | | #pragma warning disable CA1311 // Specify a culture or use an invariant version |
| | 5 | | #pragma warning disable CA1862 // Use the 'StringComparison' method overloads to perform case-insensitive string compari |
| | 6 | |
|
| | 7 | | using System; |
| | 8 | | using System.Collections.Concurrent; |
| | 9 | | using System.Collections.Generic; |
| | 10 | | using System.Globalization; |
| | 11 | | using System.Linq; |
| | 12 | | using System.Linq.Expressions; |
| | 13 | | using System.Reflection; |
| | 14 | | using System.Text; |
| | 15 | | using System.Text.Json; |
| | 16 | | using System.Threading; |
| | 17 | | using Jellyfin.Data.Enums; |
| | 18 | | using Jellyfin.Database.Implementations; |
| | 19 | | using Jellyfin.Database.Implementations.Entities; |
| | 20 | | using Jellyfin.Database.Implementations.Enums; |
| | 21 | | using Jellyfin.Extensions; |
| | 22 | | using Jellyfin.Extensions.Json; |
| | 23 | | using Jellyfin.Server.Implementations.Extensions; |
| | 24 | | using MediaBrowser.Common; |
| | 25 | | using MediaBrowser.Controller; |
| | 26 | | using MediaBrowser.Controller.Channels; |
| | 27 | | using MediaBrowser.Controller.Configuration; |
| | 28 | | using MediaBrowser.Controller.Entities; |
| | 29 | | using MediaBrowser.Controller.Entities.Audio; |
| | 30 | | using MediaBrowser.Controller.Entities.TV; |
| | 31 | | using MediaBrowser.Controller.LiveTv; |
| | 32 | | using MediaBrowser.Controller.Persistence; |
| | 33 | | using MediaBrowser.Model.Dto; |
| | 34 | | using MediaBrowser.Model.Entities; |
| | 35 | | using MediaBrowser.Model.LiveTv; |
| | 36 | | using MediaBrowser.Model.Querying; |
| | 37 | | using Microsoft.EntityFrameworkCore; |
| | 38 | | using Microsoft.Extensions.Logging; |
| | 39 | | using BaseItemDto = MediaBrowser.Controller.Entities.BaseItem; |
| | 40 | | using BaseItemEntity = Jellyfin.Database.Implementations.Entities.BaseItemEntity; |
| | 41 | |
|
| | 42 | | namespace Jellyfin.Server.Implementations.Item; |
| | 43 | |
|
| | 44 | | /* |
| | 45 | | All queries in this class and all other nullable enabled EFCore repository classes will make liberal use of the null |
| | 46 | | This is done as the code isn't actually executed client side, but only the expressions are interpret and the compile |
| | 47 | | This is your only warning/message regarding this topic. |
| | 48 | | */ |
| | 49 | |
|
| | 50 | | /// <summary> |
| | 51 | | /// Handles all storage logic for BaseItems. |
| | 52 | | /// </summary> |
| | 53 | | public sealed class BaseItemRepository |
| | 54 | | : IItemRepository |
| | 55 | | { |
| | 56 | | /// <summary> |
| | 57 | | /// This holds all the types in the running assemblies |
| | 58 | | /// so that we can de-serialize properly when we don't have strong types. |
| | 59 | | /// </summary> |
| 1 | 60 | | private static readonly ConcurrentDictionary<string, Type?> _typeMap = new ConcurrentDictionary<string, Type?>(); |
| | 61 | | private readonly IDbContextFactory<JellyfinDbContext> _dbProvider; |
| | 62 | | private readonly IServerApplicationHost _appHost; |
| | 63 | | private readonly IItemTypeLookup _itemTypeLookup; |
| | 64 | | private readonly IServerConfigurationManager _serverConfigurationManager; |
| | 65 | | private readonly ILogger<BaseItemRepository> _logger; |
| | 66 | |
|
| 1 | 67 | | private static readonly IReadOnlyList<ItemValueType> _getAllArtistsValueTypes = [ItemValueType.Artist, ItemValueType |
| 1 | 68 | | private static readonly IReadOnlyList<ItemValueType> _getArtistValueTypes = [ItemValueType.Artist]; |
| 1 | 69 | | private static readonly IReadOnlyList<ItemValueType> _getAlbumArtistValueTypes = [ItemValueType.AlbumArtist]; |
| 1 | 70 | | private static readonly IReadOnlyList<ItemValueType> _getStudiosValueTypes = [ItemValueType.Studios]; |
| 1 | 71 | | private static readonly IReadOnlyList<ItemValueType> _getGenreValueTypes = [ItemValueType.Studios]; |
| | 72 | |
|
| | 73 | | /// <summary> |
| | 74 | | /// Initializes a new instance of the <see cref="BaseItemRepository"/> class. |
| | 75 | | /// </summary> |
| | 76 | | /// <param name="dbProvider">The db factory.</param> |
| | 77 | | /// <param name="appHost">The Application host.</param> |
| | 78 | | /// <param name="itemTypeLookup">The static type lookup.</param> |
| | 79 | | /// <param name="serverConfigurationManager">The server Configuration manager.</param> |
| | 80 | | /// <param name="logger">System logger.</param> |
| | 81 | | public BaseItemRepository( |
| | 82 | | IDbContextFactory<JellyfinDbContext> dbProvider, |
| | 83 | | IServerApplicationHost appHost, |
| | 84 | | IItemTypeLookup itemTypeLookup, |
| | 85 | | IServerConfigurationManager serverConfigurationManager, |
| | 86 | | ILogger<BaseItemRepository> logger) |
| | 87 | | { |
| 21 | 88 | | _dbProvider = dbProvider; |
| 21 | 89 | | _appHost = appHost; |
| 21 | 90 | | _itemTypeLookup = itemTypeLookup; |
| 21 | 91 | | _serverConfigurationManager = serverConfigurationManager; |
| 21 | 92 | | _logger = logger; |
| 21 | 93 | | } |
| | 94 | |
|
| | 95 | | /// <inheritdoc /> |
| | 96 | | public void DeleteItem(Guid id) |
| | 97 | | { |
| 2 | 98 | | if (id.IsEmpty()) |
| | 99 | | { |
| 0 | 100 | | throw new ArgumentException("Guid can't be empty", nameof(id)); |
| | 101 | | } |
| | 102 | |
|
| 2 | 103 | | using var context = _dbProvider.CreateDbContext(); |
| 2 | 104 | | using var transaction = context.Database.BeginTransaction(); |
| 2 | 105 | | context.AncestorIds.Where(e => e.ItemId == id || e.ParentItemId == id).ExecuteDelete(); |
| 2 | 106 | | context.AttachmentStreamInfos.Where(e => e.ItemId == id).ExecuteDelete(); |
| 2 | 107 | | context.BaseItemImageInfos.Where(e => e.ItemId == id).ExecuteDelete(); |
| 2 | 108 | | context.BaseItemMetadataFields.Where(e => e.ItemId == id).ExecuteDelete(); |
| 2 | 109 | | context.BaseItemProviders.Where(e => e.ItemId == id).ExecuteDelete(); |
| 2 | 110 | | context.BaseItemTrailerTypes.Where(e => e.ItemId == id).ExecuteDelete(); |
| 2 | 111 | | context.BaseItems.Where(e => e.Id == id).ExecuteDelete(); |
| 2 | 112 | | context.Chapters.Where(e => e.ItemId == id).ExecuteDelete(); |
| 2 | 113 | | context.CustomItemDisplayPreferences.Where(e => e.ItemId == id).ExecuteDelete(); |
| 2 | 114 | | context.ItemDisplayPreferences.Where(e => e.ItemId == id).ExecuteDelete(); |
| 2 | 115 | | context.ItemValues.Where(e => e.BaseItemsMap!.Count == 0).ExecuteDelete(); |
| 2 | 116 | | context.ItemValuesMap.Where(e => e.ItemId == id).ExecuteDelete(); |
| 2 | 117 | | context.MediaSegments.Where(e => e.ItemId == id).ExecuteDelete(); |
| 2 | 118 | | context.MediaStreamInfos.Where(e => e.ItemId == id).ExecuteDelete(); |
| 2 | 119 | | context.PeopleBaseItemMap.Where(e => e.ItemId == id).ExecuteDelete(); |
| 2 | 120 | | context.Peoples.Where(e => e.BaseItems!.Count == 0).ExecuteDelete(); |
| 2 | 121 | | context.TrickplayInfos.Where(e => e.ItemId == id).ExecuteDelete(); |
| 2 | 122 | | context.SaveChanges(); |
| 2 | 123 | | transaction.Commit(); |
| 4 | 124 | | } |
| | 125 | |
|
| | 126 | | /// <inheritdoc /> |
| | 127 | | public void UpdateInheritedValues() |
| | 128 | | { |
| 8 | 129 | | using var context = _dbProvider.CreateDbContext(); |
| 8 | 130 | | using var transaction = context.Database.BeginTransaction(); |
| | 131 | |
|
| 8 | 132 | | context.ItemValuesMap.Where(e => e.ItemValue.Type == ItemValueType.InheritedTags).ExecuteDelete(); |
| | 133 | | // ItemValue Inheritance is now correctly mapped via AncestorId on demand |
| 8 | 134 | | context.SaveChanges(); |
| | 135 | |
|
| 8 | 136 | | transaction.Commit(); |
| 16 | 137 | | } |
| | 138 | |
|
| | 139 | | /// <inheritdoc /> |
| | 140 | | public IReadOnlyList<Guid> GetItemIdsList(InternalItemsQuery filter) |
| | 141 | | { |
| 10 | 142 | | ArgumentNullException.ThrowIfNull(filter); |
| 10 | 143 | | PrepareFilterQuery(filter); |
| | 144 | |
|
| 10 | 145 | | using var context = _dbProvider.CreateDbContext(); |
| 10 | 146 | | return ApplyQueryFilter(context.BaseItems.AsNoTracking(), context, filter).Select(e => e.Id).ToArray(); |
| 10 | 147 | | } |
| | 148 | |
|
| | 149 | | /// <inheritdoc /> |
| | 150 | | public QueryResult<(BaseItemDto Item, ItemCounts ItemCounts)> GetAllArtists(InternalItemsQuery filter) |
| | 151 | | { |
| 0 | 152 | | return GetItemValues(filter, _getAllArtistsValueTypes, _itemTypeLookup.BaseItemKindNames[BaseItemKind.MusicArtis |
| | 153 | | } |
| | 154 | |
|
| | 155 | | /// <inheritdoc /> |
| | 156 | | public QueryResult<(BaseItemDto Item, ItemCounts ItemCounts)> GetArtists(InternalItemsQuery filter) |
| | 157 | | { |
| 0 | 158 | | return GetItemValues(filter, _getArtistValueTypes, _itemTypeLookup.BaseItemKindNames[BaseItemKind.MusicArtist]); |
| | 159 | | } |
| | 160 | |
|
| | 161 | | /// <inheritdoc /> |
| | 162 | | public QueryResult<(BaseItemDto Item, ItemCounts ItemCounts)> GetAlbumArtists(InternalItemsQuery filter) |
| | 163 | | { |
| 0 | 164 | | return GetItemValues(filter, _getAlbumArtistValueTypes, _itemTypeLookup.BaseItemKindNames[BaseItemKind.MusicArti |
| | 165 | | } |
| | 166 | |
|
| | 167 | | /// <inheritdoc /> |
| | 168 | | public QueryResult<(BaseItemDto Item, ItemCounts ItemCounts)> GetStudios(InternalItemsQuery filter) |
| | 169 | | { |
| 0 | 170 | | return GetItemValues(filter, _getStudiosValueTypes, _itemTypeLookup.BaseItemKindNames[BaseItemKind.Studio]); |
| | 171 | | } |
| | 172 | |
|
| | 173 | | /// <inheritdoc /> |
| | 174 | | public QueryResult<(BaseItemDto Item, ItemCounts ItemCounts)> GetGenres(InternalItemsQuery filter) |
| | 175 | | { |
| 0 | 176 | | return GetItemValues(filter, _getGenreValueTypes, _itemTypeLookup.BaseItemKindNames[BaseItemKind.Genre]); |
| | 177 | | } |
| | 178 | |
|
| | 179 | | /// <inheritdoc /> |
| | 180 | | public QueryResult<(BaseItemDto Item, ItemCounts ItemCounts)> GetMusicGenres(InternalItemsQuery filter) |
| | 181 | | { |
| 0 | 182 | | return GetItemValues(filter, _getGenreValueTypes, _itemTypeLookup.BaseItemKindNames[BaseItemKind.MusicGenre]); |
| | 183 | | } |
| | 184 | |
|
| | 185 | | /// <inheritdoc /> |
| | 186 | | public IReadOnlyList<string> GetStudioNames() |
| | 187 | | { |
| 10 | 188 | | return GetItemValueNames(_getStudiosValueTypes, [], []); |
| | 189 | | } |
| | 190 | |
|
| | 191 | | /// <inheritdoc /> |
| | 192 | | public IReadOnlyList<string> GetAllArtistNames() |
| | 193 | | { |
| 10 | 194 | | return GetItemValueNames(_getAllArtistsValueTypes, [], []); |
| | 195 | | } |
| | 196 | |
|
| | 197 | | /// <inheritdoc /> |
| | 198 | | public IReadOnlyList<string> GetMusicGenreNames() |
| | 199 | | { |
| 10 | 200 | | return GetItemValueNames( |
| 10 | 201 | | _getGenreValueTypes, |
| 10 | 202 | | _itemTypeLookup.MusicGenreTypes, |
| 10 | 203 | | []); |
| | 204 | | } |
| | 205 | |
|
| | 206 | | /// <inheritdoc /> |
| | 207 | | public IReadOnlyList<string> GetGenreNames() |
| | 208 | | { |
| 10 | 209 | | return GetItemValueNames( |
| 10 | 210 | | _getGenreValueTypes, |
| 10 | 211 | | [], |
| 10 | 212 | | _itemTypeLookup.MusicGenreTypes); |
| | 213 | | } |
| | 214 | |
|
| | 215 | | /// <inheritdoc /> |
| | 216 | | public QueryResult<BaseItemDto> GetItems(InternalItemsQuery filter) |
| | 217 | | { |
| 1 | 218 | | ArgumentNullException.ThrowIfNull(filter); |
| 1 | 219 | | if (!filter.EnableTotalRecordCount || (!filter.Limit.HasValue && (filter.StartIndex ?? 0) == 0)) |
| | 220 | | { |
| 1 | 221 | | var returnList = GetItemList(filter); |
| 1 | 222 | | return new QueryResult<BaseItemDto>( |
| 1 | 223 | | filter.StartIndex, |
| 1 | 224 | | returnList.Count, |
| 1 | 225 | | returnList); |
| | 226 | | } |
| | 227 | |
|
| 0 | 228 | | PrepareFilterQuery(filter); |
| 0 | 229 | | var result = new QueryResult<BaseItemDto>(); |
| | 230 | |
|
| 0 | 231 | | using var context = _dbProvider.CreateDbContext(); |
| | 232 | |
|
| 0 | 233 | | IQueryable<BaseItemEntity> dbQuery = PrepareItemQuery(context, filter); |
| | 234 | |
|
| 0 | 235 | | dbQuery = TranslateQuery(dbQuery, context, filter); |
| 0 | 236 | | if (filter.EnableTotalRecordCount) |
| | 237 | | { |
| 0 | 238 | | result.TotalRecordCount = dbQuery.Count(); |
| | 239 | | } |
| | 240 | |
|
| 0 | 241 | | dbQuery = ApplyGroupingFilter(dbQuery, filter); |
| 0 | 242 | | dbQuery = ApplyQueryPaging(dbQuery, filter); |
| | 243 | |
|
| 0 | 244 | | result.Items = dbQuery.AsEnumerable().Where(e => e is not null).Select(w => DeserialiseBaseItem(w, filter.SkipDe |
| 0 | 245 | | result.StartIndex = filter.StartIndex ?? 0; |
| 0 | 246 | | return result; |
| 0 | 247 | | } |
| | 248 | |
|
| | 249 | | /// <inheritdoc /> |
| | 250 | | public IReadOnlyList<BaseItemDto> GetItemList(InternalItemsQuery filter) |
| | 251 | | { |
| 250 | 252 | | ArgumentNullException.ThrowIfNull(filter); |
| 250 | 253 | | PrepareFilterQuery(filter); |
| | 254 | |
|
| 250 | 255 | | using var context = _dbProvider.CreateDbContext(); |
| 247 | 256 | | IQueryable<BaseItemEntity> dbQuery = PrepareItemQuery(context, filter); |
| | 257 | |
|
| 247 | 258 | | dbQuery = TranslateQuery(dbQuery, context, filter); |
| | 259 | |
|
| 247 | 260 | | dbQuery = ApplyGroupingFilter(dbQuery, filter); |
| 247 | 261 | | dbQuery = ApplyQueryPaging(dbQuery, filter); |
| | 262 | |
|
| 247 | 263 | | return dbQuery.AsEnumerable().Where(e => e is not null).Select(w => DeserialiseBaseItem(w, filter.SkipDeserializ |
| 247 | 264 | | } |
| | 265 | |
|
| | 266 | | /// <inheritdoc/> |
| | 267 | | public IReadOnlyList<BaseItem> GetLatestItemList(InternalItemsQuery filter, CollectionType collectionType) |
| | 268 | | { |
| 0 | 269 | | ArgumentNullException.ThrowIfNull(filter); |
| 0 | 270 | | PrepareFilterQuery(filter); |
| | 271 | |
|
| | 272 | | // Early exit if collection type is not tvshows or music |
| 0 | 273 | | if (collectionType != CollectionType.tvshows && collectionType != CollectionType.music) |
| | 274 | | { |
| 0 | 275 | | return Array.Empty<BaseItem>(); |
| | 276 | | } |
| | 277 | |
|
| 0 | 278 | | using var context = _dbProvider.CreateDbContext(); |
| | 279 | |
|
| | 280 | | // Subquery to group by SeriesNames/Album and get the max Date Created for each group. |
| 0 | 281 | | var subquery = PrepareItemQuery(context, filter); |
| 0 | 282 | | subquery = TranslateQuery(subquery, context, filter); |
| 0 | 283 | | var subqueryGrouped = subquery.GroupBy(g => collectionType == CollectionType.tvshows ? g.SeriesName : g.Album) |
| 0 | 284 | | .Select(g => new |
| 0 | 285 | | { |
| 0 | 286 | | Key = g.Key, |
| 0 | 287 | | MaxDateCreated = g.Max(a => a.DateCreated) |
| 0 | 288 | | }) |
| 0 | 289 | | .OrderByDescending(g => g.MaxDateCreated) |
| 0 | 290 | | .Select(g => g); |
| | 291 | |
|
| 0 | 292 | | if (filter.Limit.HasValue) |
| | 293 | | { |
| 0 | 294 | | subqueryGrouped = subqueryGrouped.Take(filter.Limit.Value); |
| | 295 | | } |
| | 296 | |
|
| 0 | 297 | | filter.Limit = null; |
| | 298 | |
|
| 0 | 299 | | var mainquery = PrepareItemQuery(context, filter); |
| 0 | 300 | | mainquery = TranslateQuery(mainquery, context, filter); |
| 0 | 301 | | mainquery = mainquery.Where(g => g.DateCreated >= subqueryGrouped.Min(s => s.MaxDateCreated)); |
| 0 | 302 | | mainquery = ApplyGroupingFilter(mainquery, filter); |
| 0 | 303 | | mainquery = ApplyQueryPaging(mainquery, filter); |
| | 304 | |
|
| 0 | 305 | | return mainquery.AsEnumerable().Where(e => e is not null).Select(w => DeserialiseBaseItem(w, filter.SkipDeserial |
| 0 | 306 | | } |
| | 307 | |
|
| | 308 | | /// <inheritdoc /> |
| | 309 | | public IReadOnlyList<string> GetNextUpSeriesKeys(InternalItemsQuery filter, DateTime dateCutoff) |
| | 310 | | { |
| 0 | 311 | | ArgumentNullException.ThrowIfNull(filter); |
| 0 | 312 | | ArgumentNullException.ThrowIfNull(filter.User); |
| | 313 | |
|
| 0 | 314 | | using var context = _dbProvider.CreateDbContext(); |
| | 315 | |
|
| 0 | 316 | | var query = context.BaseItems |
| 0 | 317 | | .AsNoTracking() |
| 0 | 318 | | .Where(i => filter.TopParentIds.Contains(i.TopParentId!.Value)) |
| 0 | 319 | | .Where(i => i.Type == _itemTypeLookup.BaseItemKindNames[BaseItemKind.Episode]) |
| 0 | 320 | | .Join( |
| 0 | 321 | | context.UserData.AsNoTracking(), |
| 0 | 322 | | i => new { UserId = filter.User.Id, ItemId = i.Id }, |
| 0 | 323 | | u => new { UserId = u.UserId, ItemId = u.ItemId }, |
| 0 | 324 | | (entity, data) => new { Item = entity, UserData = data }) |
| 0 | 325 | | .GroupBy(g => g.Item.SeriesPresentationUniqueKey) |
| 0 | 326 | | .Select(g => new { g.Key, LastPlayedDate = g.Max(u => u.UserData.LastPlayedDate) }) |
| 0 | 327 | | .Where(g => g.Key != null && g.LastPlayedDate != null && g.LastPlayedDate >= dateCutoff) |
| 0 | 328 | | .OrderByDescending(g => g.LastPlayedDate) |
| 0 | 329 | | .Select(g => g.Key!); |
| | 330 | |
|
| 0 | 331 | | if (filter.Limit.HasValue) |
| | 332 | | { |
| 0 | 333 | | query = query.Take(filter.Limit.Value); |
| | 334 | | } |
| | 335 | |
|
| 0 | 336 | | return query.ToArray(); |
| 0 | 337 | | } |
| | 338 | |
|
| | 339 | | private IQueryable<BaseItemEntity> ApplyGroupingFilter(IQueryable<BaseItemEntity> dbQuery, InternalItemsQuery filter |
| | 340 | | { |
| | 341 | | // This whole block is needed to filter duplicate entries on request |
| | 342 | | // for the time being it cannot be used because it would destroy the ordering |
| | 343 | | // this results in "duplicate" responses for queries that try to lookup individual series or multiple versions b |
| | 344 | | // for that case the invoker has to run a DistinctBy(e => e.PresentationUniqueKey) on their own |
| | 345 | |
|
| | 346 | | // var enableGroupByPresentationUniqueKey = EnableGroupByPresentationUniqueKey(filter); |
| | 347 | | // if (enableGroupByPresentationUniqueKey && filter.GroupBySeriesPresentationUniqueKey) |
| | 348 | | // { |
| | 349 | | // dbQuery = ApplyOrder(dbQuery, filter); |
| | 350 | | // dbQuery = dbQuery.GroupBy(e => new { e.PresentationUniqueKey, e.SeriesPresentationUniqueKey }).Select(e = |
| | 351 | | // } |
| | 352 | | // else if (enableGroupByPresentationUniqueKey) |
| | 353 | | // { |
| | 354 | | // dbQuery = ApplyOrder(dbQuery, filter); |
| | 355 | | // dbQuery = dbQuery.GroupBy(e => e.PresentationUniqueKey).Select(e => e.First()); |
| | 356 | | // } |
| | 357 | | // else if (filter.GroupBySeriesPresentationUniqueKey) |
| | 358 | | // { |
| | 359 | | // dbQuery = ApplyOrder(dbQuery, filter); |
| | 360 | | // dbQuery = dbQuery.GroupBy(e => e.SeriesPresentationUniqueKey).Select(e => e.First()); |
| | 361 | | // } |
| | 362 | | // else |
| | 363 | | // { |
| | 364 | | // dbQuery = dbQuery.Distinct(); |
| | 365 | | // dbQuery = ApplyOrder(dbQuery, filter); |
| | 366 | | // } |
| 257 | 367 | | dbQuery = dbQuery.Distinct(); |
| 257 | 368 | | dbQuery = ApplyOrder(dbQuery, filter); |
| | 369 | |
|
| 257 | 370 | | return dbQuery; |
| | 371 | | } |
| | 372 | |
|
| | 373 | | private IQueryable<BaseItemEntity> ApplyQueryPaging(IQueryable<BaseItemEntity> dbQuery, InternalItemsQuery filter) |
| | 374 | | { |
| 257 | 375 | | if (filter.Limit.HasValue || filter.StartIndex.HasValue) |
| | 376 | | { |
| 82 | 377 | | var offset = filter.StartIndex ?? 0; |
| | 378 | |
|
| 82 | 379 | | if (offset > 0) |
| | 380 | | { |
| 0 | 381 | | dbQuery = dbQuery.Skip(offset); |
| | 382 | | } |
| | 383 | |
|
| 82 | 384 | | if (filter.Limit.HasValue) |
| | 385 | | { |
| 82 | 386 | | dbQuery = dbQuery.Take(filter.Limit.Value); |
| | 387 | | } |
| | 388 | | } |
| | 389 | |
|
| 257 | 390 | | return dbQuery; |
| | 391 | | } |
| | 392 | |
|
| | 393 | | private IQueryable<BaseItemEntity> ApplyQueryFilter(IQueryable<BaseItemEntity> dbQuery, JellyfinDbContext context, I |
| | 394 | | { |
| 10 | 395 | | dbQuery = TranslateQuery(dbQuery, context, filter); |
| 10 | 396 | | dbQuery = ApplyOrder(dbQuery, filter); |
| 10 | 397 | | dbQuery = ApplyGroupingFilter(dbQuery, filter); |
| 10 | 398 | | dbQuery = ApplyQueryPaging(dbQuery, filter); |
| 10 | 399 | | return dbQuery; |
| | 400 | | } |
| | 401 | |
|
| | 402 | | private IQueryable<BaseItemEntity> PrepareItemQuery(JellyfinDbContext context, InternalItemsQuery filter) |
| | 403 | | { |
| 461 | 404 | | IQueryable<BaseItemEntity> dbQuery = context.BaseItems.AsNoTracking().AsSplitQuery() |
| 461 | 405 | | .Include(e => e.TrailerTypes) |
| 461 | 406 | | .Include(e => e.Provider) |
| 461 | 407 | | .Include(e => e.LockedFields); |
| | 408 | |
|
| 461 | 409 | | if (filter.DtoOptions.EnableImages) |
| | 410 | | { |
| 461 | 411 | | dbQuery = dbQuery.Include(e => e.Images); |
| | 412 | | } |
| | 413 | |
|
| 461 | 414 | | return dbQuery; |
| | 415 | | } |
| | 416 | |
|
| | 417 | | /// <inheritdoc/> |
| | 418 | | public int GetCount(InternalItemsQuery filter) |
| | 419 | | { |
| 0 | 420 | | ArgumentNullException.ThrowIfNull(filter); |
| | 421 | | // Hack for right now since we currently don't support filtering out these duplicates within a query |
| 0 | 422 | | PrepareFilterQuery(filter); |
| | 423 | |
|
| 0 | 424 | | using var context = _dbProvider.CreateDbContext(); |
| 0 | 425 | | var dbQuery = TranslateQuery(context.BaseItems.AsNoTracking(), context, filter); |
| | 426 | |
|
| 0 | 427 | | return dbQuery.Count(); |
| 0 | 428 | | } |
| | 429 | |
|
| | 430 | | #pragma warning disable CA1307 // Specify StringComparison for clarity |
| | 431 | | /// <summary> |
| | 432 | | /// Gets the type. |
| | 433 | | /// </summary> |
| | 434 | | /// <param name="typeName">Name of the type.</param> |
| | 435 | | /// <returns>Type.</returns> |
| | 436 | | /// <exception cref="ArgumentNullException"><c>typeName</c> is null.</exception> |
| | 437 | | private static Type? GetType(string typeName) |
| | 438 | | { |
| 182 | 439 | | ArgumentException.ThrowIfNullOrEmpty(typeName); |
| | 440 | |
|
| | 441 | | // TODO: this isn't great. Refactor later to be both globally handled by a dedicated service not just an static |
| | 442 | | // currently this is done so that plugins may introduce their own type of baseitems as we dont know when we are |
| 182 | 443 | | return _typeMap.GetOrAdd(typeName, k => AppDomain.CurrentDomain.GetAssemblies() |
| 182 | 444 | | .Select(a => a.GetType(k)) |
| 182 | 445 | | .FirstOrDefault(t => t is not null)); |
| | 446 | | } |
| | 447 | |
|
| | 448 | | /// <inheritdoc /> |
| | 449 | | public void SaveImages(BaseItemDto item) |
| | 450 | | { |
| 0 | 451 | | ArgumentNullException.ThrowIfNull(item); |
| | 452 | |
|
| 0 | 453 | | var images = item.ImageInfos.Select(e => Map(item.Id, e)); |
| 0 | 454 | | using var context = _dbProvider.CreateDbContext(); |
| 0 | 455 | | using var transaction = context.Database.BeginTransaction(); |
| 0 | 456 | | context.BaseItemImageInfos.Where(e => e.ItemId == item.Id).ExecuteDelete(); |
| 0 | 457 | | context.BaseItemImageInfos.AddRange(images); |
| 0 | 458 | | context.SaveChanges(); |
| 0 | 459 | | transaction.Commit(); |
| 0 | 460 | | } |
| | 461 | |
|
| | 462 | | /// <inheritdoc /> |
| | 463 | | public void SaveItems(IReadOnlyList<BaseItemDto> items, CancellationToken cancellationToken) |
| | 464 | | { |
| 81 | 465 | | UpdateOrInsertItems(items, cancellationToken); |
| 80 | 466 | | } |
| | 467 | |
|
| | 468 | | /// <inheritdoc cref="IItemRepository"/> |
| | 469 | | public void UpdateOrInsertItems(IReadOnlyList<BaseItemDto> items, CancellationToken cancellationToken) |
| | 470 | | { |
| 81 | 471 | | ArgumentNullException.ThrowIfNull(items); |
| 81 | 472 | | cancellationToken.ThrowIfCancellationRequested(); |
| | 473 | |
|
| 80 | 474 | | var tuples = new List<(BaseItemDto Item, List<Guid>? AncestorIds, BaseItemDto TopParent, IEnumerable<string> Use |
| 320 | 475 | | foreach (var item in items.GroupBy(e => e.Id).Select(e => e.Last())) |
| | 476 | | { |
| 80 | 477 | | var ancestorIds = item.SupportsAncestors ? |
| 80 | 478 | | item.GetAncestorIds().Distinct().ToList() : |
| 80 | 479 | | null; |
| | 480 | |
|
| 80 | 481 | | var topParent = item.GetTopParent(); |
| | 482 | |
|
| 80 | 483 | | var userdataKey = item.GetUserDataKeys(); |
| 80 | 484 | | var inheritedTags = item.GetInheritedTags(); |
| | 485 | |
|
| 80 | 486 | | tuples.Add((item, ancestorIds, topParent, userdataKey, inheritedTags)); |
| | 487 | | } |
| | 488 | |
|
| 80 | 489 | | var localItemValueCache = new Dictionary<(int MagicNumber, string Value), Guid>(); |
| | 490 | |
|
| 80 | 491 | | using var context = _dbProvider.CreateDbContext(); |
| 80 | 492 | | using var transaction = context.Database.BeginTransaction(); |
| 320 | 493 | | foreach (var item in tuples) |
| | 494 | | { |
| 80 | 495 | | var entity = Map(item.Item); |
| | 496 | | // TODO: refactor this "inconsistency" |
| 80 | 497 | | entity.TopParentId = item.TopParent?.Id; |
| | 498 | |
|
| 80 | 499 | | if (!context.BaseItems.Any(e => e.Id == entity.Id)) |
| | 500 | | { |
| 49 | 501 | | context.BaseItems.Add(entity); |
| | 502 | | } |
| | 503 | | else |
| | 504 | | { |
| 31 | 505 | | context.BaseItemProviders.Where(e => e.ItemId == entity.Id).ExecuteDelete(); |
| 31 | 506 | | context.BaseItems.Attach(entity).State = EntityState.Modified; |
| | 507 | | } |
| | 508 | |
|
| 80 | 509 | | context.AncestorIds.Where(e => e.ItemId == entity.Id).ExecuteDelete(); |
| 80 | 510 | | if (item.Item.SupportsAncestors && item.AncestorIds != null) |
| | 511 | | { |
| 172 | 512 | | foreach (var ancestorId in item.AncestorIds) |
| | 513 | | { |
| 6 | 514 | | if (!context.BaseItems.Any(f => f.Id == ancestorId)) |
| | 515 | | { |
| | 516 | | continue; |
| | 517 | | } |
| | 518 | |
|
| 6 | 519 | | context.AncestorIds.Add(new AncestorId() |
| 6 | 520 | | { |
| 6 | 521 | | ParentItemId = ancestorId, |
| 6 | 522 | | ItemId = entity.Id, |
| 6 | 523 | | Item = null!, |
| 6 | 524 | | ParentItem = null! |
| 6 | 525 | | }); |
| | 526 | | } |
| | 527 | | } |
| | 528 | |
|
| | 529 | | // Never save duplicate itemValues as they are now mapped anyway. |
| 80 | 530 | | var itemValuesToSave = GetItemValuesToSave(item.Item, item.InheritedTags).DistinctBy(e => (GetCleanValue(e.V |
| 80 | 531 | | context.ItemValuesMap.Where(e => e.ItemId == entity.Id).ExecuteDelete(); |
| 160 | 532 | | foreach (var itemValue in itemValuesToSave) |
| | 533 | | { |
| 0 | 534 | | if (!localItemValueCache.TryGetValue(itemValue, out var refValue)) |
| | 535 | | { |
| 0 | 536 | | refValue = context.ItemValues |
| 0 | 537 | | .Where(f => f.CleanValue == GetCleanValue(itemValue.Value) && (int)f.Type == itemValue.M |
| 0 | 538 | | .Select(e => e.ItemValueId) |
| 0 | 539 | | .FirstOrDefault(); |
| | 540 | | } |
| | 541 | |
|
| 0 | 542 | | if (refValue.IsEmpty()) |
| | 543 | | { |
| 0 | 544 | | context.ItemValues.Add(new ItemValue() |
| 0 | 545 | | { |
| 0 | 546 | | CleanValue = GetCleanValue(itemValue.Value), |
| 0 | 547 | | Type = (ItemValueType)itemValue.MagicNumber, |
| 0 | 548 | | ItemValueId = refValue = Guid.NewGuid(), |
| 0 | 549 | | Value = itemValue.Value |
| 0 | 550 | | }); |
| 0 | 551 | | localItemValueCache[itemValue] = refValue; |
| | 552 | | } |
| | 553 | |
|
| 0 | 554 | | context.ItemValuesMap.Add(new ItemValueMap() |
| 0 | 555 | | { |
| 0 | 556 | | Item = null!, |
| 0 | 557 | | ItemId = entity.Id, |
| 0 | 558 | | ItemValue = null!, |
| 0 | 559 | | ItemValueId = refValue |
| 0 | 560 | | }); |
| | 561 | | } |
| | 562 | | } |
| | 563 | |
|
| 80 | 564 | | context.SaveChanges(); |
| 80 | 565 | | transaction.Commit(); |
| 160 | 566 | | } |
| | 567 | |
|
| | 568 | | /// <inheritdoc /> |
| | 569 | | public BaseItemDto? RetrieveItem(Guid id) |
| | 570 | | { |
| 214 | 571 | | if (id.IsEmpty()) |
| | 572 | | { |
| 0 | 573 | | throw new ArgumentException("Guid can't be empty", nameof(id)); |
| | 574 | | } |
| | 575 | |
|
| 214 | 576 | | using var context = _dbProvider.CreateDbContext(); |
| 214 | 577 | | var item = PrepareItemQuery(context, new() |
| 214 | 578 | | { |
| 214 | 579 | | DtoOptions = new() |
| 214 | 580 | | { |
| 214 | 581 | | EnableImages = true |
| 214 | 582 | | } |
| 214 | 583 | | }).FirstOrDefault(e => e.Id == id); |
| 214 | 584 | | if (item is null) |
| | 585 | | { |
| 214 | 586 | | return null; |
| | 587 | | } |
| | 588 | |
|
| 0 | 589 | | return DeserialiseBaseItem(item); |
| 214 | 590 | | } |
| | 591 | |
|
| | 592 | | /// <summary> |
| | 593 | | /// Maps a Entity to the DTO. |
| | 594 | | /// </summary> |
| | 595 | | /// <param name="entity">The entity.</param> |
| | 596 | | /// <param name="dto">The dto base instance.</param> |
| | 597 | | /// <param name="appHost">The Application server Host.</param> |
| | 598 | | /// <returns>The dto to map.</returns> |
| | 599 | | public static BaseItemDto Map(BaseItemEntity entity, BaseItemDto dto, IServerApplicationHost? appHost) |
| | 600 | | { |
| 91 | 601 | | dto.Id = entity.Id; |
| 91 | 602 | | dto.ParentId = entity.ParentId.GetValueOrDefault(); |
| 91 | 603 | | dto.Path = appHost?.ExpandVirtualPath(entity.Path) ?? entity.Path; |
| 91 | 604 | | dto.EndDate = entity.EndDate; |
| 91 | 605 | | dto.CommunityRating = entity.CommunityRating; |
| 91 | 606 | | dto.CustomRating = entity.CustomRating; |
| 91 | 607 | | dto.IndexNumber = entity.IndexNumber; |
| 91 | 608 | | dto.IsLocked = entity.IsLocked; |
| 91 | 609 | | dto.Name = entity.Name; |
| 91 | 610 | | dto.OfficialRating = entity.OfficialRating; |
| 91 | 611 | | dto.Overview = entity.Overview; |
| 91 | 612 | | dto.ParentIndexNumber = entity.ParentIndexNumber; |
| 91 | 613 | | dto.PremiereDate = entity.PremiereDate; |
| 91 | 614 | | dto.ProductionYear = entity.ProductionYear; |
| 91 | 615 | | dto.SortName = entity.SortName; |
| 91 | 616 | | dto.ForcedSortName = entity.ForcedSortName; |
| 91 | 617 | | dto.RunTimeTicks = entity.RunTimeTicks; |
| 91 | 618 | | dto.PreferredMetadataLanguage = entity.PreferredMetadataLanguage; |
| 91 | 619 | | dto.PreferredMetadataCountryCode = entity.PreferredMetadataCountryCode; |
| 91 | 620 | | dto.IsInMixedFolder = entity.IsInMixedFolder; |
| 91 | 621 | | dto.InheritedParentalRatingValue = entity.InheritedParentalRatingValue; |
| 91 | 622 | | dto.CriticRating = entity.CriticRating; |
| 91 | 623 | | dto.PresentationUniqueKey = entity.PresentationUniqueKey; |
| 91 | 624 | | dto.OriginalTitle = entity.OriginalTitle; |
| 91 | 625 | | dto.Album = entity.Album; |
| 91 | 626 | | dto.LUFS = entity.LUFS; |
| 91 | 627 | | dto.NormalizationGain = entity.NormalizationGain; |
| 91 | 628 | | dto.IsVirtualItem = entity.IsVirtualItem; |
| 91 | 629 | | dto.ExternalSeriesId = entity.ExternalSeriesId; |
| 91 | 630 | | dto.Tagline = entity.Tagline; |
| 91 | 631 | | dto.TotalBitrate = entity.TotalBitrate; |
| 91 | 632 | | dto.ExternalId = entity.ExternalId; |
| 91 | 633 | | dto.Size = entity.Size; |
| 91 | 634 | | dto.Genres = entity.Genres?.Split('|') ?? []; |
| 91 | 635 | | dto.DateCreated = entity.DateCreated.GetValueOrDefault(); |
| 91 | 636 | | dto.DateModified = entity.DateModified.GetValueOrDefault(); |
| 91 | 637 | | dto.ChannelId = entity.ChannelId ?? Guid.Empty; |
| 91 | 638 | | dto.DateLastRefreshed = entity.DateLastRefreshed.GetValueOrDefault(); |
| 91 | 639 | | dto.DateLastSaved = entity.DateLastSaved.GetValueOrDefault(); |
| 91 | 640 | | dto.OwnerId = string.IsNullOrWhiteSpace(entity.OwnerId) ? Guid.Empty : (Guid.TryParse(entity.OwnerId, out var ow |
| 91 | 641 | | dto.Width = entity.Width.GetValueOrDefault(); |
| 91 | 642 | | dto.Height = entity.Height.GetValueOrDefault(); |
| 91 | 643 | | if (entity.Provider is not null) |
| | 644 | | { |
| 91 | 645 | | dto.ProviderIds = entity.Provider.ToDictionary(e => e.ProviderId, e => e.ProviderValue); |
| | 646 | | } |
| | 647 | |
|
| 91 | 648 | | if (entity.ExtraType is not null) |
| | 649 | | { |
| 0 | 650 | | dto.ExtraType = (ExtraType)entity.ExtraType; |
| | 651 | | } |
| | 652 | |
|
| 91 | 653 | | if (entity.LockedFields is not null) |
| | 654 | | { |
| 91 | 655 | | dto.LockedFields = entity.LockedFields?.Select(e => (MetadataField)e.Id).ToArray() ?? []; |
| | 656 | | } |
| | 657 | |
|
| 91 | 658 | | if (entity.Audio is not null) |
| | 659 | | { |
| 0 | 660 | | dto.Audio = (ProgramAudio)entity.Audio; |
| | 661 | | } |
| | 662 | |
|
| 91 | 663 | | dto.ExtraIds = string.IsNullOrWhiteSpace(entity.ExtraIds) ? [] : entity.ExtraIds.Split('|').Select(e => Guid.Par |
| 91 | 664 | | dto.ProductionLocations = entity.ProductionLocations?.Split('|') ?? []; |
| 91 | 665 | | dto.Studios = entity.Studios?.Split('|') ?? []; |
| 91 | 666 | | dto.Tags = entity.Tags?.Split('|') ?? []; |
| | 667 | |
|
| 91 | 668 | | if (dto is IHasProgramAttributes hasProgramAttributes) |
| | 669 | | { |
| 0 | 670 | | hasProgramAttributes.IsMovie = entity.IsMovie; |
| 0 | 671 | | hasProgramAttributes.IsSeries = entity.IsSeries; |
| 0 | 672 | | hasProgramAttributes.EpisodeTitle = entity.EpisodeTitle; |
| 0 | 673 | | hasProgramAttributes.IsRepeat = entity.IsRepeat; |
| | 674 | | } |
| | 675 | |
|
| 91 | 676 | | if (dto is LiveTvChannel liveTvChannel) |
| | 677 | | { |
| 0 | 678 | | liveTvChannel.ServiceName = entity.ExternalServiceId; |
| | 679 | | } |
| | 680 | |
|
| 91 | 681 | | if (dto is Trailer trailer) |
| | 682 | | { |
| 0 | 683 | | trailer.TrailerTypes = entity.TrailerTypes?.Select(e => (TrailerType)e.Id).ToArray() ?? []; |
| | 684 | | } |
| | 685 | |
|
| 91 | 686 | | if (dto is Video video) |
| | 687 | | { |
| 0 | 688 | | video.PrimaryVersionId = entity.PrimaryVersionId; |
| | 689 | | } |
| | 690 | |
|
| 91 | 691 | | if (dto is IHasSeries hasSeriesName) |
| | 692 | | { |
| 0 | 693 | | hasSeriesName.SeriesName = entity.SeriesName; |
| 0 | 694 | | hasSeriesName.SeriesId = entity.SeriesId.GetValueOrDefault(); |
| 0 | 695 | | hasSeriesName.SeriesPresentationUniqueKey = entity.SeriesPresentationUniqueKey; |
| | 696 | | } |
| | 697 | |
|
| 91 | 698 | | if (dto is Episode episode) |
| | 699 | | { |
| 0 | 700 | | episode.SeasonName = entity.SeasonName; |
| 0 | 701 | | episode.SeasonId = entity.SeasonId.GetValueOrDefault(); |
| | 702 | | } |
| | 703 | |
|
| 91 | 704 | | if (dto is IHasArtist hasArtists) |
| | 705 | | { |
| 0 | 706 | | hasArtists.Artists = entity.Artists?.Split('|', StringSplitOptions.RemoveEmptyEntries) ?? []; |
| | 707 | | } |
| | 708 | |
|
| 91 | 709 | | if (dto is IHasAlbumArtist hasAlbumArtists) |
| | 710 | | { |
| 0 | 711 | | hasAlbumArtists.AlbumArtists = entity.AlbumArtists?.Split('|', StringSplitOptions.RemoveEmptyEntries) ?? []; |
| | 712 | | } |
| | 713 | |
|
| 91 | 714 | | if (dto is LiveTvProgram program) |
| | 715 | | { |
| 0 | 716 | | program.ShowId = entity.ShowId; |
| | 717 | | } |
| | 718 | |
|
| 91 | 719 | | if (entity.Images is not null) |
| | 720 | | { |
| 91 | 721 | | dto.ImageInfos = entity.Images.Select(e => Map(e, appHost)).ToArray(); |
| | 722 | | } |
| | 723 | |
|
| | 724 | | // dto.Type = entity.Type; |
| | 725 | | // dto.Data = entity.Data; |
| | 726 | | // dto.MediaType = Enum.TryParse<MediaType>(entity.MediaType); |
| 91 | 727 | | if (dto is IHasStartDate hasStartDate) |
| | 728 | | { |
| 0 | 729 | | hasStartDate.StartDate = entity.StartDate.GetValueOrDefault(); |
| | 730 | | } |
| | 731 | |
|
| | 732 | | // Fields that are present in the DB but are never actually used |
| | 733 | | // dto.UnratedType = entity.UnratedType; |
| | 734 | | // dto.TopParentId = entity.TopParentId; |
| | 735 | | // dto.CleanName = entity.CleanName; |
| | 736 | | // dto.UserDataKey = entity.UserDataKey; |
| | 737 | |
|
| 91 | 738 | | if (dto is Folder folder) |
| | 739 | | { |
| 91 | 740 | | folder.DateLastMediaAdded = entity.DateLastMediaAdded; |
| | 741 | | } |
| | 742 | |
|
| 91 | 743 | | return dto; |
| | 744 | | } |
| | 745 | |
|
| | 746 | | /// <summary> |
| | 747 | | /// Maps a Entity to the DTO. |
| | 748 | | /// </summary> |
| | 749 | | /// <param name="dto">The entity.</param> |
| | 750 | | /// <returns>The dto to map.</returns> |
| | 751 | | public BaseItemEntity Map(BaseItemDto dto) |
| | 752 | | { |
| 80 | 753 | | var dtoType = dto.GetType(); |
| 80 | 754 | | var entity = new BaseItemEntity() |
| 80 | 755 | | { |
| 80 | 756 | | Type = dtoType.ToString(), |
| 80 | 757 | | Id = dto.Id |
| 80 | 758 | | }; |
| | 759 | |
|
| 80 | 760 | | if (TypeRequiresDeserialization(dtoType)) |
| | 761 | | { |
| 59 | 762 | | entity.Data = JsonSerializer.Serialize(dto, dtoType, JsonDefaults.Options); |
| | 763 | | } |
| | 764 | |
|
| 80 | 765 | | entity.ParentId = !dto.ParentId.IsEmpty() ? dto.ParentId : null; |
| 80 | 766 | | entity.Path = GetPathToSave(dto.Path); |
| 80 | 767 | | entity.EndDate = dto.EndDate; |
| 80 | 768 | | entity.CommunityRating = dto.CommunityRating; |
| 80 | 769 | | entity.CustomRating = dto.CustomRating; |
| 80 | 770 | | entity.IndexNumber = dto.IndexNumber; |
| 80 | 771 | | entity.IsLocked = dto.IsLocked; |
| 80 | 772 | | entity.Name = dto.Name; |
| 80 | 773 | | entity.CleanName = GetCleanValue(dto.Name); |
| 80 | 774 | | entity.OfficialRating = dto.OfficialRating; |
| 80 | 775 | | entity.Overview = dto.Overview; |
| 80 | 776 | | entity.ParentIndexNumber = dto.ParentIndexNumber; |
| 80 | 777 | | entity.PremiereDate = dto.PremiereDate; |
| 80 | 778 | | entity.ProductionYear = dto.ProductionYear; |
| 80 | 779 | | entity.SortName = dto.SortName; |
| 80 | 780 | | entity.ForcedSortName = dto.ForcedSortName; |
| 80 | 781 | | entity.RunTimeTicks = dto.RunTimeTicks; |
| 80 | 782 | | entity.PreferredMetadataLanguage = dto.PreferredMetadataLanguage; |
| 80 | 783 | | entity.PreferredMetadataCountryCode = dto.PreferredMetadataCountryCode; |
| 80 | 784 | | entity.IsInMixedFolder = dto.IsInMixedFolder; |
| 80 | 785 | | entity.InheritedParentalRatingValue = dto.InheritedParentalRatingValue; |
| 80 | 786 | | entity.InheritedParentalRatingSubValue = dto.InheritedParentalRatingSubValue; |
| 80 | 787 | | entity.CriticRating = dto.CriticRating; |
| 80 | 788 | | entity.PresentationUniqueKey = dto.PresentationUniqueKey; |
| 80 | 789 | | entity.OriginalTitle = dto.OriginalTitle; |
| 80 | 790 | | entity.Album = dto.Album; |
| 80 | 791 | | entity.LUFS = dto.LUFS; |
| 80 | 792 | | entity.NormalizationGain = dto.NormalizationGain; |
| 80 | 793 | | entity.IsVirtualItem = dto.IsVirtualItem; |
| 80 | 794 | | entity.ExternalSeriesId = dto.ExternalSeriesId; |
| 80 | 795 | | entity.Tagline = dto.Tagline; |
| 80 | 796 | | entity.TotalBitrate = dto.TotalBitrate; |
| 80 | 797 | | entity.ExternalId = dto.ExternalId; |
| 80 | 798 | | entity.Size = dto.Size; |
| 80 | 799 | | entity.Genres = string.Join('|', dto.Genres); |
| 80 | 800 | | entity.DateCreated = dto.DateCreated; |
| 80 | 801 | | entity.DateModified = dto.DateModified; |
| 80 | 802 | | entity.ChannelId = dto.ChannelId; |
| 80 | 803 | | entity.DateLastRefreshed = dto.DateLastRefreshed; |
| 80 | 804 | | entity.DateLastSaved = dto.DateLastSaved; |
| 80 | 805 | | entity.OwnerId = dto.OwnerId.ToString(); |
| 80 | 806 | | entity.Width = dto.Width; |
| 80 | 807 | | entity.Height = dto.Height; |
| 80 | 808 | | entity.Provider = dto.ProviderIds.Select(e => new BaseItemProvider() |
| 80 | 809 | | { |
| 80 | 810 | | Item = entity, |
| 80 | 811 | | ProviderId = e.Key, |
| 80 | 812 | | ProviderValue = e.Value |
| 80 | 813 | | }).ToList(); |
| | 814 | |
|
| 80 | 815 | | if (dto.Audio.HasValue) |
| | 816 | | { |
| 0 | 817 | | entity.Audio = (ProgramAudioEntity)dto.Audio; |
| | 818 | | } |
| | 819 | |
|
| 80 | 820 | | if (dto.ExtraType.HasValue) |
| | 821 | | { |
| 0 | 822 | | entity.ExtraType = (BaseItemExtraType)dto.ExtraType; |
| | 823 | | } |
| | 824 | |
|
| 80 | 825 | | entity.ExtraIds = dto.ExtraIds is not null ? string.Join('|', dto.ExtraIds) : null; |
| 80 | 826 | | entity.ProductionLocations = dto.ProductionLocations is not null ? string.Join('|', dto.ProductionLocations) : n |
| 80 | 827 | | entity.Studios = dto.Studios is not null ? string.Join('|', dto.Studios) : null; |
| 80 | 828 | | entity.Tags = dto.Tags is not null ? string.Join('|', dto.Tags) : null; |
| 80 | 829 | | entity.LockedFields = dto.LockedFields is not null ? dto.LockedFields |
| 80 | 830 | | .Select(e => new BaseItemMetadataField() |
| 80 | 831 | | { |
| 80 | 832 | | Id = (int)e, |
| 80 | 833 | | Item = entity, |
| 80 | 834 | | ItemId = entity.Id |
| 80 | 835 | | }) |
| 80 | 836 | | .ToArray() : null; |
| | 837 | |
|
| 80 | 838 | | if (dto is IHasProgramAttributes hasProgramAttributes) |
| | 839 | | { |
| 0 | 840 | | entity.IsMovie = hasProgramAttributes.IsMovie; |
| 0 | 841 | | entity.IsSeries = hasProgramAttributes.IsSeries; |
| 0 | 842 | | entity.EpisodeTitle = hasProgramAttributes.EpisodeTitle; |
| 0 | 843 | | entity.IsRepeat = hasProgramAttributes.IsRepeat; |
| | 844 | | } |
| | 845 | |
|
| 80 | 846 | | if (dto is LiveTvChannel liveTvChannel) |
| | 847 | | { |
| 0 | 848 | | entity.ExternalServiceId = liveTvChannel.ServiceName; |
| | 849 | | } |
| | 850 | |
|
| 80 | 851 | | if (dto is Video video) |
| | 852 | | { |
| 0 | 853 | | entity.PrimaryVersionId = video.PrimaryVersionId; |
| | 854 | | } |
| | 855 | |
|
| 80 | 856 | | if (dto is IHasSeries hasSeriesName) |
| | 857 | | { |
| 0 | 858 | | entity.SeriesName = hasSeriesName.SeriesName; |
| 0 | 859 | | entity.SeriesId = hasSeriesName.SeriesId; |
| 0 | 860 | | entity.SeriesPresentationUniqueKey = hasSeriesName.SeriesPresentationUniqueKey; |
| | 861 | | } |
| | 862 | |
|
| 80 | 863 | | if (dto is Episode episode) |
| | 864 | | { |
| 0 | 865 | | entity.SeasonName = episode.SeasonName; |
| 0 | 866 | | entity.SeasonId = episode.SeasonId; |
| | 867 | | } |
| | 868 | |
|
| 80 | 869 | | if (dto is IHasArtist hasArtists) |
| | 870 | | { |
| 0 | 871 | | entity.Artists = hasArtists.Artists is not null ? string.Join('|', hasArtists.Artists) : null; |
| | 872 | | } |
| | 873 | |
|
| 80 | 874 | | if (dto is IHasAlbumArtist hasAlbumArtists) |
| | 875 | | { |
| 0 | 876 | | entity.AlbumArtists = hasAlbumArtists.AlbumArtists is not null ? string.Join('|', hasAlbumArtists.AlbumArtis |
| | 877 | | } |
| | 878 | |
|
| 80 | 879 | | if (dto is LiveTvProgram program) |
| | 880 | | { |
| 0 | 881 | | entity.ShowId = program.ShowId; |
| | 882 | | } |
| | 883 | |
|
| 80 | 884 | | if (dto.ImageInfos is not null) |
| | 885 | | { |
| 80 | 886 | | entity.Images = dto.ImageInfos.Select(f => Map(dto.Id, f)).ToArray(); |
| | 887 | | } |
| | 888 | |
|
| 80 | 889 | | if (dto is Trailer trailer) |
| | 890 | | { |
| 0 | 891 | | entity.TrailerTypes = trailer.TrailerTypes?.Select(e => new BaseItemTrailerType() |
| 0 | 892 | | { |
| 0 | 893 | | Id = (int)e, |
| 0 | 894 | | Item = entity, |
| 0 | 895 | | ItemId = entity.Id |
| 0 | 896 | | }).ToArray() ?? []; |
| | 897 | | } |
| | 898 | |
|
| | 899 | | // dto.Type = entity.Type; |
| | 900 | | // dto.Data = entity.Data; |
| 80 | 901 | | entity.MediaType = dto.MediaType.ToString(); |
| 80 | 902 | | if (dto is IHasStartDate hasStartDate) |
| | 903 | | { |
| 0 | 904 | | entity.StartDate = hasStartDate.StartDate; |
| | 905 | | } |
| | 906 | |
|
| 80 | 907 | | entity.UnratedType = dto.GetBlockUnratedType().ToString(); |
| | 908 | |
|
| | 909 | | // Fields that are present in the DB but are never actually used |
| | 910 | | // dto.UserDataKey = entity.UserDataKey; |
| | 911 | |
|
| 80 | 912 | | if (dto is Folder folder) |
| | 913 | | { |
| 80 | 914 | | entity.DateLastMediaAdded = folder.DateLastMediaAdded; |
| 80 | 915 | | entity.IsFolder = folder.IsFolder; |
| | 916 | | } |
| | 917 | |
|
| 80 | 918 | | return entity; |
| | 919 | | } |
| | 920 | |
|
| | 921 | | private string[] GetItemValueNames(IReadOnlyList<ItemValueType> itemValueTypes, IReadOnlyList<string> withItemTypes, |
| | 922 | | { |
| 40 | 923 | | using var context = _dbProvider.CreateDbContext(); |
| | 924 | |
|
| 40 | 925 | | var query = context.ItemValuesMap |
| 40 | 926 | | .AsNoTracking() |
| 40 | 927 | | .Where(e => itemValueTypes.Any(w => (ItemValueType)w == e.ItemValue.Type)); |
| 40 | 928 | | if (withItemTypes.Count > 0) |
| | 929 | | { |
| 10 | 930 | | query = query.Where(e => withItemTypes.Contains(e.Item.Type)); |
| | 931 | | } |
| | 932 | |
|
| 40 | 933 | | if (excludeItemTypes.Count > 0) |
| | 934 | | { |
| 10 | 935 | | query = query.Where(e => !excludeItemTypes.Contains(e.Item.Type)); |
| | 936 | | } |
| | 937 | |
|
| | 938 | | // query = query.DistinctBy(e => e.CleanValue); |
| 40 | 939 | | return query.Select(e => e.ItemValue) |
| 40 | 940 | | .GroupBy(e => e.CleanValue) |
| 40 | 941 | | .Select(e => e.First().Value) |
| 40 | 942 | | .ToArray(); |
| 40 | 943 | | } |
| | 944 | |
|
| | 945 | | private static bool TypeRequiresDeserialization(Type type) |
| | 946 | | { |
| 171 | 947 | | return type.GetCustomAttribute<RequiresSourceSerialisationAttribute>() == null; |
| | 948 | | } |
| | 949 | |
|
| | 950 | | private BaseItemDto DeserialiseBaseItem(BaseItemEntity baseItemEntity, bool skipDeserialization = false) |
| | 951 | | { |
| 91 | 952 | | ArgumentNullException.ThrowIfNull(baseItemEntity, nameof(baseItemEntity)); |
| 91 | 953 | | if (_serverConfigurationManager?.Configuration is null) |
| | 954 | | { |
| 0 | 955 | | throw new InvalidOperationException("Server Configuration manager or configuration is null"); |
| | 956 | | } |
| | 957 | |
|
| 91 | 958 | | var typeToSerialise = GetType(baseItemEntity.Type); |
| 91 | 959 | | return BaseItemRepository.DeserialiseBaseItem( |
| 91 | 960 | | baseItemEntity, |
| 91 | 961 | | _logger, |
| 91 | 962 | | _appHost, |
| 91 | 963 | | skipDeserialization || (_serverConfigurationManager.Configuration.SkipDeserializationForBasicTypes && (typeT |
| | 964 | | } |
| | 965 | |
|
| | 966 | | /// <summary> |
| | 967 | | /// Deserialises a BaseItemEntity and sets all properties. |
| | 968 | | /// </summary> |
| | 969 | | /// <param name="baseItemEntity">The DB entity.</param> |
| | 970 | | /// <param name="logger">Logger.</param> |
| | 971 | | /// <param name="appHost">The application server Host.</param> |
| | 972 | | /// <param name="skipDeserialization">If only mapping should be processed.</param> |
| | 973 | | /// <returns>A mapped BaseItem.</returns> |
| | 974 | | /// <exception cref="InvalidOperationException">Will be thrown if an invalid serialisation is requested.</exception> |
| | 975 | | public static BaseItemDto DeserialiseBaseItem(BaseItemEntity baseItemEntity, ILogger logger, IServerApplicationHost? |
| | 976 | | { |
| 91 | 977 | | var type = GetType(baseItemEntity.Type) ?? throw new InvalidOperationException("Cannot deserialise unknown type. |
| 91 | 978 | | BaseItemDto? dto = null; |
| 91 | 979 | | if (TypeRequiresDeserialization(type) && baseItemEntity.Data is not null && !skipDeserialization) |
| | 980 | | { |
| | 981 | | try |
| | 982 | | { |
| 22 | 983 | | dto = JsonSerializer.Deserialize(baseItemEntity.Data, type, JsonDefaults.Options) as BaseItemDto; |
| 22 | 984 | | } |
| 0 | 985 | | catch (JsonException ex) |
| | 986 | | { |
| 0 | 987 | | logger.LogError(ex, "Error deserializing item with JSON: {Data}", baseItemEntity.Data); |
| 0 | 988 | | } |
| | 989 | | } |
| | 990 | |
|
| 91 | 991 | | if (dto is null) |
| | 992 | | { |
| 69 | 993 | | dto = Activator.CreateInstance(type) as BaseItemDto ?? throw new InvalidOperationException("Cannot deseriali |
| | 994 | | } |
| | 995 | |
|
| 91 | 996 | | return Map(baseItemEntity, dto, appHost); |
| | 997 | | } |
| | 998 | |
|
| | 999 | | private QueryResult<(BaseItemDto Item, ItemCounts ItemCounts)> GetItemValues(InternalItemsQuery filter, IReadOnlyLis |
| | 1000 | | { |
| 0 | 1001 | | ArgumentNullException.ThrowIfNull(filter); |
| | 1002 | |
|
| 0 | 1003 | | if (!filter.Limit.HasValue) |
| | 1004 | | { |
| 0 | 1005 | | filter.EnableTotalRecordCount = false; |
| | 1006 | | } |
| | 1007 | |
|
| 0 | 1008 | | using var context = _dbProvider.CreateDbContext(); |
| | 1009 | |
|
| 0 | 1010 | | var query = TranslateQuery(context.BaseItems.AsNoTracking(), context, filter); |
| | 1011 | |
|
| 0 | 1012 | | query = query.Where(e => e.Type == returnType); |
| | 1013 | | // this does not seem to be nesseary but it does not make any sense why this isn't working. |
| | 1014 | | // && e.ItemValues!.Any(f => e.CleanName == f.ItemValue.CleanValue && itemValueTypes.Any(w => (ItemValueType)w = |
| | 1015 | |
|
| 0 | 1016 | | if (filter.OrderBy.Count != 0 |
| 0 | 1017 | | || !string.IsNullOrEmpty(filter.SearchTerm)) |
| | 1018 | | { |
| 0 | 1019 | | query = ApplyOrder(query, filter); |
| | 1020 | | } |
| | 1021 | | else |
| | 1022 | | { |
| 0 | 1023 | | query = query.OrderBy(e => e.SortName); |
| | 1024 | | } |
| | 1025 | |
|
| 0 | 1026 | | if (filter.Limit.HasValue || filter.StartIndex.HasValue) |
| | 1027 | | { |
| 0 | 1028 | | var offset = filter.StartIndex ?? 0; |
| | 1029 | |
|
| 0 | 1030 | | if (offset > 0) |
| | 1031 | | { |
| 0 | 1032 | | query = query.Skip(offset); |
| | 1033 | | } |
| | 1034 | |
|
| 0 | 1035 | | if (filter.Limit.HasValue) |
| | 1036 | | { |
| 0 | 1037 | | query = query.Take(filter.Limit.Value); |
| | 1038 | | } |
| | 1039 | | } |
| | 1040 | |
|
| 0 | 1041 | | var result = new QueryResult<(BaseItemDto, ItemCounts)>(); |
| 0 | 1042 | | if (filter.EnableTotalRecordCount) |
| | 1043 | | { |
| 0 | 1044 | | result.TotalRecordCount = query.GroupBy(e => e.PresentationUniqueKey).Select(e => e.First()).Count(); |
| | 1045 | | } |
| | 1046 | |
|
| 0 | 1047 | | var seriesTypeName = _itemTypeLookup.BaseItemKindNames[BaseItemKind.Series]; |
| 0 | 1048 | | var movieTypeName = _itemTypeLookup.BaseItemKindNames[BaseItemKind.Movie]; |
| 0 | 1049 | | var episodeTypeName = _itemTypeLookup.BaseItemKindNames[BaseItemKind.Episode]; |
| 0 | 1050 | | var musicAlbumTypeName = _itemTypeLookup.BaseItemKindNames[BaseItemKind.MusicAlbum]; |
| 0 | 1051 | | var musicArtistTypeName = _itemTypeLookup.BaseItemKindNames[BaseItemKind.MusicArtist]; |
| 0 | 1052 | | var audioTypeName = _itemTypeLookup.BaseItemKindNames[BaseItemKind.Audio]; |
| 0 | 1053 | | var trailerTypeName = _itemTypeLookup.BaseItemKindNames[BaseItemKind.Trailer]; |
| | 1054 | |
|
| 0 | 1055 | | var resultQuery = query.Select(e => new |
| 0 | 1056 | | { |
| 0 | 1057 | | item = e, |
| 0 | 1058 | | // TODO: This is bad refactor! |
| 0 | 1059 | | itemCount = new ItemCounts() |
| 0 | 1060 | | { |
| 0 | 1061 | | SeriesCount = e.ItemValues!.Count(f => f.Item.Type == seriesTypeName), |
| 0 | 1062 | | EpisodeCount = e.ItemValues!.Count(f => f.Item.Type == episodeTypeName), |
| 0 | 1063 | | MovieCount = e.ItemValues!.Count(f => f.Item.Type == movieTypeName), |
| 0 | 1064 | | AlbumCount = e.ItemValues!.Count(f => f.Item.Type == musicAlbumTypeName), |
| 0 | 1065 | | ArtistCount = e.ItemValues!.Count(f => f.Item.Type == musicArtistTypeName), |
| 0 | 1066 | | SongCount = e.ItemValues!.Count(f => f.Item.Type == audioTypeName), |
| 0 | 1067 | | TrailerCount = e.ItemValues!.Count(f => f.Item.Type == trailerTypeName), |
| 0 | 1068 | | } |
| 0 | 1069 | | }); |
| | 1070 | |
|
| 0 | 1071 | | result.StartIndex = filter.StartIndex ?? 0; |
| 0 | 1072 | | result.Items = resultQuery.ToArray().Where(e => e is not null).Select(e => |
| 0 | 1073 | | { |
| 0 | 1074 | | return (DeserialiseBaseItem(e.item, filter.SkipDeserialization), e.itemCount); |
| 0 | 1075 | | }).ToArray(); |
| | 1076 | |
|
| 0 | 1077 | | return result; |
| 0 | 1078 | | } |
| | 1079 | |
|
| | 1080 | | private static void PrepareFilterQuery(InternalItemsQuery query) |
| | 1081 | | { |
| 260 | 1082 | | if (query.Limit.HasValue && query.EnableGroupByMetadataKey) |
| | 1083 | | { |
| 0 | 1084 | | query.Limit = query.Limit.Value + 4; |
| | 1085 | | } |
| | 1086 | |
|
| 260 | 1087 | | if (query.IsResumable ?? false) |
| | 1088 | | { |
| 1 | 1089 | | query.IsVirtualItem = false; |
| | 1090 | | } |
| 260 | 1091 | | } |
| | 1092 | |
|
| | 1093 | | private string GetCleanValue(string value) |
| | 1094 | | { |
| 83 | 1095 | | if (string.IsNullOrWhiteSpace(value)) |
| | 1096 | | { |
| 0 | 1097 | | return value; |
| | 1098 | | } |
| | 1099 | |
|
| 83 | 1100 | | return value.RemoveDiacritics().ToLowerInvariant(); |
| | 1101 | | } |
| | 1102 | |
|
| | 1103 | | private List<(int MagicNumber, string Value)> GetItemValuesToSave(BaseItemDto item, List<string> inheritedTags) |
| | 1104 | | { |
| 80 | 1105 | | var list = new List<(int, string)>(); |
| | 1106 | |
|
| 80 | 1107 | | if (item is IHasArtist hasArtist) |
| | 1108 | | { |
| 0 | 1109 | | list.AddRange(hasArtist.Artists.Select(i => (0, i))); |
| | 1110 | | } |
| | 1111 | |
|
| 80 | 1112 | | if (item is IHasAlbumArtist hasAlbumArtist) |
| | 1113 | | { |
| 0 | 1114 | | list.AddRange(hasAlbumArtist.AlbumArtists.Select(i => (1, i))); |
| | 1115 | | } |
| | 1116 | |
|
| 80 | 1117 | | list.AddRange(item.Genres.Select(i => (2, i))); |
| 80 | 1118 | | list.AddRange(item.Studios.Select(i => (3, i))); |
| 80 | 1119 | | list.AddRange(item.Tags.Select(i => (4, i))); |
| | 1120 | |
|
| | 1121 | | // keywords was 5 |
| | 1122 | |
|
| 80 | 1123 | | list.AddRange(inheritedTags.Select(i => (6, i))); |
| | 1124 | |
|
| | 1125 | | // Remove all invalid values. |
| 80 | 1126 | | list.RemoveAll(i => string.IsNullOrWhiteSpace(i.Item2)); |
| | 1127 | |
|
| 80 | 1128 | | return list; |
| | 1129 | | } |
| | 1130 | |
|
| | 1131 | | private static BaseItemImageInfo Map(Guid baseItemId, ItemImageInfo e) |
| | 1132 | | { |
| 0 | 1133 | | return new BaseItemImageInfo() |
| 0 | 1134 | | { |
| 0 | 1135 | | ItemId = baseItemId, |
| 0 | 1136 | | Id = Guid.NewGuid(), |
| 0 | 1137 | | Path = e.Path, |
| 0 | 1138 | | Blurhash = e.BlurHash is null ? null : Encoding.UTF8.GetBytes(e.BlurHash), |
| 0 | 1139 | | DateModified = e.DateModified, |
| 0 | 1140 | | Height = e.Height, |
| 0 | 1141 | | Width = e.Width, |
| 0 | 1142 | | ImageType = (ImageInfoImageType)e.Type, |
| 0 | 1143 | | Item = null! |
| 0 | 1144 | | }; |
| | 1145 | | } |
| | 1146 | |
|
| | 1147 | | private static ItemImageInfo Map(BaseItemImageInfo e, IServerApplicationHost? appHost) |
| | 1148 | | { |
| 0 | 1149 | | return new ItemImageInfo() |
| 0 | 1150 | | { |
| 0 | 1151 | | Path = appHost?.ExpandVirtualPath(e.Path) ?? e.Path, |
| 0 | 1152 | | BlurHash = e.Blurhash is null ? null : Encoding.UTF8.GetString(e.Blurhash), |
| 0 | 1153 | | DateModified = e.DateModified, |
| 0 | 1154 | | Height = e.Height, |
| 0 | 1155 | | Width = e.Width, |
| 0 | 1156 | | Type = (ImageType)e.ImageType |
| 0 | 1157 | | }; |
| | 1158 | | } |
| | 1159 | |
|
| | 1160 | | private string? GetPathToSave(string path) |
| | 1161 | | { |
| 80 | 1162 | | if (path is null) |
| | 1163 | | { |
| 0 | 1164 | | return null; |
| | 1165 | | } |
| | 1166 | |
|
| 80 | 1167 | | return _appHost.ReverseVirtualPath(path); |
| | 1168 | | } |
| | 1169 | |
|
| | 1170 | | private List<string> GetItemByNameTypesInQuery(InternalItemsQuery query) |
| | 1171 | | { |
| 17 | 1172 | | var list = new List<string>(); |
| | 1173 | |
|
| 17 | 1174 | | if (IsTypeInQuery(BaseItemKind.Person, query)) |
| | 1175 | | { |
| 1 | 1176 | | list.Add(_itemTypeLookup.BaseItemKindNames[BaseItemKind.Person]!); |
| | 1177 | | } |
| | 1178 | |
|
| 17 | 1179 | | if (IsTypeInQuery(BaseItemKind.Genre, query)) |
| | 1180 | | { |
| 1 | 1181 | | list.Add(_itemTypeLookup.BaseItemKindNames[BaseItemKind.Genre]!); |
| | 1182 | | } |
| | 1183 | |
|
| 17 | 1184 | | if (IsTypeInQuery(BaseItemKind.MusicGenre, query)) |
| | 1185 | | { |
| 1 | 1186 | | list.Add(_itemTypeLookup.BaseItemKindNames[BaseItemKind.MusicGenre]!); |
| | 1187 | | } |
| | 1188 | |
|
| 17 | 1189 | | if (IsTypeInQuery(BaseItemKind.MusicArtist, query)) |
| | 1190 | | { |
| 1 | 1191 | | list.Add(_itemTypeLookup.BaseItemKindNames[BaseItemKind.MusicArtist]!); |
| | 1192 | | } |
| | 1193 | |
|
| 17 | 1194 | | if (IsTypeInQuery(BaseItemKind.Studio, query)) |
| | 1195 | | { |
| 1 | 1196 | | list.Add(_itemTypeLookup.BaseItemKindNames[BaseItemKind.Studio]!); |
| | 1197 | | } |
| | 1198 | |
|
| 17 | 1199 | | return list; |
| | 1200 | | } |
| | 1201 | |
|
| | 1202 | | private bool IsTypeInQuery(BaseItemKind type, InternalItemsQuery query) |
| | 1203 | | { |
| 85 | 1204 | | if (query.ExcludeItemTypes.Contains(type)) |
| | 1205 | | { |
| 0 | 1206 | | return false; |
| | 1207 | | } |
| | 1208 | |
|
| 85 | 1209 | | return query.IncludeItemTypes.Length == 0 || query.IncludeItemTypes.Contains(type); |
| | 1210 | | } |
| | 1211 | |
|
| | 1212 | | private bool EnableGroupByPresentationUniqueKey(InternalItemsQuery query) |
| | 1213 | | { |
| 0 | 1214 | | if (!query.GroupByPresentationUniqueKey) |
| | 1215 | | { |
| 0 | 1216 | | return false; |
| | 1217 | | } |
| | 1218 | |
|
| 0 | 1219 | | if (query.GroupBySeriesPresentationUniqueKey) |
| | 1220 | | { |
| 0 | 1221 | | return false; |
| | 1222 | | } |
| | 1223 | |
|
| 0 | 1224 | | if (!string.IsNullOrWhiteSpace(query.PresentationUniqueKey)) |
| | 1225 | | { |
| 0 | 1226 | | return false; |
| | 1227 | | } |
| | 1228 | |
|
| 0 | 1229 | | if (query.User is null) |
| | 1230 | | { |
| 0 | 1231 | | return false; |
| | 1232 | | } |
| | 1233 | |
|
| 0 | 1234 | | if (query.IncludeItemTypes.Length == 0) |
| | 1235 | | { |
| 0 | 1236 | | return true; |
| | 1237 | | } |
| | 1238 | |
|
| 0 | 1239 | | return query.IncludeItemTypes.Contains(BaseItemKind.Episode) |
| 0 | 1240 | | || query.IncludeItemTypes.Contains(BaseItemKind.Video) |
| 0 | 1241 | | || query.IncludeItemTypes.Contains(BaseItemKind.Movie) |
| 0 | 1242 | | || query.IncludeItemTypes.Contains(BaseItemKind.MusicVideo) |
| 0 | 1243 | | || query.IncludeItemTypes.Contains(BaseItemKind.Series) |
| 0 | 1244 | | || query.IncludeItemTypes.Contains(BaseItemKind.Season); |
| | 1245 | | } |
| | 1246 | |
|
| | 1247 | | private IQueryable<BaseItemEntity> ApplyOrder(IQueryable<BaseItemEntity> query, InternalItemsQuery filter) |
| | 1248 | | { |
| 267 | 1249 | | var orderBy = filter.OrderBy; |
| 267 | 1250 | | var hasSearch = !string.IsNullOrEmpty(filter.SearchTerm); |
| | 1251 | |
|
| 267 | 1252 | | if (hasSearch) |
| | 1253 | | { |
| 0 | 1254 | | orderBy = filter.OrderBy = [(ItemSortBy.SortName, SortOrder.Ascending), .. orderBy]; |
| | 1255 | | } |
| 267 | 1256 | | else if (orderBy.Count == 0) |
| | 1257 | | { |
| 184 | 1258 | | return query; |
| | 1259 | | } |
| | 1260 | |
|
| 83 | 1261 | | IOrderedQueryable<BaseItemEntity>? orderedQuery = null; |
| | 1262 | |
|
| 83 | 1263 | | var firstOrdering = orderBy.FirstOrDefault(); |
| 83 | 1264 | | if (firstOrdering != default) |
| | 1265 | | { |
| 83 | 1266 | | var expression = OrderMapper.MapOrderByField(firstOrdering.OrderBy, filter); |
| 83 | 1267 | | if (firstOrdering.SortOrder == SortOrder.Ascending) |
| | 1268 | | { |
| 82 | 1269 | | orderedQuery = query.OrderBy(expression); |
| | 1270 | | } |
| | 1271 | | else |
| | 1272 | | { |
| 1 | 1273 | | orderedQuery = query.OrderByDescending(expression); |
| | 1274 | | } |
| | 1275 | |
|
| 83 | 1276 | | if (firstOrdering.OrderBy is ItemSortBy.Default or ItemSortBy.SortName) |
| | 1277 | | { |
| 0 | 1278 | | if (firstOrdering.SortOrder is SortOrder.Ascending) |
| | 1279 | | { |
| 0 | 1280 | | orderedQuery = orderedQuery.ThenBy(e => e.Name); |
| | 1281 | | } |
| | 1282 | | else |
| | 1283 | | { |
| 0 | 1284 | | orderedQuery = orderedQuery.ThenByDescending(e => e.Name); |
| | 1285 | | } |
| | 1286 | | } |
| | 1287 | | } |
| | 1288 | |
|
| 238 | 1289 | | foreach (var item in orderBy.Skip(1)) |
| | 1290 | | { |
| 36 | 1291 | | var expression = OrderMapper.MapOrderByField(item.OrderBy, filter); |
| 36 | 1292 | | if (item.SortOrder == SortOrder.Ascending) |
| | 1293 | | { |
| 36 | 1294 | | orderedQuery = orderedQuery!.ThenBy(expression); |
| | 1295 | | } |
| | 1296 | | else |
| | 1297 | | { |
| 0 | 1298 | | orderedQuery = orderedQuery!.ThenByDescending(expression); |
| | 1299 | | } |
| | 1300 | | } |
| | 1301 | |
|
| 83 | 1302 | | return orderedQuery ?? query; |
| | 1303 | | } |
| | 1304 | |
|
| | 1305 | | private IQueryable<BaseItemEntity> TranslateQuery( |
| | 1306 | | IQueryable<BaseItemEntity> baseQuery, |
| | 1307 | | JellyfinDbContext context, |
| | 1308 | | InternalItemsQuery filter) |
| | 1309 | | { |
| 257 | 1310 | | var minWidth = filter.MinWidth; |
| 257 | 1311 | | var maxWidth = filter.MaxWidth; |
| 257 | 1312 | | var now = DateTime.UtcNow; |
| | 1313 | |
|
| 257 | 1314 | | if (filter.IsHD.HasValue) |
| | 1315 | | { |
| | 1316 | | const int Threshold = 1200; |
| 0 | 1317 | | if (filter.IsHD.Value) |
| | 1318 | | { |
| 0 | 1319 | | minWidth = Threshold; |
| | 1320 | | } |
| | 1321 | | else |
| | 1322 | | { |
| 0 | 1323 | | maxWidth = Threshold - 1; |
| | 1324 | | } |
| | 1325 | | } |
| | 1326 | |
|
| 257 | 1327 | | if (filter.Is4K.HasValue) |
| | 1328 | | { |
| | 1329 | | const int Threshold = 3800; |
| 0 | 1330 | | if (filter.Is4K.Value) |
| | 1331 | | { |
| 0 | 1332 | | minWidth = Threshold; |
| | 1333 | | } |
| | 1334 | | else |
| | 1335 | | { |
| 0 | 1336 | | maxWidth = Threshold - 1; |
| | 1337 | | } |
| | 1338 | | } |
| | 1339 | |
|
| 257 | 1340 | | if (minWidth.HasValue) |
| | 1341 | | { |
| 0 | 1342 | | baseQuery = baseQuery.Where(e => e.Width >= minWidth); |
| | 1343 | | } |
| | 1344 | |
|
| 257 | 1345 | | if (filter.MinHeight.HasValue) |
| | 1346 | | { |
| 0 | 1347 | | baseQuery = baseQuery.Where(e => e.Height >= filter.MinHeight); |
| | 1348 | | } |
| | 1349 | |
|
| 257 | 1350 | | if (maxWidth.HasValue) |
| | 1351 | | { |
| 0 | 1352 | | baseQuery = baseQuery.Where(e => e.Width >= maxWidth); |
| | 1353 | | } |
| | 1354 | |
|
| 257 | 1355 | | if (filter.MaxHeight.HasValue) |
| | 1356 | | { |
| 0 | 1357 | | baseQuery = baseQuery.Where(e => e.Height <= filter.MaxHeight); |
| | 1358 | | } |
| | 1359 | |
|
| 257 | 1360 | | if (filter.IsLocked.HasValue) |
| | 1361 | | { |
| 20 | 1362 | | baseQuery = baseQuery.Where(e => e.IsLocked == filter.IsLocked); |
| | 1363 | | } |
| | 1364 | |
|
| 257 | 1365 | | var tags = filter.Tags.ToList(); |
| 257 | 1366 | | var excludeTags = filter.ExcludeTags.ToList(); |
| | 1367 | |
|
| 257 | 1368 | | if (filter.IsMovie == true) |
| | 1369 | | { |
| 0 | 1370 | | if (filter.IncludeItemTypes.Length == 0 |
| 0 | 1371 | | || filter.IncludeItemTypes.Contains(BaseItemKind.Movie) |
| 0 | 1372 | | || filter.IncludeItemTypes.Contains(BaseItemKind.Trailer)) |
| | 1373 | | { |
| 0 | 1374 | | baseQuery = baseQuery.Where(e => e.IsMovie); |
| | 1375 | | } |
| | 1376 | | } |
| 257 | 1377 | | else if (filter.IsMovie.HasValue) |
| | 1378 | | { |
| 0 | 1379 | | baseQuery = baseQuery.Where(e => e.IsMovie == filter.IsMovie); |
| | 1380 | | } |
| | 1381 | |
|
| 257 | 1382 | | if (filter.IsSeries.HasValue) |
| | 1383 | | { |
| 0 | 1384 | | baseQuery = baseQuery.Where(e => e.IsSeries == filter.IsSeries); |
| | 1385 | | } |
| | 1386 | |
|
| 257 | 1387 | | if (filter.IsSports.HasValue) |
| | 1388 | | { |
| 0 | 1389 | | if (filter.IsSports.Value) |
| | 1390 | | { |
| 0 | 1391 | | tags.Add("Sports"); |
| | 1392 | | } |
| | 1393 | | else |
| | 1394 | | { |
| 0 | 1395 | | excludeTags.Add("Sports"); |
| | 1396 | | } |
| | 1397 | | } |
| | 1398 | |
|
| 257 | 1399 | | if (filter.IsNews.HasValue) |
| | 1400 | | { |
| 0 | 1401 | | if (filter.IsNews.Value) |
| | 1402 | | { |
| 0 | 1403 | | tags.Add("News"); |
| | 1404 | | } |
| | 1405 | | else |
| | 1406 | | { |
| 0 | 1407 | | excludeTags.Add("News"); |
| | 1408 | | } |
| | 1409 | | } |
| | 1410 | |
|
| 257 | 1411 | | if (filter.IsKids.HasValue) |
| | 1412 | | { |
| 0 | 1413 | | if (filter.IsKids.Value) |
| | 1414 | | { |
| 0 | 1415 | | tags.Add("Kids"); |
| | 1416 | | } |
| | 1417 | | else |
| | 1418 | | { |
| 0 | 1419 | | excludeTags.Add("Kids"); |
| | 1420 | | } |
| | 1421 | | } |
| | 1422 | |
|
| 257 | 1423 | | if (!string.IsNullOrEmpty(filter.SearchTerm)) |
| | 1424 | | { |
| 0 | 1425 | | var searchTerm = filter.SearchTerm.ToLower(); |
| 0 | 1426 | | baseQuery = baseQuery.Where(e => e.CleanName!.ToLower().Contains(searchTerm) || (e.OriginalTitle != null && |
| | 1427 | | } |
| | 1428 | |
|
| 257 | 1429 | | if (filter.IsFolder.HasValue) |
| | 1430 | | { |
| 0 | 1431 | | baseQuery = baseQuery.Where(e => e.IsFolder == filter.IsFolder); |
| | 1432 | | } |
| | 1433 | |
|
| 257 | 1434 | | var includeTypes = filter.IncludeItemTypes; |
| | 1435 | | // Only specify excluded types if no included types are specified |
| 257 | 1436 | | if (filter.IncludeItemTypes.Length == 0) |
| | 1437 | | { |
| 187 | 1438 | | var excludeTypes = filter.ExcludeItemTypes; |
| 187 | 1439 | | if (excludeTypes.Length == 1) |
| | 1440 | | { |
| 0 | 1441 | | if (_itemTypeLookup.BaseItemKindNames.TryGetValue(excludeTypes[0], out var excludeTypeName)) |
| | 1442 | | { |
| 0 | 1443 | | baseQuery = baseQuery.Where(e => e.Type != excludeTypeName); |
| | 1444 | | } |
| | 1445 | | } |
| 187 | 1446 | | else if (excludeTypes.Length > 1) |
| | 1447 | | { |
| 0 | 1448 | | var excludeTypeName = new List<string>(); |
| 0 | 1449 | | foreach (var excludeType in excludeTypes) |
| | 1450 | | { |
| 0 | 1451 | | if (_itemTypeLookup.BaseItemKindNames.TryGetValue(excludeType, out var baseItemKindName)) |
| | 1452 | | { |
| 0 | 1453 | | excludeTypeName.Add(baseItemKindName!); |
| | 1454 | | } |
| | 1455 | | } |
| | 1456 | |
|
| 0 | 1457 | | baseQuery = baseQuery.Where(e => !excludeTypeName.Contains(e.Type)); |
| | 1458 | | } |
| | 1459 | | } |
| 70 | 1460 | | else if (includeTypes.Length == 1) |
| | 1461 | | { |
| 24 | 1462 | | if (_itemTypeLookup.BaseItemKindNames.TryGetValue(includeTypes[0], out var includeTypeName)) |
| | 1463 | | { |
| 24 | 1464 | | baseQuery = baseQuery.Where(e => e.Type == includeTypeName); |
| | 1465 | | } |
| | 1466 | | } |
| 46 | 1467 | | else if (includeTypes.Length > 1) |
| | 1468 | | { |
| 46 | 1469 | | var includeTypeName = new List<string>(); |
| 372 | 1470 | | foreach (var includeType in includeTypes) |
| | 1471 | | { |
| 140 | 1472 | | if (_itemTypeLookup.BaseItemKindNames.TryGetValue(includeType, out var baseItemKindName)) |
| | 1473 | | { |
| 140 | 1474 | | includeTypeName.Add(baseItemKindName!); |
| | 1475 | | } |
| | 1476 | | } |
| | 1477 | |
|
| 46 | 1478 | | baseQuery = baseQuery.Where(e => includeTypeName.Contains(e.Type)); |
| | 1479 | | } |
| | 1480 | |
|
| 257 | 1481 | | if (filter.ChannelIds.Count > 0) |
| | 1482 | | { |
| 0 | 1483 | | baseQuery = baseQuery.Where(e => e.ChannelId != null && filter.ChannelIds.Contains(e.ChannelId.Value)); |
| | 1484 | | } |
| | 1485 | |
|
| 257 | 1486 | | if (!filter.ParentId.IsEmpty()) |
| | 1487 | | { |
| 140 | 1488 | | baseQuery = baseQuery.Where(e => e.ParentId!.Value == filter.ParentId); |
| | 1489 | | } |
| | 1490 | |
|
| 257 | 1491 | | if (!string.IsNullOrWhiteSpace(filter.Path)) |
| | 1492 | | { |
| 0 | 1493 | | baseQuery = baseQuery.Where(e => e.Path == filter.Path); |
| | 1494 | | } |
| | 1495 | |
|
| 257 | 1496 | | if (!string.IsNullOrWhiteSpace(filter.PresentationUniqueKey)) |
| | 1497 | | { |
| 0 | 1498 | | baseQuery = baseQuery.Where(e => e.PresentationUniqueKey == filter.PresentationUniqueKey); |
| | 1499 | | } |
| | 1500 | |
|
| 257 | 1501 | | if (filter.MinCommunityRating.HasValue) |
| | 1502 | | { |
| 0 | 1503 | | baseQuery = baseQuery.Where(e => e.CommunityRating >= filter.MinCommunityRating); |
| | 1504 | | } |
| | 1505 | |
|
| 257 | 1506 | | if (filter.MinIndexNumber.HasValue) |
| | 1507 | | { |
| 0 | 1508 | | baseQuery = baseQuery.Where(e => e.IndexNumber >= filter.MinIndexNumber); |
| | 1509 | | } |
| | 1510 | |
|
| 257 | 1511 | | if (filter.MinParentAndIndexNumber.HasValue) |
| | 1512 | | { |
| 0 | 1513 | | baseQuery = baseQuery |
| 0 | 1514 | | .Where(e => (e.ParentIndexNumber == filter.MinParentAndIndexNumber.Value.ParentIndexNumber && e.IndexNum |
| | 1515 | | } |
| | 1516 | |
|
| 257 | 1517 | | if (filter.MinDateCreated.HasValue) |
| | 1518 | | { |
| 0 | 1519 | | baseQuery = baseQuery.Where(e => e.DateCreated >= filter.MinDateCreated); |
| | 1520 | | } |
| | 1521 | |
|
| 257 | 1522 | | if (filter.MinDateLastSaved.HasValue) |
| | 1523 | | { |
| 0 | 1524 | | baseQuery = baseQuery.Where(e => e.DateLastSaved != null && e.DateLastSaved >= filter.MinDateLastSaved.Value |
| | 1525 | | } |
| | 1526 | |
|
| 257 | 1527 | | if (filter.MinDateLastSavedForUser.HasValue) |
| | 1528 | | { |
| 0 | 1529 | | baseQuery = baseQuery.Where(e => e.DateLastSaved != null && e.DateLastSaved >= filter.MinDateLastSavedForUse |
| | 1530 | | } |
| | 1531 | |
|
| 257 | 1532 | | if (filter.IndexNumber.HasValue) |
| | 1533 | | { |
| 0 | 1534 | | baseQuery = baseQuery.Where(e => e.IndexNumber == filter.IndexNumber.Value); |
| | 1535 | | } |
| | 1536 | |
|
| 257 | 1537 | | if (filter.ParentIndexNumber.HasValue) |
| | 1538 | | { |
| 0 | 1539 | | baseQuery = baseQuery.Where(e => e.ParentIndexNumber == filter.ParentIndexNumber.Value); |
| | 1540 | | } |
| | 1541 | |
|
| 257 | 1542 | | if (filter.ParentIndexNumberNotEquals.HasValue) |
| | 1543 | | { |
| 0 | 1544 | | baseQuery = baseQuery.Where(e => e.ParentIndexNumber != filter.ParentIndexNumberNotEquals.Value || e.ParentI |
| | 1545 | | } |
| | 1546 | |
|
| 257 | 1547 | | var minEndDate = filter.MinEndDate; |
| 257 | 1548 | | var maxEndDate = filter.MaxEndDate; |
| | 1549 | |
|
| 257 | 1550 | | if (filter.HasAired.HasValue) |
| | 1551 | | { |
| 0 | 1552 | | if (filter.HasAired.Value) |
| | 1553 | | { |
| 0 | 1554 | | maxEndDate = DateTime.UtcNow; |
| | 1555 | | } |
| | 1556 | | else |
| | 1557 | | { |
| 0 | 1558 | | minEndDate = DateTime.UtcNow; |
| | 1559 | | } |
| | 1560 | | } |
| | 1561 | |
|
| 257 | 1562 | | if (minEndDate.HasValue) |
| | 1563 | | { |
| 0 | 1564 | | baseQuery = baseQuery.Where(e => e.EndDate >= minEndDate); |
| | 1565 | | } |
| | 1566 | |
|
| 257 | 1567 | | if (maxEndDate.HasValue) |
| | 1568 | | { |
| 0 | 1569 | | baseQuery = baseQuery.Where(e => e.EndDate <= maxEndDate); |
| | 1570 | | } |
| | 1571 | |
|
| 257 | 1572 | | if (filter.MinStartDate.HasValue) |
| | 1573 | | { |
| 0 | 1574 | | baseQuery = baseQuery.Where(e => e.StartDate >= filter.MinStartDate.Value); |
| | 1575 | | } |
| | 1576 | |
|
| 257 | 1577 | | if (filter.MaxStartDate.HasValue) |
| | 1578 | | { |
| 0 | 1579 | | baseQuery = baseQuery.Where(e => e.StartDate <= filter.MaxStartDate.Value); |
| | 1580 | | } |
| | 1581 | |
|
| 257 | 1582 | | if (filter.MinPremiereDate.HasValue) |
| | 1583 | | { |
| 0 | 1584 | | baseQuery = baseQuery.Where(e => e.PremiereDate <= filter.MinPremiereDate.Value); |
| | 1585 | | } |
| | 1586 | |
|
| 257 | 1587 | | if (filter.MaxPremiereDate.HasValue) |
| | 1588 | | { |
| 0 | 1589 | | baseQuery = baseQuery.Where(e => e.PremiereDate <= filter.MaxPremiereDate.Value); |
| | 1590 | | } |
| | 1591 | |
|
| 257 | 1592 | | if (filter.TrailerTypes.Length > 0) |
| | 1593 | | { |
| 0 | 1594 | | var trailerTypes = filter.TrailerTypes.Select(e => (int)e).ToArray(); |
| 0 | 1595 | | baseQuery = baseQuery.Where(e => trailerTypes.Any(f => e.TrailerTypes!.Any(w => w.Id == f))); |
| | 1596 | | } |
| | 1597 | |
|
| 257 | 1598 | | if (filter.IsAiring.HasValue) |
| | 1599 | | { |
| 0 | 1600 | | if (filter.IsAiring.Value) |
| | 1601 | | { |
| 0 | 1602 | | baseQuery = baseQuery.Where(e => e.StartDate <= now && e.EndDate >= now); |
| | 1603 | | } |
| | 1604 | | else |
| | 1605 | | { |
| 0 | 1606 | | baseQuery = baseQuery.Where(e => e.StartDate > now && e.EndDate < now); |
| | 1607 | | } |
| | 1608 | | } |
| | 1609 | |
|
| 257 | 1610 | | if (filter.PersonIds.Length > 0) |
| | 1611 | | { |
| 0 | 1612 | | baseQuery = baseQuery |
| 0 | 1613 | | .Where(e => |
| 0 | 1614 | | context.PeopleBaseItemMap.Where(w => context.BaseItems.Where(r => filter.PersonIds.Contains(r.Id)).A |
| 0 | 1615 | | .Any(f => f.ItemId == e.Id)); |
| | 1616 | | } |
| | 1617 | |
|
| 257 | 1618 | | if (!string.IsNullOrWhiteSpace(filter.Person)) |
| | 1619 | | { |
| 0 | 1620 | | baseQuery = baseQuery.Where(e => e.Peoples!.Any(f => f.People.Name == filter.Person)); |
| | 1621 | | } |
| | 1622 | |
|
| 257 | 1623 | | if (!string.IsNullOrWhiteSpace(filter.MinSortName)) |
| | 1624 | | { |
| | 1625 | | // this does not makes sense. |
| | 1626 | | // baseQuery = baseQuery.Where(e => e.SortName >= query.MinSortName); |
| | 1627 | | // whereClauses.Add("SortName>=@MinSortName"); |
| | 1628 | | // statement?.TryBind("@MinSortName", query.MinSortName); |
| | 1629 | | } |
| | 1630 | |
|
| 257 | 1631 | | if (!string.IsNullOrWhiteSpace(filter.ExternalSeriesId)) |
| | 1632 | | { |
| 0 | 1633 | | baseQuery = baseQuery.Where(e => e.ExternalSeriesId == filter.ExternalSeriesId); |
| | 1634 | | } |
| | 1635 | |
|
| 257 | 1636 | | if (!string.IsNullOrWhiteSpace(filter.ExternalId)) |
| | 1637 | | { |
| 0 | 1638 | | baseQuery = baseQuery.Where(e => e.ExternalId == filter.ExternalId); |
| | 1639 | | } |
| | 1640 | |
|
| 257 | 1641 | | if (!string.IsNullOrWhiteSpace(filter.Name)) |
| | 1642 | | { |
| 3 | 1643 | | var cleanName = GetCleanValue(filter.Name); |
| 3 | 1644 | | baseQuery = baseQuery.Where(e => e.CleanName == cleanName); |
| | 1645 | | } |
| | 1646 | |
|
| | 1647 | | // These are the same, for now |
| 257 | 1648 | | var nameContains = filter.NameContains; |
| 257 | 1649 | | if (!string.IsNullOrWhiteSpace(nameContains)) |
| | 1650 | | { |
| 0 | 1651 | | baseQuery = baseQuery.Where(e => |
| 0 | 1652 | | e.CleanName!.Contains(nameContains) |
| 0 | 1653 | | || e.OriginalTitle!.ToLower().Contains(nameContains!)); |
| | 1654 | | } |
| | 1655 | |
|
| 257 | 1656 | | if (!string.IsNullOrWhiteSpace(filter.NameStartsWith)) |
| | 1657 | | { |
| 0 | 1658 | | baseQuery = baseQuery.Where(e => e.SortName!.StartsWith(filter.NameStartsWith) || e.Name!.StartsWith(filter. |
| | 1659 | | } |
| | 1660 | |
|
| 257 | 1661 | | if (!string.IsNullOrWhiteSpace(filter.NameStartsWithOrGreater)) |
| | 1662 | | { |
| | 1663 | | // i hate this |
| 0 | 1664 | | baseQuery = baseQuery.Where(e => e.SortName!.FirstOrDefault() > filter.NameStartsWithOrGreater[0] || e.Name! |
| | 1665 | | } |
| | 1666 | |
|
| 257 | 1667 | | if (!string.IsNullOrWhiteSpace(filter.NameLessThan)) |
| | 1668 | | { |
| | 1669 | | // i hate this |
| 0 | 1670 | | baseQuery = baseQuery.Where(e => e.SortName!.FirstOrDefault() < filter.NameLessThan[0] || e.Name!.FirstOrDef |
| | 1671 | | } |
| | 1672 | |
|
| 257 | 1673 | | if (filter.ImageTypes.Length > 0) |
| | 1674 | | { |
| 82 | 1675 | | var imgTypes = filter.ImageTypes.Select(e => (ImageInfoImageType)e).ToArray(); |
| 82 | 1676 | | baseQuery = baseQuery.Where(e => imgTypes.Any(f => e.Images!.Any(w => w.ImageType == f))); |
| | 1677 | | } |
| | 1678 | |
|
| 257 | 1679 | | if (filter.IsLiked.HasValue) |
| | 1680 | | { |
| 0 | 1681 | | baseQuery = baseQuery |
| 0 | 1682 | | .Where(e => e.UserData!.FirstOrDefault(f => f.UserId == filter.User!.Id)!.Rating >= UserItemData.MinLike |
| | 1683 | | } |
| | 1684 | |
|
| 257 | 1685 | | if (filter.IsFavoriteOrLiked.HasValue) |
| | 1686 | | { |
| 0 | 1687 | | baseQuery = baseQuery |
| 0 | 1688 | | .Where(e => e.UserData!.FirstOrDefault(f => f.UserId == filter.User!.Id)!.IsFavorite == filter.IsFavorit |
| | 1689 | | } |
| | 1690 | |
|
| 257 | 1691 | | if (filter.IsFavorite.HasValue) |
| | 1692 | | { |
| 0 | 1693 | | baseQuery = baseQuery |
| 0 | 1694 | | .Where(e => e.UserData!.FirstOrDefault(f => f.UserId == filter.User!.Id)!.IsFavorite == filter.IsFavorit |
| | 1695 | | } |
| | 1696 | |
|
| 257 | 1697 | | if (filter.IsPlayed.HasValue) |
| | 1698 | | { |
| | 1699 | | // We should probably figure this out for all folders, but for right now, this is the only place where we ne |
| 0 | 1700 | | if (filter.IncludeItemTypes.Length == 1 && filter.IncludeItemTypes[0] == BaseItemKind.Series) |
| | 1701 | | { |
| 0 | 1702 | | baseQuery = baseQuery.Where(e => context.BaseItems |
| 0 | 1703 | | .Where(e => e.IsFolder == false && e.IsVirtualItem == false) |
| 0 | 1704 | | .Where(f => f.UserData!.FirstOrDefault(e => e.UserId == filter.User!.Id && e.Played)!.Played) |
| 0 | 1705 | | .Any(f => f.SeriesPresentationUniqueKey == e.PresentationUniqueKey) == filter.IsPlayed); |
| | 1706 | | } |
| | 1707 | | else |
| | 1708 | | { |
| 0 | 1709 | | baseQuery = baseQuery |
| 0 | 1710 | | .Select(e => new |
| 0 | 1711 | | { |
| 0 | 1712 | | IsPlayed = e.UserData!.Where(f => f.UserId == filter.User!.Id).Select(f => (bool?)f.Played).Firs |
| 0 | 1713 | | Item = e |
| 0 | 1714 | | }) |
| 0 | 1715 | | .Where(e => e.IsPlayed == filter.IsPlayed) |
| 0 | 1716 | | .Select(f => f.Item); |
| | 1717 | | } |
| | 1718 | | } |
| | 1719 | |
|
| 257 | 1720 | | if (filter.IsResumable.HasValue) |
| | 1721 | | { |
| 1 | 1722 | | if (filter.IsResumable.Value) |
| | 1723 | | { |
| 1 | 1724 | | baseQuery = baseQuery |
| 1 | 1725 | | .Where(e => e.UserData!.FirstOrDefault(f => f.UserId == filter.User!.Id)!.PlaybackPositionTicks > |
| | 1726 | | } |
| | 1727 | | else |
| | 1728 | | { |
| 0 | 1729 | | baseQuery = baseQuery |
| 0 | 1730 | | .Where(e => e.UserData!.FirstOrDefault(f => f.UserId == filter.User!.Id)!.PlaybackPositionTicks = |
| | 1731 | | } |
| | 1732 | | } |
| | 1733 | |
|
| 257 | 1734 | | if (filter.ArtistIds.Length > 0) |
| | 1735 | | { |
| 0 | 1736 | | baseQuery = baseQuery |
| 0 | 1737 | | .Where(e => e.ItemValues!.Any(f => f.ItemValue.Type <= ItemValueType.Artist && filter.ArtistIds.Conta |
| | 1738 | | } |
| | 1739 | |
|
| 257 | 1740 | | if (filter.AlbumArtistIds.Length > 0) |
| | 1741 | | { |
| 0 | 1742 | | baseQuery = baseQuery |
| 0 | 1743 | | .Where(e => e.ItemValues!.Any(f => f.ItemValue.Type == ItemValueType.Artist && filter.AlbumArtistIds. |
| | 1744 | | } |
| | 1745 | |
|
| 257 | 1746 | | if (filter.ContributingArtistIds.Length > 0) |
| | 1747 | | { |
| 0 | 1748 | | baseQuery = baseQuery |
| 0 | 1749 | | .Where(e => e.ItemValues!.Any(f => f.ItemValue.Type == ItemValueType.Artist && filter.ContributingArt |
| | 1750 | | } |
| | 1751 | |
|
| 257 | 1752 | | if (filter.AlbumIds.Length > 0) |
| | 1753 | | { |
| 0 | 1754 | | baseQuery = baseQuery.Where(e => context.BaseItems.Where(f => filter.AlbumIds.Contains(f.Id)).Any(f => f.Nam |
| | 1755 | | } |
| | 1756 | |
|
| 257 | 1757 | | if (filter.ExcludeArtistIds.Length > 0) |
| | 1758 | | { |
| 0 | 1759 | | baseQuery = baseQuery |
| 0 | 1760 | | .Where(e => !e.ItemValues!.Any(f => f.ItemValue.Type == ItemValueType.Artist && filter.ExcludeArtistI |
| | 1761 | | } |
| | 1762 | |
|
| 257 | 1763 | | if (filter.GenreIds.Count > 0) |
| | 1764 | | { |
| 0 | 1765 | | baseQuery = baseQuery |
| 0 | 1766 | | .Where(e => e.ItemValues!.Any(f => f.ItemValue.Type == ItemValueType.Genre && filter.GenreIds.Contain |
| | 1767 | | } |
| | 1768 | |
|
| 257 | 1769 | | if (filter.Genres.Count > 0) |
| | 1770 | | { |
| 0 | 1771 | | var cleanGenres = filter.Genres.Select(e => GetCleanValue(e)).ToArray(); |
| 0 | 1772 | | baseQuery = baseQuery |
| 0 | 1773 | | .Where(e => e.ItemValues!.Any(f => f.ItemValue.Type == ItemValueType.Genre && cleanGenres.Contains(f |
| | 1774 | | } |
| | 1775 | |
|
| 257 | 1776 | | if (tags.Count > 0) |
| | 1777 | | { |
| 0 | 1778 | | var cleanValues = tags.Select(e => GetCleanValue(e)).ToArray(); |
| 0 | 1779 | | baseQuery = baseQuery |
| 0 | 1780 | | .Where(e => e.ItemValues!.Any(f => f.ItemValue.Type == ItemValueType.Tags && cleanValues.Contains(f. |
| | 1781 | | } |
| | 1782 | |
|
| 257 | 1783 | | if (excludeTags.Count > 0) |
| | 1784 | | { |
| 0 | 1785 | | var cleanValues = excludeTags.Select(e => GetCleanValue(e)).ToArray(); |
| 0 | 1786 | | baseQuery = baseQuery |
| 0 | 1787 | | .Where(e => !e.ItemValues!.Any(f => f.ItemValue.Type == ItemValueType.Tags && cleanValues.Contains(f |
| | 1788 | | } |
| | 1789 | |
|
| 257 | 1790 | | if (filter.StudioIds.Length > 0) |
| | 1791 | | { |
| 0 | 1792 | | baseQuery = baseQuery |
| 0 | 1793 | | .Where(e => e.ItemValues!.Any(f => f.ItemValue.Type == ItemValueType.Studios && filter.StudioIds.Con |
| | 1794 | | } |
| | 1795 | |
|
| 257 | 1796 | | if (filter.OfficialRatings.Length > 0) |
| | 1797 | | { |
| 0 | 1798 | | baseQuery = baseQuery |
| 0 | 1799 | | .Where(e => filter.OfficialRatings.Contains(e.OfficialRating)); |
| | 1800 | | } |
| | 1801 | |
|
| 257 | 1802 | | Expression<Func<BaseItemEntity, bool>>? minParentalRatingFilter = null; |
| 257 | 1803 | | if (filter.MinParentalRating != null) |
| | 1804 | | { |
| 0 | 1805 | | var min = filter.MinParentalRating; |
| 0 | 1806 | | minParentalRatingFilter = e => e.InheritedParentalRatingValue >= min.Score || e.InheritedParentalRatingValue |
| 0 | 1807 | | if (min.SubScore != null) |
| | 1808 | | { |
| 0 | 1809 | | minParentalRatingFilter = minParentalRatingFilter.And(e => e.InheritedParentalRatingValue >= min.SubScor |
| | 1810 | | } |
| | 1811 | | } |
| | 1812 | |
|
| 257 | 1813 | | Expression<Func<BaseItemEntity, bool>>? maxParentalRatingFilter = null; |
| 257 | 1814 | | if (filter.MaxParentalRating != null) |
| | 1815 | | { |
| 30 | 1816 | | var max = filter.MaxParentalRating; |
| 30 | 1817 | | maxParentalRatingFilter = e => e.InheritedParentalRatingValue <= max.Score || e.InheritedParentalRatingValue |
| 30 | 1818 | | if (max.SubScore != null) |
| | 1819 | | { |
| 0 | 1820 | | maxParentalRatingFilter = maxParentalRatingFilter.And(e => e.InheritedParentalRatingValue <= max.SubScor |
| | 1821 | | } |
| | 1822 | | } |
| | 1823 | |
|
| 257 | 1824 | | if (filter.HasParentalRating ?? false) |
| | 1825 | | { |
| 0 | 1826 | | if (minParentalRatingFilter != null) |
| | 1827 | | { |
| 0 | 1828 | | baseQuery = baseQuery.Where(minParentalRatingFilter); |
| | 1829 | | } |
| | 1830 | |
|
| 0 | 1831 | | if (maxParentalRatingFilter != null) |
| | 1832 | | { |
| 0 | 1833 | | baseQuery = baseQuery.Where(maxParentalRatingFilter); |
| | 1834 | | } |
| | 1835 | | } |
| 257 | 1836 | | else if (filter.BlockUnratedItems.Length > 0) |
| | 1837 | | { |
| 0 | 1838 | | var unratedItemTypes = filter.BlockUnratedItems.Select(f => f.ToString()).ToArray(); |
| 0 | 1839 | | Expression<Func<BaseItemEntity, bool>> unratedItemFilter = e => e.InheritedParentalRatingValue != null || !u |
| | 1840 | |
|
| 0 | 1841 | | if (minParentalRatingFilter != null && maxParentalRatingFilter != null) |
| | 1842 | | { |
| 0 | 1843 | | baseQuery = baseQuery.Where(unratedItemFilter.And(minParentalRatingFilter.And(maxParentalRatingFilter))) |
| | 1844 | | } |
| 0 | 1845 | | else if (minParentalRatingFilter != null) |
| | 1846 | | { |
| 0 | 1847 | | baseQuery = baseQuery.Where(unratedItemFilter.And(minParentalRatingFilter)); |
| | 1848 | | } |
| 0 | 1849 | | else if (maxParentalRatingFilter != null) |
| | 1850 | | { |
| 0 | 1851 | | baseQuery = baseQuery.Where(unratedItemFilter.And(maxParentalRatingFilter)); |
| | 1852 | | } |
| | 1853 | | else |
| | 1854 | | { |
| 0 | 1855 | | baseQuery = baseQuery.Where(unratedItemFilter); |
| | 1856 | | } |
| | 1857 | | } |
| 257 | 1858 | | else if (minParentalRatingFilter != null || maxParentalRatingFilter != null) |
| | 1859 | | { |
| 30 | 1860 | | if (minParentalRatingFilter != null) |
| | 1861 | | { |
| 0 | 1862 | | baseQuery = baseQuery.Where(minParentalRatingFilter); |
| | 1863 | | } |
| | 1864 | |
|
| 30 | 1865 | | if (maxParentalRatingFilter != null) |
| | 1866 | | { |
| 30 | 1867 | | baseQuery = baseQuery.Where(maxParentalRatingFilter); |
| | 1868 | | } |
| | 1869 | | } |
| 227 | 1870 | | else if (!filter.HasParentalRating ?? false) |
| | 1871 | | { |
| 0 | 1872 | | baseQuery = baseQuery |
| 0 | 1873 | | .Where(e => e.InheritedParentalRatingValue == null); |
| | 1874 | | } |
| | 1875 | |
|
| 257 | 1876 | | if (filter.HasOfficialRating.HasValue) |
| | 1877 | | { |
| 0 | 1878 | | if (filter.HasOfficialRating.Value) |
| | 1879 | | { |
| 0 | 1880 | | baseQuery = baseQuery |
| 0 | 1881 | | .Where(e => e.OfficialRating != null && e.OfficialRating != string.Empty); |
| | 1882 | | } |
| | 1883 | | else |
| | 1884 | | { |
| 0 | 1885 | | baseQuery = baseQuery |
| 0 | 1886 | | .Where(e => e.OfficialRating == null || e.OfficialRating == string.Empty); |
| | 1887 | | } |
| | 1888 | | } |
| | 1889 | |
|
| 257 | 1890 | | if (filter.HasOverview.HasValue) |
| | 1891 | | { |
| 0 | 1892 | | if (filter.HasOverview.Value) |
| | 1893 | | { |
| 0 | 1894 | | baseQuery = baseQuery |
| 0 | 1895 | | .Where(e => e.Overview != null && e.Overview != string.Empty); |
| | 1896 | | } |
| | 1897 | | else |
| | 1898 | | { |
| 0 | 1899 | | baseQuery = baseQuery |
| 0 | 1900 | | .Where(e => e.Overview == null || e.Overview == string.Empty); |
| | 1901 | | } |
| | 1902 | | } |
| | 1903 | |
|
| 257 | 1904 | | if (filter.HasOwnerId.HasValue) |
| | 1905 | | { |
| 0 | 1906 | | if (filter.HasOwnerId.Value) |
| | 1907 | | { |
| 0 | 1908 | | baseQuery = baseQuery |
| 0 | 1909 | | .Where(e => e.OwnerId != null); |
| | 1910 | | } |
| | 1911 | | else |
| | 1912 | | { |
| 0 | 1913 | | baseQuery = baseQuery |
| 0 | 1914 | | .Where(e => e.OwnerId == null); |
| | 1915 | | } |
| | 1916 | | } |
| | 1917 | |
|
| 257 | 1918 | | if (!string.IsNullOrWhiteSpace(filter.HasNoAudioTrackWithLanguage)) |
| | 1919 | | { |
| 0 | 1920 | | baseQuery = baseQuery |
| 0 | 1921 | | .Where(e => !e.MediaStreams!.Any(f => f.StreamType == MediaStreamTypeEntity.Audio && f.Language == filte |
| | 1922 | | } |
| | 1923 | |
|
| 257 | 1924 | | if (!string.IsNullOrWhiteSpace(filter.HasNoInternalSubtitleTrackWithLanguage)) |
| | 1925 | | { |
| 0 | 1926 | | baseQuery = baseQuery |
| 0 | 1927 | | .Where(e => !e.MediaStreams!.Any(f => f.StreamType == MediaStreamTypeEntity.Subtitle && !f.IsExternal && |
| | 1928 | | } |
| | 1929 | |
|
| 257 | 1930 | | if (!string.IsNullOrWhiteSpace(filter.HasNoExternalSubtitleTrackWithLanguage)) |
| | 1931 | | { |
| 0 | 1932 | | baseQuery = baseQuery |
| 0 | 1933 | | .Where(e => !e.MediaStreams!.Any(f => f.StreamType == MediaStreamTypeEntity.Subtitle && f.IsExternal && |
| | 1934 | | } |
| | 1935 | |
|
| 257 | 1936 | | if (!string.IsNullOrWhiteSpace(filter.HasNoSubtitleTrackWithLanguage)) |
| | 1937 | | { |
| 0 | 1938 | | baseQuery = baseQuery |
| 0 | 1939 | | .Where(e => !e.MediaStreams!.Any(f => f.StreamType == MediaStreamTypeEntity.Subtitle && f.Language == fi |
| | 1940 | | } |
| | 1941 | |
|
| 257 | 1942 | | if (filter.HasSubtitles.HasValue) |
| | 1943 | | { |
| 0 | 1944 | | baseQuery = baseQuery |
| 0 | 1945 | | .Where(e => e.MediaStreams!.Any(f => f.StreamType == MediaStreamTypeEntity.Subtitle) == filter.HasSubtit |
| | 1946 | | } |
| | 1947 | |
|
| 257 | 1948 | | if (filter.HasChapterImages.HasValue) |
| | 1949 | | { |
| 0 | 1950 | | baseQuery = baseQuery |
| 0 | 1951 | | .Where(e => e.Chapters!.Any(f => f.ImagePath != null) == filter.HasChapterImages.Value); |
| | 1952 | | } |
| | 1953 | |
|
| 257 | 1954 | | if (filter.HasDeadParentId.HasValue && filter.HasDeadParentId.Value) |
| | 1955 | | { |
| 10 | 1956 | | baseQuery = baseQuery |
| 10 | 1957 | | .Where(e => e.ParentId.HasValue && !context.BaseItems.Any(f => f.Id == e.ParentId.Value)); |
| | 1958 | | } |
| | 1959 | |
|
| 257 | 1960 | | if (filter.IsDeadArtist.HasValue && filter.IsDeadArtist.Value) |
| | 1961 | | { |
| 10 | 1962 | | baseQuery = baseQuery |
| 10 | 1963 | | .Where(e => e.ItemValues!.Count(f => f.ItemValue.Type == ItemValueType.Artist || f.ItemValue.Type == |
| | 1964 | | } |
| | 1965 | |
|
| 257 | 1966 | | if (filter.IsDeadStudio.HasValue && filter.IsDeadStudio.Value) |
| | 1967 | | { |
| 10 | 1968 | | baseQuery = baseQuery |
| 10 | 1969 | | .Where(e => e.ItemValues!.Count(f => f.ItemValue.Type == ItemValueType.Studios) == 1); |
| | 1970 | | } |
| | 1971 | |
|
| 257 | 1972 | | if (filter.IsDeadPerson.HasValue && filter.IsDeadPerson.Value) |
| | 1973 | | { |
| 0 | 1974 | | baseQuery = baseQuery |
| 0 | 1975 | | .Where(e => !context.Peoples.Any(f => f.Name == e.Name)); |
| | 1976 | | } |
| | 1977 | |
|
| 257 | 1978 | | if (filter.Years.Length == 1) |
| | 1979 | | { |
| 0 | 1980 | | baseQuery = baseQuery |
| 0 | 1981 | | .Where(e => e.ProductionYear == filter.Years[0]); |
| | 1982 | | } |
| 257 | 1983 | | else if (filter.Years.Length > 1) |
| | 1984 | | { |
| 0 | 1985 | | baseQuery = baseQuery |
| 0 | 1986 | | .Where(e => filter.Years.Any(f => f == e.ProductionYear)); |
| | 1987 | | } |
| | 1988 | |
|
| 257 | 1989 | | var isVirtualItem = filter.IsVirtualItem ?? filter.IsMissing; |
| 257 | 1990 | | if (isVirtualItem.HasValue) |
| | 1991 | | { |
| 1 | 1992 | | baseQuery = baseQuery |
| 1 | 1993 | | .Where(e => e.IsVirtualItem == isVirtualItem.Value); |
| | 1994 | | } |
| | 1995 | |
|
| 257 | 1996 | | if (filter.IsSpecialSeason.HasValue) |
| | 1997 | | { |
| 0 | 1998 | | if (filter.IsSpecialSeason.Value) |
| | 1999 | | { |
| 0 | 2000 | | baseQuery = baseQuery |
| 0 | 2001 | | .Where(e => e.IndexNumber == 0); |
| | 2002 | | } |
| | 2003 | | else |
| | 2004 | | { |
| 0 | 2005 | | baseQuery = baseQuery |
| 0 | 2006 | | .Where(e => e.IndexNumber != 0); |
| | 2007 | | } |
| | 2008 | | } |
| | 2009 | |
|
| 257 | 2010 | | if (filter.IsUnaired.HasValue) |
| | 2011 | | { |
| 0 | 2012 | | if (filter.IsUnaired.Value) |
| | 2013 | | { |
| 0 | 2014 | | baseQuery = baseQuery |
| 0 | 2015 | | .Where(e => e.PremiereDate >= now); |
| | 2016 | | } |
| | 2017 | | else |
| | 2018 | | { |
| 0 | 2019 | | baseQuery = baseQuery |
| 0 | 2020 | | .Where(e => e.PremiereDate < now); |
| | 2021 | | } |
| | 2022 | | } |
| | 2023 | |
|
| 257 | 2024 | | if (filter.MediaTypes.Length > 0) |
| | 2025 | | { |
| 0 | 2026 | | var mediaTypes = filter.MediaTypes.Select(f => f.ToString()).ToArray(); |
| 0 | 2027 | | baseQuery = baseQuery |
| 0 | 2028 | | .Where(e => mediaTypes.Contains(e.MediaType)); |
| | 2029 | | } |
| | 2030 | |
|
| 257 | 2031 | | if (filter.ItemIds.Length > 0) |
| | 2032 | | { |
| 0 | 2033 | | baseQuery = baseQuery |
| 0 | 2034 | | .Where(e => filter.ItemIds.Contains(e.Id)); |
| | 2035 | | } |
| | 2036 | |
|
| 257 | 2037 | | if (filter.ExcludeItemIds.Length > 0) |
| | 2038 | | { |
| 0 | 2039 | | baseQuery = baseQuery |
| 0 | 2040 | | .Where(e => !filter.ItemIds.Contains(e.Id)); |
| | 2041 | | } |
| | 2042 | |
|
| 257 | 2043 | | if (filter.ExcludeProviderIds is not null && filter.ExcludeProviderIds.Count > 0) |
| | 2044 | | { |
| 0 | 2045 | | baseQuery = baseQuery.Where(e => !e.Provider!.All(f => !filter.ExcludeProviderIds.All(w => f.ProviderId == w |
| | 2046 | | } |
| | 2047 | |
|
| 257 | 2048 | | if (filter.HasAnyProviderId is not null && filter.HasAnyProviderId.Count > 0) |
| | 2049 | | { |
| 0 | 2050 | | baseQuery = baseQuery.Where(e => e.Provider!.Any(f => !filter.HasAnyProviderId.Any(w => f.ProviderId == w.Ke |
| | 2051 | | } |
| | 2052 | |
|
| 257 | 2053 | | if (filter.HasImdbId.HasValue) |
| | 2054 | | { |
| 0 | 2055 | | baseQuery = baseQuery.Where(e => e.Provider!.Any(f => f.ProviderId == "imdb")); |
| | 2056 | | } |
| | 2057 | |
|
| 257 | 2058 | | if (filter.HasTmdbId.HasValue) |
| | 2059 | | { |
| 0 | 2060 | | baseQuery = baseQuery.Where(e => e.Provider!.Any(f => f.ProviderId == "tmdb")); |
| | 2061 | | } |
| | 2062 | |
|
| 257 | 2063 | | if (filter.HasTvdbId.HasValue) |
| | 2064 | | { |
| 0 | 2065 | | baseQuery = baseQuery.Where(e => e.Provider!.Any(f => f.ProviderId == "tvdb")); |
| | 2066 | | } |
| | 2067 | |
|
| 257 | 2068 | | var queryTopParentIds = filter.TopParentIds; |
| | 2069 | |
|
| 257 | 2070 | | if (queryTopParentIds.Length > 0) |
| | 2071 | | { |
| 17 | 2072 | | var includedItemByNameTypes = GetItemByNameTypesInQuery(filter); |
| 17 | 2073 | | var enableItemsByName = (filter.IncludeItemsByName ?? false) && includedItemByNameTypes.Count > 0; |
| 17 | 2074 | | if (enableItemsByName && includedItemByNameTypes.Count > 0) |
| | 2075 | | { |
| 0 | 2076 | | baseQuery = baseQuery.Where(e => includedItemByNameTypes.Contains(e.Type) || queryTopParentIds.Any(w => |
| | 2077 | | } |
| | 2078 | | else |
| | 2079 | | { |
| 17 | 2080 | | baseQuery = baseQuery.Where(e => queryTopParentIds.Contains(e.TopParentId!.Value)); |
| | 2081 | | } |
| | 2082 | | } |
| | 2083 | |
|
| 257 | 2084 | | if (filter.AncestorIds.Length > 0) |
| | 2085 | | { |
| 37 | 2086 | | baseQuery = baseQuery.Where(e => e.Children!.Any(f => filter.AncestorIds.Contains(f.ParentItemId))); |
| | 2087 | | } |
| | 2088 | |
|
| 257 | 2089 | | if (!string.IsNullOrWhiteSpace(filter.AncestorWithPresentationUniqueKey)) |
| | 2090 | | { |
| 0 | 2091 | | baseQuery = baseQuery |
| 0 | 2092 | | .Where(e => context.BaseItems.Where(f => f.PresentationUniqueKey == filter.AncestorWithPresentationUniqu |
| | 2093 | | } |
| | 2094 | |
|
| 257 | 2095 | | if (!string.IsNullOrWhiteSpace(filter.SeriesPresentationUniqueKey)) |
| | 2096 | | { |
| 0 | 2097 | | baseQuery = baseQuery |
| 0 | 2098 | | .Where(e => e.SeriesPresentationUniqueKey == filter.SeriesPresentationUniqueKey); |
| | 2099 | | } |
| | 2100 | |
|
| 257 | 2101 | | if (filter.ExcludeInheritedTags.Length > 0) |
| | 2102 | | { |
| 0 | 2103 | | baseQuery = baseQuery |
| 0 | 2104 | | .Where(e => !e.ItemValues!.Where(w => w.ItemValue.Type == ItemValueType.InheritedTags) |
| 0 | 2105 | | .Any(f => filter.ExcludeInheritedTags.Contains(f.ItemValue.CleanValue))); |
| | 2106 | | } |
| | 2107 | |
|
| 257 | 2108 | | if (filter.IncludeInheritedTags.Length > 0) |
| | 2109 | | { |
| | 2110 | | // Episodes do not store inherit tags from their parents in the database, and the tag may be still required |
| | 2111 | | // In addition to the tags for the episodes themselves, we need to manually query its parent (the season)'s |
| 0 | 2112 | | if (includeTypes.Length == 1 && includeTypes.FirstOrDefault() is BaseItemKind.Episode) |
| | 2113 | | { |
| 0 | 2114 | | baseQuery = baseQuery |
| 0 | 2115 | | .Where(e => e.ItemValues!.Where(f => f.ItemValue.Type == ItemValueType.InheritedTags) |
| 0 | 2116 | | .Any(f => filter.IncludeInheritedTags.Contains(f.ItemValue.CleanValue)) |
| 0 | 2117 | | || |
| 0 | 2118 | | (e.ParentId.HasValue && context.ItemValuesMap.Where(w => w.ItemId == e.ParentId.Value)!.Where(w |
| 0 | 2119 | | .Any(f => filter.IncludeInheritedTags.Contains(f.ItemValue.CleanValue)))); |
| | 2120 | | } |
| | 2121 | |
|
| | 2122 | | // A playlist should be accessible to its owner regardless of allowed tags. |
| 0 | 2123 | | else if (includeTypes.Length == 1 && includeTypes.FirstOrDefault() is BaseItemKind.Playlist) |
| | 2124 | | { |
| 0 | 2125 | | baseQuery = baseQuery |
| 0 | 2126 | | .Where(e => |
| 0 | 2127 | | e.ParentAncestors! |
| 0 | 2128 | | .Any(f => |
| 0 | 2129 | | f.ParentItem.ItemValues!.Any(w => w.ItemValue.Type == ItemValueType.Tags && filter.IncludeIn |
| 0 | 2130 | | || e.Data!.Contains($"OwnerUserId\":\"{filter.User!.Id:N}\""))); |
| | 2131 | | // d ^^ this is stupid it hate this. |
| | 2132 | | } |
| | 2133 | | else |
| | 2134 | | { |
| 0 | 2135 | | baseQuery = baseQuery |
| 0 | 2136 | | .Where(e => e.ParentAncestors!.Any(f => f.ParentItem.ItemValues!.Any(w => w.ItemValue.Type == ItemVa |
| | 2137 | | } |
| | 2138 | | } |
| | 2139 | |
|
| 257 | 2140 | | if (filter.SeriesStatuses.Length > 0) |
| | 2141 | | { |
| 0 | 2142 | | var seriesStatus = filter.SeriesStatuses.Select(e => e.ToString()).ToArray(); |
| 0 | 2143 | | baseQuery = baseQuery |
| 0 | 2144 | | .Where(e => seriesStatus.Any(f => e.Data!.Contains(f))); |
| | 2145 | | } |
| | 2146 | |
|
| 257 | 2147 | | if (filter.BoxSetLibraryFolders.Length > 0) |
| | 2148 | | { |
| 0 | 2149 | | var boxsetFolders = filter.BoxSetLibraryFolders.Select(e => e.ToString("N", CultureInfo.InvariantCulture)).T |
| 0 | 2150 | | baseQuery = baseQuery |
| 0 | 2151 | | .Where(e => boxsetFolders.Any(f => e.Data!.Contains(f))); |
| | 2152 | | } |
| | 2153 | |
|
| 257 | 2154 | | if (filter.VideoTypes.Length > 0) |
| | 2155 | | { |
| 0 | 2156 | | var videoTypeBs = filter.VideoTypes.Select(e => $"\"VideoType\":\"{e}\""); |
| 0 | 2157 | | baseQuery = baseQuery |
| 0 | 2158 | | .Where(e => videoTypeBs.Any(f => e.Data!.Contains(f))); |
| | 2159 | | } |
| | 2160 | |
|
| 257 | 2161 | | if (filter.Is3D.HasValue) |
| | 2162 | | { |
| 0 | 2163 | | if (filter.Is3D.Value) |
| | 2164 | | { |
| 0 | 2165 | | baseQuery = baseQuery |
| 0 | 2166 | | .Where(e => e.Data!.Contains("Video3DFormat")); |
| | 2167 | | } |
| | 2168 | | else |
| | 2169 | | { |
| 0 | 2170 | | baseQuery = baseQuery |
| 0 | 2171 | | .Where(e => !e.Data!.Contains("Video3DFormat")); |
| | 2172 | | } |
| | 2173 | | } |
| | 2174 | |
|
| 257 | 2175 | | if (filter.IsPlaceHolder.HasValue) |
| | 2176 | | { |
| 0 | 2177 | | if (filter.IsPlaceHolder.Value) |
| | 2178 | | { |
| 0 | 2179 | | baseQuery = baseQuery |
| 0 | 2180 | | .Where(e => e.Data!.Contains("IsPlaceHolder\":true")); |
| | 2181 | | } |
| | 2182 | | else |
| | 2183 | | { |
| 0 | 2184 | | baseQuery = baseQuery |
| 0 | 2185 | | .Where(e => !e.Data!.Contains("IsPlaceHolder\":true")); |
| | 2186 | | } |
| | 2187 | | } |
| | 2188 | |
|
| 257 | 2189 | | if (filter.HasSpecialFeature.HasValue) |
| | 2190 | | { |
| 0 | 2191 | | if (filter.HasSpecialFeature.Value) |
| | 2192 | | { |
| 0 | 2193 | | baseQuery = baseQuery |
| 0 | 2194 | | .Where(e => e.ExtraIds != null); |
| | 2195 | | } |
| | 2196 | | else |
| | 2197 | | { |
| 0 | 2198 | | baseQuery = baseQuery |
| 0 | 2199 | | .Where(e => e.ExtraIds == null); |
| | 2200 | | } |
| | 2201 | | } |
| | 2202 | |
|
| 257 | 2203 | | if (filter.HasTrailer.HasValue || filter.HasThemeSong.HasValue || filter.HasThemeVideo.HasValue) |
| | 2204 | | { |
| 0 | 2205 | | if (filter.HasTrailer.GetValueOrDefault() || filter.HasThemeSong.GetValueOrDefault() || filter.HasThemeVideo |
| | 2206 | | { |
| 0 | 2207 | | baseQuery = baseQuery |
| 0 | 2208 | | .Where(e => e.ExtraIds != null); |
| | 2209 | | } |
| | 2210 | | else |
| | 2211 | | { |
| 0 | 2212 | | baseQuery = baseQuery |
| 0 | 2213 | | .Where(e => e.ExtraIds == null); |
| | 2214 | | } |
| | 2215 | | } |
| | 2216 | |
|
| 257 | 2217 | | return baseQuery; |
| | 2218 | | } |
| | 2219 | | } |