| | 1 | | #nullable disable |
| | 2 | |
|
| | 3 | | #pragma warning disable CS1591 |
| | 4 | |
|
| | 5 | | using System; |
| | 6 | | using System.Collections.Generic; |
| | 7 | | using System.Globalization; |
| | 8 | | using System.Linq; |
| | 9 | | using System.Text.Json.Serialization; |
| | 10 | | using System.Threading; |
| | 11 | | using System.Threading.Tasks; |
| | 12 | | using Jellyfin.Data; |
| | 13 | | using Jellyfin.Data.Enums; |
| | 14 | | using Jellyfin.Database.Implementations.Entities; |
| | 15 | | using Jellyfin.Database.Implementations.Enums; |
| | 16 | | using MediaBrowser.Controller.Dto; |
| | 17 | | using MediaBrowser.Controller.Providers; |
| | 18 | | using MediaBrowser.Model.Entities; |
| | 19 | | using MediaBrowser.Model.Querying; |
| | 20 | | using MetadataProvider = MediaBrowser.Model.Entities.MetadataProvider; |
| | 21 | |
|
| | 22 | | namespace MediaBrowser.Controller.Entities.TV |
| | 23 | | { |
| | 24 | | /// <summary> |
| | 25 | | /// Class Series. |
| | 26 | | /// </summary> |
| | 27 | | public class Series : Folder, IHasTrailers, IHasDisplayOrder, IHasLookupInfo<SeriesInfo>, IMetadataContainer, ISuppo |
| | 28 | | { |
| 105 | 29 | | public Series() |
| | 30 | | { |
| 105 | 31 | | AirDays = Array.Empty<DayOfWeek>(); |
| 105 | 32 | | } |
| | 33 | |
|
| | 34 | | public DayOfWeek[] AirDays { get; set; } |
| | 35 | |
|
| | 36 | | public string AirTime { get; set; } |
| | 37 | |
|
| | 38 | | [JsonIgnore] |
| 0 | 39 | | public override bool SupportsAddingToPlaylist => true; |
| | 40 | |
|
| | 41 | | [JsonIgnore] |
| 0 | 42 | | public override bool IsPreSorted => true; |
| | 43 | |
|
| | 44 | | [JsonIgnore] |
| 0 | 45 | | public override bool SupportsDateLastMediaAdded => true; |
| | 46 | |
|
| | 47 | | [JsonIgnore] |
| 0 | 48 | | public override bool SupportsInheritedParentImages => false; |
| | 49 | |
|
| | 50 | | [JsonIgnore] |
| 0 | 51 | | public override bool SupportsPeople => true; |
| | 52 | |
|
| | 53 | | /// <inheritdoc /> |
| | 54 | | [JsonIgnore] |
| 0 | 55 | | public IReadOnlyList<BaseItem> LocalTrailers => GetExtras() |
| 0 | 56 | | .Where(extra => extra.ExtraType == Model.Entities.ExtraType.Trailer) |
| 0 | 57 | | .ToArray(); |
| | 58 | |
|
| | 59 | | /// <summary> |
| | 60 | | /// Gets or sets the display order. |
| | 61 | | /// </summary> |
| | 62 | | /// <remarks> |
| | 63 | | /// Valid options are airdate, dvd or absolute. |
| | 64 | | /// </remarks> |
| | 65 | | public string DisplayOrder { get; set; } |
| | 66 | |
|
| | 67 | | /// <summary> |
| | 68 | | /// Gets or sets the status. |
| | 69 | | /// </summary> |
| | 70 | | /// <value>The status.</value> |
| | 71 | | public SeriesStatus? Status { get; set; } |
| | 72 | |
|
| | 73 | | public override double GetDefaultPrimaryImageAspectRatio() |
| | 74 | | { |
| 0 | 75 | | double value = 2; |
| 0 | 76 | | value /= 3; |
| | 77 | |
|
| 0 | 78 | | return value; |
| | 79 | | } |
| | 80 | |
|
| | 81 | | public override string CreatePresentationUniqueKey() |
| | 82 | | { |
| 0 | 83 | | if (LibraryManager.GetLibraryOptions(this).EnableAutomaticSeriesGrouping) |
| | 84 | | { |
| 0 | 85 | | var userdatakeys = GetUserDataKeys(); |
| | 86 | |
|
| 0 | 87 | | if (userdatakeys.Count > 1) |
| | 88 | | { |
| 0 | 89 | | return AddLibrariesToPresentationUniqueKey(userdatakeys[0]); |
| | 90 | | } |
| | 91 | | } |
| | 92 | |
|
| 0 | 93 | | return base.CreatePresentationUniqueKey(); |
| | 94 | | } |
| | 95 | |
|
| | 96 | | private string AddLibrariesToPresentationUniqueKey(string key) |
| | 97 | | { |
| 0 | 98 | | var lang = GetPreferredMetadataLanguage(); |
| 0 | 99 | | if (!string.IsNullOrEmpty(lang)) |
| | 100 | | { |
| 0 | 101 | | key += "-" + lang; |
| | 102 | | } |
| | 103 | |
|
| 0 | 104 | | var folders = LibraryManager.GetCollectionFolders(this) |
| 0 | 105 | | .Select(i => i.Id.ToString("N", CultureInfo.InvariantCulture)) |
| 0 | 106 | | .ToArray(); |
| | 107 | |
|
| 0 | 108 | | if (folders.Length == 0) |
| | 109 | | { |
| 0 | 110 | | return key; |
| | 111 | | } |
| | 112 | |
|
| 0 | 113 | | return key + "-" + string.Join('-', folders); |
| | 114 | | } |
| | 115 | |
|
| | 116 | | private static string GetUniqueSeriesKey(BaseItem series) |
| | 117 | | { |
| 0 | 118 | | return series.GetPresentationUniqueKey(); |
| | 119 | | } |
| | 120 | |
|
| | 121 | | public override int GetChildCount(User user) |
| | 122 | | { |
| 0 | 123 | | var seriesKey = GetUniqueSeriesKey(this); |
| | 124 | |
|
| 0 | 125 | | var result = LibraryManager.GetCount(new InternalItemsQuery(user) |
| 0 | 126 | | { |
| 0 | 127 | | AncestorWithPresentationUniqueKey = null, |
| 0 | 128 | | SeriesPresentationUniqueKey = seriesKey, |
| 0 | 129 | | IncludeItemTypes = new[] { BaseItemKind.Season }, |
| 0 | 130 | | IsVirtualItem = false, |
| 0 | 131 | | Limit = 0, |
| 0 | 132 | | DtoOptions = new DtoOptions(false) |
| 0 | 133 | | { |
| 0 | 134 | | EnableImages = false |
| 0 | 135 | | } |
| 0 | 136 | | }); |
| | 137 | |
|
| 0 | 138 | | return result; |
| | 139 | | } |
| | 140 | |
|
| | 141 | | public override int GetRecursiveChildCount(User user) |
| | 142 | | { |
| 0 | 143 | | var seriesKey = GetUniqueSeriesKey(this); |
| | 144 | |
|
| 0 | 145 | | var query = new InternalItemsQuery(user) |
| 0 | 146 | | { |
| 0 | 147 | | AncestorWithPresentationUniqueKey = null, |
| 0 | 148 | | SeriesPresentationUniqueKey = seriesKey, |
| 0 | 149 | | DtoOptions = new DtoOptions(false) |
| 0 | 150 | | { |
| 0 | 151 | | EnableImages = false |
| 0 | 152 | | } |
| 0 | 153 | | }; |
| | 154 | |
|
| 0 | 155 | | if (query.IncludeItemTypes.Length == 0) |
| | 156 | | { |
| 0 | 157 | | query.IncludeItemTypes = new[] { BaseItemKind.Episode }; |
| | 158 | | } |
| | 159 | |
|
| 0 | 160 | | query.IsVirtualItem = false; |
| 0 | 161 | | query.Limit = 0; |
| 0 | 162 | | var totalRecordCount = LibraryManager.GetCount(query); |
| | 163 | |
|
| 0 | 164 | | return totalRecordCount; |
| | 165 | | } |
| | 166 | |
|
| | 167 | | /// <summary> |
| | 168 | | /// Gets the user data key. |
| | 169 | | /// </summary> |
| | 170 | | /// <returns>System.String.</returns> |
| | 171 | | public override List<string> GetUserDataKeys() |
| | 172 | | { |
| 0 | 173 | | var list = base.GetUserDataKeys(); |
| | 174 | |
|
| 0 | 175 | | if (this.TryGetProviderId(MetadataProvider.Imdb, out var key)) |
| | 176 | | { |
| 0 | 177 | | list.Insert(0, key); |
| | 178 | | } |
| | 179 | |
|
| 0 | 180 | | if (this.TryGetProviderId(MetadataProvider.Tvdb, out key)) |
| | 181 | | { |
| 0 | 182 | | list.Insert(0, key); |
| | 183 | | } |
| | 184 | |
|
| 0 | 185 | | if (this.TryGetProviderId(MetadataProvider.Custom, out key)) |
| | 186 | | { |
| 0 | 187 | | list.Insert(0, key); |
| | 188 | | } |
| | 189 | |
|
| 0 | 190 | | return list; |
| | 191 | | } |
| | 192 | |
|
| | 193 | | public override IReadOnlyList<BaseItem> GetChildren(User user, bool includeLinkedChildren, InternalItemsQuery qu |
| | 194 | | { |
| 0 | 195 | | return GetSeasons(user, new DtoOptions(true)); |
| | 196 | | } |
| | 197 | |
|
| | 198 | | public IReadOnlyList<BaseItem> GetSeasons(User user, DtoOptions options) |
| | 199 | | { |
| 0 | 200 | | var query = new InternalItemsQuery(user) |
| 0 | 201 | | { |
| 0 | 202 | | DtoOptions = options |
| 0 | 203 | | }; |
| | 204 | |
|
| 0 | 205 | | SetSeasonQueryOptions(query, user); |
| | 206 | |
|
| 0 | 207 | | return LibraryManager.GetItemList(query); |
| | 208 | | } |
| | 209 | |
|
| | 210 | | private void SetSeasonQueryOptions(InternalItemsQuery query, User user) |
| | 211 | | { |
| 0 | 212 | | var seriesKey = GetUniqueSeriesKey(this); |
| | 213 | |
|
| 0 | 214 | | query.AncestorWithPresentationUniqueKey = null; |
| 0 | 215 | | query.SeriesPresentationUniqueKey = seriesKey; |
| 0 | 216 | | query.IncludeItemTypes = new[] { BaseItemKind.Season }; |
| 0 | 217 | | query.OrderBy = new[] { (ItemSortBy.SortName, SortOrder.Ascending) }; |
| | 218 | |
|
| 0 | 219 | | if (user is not null && !user.DisplayMissingEpisodes) |
| | 220 | | { |
| 0 | 221 | | query.IsMissing = false; |
| | 222 | | } |
| 0 | 223 | | } |
| | 224 | |
|
| | 225 | | protected override QueryResult<BaseItem> GetItemsInternal(InternalItemsQuery query) |
| | 226 | | { |
| 0 | 227 | | var user = query.User; |
| | 228 | |
|
| 0 | 229 | | if (SourceType == SourceType.Channel) |
| | 230 | | { |
| | 231 | | try |
| | 232 | | { |
| 0 | 233 | | query.Parent = this; |
| 0 | 234 | | query.ChannelIds = [ChannelId]; |
| 0 | 235 | | return ChannelManager.GetChannelItemsInternal(query, new Progress<double>(), CancellationToken.None) |
| | 236 | | } |
| 0 | 237 | | catch |
| | 238 | | { |
| | 239 | | // Already logged at lower levels |
| 0 | 240 | | return new QueryResult<BaseItem>(); |
| | 241 | | } |
| | 242 | | } |
| | 243 | |
|
| 0 | 244 | | if (query.Recursive) |
| | 245 | | { |
| 0 | 246 | | var seriesKey = GetUniqueSeriesKey(this); |
| | 247 | |
|
| 0 | 248 | | query.AncestorWithPresentationUniqueKey = null; |
| 0 | 249 | | query.SeriesPresentationUniqueKey = seriesKey; |
| 0 | 250 | | if (query.OrderBy.Count == 0) |
| | 251 | | { |
| 0 | 252 | | query.OrderBy = new[] { (ItemSortBy.SortName, SortOrder.Ascending) }; |
| | 253 | | } |
| | 254 | |
|
| 0 | 255 | | if (query.IncludeItemTypes.Length == 0) |
| | 256 | | { |
| 0 | 257 | | query.IncludeItemTypes = new[] { BaseItemKind.Episode, BaseItemKind.Season }; |
| | 258 | | } |
| | 259 | |
|
| 0 | 260 | | query.IsVirtualItem = false; |
| 0 | 261 | | return LibraryManager.GetItemsResult(query); |
| | 262 | | } |
| | 263 | |
|
| 0 | 264 | | SetSeasonQueryOptions(query, user); |
| | 265 | |
|
| 0 | 266 | | return LibraryManager.GetItemsResult(query); |
| 0 | 267 | | } |
| | 268 | |
|
| | 269 | | public IEnumerable<BaseItem> GetEpisodes(User user, DtoOptions options, bool shouldIncludeMissingEpisodes) |
| | 270 | | { |
| 0 | 271 | | var seriesKey = GetUniqueSeriesKey(this); |
| | 272 | |
|
| 0 | 273 | | var query = new InternalItemsQuery(user) |
| 0 | 274 | | { |
| 0 | 275 | | AncestorWithPresentationUniqueKey = null, |
| 0 | 276 | | SeriesPresentationUniqueKey = seriesKey, |
| 0 | 277 | | IncludeItemTypes = new[] { BaseItemKind.Episode, BaseItemKind.Season }, |
| 0 | 278 | | OrderBy = new[] { (ItemSortBy.SortName, SortOrder.Ascending) }, |
| 0 | 279 | | DtoOptions = options, |
| 0 | 280 | | }; |
| | 281 | |
|
| 0 | 282 | | if (!shouldIncludeMissingEpisodes) |
| | 283 | | { |
| 0 | 284 | | query.IsMissing = false; |
| | 285 | | } |
| | 286 | |
|
| 0 | 287 | | var allItems = LibraryManager.GetItemList(query); |
| | 288 | |
|
| 0 | 289 | | var allSeriesEpisodes = allItems.OfType<Episode>().ToList(); |
| | 290 | |
|
| 0 | 291 | | var allEpisodes = allItems.OfType<Season>() |
| 0 | 292 | | .SelectMany(i => i.GetEpisodes(this, user, allSeriesEpisodes, options, shouldIncludeMissingEpisodes)) |
| 0 | 293 | | .Reverse(); |
| | 294 | |
|
| | 295 | | // Specials could appear twice based on above - once in season 0, once in the aired season |
| | 296 | | // This depends on settings for that series |
| | 297 | | // When this happens, remove the duplicate from season 0 |
| | 298 | |
|
| 0 | 299 | | return allEpisodes.DistinctBy(i => i.Id).Reverse(); |
| | 300 | | } |
| | 301 | |
|
| | 302 | | public async Task RefreshAllMetadata(MetadataRefreshOptions refreshOptions, IProgress<double> progress, Cancella |
| | 303 | | { |
| | 304 | | // Refresh bottom up, seasons and episodes first, then the series |
| | 305 | | var items = GetRecursiveChildren(); |
| | 306 | |
|
| | 307 | | var totalItems = items.Count; |
| | 308 | | var numComplete = 0; |
| | 309 | |
|
| | 310 | | // Refresh seasons |
| | 311 | | foreach (var item in items) |
| | 312 | | { |
| | 313 | | if (item is not Season) |
| | 314 | | { |
| | 315 | | continue; |
| | 316 | | } |
| | 317 | |
|
| | 318 | | cancellationToken.ThrowIfCancellationRequested(); |
| | 319 | |
|
| | 320 | | if (refreshOptions.RefreshItem(item)) |
| | 321 | | { |
| | 322 | | await item.RefreshMetadata(refreshOptions, cancellationToken).ConfigureAwait(false); |
| | 323 | | } |
| | 324 | |
|
| | 325 | | numComplete++; |
| | 326 | | double percent = numComplete; |
| | 327 | | percent /= totalItems; |
| | 328 | | progress.Report(percent * 100); |
| | 329 | | } |
| | 330 | |
|
| | 331 | | // Refresh episodes and other children |
| | 332 | | foreach (var item in items) |
| | 333 | | { |
| | 334 | | if (item is Season) |
| | 335 | | { |
| | 336 | | continue; |
| | 337 | | } |
| | 338 | |
|
| | 339 | | cancellationToken.ThrowIfCancellationRequested(); |
| | 340 | |
|
| | 341 | | bool skipItem = item is Episode episode |
| | 342 | | && refreshOptions.MetadataRefreshMode != MetadataRefreshMode.FullRefresh |
| | 343 | | && !refreshOptions.ReplaceAllMetadata |
| | 344 | | && episode.IsMissingEpisode |
| | 345 | | && episode.LocationType == LocationType.Virtual |
| | 346 | | && episode.PremiereDate.HasValue |
| | 347 | | && (DateTime.UtcNow - episode.PremiereDate.Value).TotalDays > 30; |
| | 348 | |
|
| | 349 | | if (!skipItem) |
| | 350 | | { |
| | 351 | | if (refreshOptions.RefreshItem(item)) |
| | 352 | | { |
| | 353 | | await item.RefreshMetadata(refreshOptions, cancellationToken).ConfigureAwait(false); |
| | 354 | | } |
| | 355 | | } |
| | 356 | |
|
| | 357 | | numComplete++; |
| | 358 | | double percent = numComplete; |
| | 359 | | percent /= totalItems; |
| | 360 | | progress.Report(percent * 100); |
| | 361 | | } |
| | 362 | |
|
| | 363 | | refreshOptions = new MetadataRefreshOptions(refreshOptions); |
| | 364 | | await ProviderManager.RefreshSingleItem(this, refreshOptions, cancellationToken).ConfigureAwait(false); |
| | 365 | | } |
| | 366 | |
|
| | 367 | | public List<BaseItem> GetSeasonEpisodes(Season parentSeason, User user, DtoOptions options, bool shouldIncludeMi |
| | 368 | | { |
| 0 | 369 | | var queryFromSeries = ConfigurationManager.Configuration.DisplaySpecialsWithinSeasons; |
| | 370 | |
|
| | 371 | | // add optimization when this setting is not enabled |
| 0 | 372 | | var seriesKey = queryFromSeries ? |
| 0 | 373 | | GetUniqueSeriesKey(this) : |
| 0 | 374 | | GetUniqueSeriesKey(parentSeason); |
| | 375 | |
|
| 0 | 376 | | var query = new InternalItemsQuery(user) |
| 0 | 377 | | { |
| 0 | 378 | | AncestorWithPresentationUniqueKey = queryFromSeries ? null : seriesKey, |
| 0 | 379 | | SeriesPresentationUniqueKey = queryFromSeries ? seriesKey : null, |
| 0 | 380 | | IncludeItemTypes = new[] { BaseItemKind.Episode }, |
| 0 | 381 | | OrderBy = new[] { (ItemSortBy.SortName, SortOrder.Ascending) }, |
| 0 | 382 | | DtoOptions = options |
| 0 | 383 | | }; |
| | 384 | |
|
| 0 | 385 | | if (!shouldIncludeMissingEpisodes) |
| | 386 | | { |
| 0 | 387 | | query.IsMissing = false; |
| | 388 | | } |
| | 389 | |
|
| | 390 | | IReadOnlyList<BaseItem> allItems; |
| 0 | 391 | | if (SourceType == SourceType.Channel) |
| | 392 | | { |
| | 393 | | try |
| | 394 | | { |
| 0 | 395 | | query.Parent = parentSeason; |
| 0 | 396 | | query.ChannelIds = [ChannelId]; |
| 0 | 397 | | allItems = [.. ChannelManager.GetChannelItemsInternal(query, new Progress<double>(), CancellationTok |
| 0 | 398 | | } |
| 0 | 399 | | catch |
| | 400 | | { |
| | 401 | | // Already logged at lower levels |
| 0 | 402 | | return []; |
| | 403 | | } |
| | 404 | | } |
| | 405 | | else |
| | 406 | | { |
| 0 | 407 | | allItems = LibraryManager.GetItemList(query); |
| | 408 | | } |
| | 409 | |
|
| 0 | 410 | | return GetSeasonEpisodes(parentSeason, user, allItems, options, shouldIncludeMissingEpisodes); |
| 0 | 411 | | } |
| | 412 | |
|
| | 413 | | public List<BaseItem> GetSeasonEpisodes(Season parentSeason, User user, IEnumerable<BaseItem> allSeriesEpisodes, |
| | 414 | | { |
| 0 | 415 | | if (allSeriesEpisodes is null) |
| | 416 | | { |
| 0 | 417 | | return GetSeasonEpisodes(parentSeason, user, options, shouldIncludeMissingEpisodes); |
| | 418 | | } |
| | 419 | |
|
| 0 | 420 | | var episodes = FilterEpisodesBySeason(allSeriesEpisodes, parentSeason, ConfigurationManager.Configuration.Di |
| | 421 | |
|
| 0 | 422 | | var sortBy = (parentSeason.IndexNumber ?? -1) == 0 ? ItemSortBy.SortName : ItemSortBy.AiredEpisodeOrder; |
| | 423 | |
|
| 0 | 424 | | return LibraryManager.Sort(episodes, user, new[] { sortBy }, SortOrder.Ascending).ToList(); |
| | 425 | | } |
| | 426 | |
|
| | 427 | | /// <summary> |
| | 428 | | /// Filters the episodes by season. |
| | 429 | | /// </summary> |
| | 430 | | /// <param name="episodes">The episodes.</param> |
| | 431 | | /// <param name="parentSeason">The season.</param> |
| | 432 | | /// <param name="includeSpecials"><c>true</c> to include special, <c>false</c> to not.</param> |
| | 433 | | /// <returns>The set of episodes.</returns> |
| | 434 | | public static IEnumerable<BaseItem> FilterEpisodesBySeason(IEnumerable<BaseItem> episodes, Season parentSeason, |
| | 435 | | { |
| 0 | 436 | | var seasonNumber = parentSeason.IndexNumber; |
| 0 | 437 | | var seasonPresentationKey = GetUniqueSeriesKey(parentSeason); |
| | 438 | |
|
| 0 | 439 | | var supportSpecialsInSeason = includeSpecials && seasonNumber.HasValue && seasonNumber.Value != 0; |
| | 440 | |
|
| 0 | 441 | | return episodes.Where(episode => |
| 0 | 442 | | { |
| 0 | 443 | | var episodeItem = (Episode)episode; |
| 0 | 444 | |
|
| 0 | 445 | | var currentSeasonNumber = supportSpecialsInSeason ? episodeItem.AiredSeasonNumber : episode.ParentIndexN |
| 0 | 446 | | if (currentSeasonNumber.HasValue && seasonNumber.HasValue && currentSeasonNumber.Value == seasonNumber.V |
| 0 | 447 | | { |
| 0 | 448 | | return true; |
| 0 | 449 | | } |
| 0 | 450 | |
|
| 0 | 451 | | if (!currentSeasonNumber.HasValue && !seasonNumber.HasValue && parentSeason.LocationType == LocationType |
| 0 | 452 | | { |
| 0 | 453 | | return true; |
| 0 | 454 | | } |
| 0 | 455 | |
|
| 0 | 456 | | var season = episodeItem.Season; |
| 0 | 457 | | return season is not null && string.Equals(GetUniqueSeriesKey(season), seasonPresentationKey, StringComp |
| 0 | 458 | | }); |
| | 459 | | } |
| | 460 | |
|
| | 461 | | /// <summary> |
| | 462 | | /// Filters the episodes by season. |
| | 463 | | /// </summary> |
| | 464 | | /// <param name="episodes">The episodes.</param> |
| | 465 | | /// <param name="seasonNumber">The season.</param> |
| | 466 | | /// <param name="includeSpecials"><c>true</c> to include special, <c>false</c> to not.</param> |
| | 467 | | /// <returns>The set of episodes.</returns> |
| | 468 | | public static IEnumerable<Episode> FilterEpisodesBySeason(IEnumerable<Episode> episodes, int seasonNumber, bool |
| | 469 | | { |
| 0 | 470 | | if (!includeSpecials || seasonNumber < 1) |
| | 471 | | { |
| 0 | 472 | | return episodes.Where(i => (i.ParentIndexNumber ?? -1) == seasonNumber); |
| | 473 | | } |
| | 474 | |
|
| 0 | 475 | | return episodes.Where(i => |
| 0 | 476 | | { |
| 0 | 477 | | var episode = i; |
| 0 | 478 | |
|
| 0 | 479 | | if (episode is not null) |
| 0 | 480 | | { |
| 0 | 481 | | var currentSeasonNumber = episode.AiredSeasonNumber; |
| 0 | 482 | |
|
| 0 | 483 | | return currentSeasonNumber.HasValue && currentSeasonNumber.Value == seasonNumber; |
| 0 | 484 | | } |
| 0 | 485 | |
|
| 0 | 486 | | return false; |
| 0 | 487 | | }); |
| | 488 | | } |
| | 489 | |
|
| | 490 | | protected override bool GetBlockUnratedValue(User user) |
| | 491 | | { |
| 0 | 492 | | return user.GetPreferenceValues<UnratedItem>(PreferenceKind.BlockUnratedItems).Contains(UnratedItem.Series); |
| | 493 | | } |
| | 494 | |
|
| | 495 | | public override UnratedItem GetBlockUnratedType() |
| | 496 | | { |
| 0 | 497 | | return UnratedItem.Series; |
| | 498 | | } |
| | 499 | |
|
| | 500 | | public SeriesInfo GetLookupInfo() |
| | 501 | | { |
| 0 | 502 | | var info = GetItemLookupInfo<SeriesInfo>(); |
| | 503 | |
|
| 0 | 504 | | return info; |
| | 505 | | } |
| | 506 | |
|
| | 507 | | public override bool BeforeMetadataRefresh(bool replaceAllMetadata) |
| | 508 | | { |
| 0 | 509 | | var hasChanges = base.BeforeMetadataRefresh(replaceAllMetadata); |
| | 510 | |
|
| 0 | 511 | | if (!ProductionYear.HasValue) |
| | 512 | | { |
| 0 | 513 | | var info = LibraryManager.ParseName(Name); |
| | 514 | |
|
| 0 | 515 | | var yearInName = info.Year; |
| | 516 | |
|
| 0 | 517 | | if (yearInName.HasValue) |
| | 518 | | { |
| 0 | 519 | | ProductionYear = yearInName; |
| 0 | 520 | | hasChanges = true; |
| | 521 | | } |
| | 522 | | } |
| | 523 | |
|
| 0 | 524 | | return hasChanges; |
| | 525 | | } |
| | 526 | | } |
| | 527 | | } |