Bläddra i källkod

Include played and unplayed results in the same next up request

Bill Thornton 3 år sedan
förälder
incheckning
055c63bdee

+ 9 - 1
Emby.Server.Implementations/TV/TVSeriesManager.cs

@@ -140,7 +140,15 @@ namespace Emby.Server.Implementations.TV
             var currentUser = user;
             var currentUser = user;
 
 
             var allNextUp = seriesKeys
             var allNextUp = seriesKeys
-                .Select(i => GetNextUp(i, currentUser, dtoOptions, request.Rewatching));
+                .Select(i => GetNextUp(i, currentUser, dtoOptions, false));
+
+            if (request.EnableRewatching)
+            {
+                allNextUp = allNextUp.Concat(
+                    seriesKeys.Select(i => GetNextUp(i, currentUser, dtoOptions, true))
+                )
+                .OrderByDescending(i => i.Item1);
+            }
 
 
             // If viewing all next up for all series, remove first episodes
             // If viewing all next up for all series, remove first episodes
             // But if that returns empty, keep those first episodes (avoid completely empty view)
             // But if that returns empty, keep those first episodes (avoid completely empty view)

+ 3 - 3
Jellyfin.Api/Controllers/TvShowsController.cs

@@ -68,7 +68,7 @@ namespace Jellyfin.Api.Controllers
         /// <param name="nextUpDateCutoff">Optional. Starting date of shows to show in Next Up section.</param>
         /// <param name="nextUpDateCutoff">Optional. Starting date of shows to show in Next Up section.</param>
         /// <param name="enableTotalRecordCount">Whether to enable the total records count. Defaults to true.</param>
         /// <param name="enableTotalRecordCount">Whether to enable the total records count. Defaults to true.</param>
         /// <param name="disableFirstEpisode">Whether to disable sending the first episode in a series as next up.</param>
         /// <param name="disableFirstEpisode">Whether to disable sending the first episode in a series as next up.</param>
-        /// <param name="rewatching">Whether to get a rewatching next up instead of standard next up.</param>
+        /// <param name="enableRewatching">Whether to include watched episode in next up results.</param>
         /// <returns>A <see cref="QueryResult{BaseItemDto}"/> with the next up episodes.</returns>
         /// <returns>A <see cref="QueryResult{BaseItemDto}"/> with the next up episodes.</returns>
         [HttpGet("NextUp")]
         [HttpGet("NextUp")]
         [ProducesResponseType(StatusCodes.Status200OK)]
         [ProducesResponseType(StatusCodes.Status200OK)]
@@ -86,7 +86,7 @@ namespace Jellyfin.Api.Controllers
             [FromQuery] DateTime? nextUpDateCutoff,
             [FromQuery] DateTime? nextUpDateCutoff,
             [FromQuery] bool enableTotalRecordCount = true,
             [FromQuery] bool enableTotalRecordCount = true,
             [FromQuery] bool disableFirstEpisode = false,
             [FromQuery] bool disableFirstEpisode = false,
-            [FromQuery] bool rewatching = false)
+            [FromQuery] bool enableRewatching = false)
         {
         {
             var options = new DtoOptions { Fields = fields }
             var options = new DtoOptions { Fields = fields }
                 .AddClientFields(Request)
                 .AddClientFields(Request)
@@ -103,7 +103,7 @@ namespace Jellyfin.Api.Controllers
                     EnableTotalRecordCount = enableTotalRecordCount,
                     EnableTotalRecordCount = enableTotalRecordCount,
                     DisableFirstEpisode = disableFirstEpisode,
                     DisableFirstEpisode = disableFirstEpisode,
                     NextUpDateCutoff = nextUpDateCutoff ?? DateTime.MinValue,
                     NextUpDateCutoff = nextUpDateCutoff ?? DateTime.MinValue,
-                    Rewatching = rewatching
+                    EnableRewatching = enableRewatching
                 },
                 },
                 options);
                 options);
 
 

+ 2 - 2
MediaBrowser.Model/Querying/NextUpQuery.cs

@@ -14,7 +14,7 @@ namespace MediaBrowser.Model.Querying
             EnableTotalRecordCount = true;
             EnableTotalRecordCount = true;
             DisableFirstEpisode = false;
             DisableFirstEpisode = false;
             NextUpDateCutoff = DateTime.MinValue;
             NextUpDateCutoff = DateTime.MinValue;
-            Rewatching = false;
+            EnableRewatching = false;
         }
         }
 
 
         /// <summary>
         /// <summary>
@@ -86,6 +86,6 @@ namespace MediaBrowser.Model.Querying
         /// <summary>
         /// <summary>
         /// Gets or sets a value indicating whether getting rewatching next up list.
         /// Gets or sets a value indicating whether getting rewatching next up list.
         /// </summary>
         /// </summary>
-        public bool Rewatching { get; set; }
+        public bool EnableRewatching { get; set; }
     }
     }
 }
 }