Quellcode durchsuchen

improve scan progress and fix a few bugs

dkanada vor 5 Jahren
Ursprung
Commit
afe9ed977b

+ 10 - 12
Emby.Server.Implementations/Library/LibraryManager.cs

@@ -710,10 +710,10 @@ namespace Emby.Server.Implementations.Library
         }
         }
 
 
         /// <summary>
         /// <summary>
-        /// Creates the root media folder
+        /// Creates the root media folder.
         /// </summary>
         /// </summary>
         /// <returns>AggregateFolder.</returns>
         /// <returns>AggregateFolder.</returns>
-        /// <exception cref="InvalidOperationException">Cannot create the root folder until plugins have loaded</exception>
+        /// <exception cref="InvalidOperationException">Cannot create the root folder until plugins have loaded.</exception>
         public AggregateFolder CreateRootFolder()
         public AggregateFolder CreateRootFolder()
         {
         {
             var rootFolderPath = ConfigurationManager.ApplicationPaths.RootFolderPath;
             var rootFolderPath = ConfigurationManager.ApplicationPaths.RootFolderPath;
@@ -824,7 +824,6 @@ namespace Emby.Server.Implementations.Library
         {
         {
             // If this returns multiple items it could be tricky figuring out which one is correct.
             // If this returns multiple items it could be tricky figuring out which one is correct.
             // In most cases, the newest one will be and the others obsolete but not yet cleaned up
             // In most cases, the newest one will be and the others obsolete but not yet cleaned up
-
             if (string.IsNullOrEmpty(path))
             if (string.IsNullOrEmpty(path))
             {
             {
                 throw new ArgumentNullException(nameof(path));
                 throw new ArgumentNullException(nameof(path));
@@ -844,7 +843,7 @@ namespace Emby.Server.Implementations.Library
         }
         }
 
 
         /// <summary>
         /// <summary>
-        /// Gets a Person
+        /// Gets the person.
         /// </summary>
         /// </summary>
         /// <param name="name">The name.</param>
         /// <param name="name">The name.</param>
         /// <returns>Task{Person}.</returns>
         /// <returns>Task{Person}.</returns>
@@ -854,7 +853,7 @@ namespace Emby.Server.Implementations.Library
         }
         }
 
 
         /// <summary>
         /// <summary>
-        /// Gets a Studio
+        /// Gets the studio.
         /// </summary>
         /// </summary>
         /// <param name="name">The name.</param>
         /// <param name="name">The name.</param>
         /// <returns>Task{Studio}.</returns>
         /// <returns>Task{Studio}.</returns>
@@ -879,7 +878,7 @@ namespace Emby.Server.Implementations.Library
         }
         }
 
 
         /// <summary>
         /// <summary>
-        /// Gets a Genre
+        /// Gets the genre.
         /// </summary>
         /// </summary>
         /// <param name="name">The name.</param>
         /// <param name="name">The name.</param>
         /// <returns>Task{Genre}.</returns>
         /// <returns>Task{Genre}.</returns>
@@ -889,7 +888,7 @@ namespace Emby.Server.Implementations.Library
         }
         }
 
 
         /// <summary>
         /// <summary>
-        /// Gets the genre.
+        /// Gets the music genre.
         /// </summary>
         /// </summary>
         /// <param name="name">The name.</param>
         /// <param name="name">The name.</param>
         /// <returns>Task{MusicGenre}.</returns>
         /// <returns>Task{MusicGenre}.</returns>
@@ -899,7 +898,7 @@ namespace Emby.Server.Implementations.Library
         }
         }
 
 
         /// <summary>
         /// <summary>
-        /// Gets a Year
+        /// Gets the year.
         /// </summary>
         /// </summary>
         /// <param name="value">The value.</param>
         /// <param name="value">The value.</param>
         /// <returns>Task{Year}.</returns>
         /// <returns>Task{Year}.</returns>
@@ -1076,9 +1075,9 @@ namespace Emby.Server.Implementations.Library
 
 
             var innerProgress = new ActionableProgress<double>();
             var innerProgress = new ActionableProgress<double>();
 
 
-            innerProgress.RegisterAction(pct => progress.Report(pct * .96));
+            innerProgress.RegisterAction(pct => progress.Report(pct * pct * 0.96));
 
 
-            // Now validate the entire media library
+            // validate the entire media library
             await RootFolder.ValidateChildren(innerProgress, cancellationToken, new MetadataRefreshOptions(new DirectoryService(_fileSystem)), recursive: true).ConfigureAwait(false);
             await RootFolder.ValidateChildren(innerProgress, cancellationToken, new MetadataRefreshOptions(new DirectoryService(_fileSystem)), recursive: true).ConfigureAwait(false);
 
 
             progress.Report(96);
             progress.Report(96);
@@ -1087,7 +1086,6 @@ namespace Emby.Server.Implementations.Library
 
 
             innerProgress.RegisterAction(pct => progress.Report(96 + (pct * .04)));
             innerProgress.RegisterAction(pct => progress.Report(96 + (pct * .04)));
 
 
-            // Run post-scan tasks
             await RunPostScanTasks(innerProgress, cancellationToken).ConfigureAwait(false);
             await RunPostScanTasks(innerProgress, cancellationToken).ConfigureAwait(false);
 
 
             progress.Report(100);
             progress.Report(100);
@@ -1138,7 +1136,7 @@ namespace Emby.Server.Implementations.Library
                 }
                 }
                 catch (Exception ex)
                 catch (Exception ex)
                 {
                 {
-                    _logger.LogError(ex, "Error running postscan task");
+                    _logger.LogError(ex, "Error running post-scan task");
                 }
                 }
 
 
                 numComplete++;
                 numComplete++;

+ 3 - 2
Emby.Server.Implementations/Library/UserManager.cs

@@ -291,10 +291,11 @@ namespace Emby.Server.Implementations.Library
                     && authenticationProvider != null
                     && authenticationProvider != null
                     && !(authenticationProvider is DefaultAuthenticationProvider))
                     && !(authenticationProvider is DefaultAuthenticationProvider))
                 {
                 {
-                    // We should trust the user that the authprovider says, not what was typed
+                    // trust the username returned by the authentication provider
                     username = updatedUsername;
                     username = updatedUsername;
 
 
-                    // Search the database for the user again; the authprovider might have created it
+                    // search the database for the user again
+                    // the authentication provider might have created it
                     user = Users
                     user = Users
                         .FirstOrDefault(i => string.Equals(username, i.Name, StringComparison.OrdinalIgnoreCase));
                         .FirstOrDefault(i => string.Equals(username, i.Name, StringComparison.OrdinalIgnoreCase));
 
 

+ 11 - 7
Emby.Server.Implementations/Session/SessionManager.cs

@@ -30,17 +30,17 @@ using Microsoft.Extensions.Logging;
 namespace Emby.Server.Implementations.Session
 namespace Emby.Server.Implementations.Session
 {
 {
     /// <summary>
     /// <summary>
-    /// Class SessionManager
+    /// Class SessionManager.
     /// </summary>
     /// </summary>
     public class SessionManager : ISessionManager, IDisposable
     public class SessionManager : ISessionManager, IDisposable
     {
     {
         /// <summary>
         /// <summary>
-        /// The _user data repository
+        /// The user data repository.
         /// </summary>
         /// </summary>
         private readonly IUserDataManager _userDataManager;
         private readonly IUserDataManager _userDataManager;
 
 
         /// <summary>
         /// <summary>
-        /// The _logger
+        /// The logger.
         /// </summary>
         /// </summary>
         private readonly ILogger _logger;
         private readonly ILogger _logger;
 
 
@@ -57,7 +57,7 @@ namespace Emby.Server.Implementations.Session
         private readonly IDeviceManager _deviceManager;
         private readonly IDeviceManager _deviceManager;
 
 
         /// <summary>
         /// <summary>
-        /// The _active connections
+        /// The active connections.
         /// </summary>
         /// </summary>
         private readonly ConcurrentDictionary<string, SessionInfo> _activeConnections =
         private readonly ConcurrentDictionary<string, SessionInfo> _activeConnections =
             new ConcurrentDictionary<string, SessionInfo>(StringComparer.OrdinalIgnoreCase);
             new ConcurrentDictionary<string, SessionInfo>(StringComparer.OrdinalIgnoreCase);
@@ -70,18 +70,23 @@ namespace Emby.Server.Implementations.Session
         /// Occurs when [playback start].
         /// Occurs when [playback start].
         /// </summary>
         /// </summary>
         public event EventHandler<PlaybackProgressEventArgs> PlaybackStart;
         public event EventHandler<PlaybackProgressEventArgs> PlaybackStart;
+
         /// <summary>
         /// <summary>
         /// Occurs when [playback progress].
         /// Occurs when [playback progress].
         /// </summary>
         /// </summary>
         public event EventHandler<PlaybackProgressEventArgs> PlaybackProgress;
         public event EventHandler<PlaybackProgressEventArgs> PlaybackProgress;
+
         /// <summary>
         /// <summary>
         /// Occurs when [playback stopped].
         /// Occurs when [playback stopped].
         /// </summary>
         /// </summary>
         public event EventHandler<PlaybackStopEventArgs> PlaybackStopped;
         public event EventHandler<PlaybackStopEventArgs> PlaybackStopped;
 
 
         public event EventHandler<SessionEventArgs> SessionStarted;
         public event EventHandler<SessionEventArgs> SessionStarted;
+
         public event EventHandler<SessionEventArgs> CapabilitiesChanged;
         public event EventHandler<SessionEventArgs> CapabilitiesChanged;
+
         public event EventHandler<SessionEventArgs> SessionEnded;
         public event EventHandler<SessionEventArgs> SessionEnded;
+
         public event EventHandler<SessionEventArgs> SessionActivity;
         public event EventHandler<SessionEventArgs> SessionActivity;
 
 
         public SessionManager(
         public SessionManager(
@@ -924,7 +929,6 @@ namespace Emby.Server.Implementations.Session
                     ClientName = session.Client,
                     ClientName = session.Client,
                     DeviceId = session.DeviceId,
                     DeviceId = session.DeviceId,
                     Session = session
                     Session = session
-
                 },
                 },
                 _logger);
                 _logger);
         }
         }
@@ -1610,7 +1614,7 @@ namespace Emby.Server.Implementations.Session
         private DtoOptions _itemInfoDtoOptions;
         private DtoOptions _itemInfoDtoOptions;
 
 
         /// <summary>
         /// <summary>
-        /// Converts a BaseItem to a BaseItemInfo
+        /// Converts a BaseItem to a BaseItemInfo.
         /// </summary>
         /// </summary>
         private BaseItemDto GetItemInfo(BaseItem item, MediaSourceInfo mediaSource)
         private BaseItemDto GetItemInfo(BaseItem item, MediaSourceInfo mediaSource)
         {
         {
@@ -1680,7 +1684,7 @@ namespace Emby.Server.Implementations.Session
             }
             }
             catch (Exception ex)
             catch (Exception ex)
             {
             {
-                _logger.LogError("Error getting {0} image info", ex, type);
+                _logger.LogError("Error getting image information for {0}", ex, type);
                 return null;
                 return null;
             }
             }
         }
         }

+ 2 - 2
MediaBrowser.Api/Session/SessionsService.cs

@@ -18,7 +18,7 @@ using Microsoft.Extensions.Logging;
 namespace MediaBrowser.Api.Session
 namespace MediaBrowser.Api.Session
 {
 {
     /// <summary>
     /// <summary>
-    /// Class GetSessions
+    /// Class GetSessions.
     /// </summary>
     /// </summary>
     [Route("/Sessions", "GET", Summary = "Gets a list of sessions")]
     [Route("/Sessions", "GET", Summary = "Gets a list of sessions")]
     [Authenticated]
     [Authenticated]
@@ -34,7 +34,7 @@ namespace MediaBrowser.Api.Session
     }
     }
 
 
     /// <summary>
     /// <summary>
-    /// Class DisplayContent
+    /// Class DisplayContent.
     /// </summary>
     /// </summary>
     [Route("/Sessions/{Id}/Viewing", "POST", Summary = "Instructs a session to browse to an item or view")]
     [Route("/Sessions/{Id}/Viewing", "POST", Summary = "Instructs a session to browse to an item or view")]
     [Authenticated]
     [Authenticated]

+ 2 - 2
MediaBrowser.Api/UserService.cs

@@ -281,7 +281,6 @@ namespace MediaBrowser.Api
             {
             {
                 IsHidden = false,
                 IsHidden = false,
                 IsDisabled = false
                 IsDisabled = false
-
             }, true, true);
             }, true, true);
         }
         }
 
 
@@ -395,10 +394,11 @@ namespace MediaBrowser.Api
                 throw new MethodNotAllowedException("Hashed-only passwords are not valid for this API.");
                 throw new MethodNotAllowedException("Hashed-only passwords are not valid for this API.");
             }
             }
 
 
+            // password should always be null
             return Post(new AuthenticateUserByName
             return Post(new AuthenticateUserByName
             {
             {
                 Username = user.Name,
                 Username = user.Name,
-                Password = null, // This should always be null
+                Password = null,
                 Pw = request.Pw
                 Pw = request.Pw
             });
             });
         }
         }

+ 2 - 8
MediaBrowser.Controller/Session/SessionInfo.cs

@@ -126,12 +126,6 @@ namespace MediaBrowser.Controller.Session
         [JsonIgnore]
         [JsonIgnore]
         public ISessionController[] SessionControllers { get; set; }
         public ISessionController[] SessionControllers { get; set; }
 
 
-        /// <summary>
-        /// Gets or sets the application icon URL.
-        /// </summary>
-        /// <value>The application icon URL.</value>
-        public string AppIconUrl { get; set; }
-
         /// <summary>
         /// <summary>
         /// Gets or sets the supported commands.
         /// Gets or sets the supported commands.
         /// </summary>
         /// </summary>
@@ -259,7 +253,7 @@ namespace MediaBrowser.Controller.Session
 
 
             foreach (var additionalUser in AdditionalUsers)
             foreach (var additionalUser in AdditionalUsers)
             {
             {
-                if (userId.Equals(userId))
+                if (additionalUser.UserId.Equals(userId))
                 {
                 {
                     return true;
                     return true;
                 }
                 }
@@ -321,7 +315,7 @@ namespace MediaBrowser.Controller.Session
 
 
             var newPositionTicks = positionTicks + ProgressIncrement;
             var newPositionTicks = positionTicks + ProgressIncrement;
             var item = progressInfo.Item;
             var item = progressInfo.Item;
-            long? runtimeTicks = item == null ? null : item.RunTimeTicks;
+            long? runtimeTicks = item?.RunTimeTicks;
 
 
             // Don't report beyond the runtime
             // Don't report beyond the runtime
             if (runtimeTicks.HasValue && newPositionTicks >= runtimeTicks.Value)
             if (runtimeTicks.HasValue && newPositionTicks >= runtimeTicks.Value)