浏览代码

Fix warnings in Emby.Naming

crobibero 5 年之前
父节点
当前提交
cb68fbeb0a

+ 7 - 7
Emby.Naming/AudioBook/AudioBookFileInfo.cs

@@ -3,41 +3,41 @@ using System;
 namespace Emby.Naming.AudioBook
 namespace Emby.Naming.AudioBook
 {
 {
     /// <summary>
     /// <summary>
-    /// Represents a single video file.
+    ///     Represents a single video file.
     /// </summary>
     /// </summary>
     public class AudioBookFileInfo : IComparable<AudioBookFileInfo>
     public class AudioBookFileInfo : IComparable<AudioBookFileInfo>
     {
     {
         /// <summary>
         /// <summary>
-        /// Gets or sets the path.
+        ///     Gets or sets the path.
         /// </summary>
         /// </summary>
         /// <value>The path.</value>
         /// <value>The path.</value>
         public string Path { get; set; }
         public string Path { get; set; }
 
 
         /// <summary>
         /// <summary>
-        /// Gets or sets the container.
+        ///     Gets or sets the container.
         /// </summary>
         /// </summary>
         /// <value>The container.</value>
         /// <value>The container.</value>
         public string Container { get; set; }
         public string Container { get; set; }
 
 
         /// <summary>
         /// <summary>
-        /// Gets or sets the part number.
+        ///     Gets or sets the part number.
         /// </summary>
         /// </summary>
         /// <value>The part number.</value>
         /// <value>The part number.</value>
         public int? PartNumber { get; set; }
         public int? PartNumber { get; set; }
 
 
         /// <summary>
         /// <summary>
-        /// Gets or sets the chapter number.
+        ///     Gets or sets the chapter number.
         /// </summary>
         /// </summary>
         /// <value>The chapter number.</value>
         /// <value>The chapter number.</value>
         public int? ChapterNumber { get; set; }
         public int? ChapterNumber { get; set; }
 
 
         /// <summary>
         /// <summary>
-        /// Gets or sets a value indicating whether this instance is a directory.
+        ///     Gets or sets a value indicating whether this instance is a directory.
         /// </summary>
         /// </summary>
         /// <value>The type.</value>
         /// <value>The type.</value>
         public bool IsDirectory { get; set; }
         public bool IsDirectory { get; set; }
 
 
-        /// <inheritdoc/>
+        /// <inheritdoc />
         public int CompareTo(AudioBookFileInfo other)
         public int CompareTo(AudioBookFileInfo other)
         {
         {
             if (ReferenceEquals(this, other))
             if (ReferenceEquals(this, other))

+ 7 - 7
Emby.Naming/AudioBook/AudioBookInfo.cs

@@ -3,12 +3,12 @@ using System.Collections.Generic;
 namespace Emby.Naming.AudioBook
 namespace Emby.Naming.AudioBook
 {
 {
     /// <summary>
     /// <summary>
-    /// Represents a complete video, including all parts and subtitles.
+    ///     Represents a complete video, including all parts and subtitles.
     /// </summary>
     /// </summary>
     public class AudioBookInfo
     public class AudioBookInfo
     {
     {
         /// <summary>
         /// <summary>
-        /// Initializes a new instance of the <see cref="AudioBookInfo" /> class.
+        ///     Initializes a new instance of the <see cref="AudioBookInfo" /> class.
         /// </summary>
         /// </summary>
         public AudioBookInfo()
         public AudioBookInfo()
         {
         {
@@ -18,30 +18,30 @@ namespace Emby.Naming.AudioBook
         }
         }
 
 
         /// <summary>
         /// <summary>
-        /// Gets or sets the name.
+        ///     Gets or sets the name.
         /// </summary>
         /// </summary>
         /// <value>The name.</value>
         /// <value>The name.</value>
         public string Name { get; set; }
         public string Name { get; set; }
 
 
         /// <summary>
         /// <summary>
-        /// Gets or sets the year.
+        ///     Gets or sets the year.
         /// </summary>
         /// </summary>
         public int? Year { get; set; }
         public int? Year { get; set; }
 
 
         /// <summary>
         /// <summary>
-        /// Gets or sets the files.
+        ///     Gets or sets the files.
         /// </summary>
         /// </summary>
         /// <value>The files.</value>
         /// <value>The files.</value>
         public List<AudioBookFileInfo> Files { get; set; }
         public List<AudioBookFileInfo> Files { get; set; }
 
 
         /// <summary>
         /// <summary>
-        /// Gets or sets the extras.
+        ///     Gets or sets the extras.
         /// </summary>
         /// </summary>
         /// <value>The extras.</value>
         /// <value>The extras.</value>
         public List<AudioBookFileInfo> Extras { get; set; }
         public List<AudioBookFileInfo> Extras { get; set; }
 
 
         /// <summary>
         /// <summary>
-        /// Gets or sets the alternate versions.
+        ///     Gets or sets the alternate versions.
         /// </summary>
         /// </summary>
         /// <value>The alternate versions.</value>
         /// <value>The alternate versions.</value>
         public List<AudioBookFileInfo> AlternateVersions { get; set; }
         public List<AudioBookFileInfo> AlternateVersions { get; set; }

+ 2 - 10
Emby.Naming/AudioBook/AudioBookListResolver.cs

@@ -29,11 +29,7 @@ namespace Emby.Naming.AudioBook
             // Filter out all extras, otherwise they could cause stacks to not be resolved
             // Filter out all extras, otherwise they could cause stacks to not be resolved
             // See the unit test TestStackedWithTrailer
             // See the unit test TestStackedWithTrailer
             var metadata = audiobookFileInfos
             var metadata = audiobookFileInfos
-                .Select(i => new FileSystemMetadata
-                {
-                    FullName = i.Path,
-                    IsDirectory = i.IsDirectory
-                });
+                .Select(i => new FileSystemMetadata { FullName = i.Path, IsDirectory = i.IsDirectory });
 
 
             var stackResult = new StackResolver(_options)
             var stackResult = new StackResolver(_options)
                 .ResolveAudioBooks(metadata);
                 .ResolveAudioBooks(metadata);
@@ -42,11 +38,7 @@ namespace Emby.Naming.AudioBook
             {
             {
                 var stackFiles = stack.Files.Select(i => audioBookResolver.Resolve(i, stack.IsDirectoryStack)).ToList();
                 var stackFiles = stack.Files.Select(i => audioBookResolver.Resolve(i, stack.IsDirectoryStack)).ToList();
                 stackFiles.Sort();
                 stackFiles.Sort();
-                var info = new AudioBookInfo
-                {
-                    Files = stackFiles,
-                    Name = stack.Name
-                };
+                var info = new AudioBookInfo { Files = stackFiles, Name = stack.Name };
 
 
                 yield return info;
                 yield return info;
             }
             }

+ 3 - 3
Emby.Naming/Common/MediaType.cs

@@ -5,17 +5,17 @@ namespace Emby.Naming.Common
     public enum MediaType
     public enum MediaType
     {
     {
         /// <summary>
         /// <summary>
-        /// The audio
+        ///     The audio
         /// </summary>
         /// </summary>
         Audio = 0,
         Audio = 0,
 
 
         /// <summary>
         /// <summary>
-        /// The photo
+        ///     The photo
         /// </summary>
         /// </summary>
         Photo = 1,
         Photo = 1,
 
 
         /// <summary>
         /// <summary>
-        /// The video
+        ///     The video
         /// </summary>
         /// </summary>
         Video = 2
         Video = 2
     }
     }

+ 4 - 4
Emby.Naming/Subtitles/SubtitleInfo.cs

@@ -5,25 +5,25 @@ namespace Emby.Naming.Subtitles
     public class SubtitleInfo
     public class SubtitleInfo
     {
     {
         /// <summary>
         /// <summary>
-        /// Gets or sets the path.
+        ///     Gets or sets the path.
         /// </summary>
         /// </summary>
         /// <value>The path.</value>
         /// <value>The path.</value>
         public string Path { get; set; }
         public string Path { get; set; }
 
 
         /// <summary>
         /// <summary>
-        /// Gets or sets the language.
+        ///     Gets or sets the language.
         /// </summary>
         /// </summary>
         /// <value>The language.</value>
         /// <value>The language.</value>
         public string Language { get; set; }
         public string Language { get; set; }
 
 
         /// <summary>
         /// <summary>
-        /// Gets or sets a value indicating whether this instance is default.
+        ///     Gets or sets a value indicating whether this instance is default.
         /// </summary>
         /// </summary>
         /// <value><c>true</c> if this instance is default; otherwise, <c>false</c>.</value>
         /// <value><c>true</c> if this instance is default; otherwise, <c>false</c>.</value>
         public bool IsDefault { get; set; }
         public bool IsDefault { get; set; }
 
 
         /// <summary>
         /// <summary>
-        /// Gets or sets a value indicating whether this instance is forced.
+        ///     Gets or sets a value indicating whether this instance is forced.
         /// </summary>
         /// </summary>
         /// <value><c>true</c> if this instance is forced; otherwise, <c>false</c>.</value>
         /// <value><c>true</c> if this instance is forced; otherwise, <c>false</c>.</value>
         public bool IsForced { get; set; }
         public bool IsForced { get; set; }

+ 3 - 1
Emby.Naming/Subtitles/SubtitleParser.cs

@@ -37,7 +37,9 @@ namespace Emby.Naming.Subtitles
                 IsForced = _options.SubtitleForcedFlags.Any(i => flags.Contains(i, StringComparer.OrdinalIgnoreCase))
                 IsForced = _options.SubtitleForcedFlags.Any(i => flags.Contains(i, StringComparer.OrdinalIgnoreCase))
             };
             };
 
 
-            var parts = flags.Where(i => !_options.SubtitleDefaultFlags.Contains(i, StringComparer.OrdinalIgnoreCase) && !_options.SubtitleForcedFlags.Contains(i, StringComparer.OrdinalIgnoreCase))
+            var parts = flags.Where(i =>
+                    !_options.SubtitleDefaultFlags.Contains(i, StringComparer.OrdinalIgnoreCase) &&
+                    !_options.SubtitleForcedFlags.Contains(i, StringComparer.OrdinalIgnoreCase))
                 .ToList();
                 .ToList();
 
 
             // Should have a name, language and file extension
             // Should have a name, language and file extension

+ 7 - 7
Emby.Naming/TV/EpisodeInfo.cs

@@ -5,43 +5,43 @@ namespace Emby.Naming.TV
     public class EpisodeInfo
     public class EpisodeInfo
     {
     {
         /// <summary>
         /// <summary>
-        /// Gets or sets the path.
+        ///     Gets or sets the path.
         /// </summary>
         /// </summary>
         /// <value>The path.</value>
         /// <value>The path.</value>
         public string Path { get; set; }
         public string Path { get; set; }
 
 
         /// <summary>
         /// <summary>
-        /// Gets or sets the container.
+        ///     Gets or sets the container.
         /// </summary>
         /// </summary>
         /// <value>The container.</value>
         /// <value>The container.</value>
         public string Container { get; set; }
         public string Container { get; set; }
 
 
         /// <summary>
         /// <summary>
-        /// Gets or sets the name of the series.
+        ///     Gets or sets the name of the series.
         /// </summary>
         /// </summary>
         /// <value>The name of the series.</value>
         /// <value>The name of the series.</value>
         public string SeriesName { get; set; }
         public string SeriesName { get; set; }
 
 
         /// <summary>
         /// <summary>
-        /// Gets or sets the format3 d.
+        ///     Gets or sets the format3 d.
         /// </summary>
         /// </summary>
         /// <value>The format3 d.</value>
         /// <value>The format3 d.</value>
         public string Format3D { get; set; }
         public string Format3D { get; set; }
 
 
         /// <summary>
         /// <summary>
-        /// Gets or sets a value indicating whether [is3 d].
+        ///     Gets or sets a value indicating whether [is3 d].
         /// </summary>
         /// </summary>
         /// <value><c>true</c> if [is3 d]; otherwise, <c>false</c>.</value>
         /// <value><c>true</c> if [is3 d]; otherwise, <c>false</c>.</value>
         public bool Is3D { get; set; }
         public bool Is3D { get; set; }
 
 
         /// <summary>
         /// <summary>
-        /// Gets or sets a value indicating whether this instance is stub.
+        ///     Gets or sets a value indicating whether this instance is stub.
         /// </summary>
         /// </summary>
         /// <value><c>true</c> if this instance is stub; otherwise, <c>false</c>.</value>
         /// <value><c>true</c> if this instance is stub; otherwise, <c>false</c>.</value>
         public bool IsStub { get; set; }
         public bool IsStub { get; set; }
 
 
         /// <summary>
         /// <summary>
-        /// Gets or sets the type of the stub.
+        ///     Gets or sets the type of the stub.
         /// </summary>
         /// </summary>
         /// <value>The type of the stub.</value>
         /// <value>The type of the stub.</value>
         public string StubType { get; set; }
         public string StubType { get; set; }

+ 8 - 2
Emby.Naming/TV/EpisodePathParser.cs

@@ -18,7 +18,13 @@ namespace Emby.Naming.TV
             _options = options;
             _options = options;
         }
         }
 
 
-        public EpisodePathParserResult Parse(string path, bool isDirectory, bool? isNamed = null, bool? isOptimistic = null, bool? supportsAbsoluteNumbers = null, bool fillExtendedInfo = true)
+        public EpisodePathParserResult Parse(
+            string path,
+            bool isDirectory,
+            bool? isNamed = null,
+            bool? isOptimistic = null,
+            bool? supportsAbsoluteNumbers = null,
+            bool fillExtendedInfo = true)
         {
         {
             // Added to be able to use regex patterns which require a file extension.
             // Added to be able to use regex patterns which require a file extension.
             // There were no failed tests without this block, but to be safe, we can keep it until
             // There were no failed tests without this block, but to be safe, we can keep it until
@@ -64,7 +70,7 @@ namespace Emby.Naming.TV
                 {
                 {
                     result.SeriesName = result.SeriesName
                     result.SeriesName = result.SeriesName
                         .Trim()
                         .Trim()
-                        .Trim(new[] { '_', '.', '-' })
+                        .Trim('_', '.', '-')
                         .Trim();
                         .Trim();
                 }
                 }
             }
             }

+ 2 - 2
Emby.Naming/TV/SeasonPathParser.cs

@@ -9,7 +9,7 @@ namespace Emby.Naming.TV
     public static class SeasonPathParser
     public static class SeasonPathParser
     {
     {
         /// <summary>
         /// <summary>
-        /// A season folder must contain one of these somewhere in the name.
+        ///     A season folder must contain one of these somewhere in the name.
         /// </summary>
         /// </summary>
         private static readonly string[] _seasonFolderNames =
         private static readonly string[] _seasonFolderNames =
         {
         {
@@ -41,7 +41,7 @@ namespace Emby.Naming.TV
         }
         }
 
 
         /// <summary>
         /// <summary>
-        /// Gets the season number from path.
+        ///     Gets the season number from path.
         /// </summary>
         /// </summary>
         /// <param name="path">The path.</param>
         /// <param name="path">The path.</param>
         /// <param name="supportSpecialAliases">if set to <c>true</c> [support special aliases].</param>
         /// <param name="supportSpecialAliases">if set to <c>true</c> [support special aliases].</param>

+ 2 - 2
Emby.Naming/TV/SeasonPathParserResult.cs

@@ -5,13 +5,13 @@ namespace Emby.Naming.TV
     public class SeasonPathParserResult
     public class SeasonPathParserResult
     {
     {
         /// <summary>
         /// <summary>
-        /// Gets or sets the season number.
+        ///     Gets or sets the season number.
         /// </summary>
         /// </summary>
         /// <value>The season number.</value>
         /// <value>The season number.</value>
         public int? SeasonNumber { get; set; }
         public int? SeasonNumber { get; set; }
 
 
         /// <summary>
         /// <summary>
-        /// Gets or sets a value indicating whether this <see cref="SeasonPathParserResult"/> is success.
+        ///     Gets or sets a value indicating whether this <see cref="SeasonPathParserResult" /> is success.
         /// </summary>
         /// </summary>
         /// <value><c>true</c> if success; otherwise, <c>false</c>.</value>
         /// <value><c>true</c> if success; otherwise, <c>false</c>.</value>
         public bool Success { get; set; }
         public bool Success { get; set; }

+ 1 - 1
Emby.Naming/Video/CleanDateTimeParser.cs

@@ -8,7 +8,7 @@ using System.Text.RegularExpressions;
 namespace Emby.Naming.Video
 namespace Emby.Naming.Video
 {
 {
     /// <summary>
     /// <summary>
-    /// <see href="http://kodi.wiki/view/Advancedsettings.xml#video" />.
+    ///     <see href="http://kodi.wiki/view/Advancedsettings.xml#video" />.
     /// </summary>
     /// </summary>
     public static class CleanDateTimeParser
     public static class CleanDateTimeParser
     {
     {

+ 2 - 2
Emby.Naming/Video/CleanDateTimeResult.cs

@@ -18,13 +18,13 @@ namespace Emby.Naming.Video
         }
         }
 
 
         /// <summary>
         /// <summary>
-        /// Gets the name.
+        ///     Gets the name.
         /// </summary>
         /// </summary>
         /// <value>The name.</value>
         /// <value>The name.</value>
         public string Name { get; }
         public string Name { get; }
 
 
         /// <summary>
         /// <summary>
-        /// Gets the year.
+        ///     Gets the year.
         /// </summary>
         /// </summary>
         /// <value>The year.</value>
         /// <value>The year.</value>
         public int? Year { get; }
         public int? Year { get; }

+ 1 - 1
Emby.Naming/Video/CleanStringParser.cs

@@ -8,7 +8,7 @@ using System.Text.RegularExpressions;
 namespace Emby.Naming.Video
 namespace Emby.Naming.Video
 {
 {
     /// <summary>
     /// <summary>
-    /// <see href="http://kodi.wiki/view/Advancedsettings.xml#video" />.
+    ///     <see href="http://kodi.wiki/view/Advancedsettings.xml#video" />.
     /// </summary>
     /// </summary>
     public static class CleanStringParser
     public static class CleanStringParser
     {
     {

+ 2 - 2
Emby.Naming/Video/ExtraResult.cs

@@ -7,13 +7,13 @@ namespace Emby.Naming.Video
     public class ExtraResult
     public class ExtraResult
     {
     {
         /// <summary>
         /// <summary>
-        /// Gets or sets the type of the extra.
+        ///     Gets or sets the type of the extra.
         /// </summary>
         /// </summary>
         /// <value>The type of the extra.</value>
         /// <value>The type of the extra.</value>
         public ExtraType? ExtraType { get; set; }
         public ExtraType? ExtraType { get; set; }
 
 
         /// <summary>
         /// <summary>
-        /// Gets or sets the rule.
+        ///     Gets or sets the rule.
         /// </summary>
         /// </summary>
         /// <value>The rule.</value>
         /// <value>The rule.</value>
         public ExtraRule Rule { get; set; }
         public ExtraRule Rule { get; set; }

+ 4 - 4
Emby.Naming/Video/ExtraRule.cs

@@ -8,25 +8,25 @@ namespace Emby.Naming.Video
     public class ExtraRule
     public class ExtraRule
     {
     {
         /// <summary>
         /// <summary>
-        /// Gets or sets the token.
+        ///     Gets or sets the token.
         /// </summary>
         /// </summary>
         /// <value>The token.</value>
         /// <value>The token.</value>
         public string Token { get; set; }
         public string Token { get; set; }
 
 
         /// <summary>
         /// <summary>
-        /// Gets or sets the type of the extra.
+        ///     Gets or sets the type of the extra.
         /// </summary>
         /// </summary>
         /// <value>The type of the extra.</value>
         /// <value>The type of the extra.</value>
         public ExtraType ExtraType { get; set; }
         public ExtraType ExtraType { get; set; }
 
 
         /// <summary>
         /// <summary>
-        /// Gets or sets the type of the rule.
+        ///     Gets or sets the type of the rule.
         /// </summary>
         /// </summary>
         /// <value>The type of the rule.</value>
         /// <value>The type of the rule.</value>
         public ExtraRuleType RuleType { get; set; }
         public ExtraRuleType RuleType { get; set; }
 
 
         /// <summary>
         /// <summary>
-        /// Gets or sets the type of the media.
+        ///     Gets or sets the type of the media.
         /// </summary>
         /// </summary>
         /// <value>The type of the media.</value>
         /// <value>The type of the media.</value>
         public MediaType MediaType { get; set; }
         public MediaType MediaType { get; set; }

+ 3 - 3
Emby.Naming/Video/ExtraRuleType.cs

@@ -5,17 +5,17 @@ namespace Emby.Naming.Video
     public enum ExtraRuleType
     public enum ExtraRuleType
     {
     {
         /// <summary>
         /// <summary>
-        /// The suffix
+        ///     The suffix
         /// </summary>
         /// </summary>
         Suffix = 0,
         Suffix = 0,
 
 
         /// <summary>
         /// <summary>
-        /// The filename
+        ///     The filename
         /// </summary>
         /// </summary>
         Filename = 1,
         Filename = 1,
 
 
         /// <summary>
         /// <summary>
-        /// The regex
+        ///     The regex
         /// </summary>
         /// </summary>
         Regex = 2
         Regex = 2
     }
     }

+ 3 - 3
Emby.Naming/Video/Format3DResult.cs

@@ -12,19 +12,19 @@ namespace Emby.Naming.Video
         }
         }
 
 
         /// <summary>
         /// <summary>
-        /// Gets or sets a value indicating whether [is3 d].
+        ///     Gets or sets a value indicating whether [is3 d].
         /// </summary>
         /// </summary>
         /// <value><c>true</c> if [is3 d]; otherwise, <c>false</c>.</value>
         /// <value><c>true</c> if [is3 d]; otherwise, <c>false</c>.</value>
         public bool Is3D { get; set; }
         public bool Is3D { get; set; }
 
 
         /// <summary>
         /// <summary>
-        /// Gets or sets the format3 d.
+        ///     Gets or sets the format3 d.
         /// </summary>
         /// </summary>
         /// <value>The format3 d.</value>
         /// <value>The format3 d.</value>
         public string Format3D { get; set; }
         public string Format3D { get; set; }
 
 
         /// <summary>
         /// <summary>
-        /// Gets or sets the tokens.
+        ///     Gets or sets the tokens.
         /// </summary>
         /// </summary>
         /// <value>The tokens.</value>
         /// <value>The tokens.</value>
         public List<string> Tokens { get; set; }
         public List<string> Tokens { get; set; }

+ 2 - 2
Emby.Naming/Video/Format3DRule.cs

@@ -5,13 +5,13 @@ namespace Emby.Naming.Video
     public class Format3DRule
     public class Format3DRule
     {
     {
         /// <summary>
         /// <summary>
-        /// Gets or sets the token.
+        ///     Gets or sets the token.
         /// </summary>
         /// </summary>
         /// <value>The token.</value>
         /// <value>The token.</value>
         public string Token { get; set; }
         public string Token { get; set; }
 
 
         /// <summary>
         /// <summary>
-        /// Gets or sets the preceeding token.
+        ///     Gets or sets the preceeding token.
         /// </summary>
         /// </summary>
         /// <value>The preceeding token.</value>
         /// <value>The preceeding token.</value>
         public string PreceedingToken { get; set; }
         public string PreceedingToken { get; set; }

+ 5 - 16
Emby.Naming/Video/StackResolver.cs

@@ -21,31 +21,20 @@ namespace Emby.Naming.Video
 
 
         public IEnumerable<FileStack> ResolveDirectories(IEnumerable<string> files)
         public IEnumerable<FileStack> ResolveDirectories(IEnumerable<string> files)
         {
         {
-            return Resolve(files.Select(i => new FileSystemMetadata
-            {
-                FullName = i,
-                IsDirectory = true
-            }));
+            return Resolve(files.Select(i => new FileSystemMetadata { FullName = i, IsDirectory = true }));
         }
         }
 
 
         public IEnumerable<FileStack> ResolveFiles(IEnumerable<string> files)
         public IEnumerable<FileStack> ResolveFiles(IEnumerable<string> files)
         {
         {
-            return Resolve(files.Select(i => new FileSystemMetadata
-            {
-                FullName = i,
-                IsDirectory = false
-            }));
+            return Resolve(files.Select(i => new FileSystemMetadata { FullName = i, IsDirectory = false }));
         }
         }
 
 
         public IEnumerable<FileStack> ResolveAudioBooks(IEnumerable<FileSystemMetadata> files)
         public IEnumerable<FileStack> ResolveAudioBooks(IEnumerable<FileSystemMetadata> files)
         {
         {
-            foreach (var directory in files.GroupBy(file => file.IsDirectory ? file.FullName : Path.GetDirectoryName(file.FullName)))
+            foreach (var directory in files.GroupBy(file =>
+                file.IsDirectory ? file.FullName : Path.GetDirectoryName(file.FullName)))
             {
             {
-                var stack = new FileStack()
-                {
-                    Name = Path.GetFileName(directory.Key),
-                    IsDirectoryStack = false
-                };
+                var stack = new FileStack { Name = Path.GetFileName(directory.Key), IsDirectoryStack = false };
                 foreach (var file in directory)
                 foreach (var file in directory)
                 {
                 {
                     if (file.IsDirectory)
                     if (file.IsDirectory)

+ 2 - 2
Emby.Naming/Video/StubResult.cs

@@ -5,13 +5,13 @@ namespace Emby.Naming.Video
     public struct StubResult
     public struct StubResult
     {
     {
         /// <summary>
         /// <summary>
-        /// Gets or sets a value indicating whether this instance is stub.
+        ///     Gets or sets a value indicating whether this instance is stub.
         /// </summary>
         /// </summary>
         /// <value><c>true</c> if this instance is stub; otherwise, <c>false</c>.</value>
         /// <value><c>true</c> if this instance is stub; otherwise, <c>false</c>.</value>
         public bool IsStub { get; set; }
         public bool IsStub { get; set; }
 
 
         /// <summary>
         /// <summary>
-        /// Gets or sets the type of the stub.
+        ///     Gets or sets the type of the stub.
         /// </summary>
         /// </summary>
         /// <value>The type of the stub.</value>
         /// <value>The type of the stub.</value>
         public string StubType { get; set; }
         public string StubType { get; set; }

+ 2 - 2
Emby.Naming/Video/StubTypeRule.cs

@@ -5,13 +5,13 @@ namespace Emby.Naming.Video
     public class StubTypeRule
     public class StubTypeRule
     {
     {
         /// <summary>
         /// <summary>
-        /// Gets or sets the token.
+        ///     Gets or sets the token.
         /// </summary>
         /// </summary>
         /// <value>The token.</value>
         /// <value>The token.</value>
         public string Token { get; set; }
         public string Token { get; set; }
 
 
         /// <summary>
         /// <summary>
-        /// Gets or sets the type of the stub.
+        ///     Gets or sets the type of the stub.
         /// </summary>
         /// </summary>
         /// <value>The type of the stub.</value>
         /// <value>The type of the stub.</value>
         public string StubType { get; set; }
         public string StubType { get; set; }

+ 16 - 14
Emby.Naming/Video/VideoFileInfo.cs

@@ -3,81 +3,83 @@ using MediaBrowser.Model.Entities;
 namespace Emby.Naming.Video
 namespace Emby.Naming.Video
 {
 {
     /// <summary>
     /// <summary>
-    /// Represents a single video file.
+    ///     Represents a single video file.
     /// </summary>
     /// </summary>
     public class VideoFileInfo
     public class VideoFileInfo
     {
     {
         /// <summary>
         /// <summary>
-        /// Gets or sets the path.
+        ///     Gets or sets the path.
         /// </summary>
         /// </summary>
         /// <value>The path.</value>
         /// <value>The path.</value>
         public string Path { get; set; }
         public string Path { get; set; }
 
 
         /// <summary>
         /// <summary>
-        /// Gets or sets the container.
+        ///     Gets or sets the container.
         /// </summary>
         /// </summary>
         /// <value>The container.</value>
         /// <value>The container.</value>
         public string Container { get; set; }
         public string Container { get; set; }
 
 
         /// <summary>
         /// <summary>
-        /// Gets or sets the name.
+        ///     Gets or sets the name.
         /// </summary>
         /// </summary>
         /// <value>The name.</value>
         /// <value>The name.</value>
         public string Name { get; set; }
         public string Name { get; set; }
 
 
         /// <summary>
         /// <summary>
-        /// Gets or sets the year.
+        ///     Gets or sets the year.
         /// </summary>
         /// </summary>
         /// <value>The year.</value>
         /// <value>The year.</value>
         public int? Year { get; set; }
         public int? Year { get; set; }
 
 
         /// <summary>
         /// <summary>
-        /// Gets or sets the type of the extra, e.g. trailer, theme song, behind the scenes, etc.
+        ///     Gets or sets the type of the extra, e.g. trailer, theme song, behind the scenes, etc.
         /// </summary>
         /// </summary>
         /// <value>The type of the extra.</value>
         /// <value>The type of the extra.</value>
         public ExtraType? ExtraType { get; set; }
         public ExtraType? ExtraType { get; set; }
 
 
         /// <summary>
         /// <summary>
-        /// Gets or sets the extra rule.
+        ///     Gets or sets the extra rule.
         /// </summary>
         /// </summary>
         /// <value>The extra rule.</value>
         /// <value>The extra rule.</value>
         public ExtraRule ExtraRule { get; set; }
         public ExtraRule ExtraRule { get; set; }
 
 
         /// <summary>
         /// <summary>
-        /// Gets or sets the format3 d.
+        ///     Gets or sets the format3 d.
         /// </summary>
         /// </summary>
         /// <value>The format3 d.</value>
         /// <value>The format3 d.</value>
         public string Format3D { get; set; }
         public string Format3D { get; set; }
 
 
         /// <summary>
         /// <summary>
-        /// Gets or sets a value indicating whether [is3 d].
+        ///     Gets or sets a value indicating whether [is3 d].
         /// </summary>
         /// </summary>
         /// <value><c>true</c> if [is3 d]; otherwise, <c>false</c>.</value>
         /// <value><c>true</c> if [is3 d]; otherwise, <c>false</c>.</value>
         public bool Is3D { get; set; }
         public bool Is3D { get; set; }
 
 
         /// <summary>
         /// <summary>
-        /// Gets or sets a value indicating whether this instance is stub.
+        ///     Gets or sets a value indicating whether this instance is stub.
         /// </summary>
         /// </summary>
         /// <value><c>true</c> if this instance is stub; otherwise, <c>false</c>.</value>
         /// <value><c>true</c> if this instance is stub; otherwise, <c>false</c>.</value>
         public bool IsStub { get; set; }
         public bool IsStub { get; set; }
 
 
         /// <summary>
         /// <summary>
-        /// Gets or sets the type of the stub.
+        ///     Gets or sets the type of the stub.
         /// </summary>
         /// </summary>
         /// <value>The type of the stub.</value>
         /// <value>The type of the stub.</value>
         public string StubType { get; set; }
         public string StubType { get; set; }
 
 
         /// <summary>
         /// <summary>
-        /// Gets or sets a value indicating whether this instance is a directory.
+        ///     Gets or sets a value indicating whether this instance is a directory.
         /// </summary>
         /// </summary>
         /// <value>The type.</value>
         /// <value>The type.</value>
         public bool IsDirectory { get; set; }
         public bool IsDirectory { get; set; }
 
 
         /// <summary>
         /// <summary>
-        /// Gets the file name without extension.
+        ///     Gets the file name without extension.
         /// </summary>
         /// </summary>
         /// <value>The file name without extension.</value>
         /// <value>The file name without extension.</value>
-        public string FileNameWithoutExtension => !IsDirectory ? System.IO.Path.GetFileNameWithoutExtension(Path) : System.IO.Path.GetFileName(Path);
+        public string FileNameWithoutExtension => !IsDirectory
+            ? System.IO.Path.GetFileNameWithoutExtension(Path)
+            : System.IO.Path.GetFileName(Path);
 
 
         /// <inheritdoc />
         /// <inheritdoc />
         public override string ToString()
         public override string ToString()

+ 7 - 7
Emby.Naming/Video/VideoInfo.cs

@@ -4,12 +4,12 @@ using System.Collections.Generic;
 namespace Emby.Naming.Video
 namespace Emby.Naming.Video
 {
 {
     /// <summary>
     /// <summary>
-    /// Represents a complete video, including all parts and subtitles.
+    ///     Represents a complete video, including all parts and subtitles.
     /// </summary>
     /// </summary>
     public class VideoInfo
     public class VideoInfo
     {
     {
         /// <summary>
         /// <summary>
-        /// Initializes a new instance of the <see cref="VideoInfo" /> class.
+        ///     Initializes a new instance of the <see cref="VideoInfo" /> class.
         /// </summary>
         /// </summary>
         /// <param name="name">The name.</param>
         /// <param name="name">The name.</param>
         public VideoInfo(string name)
         public VideoInfo(string name)
@@ -22,31 +22,31 @@ namespace Emby.Naming.Video
         }
         }
 
 
         /// <summary>
         /// <summary>
-        /// Gets or sets the name.
+        ///     Gets or sets the name.
         /// </summary>
         /// </summary>
         /// <value>The name.</value>
         /// <value>The name.</value>
         public string Name { get; set; }
         public string Name { get; set; }
 
 
         /// <summary>
         /// <summary>
-        /// Gets or sets the year.
+        ///     Gets or sets the year.
         /// </summary>
         /// </summary>
         /// <value>The year.</value>
         /// <value>The year.</value>
         public int? Year { get; set; }
         public int? Year { get; set; }
 
 
         /// <summary>
         /// <summary>
-        /// Gets or sets the files.
+        ///     Gets or sets the files.
         /// </summary>
         /// </summary>
         /// <value>The files.</value>
         /// <value>The files.</value>
         public IReadOnlyList<VideoFileInfo> Files { get; set; }
         public IReadOnlyList<VideoFileInfo> Files { get; set; }
 
 
         /// <summary>
         /// <summary>
-        /// Gets or sets the extras.
+        ///     Gets or sets the extras.
         /// </summary>
         /// </summary>
         /// <value>The extras.</value>
         /// <value>The extras.</value>
         public IReadOnlyList<VideoFileInfo> Extras { get; set; }
         public IReadOnlyList<VideoFileInfo> Extras { get; set; }
 
 
         /// <summary>
         /// <summary>
-        /// Gets or sets the alternate versions.
+        ///     Gets or sets the alternate versions.
         /// </summary>
         /// </summary>
         /// <value>The alternate versions.</value>
         /// <value>The alternate versions.</value>
         public IReadOnlyList<VideoFileInfo> AlternateVersions { get; set; }
         public IReadOnlyList<VideoFileInfo> AlternateVersions { get; set; }

+ 9 - 20
Emby.Naming/Video/VideoListResolver.cs

@@ -33,11 +33,7 @@ namespace Emby.Naming.Video
             // See the unit test TestStackedWithTrailer
             // See the unit test TestStackedWithTrailer
             var nonExtras = videoInfos
             var nonExtras = videoInfos
                 .Where(i => i.ExtraType == null)
                 .Where(i => i.ExtraType == null)
-                .Select(i => new FileSystemMetadata
-                {
-                    FullName = i.Path,
-                    IsDirectory = i.IsDirectory
-                });
+                .Select(i => new FileSystemMetadata { FullName = i.Path, IsDirectory = i.IsDirectory });
 
 
             var stackResult = new StackResolver(_options)
             var stackResult = new StackResolver(_options)
                 .Resolve(nonExtras).ToList();
                 .Resolve(nonExtras).ToList();
@@ -57,11 +53,7 @@ namespace Emby.Naming.Video
 
 
                 info.Year = info.Files[0].Year;
                 info.Year = info.Files[0].Year;
 
 
-                var extraBaseNames = new List<string>
-                {
-                    stack.Name,
-                    Path.GetFileNameWithoutExtension(stack.Files[0])
-                };
+                var extraBaseNames = new List<string> { stack.Name, Path.GetFileNameWithoutExtension(stack.Files[0]) };
 
 
                 var extras = GetExtras(remainingFiles, extraBaseNames);
                 var extras = GetExtras(remainingFiles, extraBaseNames);
 
 
@@ -83,10 +75,7 @@ namespace Emby.Naming.Video
 
 
             foreach (var media in standaloneMedia)
             foreach (var media in standaloneMedia)
             {
             {
-                var info = new VideoInfo(media.Name)
-                {
-                    Files = new List<VideoFileInfo> { media }
-                };
+                var info = new VideoInfo(media.Name) { Files = new List<VideoFileInfo> { media } };
 
 
                 info.Year = info.Files[0].Year;
                 info.Year = info.Files[0].Year;
 
 
@@ -162,8 +151,7 @@ namespace Emby.Naming.Video
             // Whatever files are left, just add them
             // Whatever files are left, just add them
             list.AddRange(remainingFiles.Select(i => new VideoInfo(i.Name)
             list.AddRange(remainingFiles.Select(i => new VideoInfo(i.Name)
             {
             {
-                Files = new List<VideoFileInfo> { i },
-                Year = i.Year
+                Files = new List<VideoFileInfo> { i }, Year = i.Year
             }));
             }));
 
 
             return list;
             return list;
@@ -183,7 +171,7 @@ namespace Emby.Naming.Video
             if (!string.IsNullOrEmpty(folderName)
             if (!string.IsNullOrEmpty(folderName)
                 && folderName.Length > 1
                 && folderName.Length > 1
                 && videos.All(i => i.Files.Count == 1
                 && videos.All(i => i.Files.Count == 1
-                && IsEligibleForMultiVersion(folderName, i.Files[0].Path))
+                                   && IsEligibleForMultiVersion(folderName, i.Files[0].Path))
                 && HaveSameYear(videos))
                 && HaveSameYear(videos))
             {
             {
                 var ordered = videos.OrderBy(i => i.Name).ToList();
                 var ordered = videos.OrderBy(i => i.Name).ToList();
@@ -222,8 +210,8 @@ namespace Emby.Naming.Video
             {
             {
                 testFilename = testFilename.Substring(folderName.Length).Trim();
                 testFilename = testFilename.Substring(folderName.Length).Trim();
                 return string.IsNullOrEmpty(testFilename)
                 return string.IsNullOrEmpty(testFilename)
-                    || testFilename[0] == '-'
-                    || string.IsNullOrWhiteSpace(Regex.Replace(testFilename, @"\[([^]]*)\]", string.Empty));
+                       || testFilename[0] == '-'
+                       || string.IsNullOrWhiteSpace(Regex.Replace(testFilename, @"\[([^]]*)\]", string.Empty));
             }
             }
 
 
             return false;
             return false;
@@ -239,7 +227,8 @@ namespace Emby.Naming.Video
 
 
             return remainingFiles
             return remainingFiles
                 .Where(i => i.ExtraType == null)
                 .Where(i => i.ExtraType == null)
-                .Where(i => baseNames.Any(b => i.FileNameWithoutExtension.StartsWith(b, StringComparison.OrdinalIgnoreCase)))
+                .Where(i => baseNames.Any(b =>
+                    i.FileNameWithoutExtension.StartsWith(b, StringComparison.OrdinalIgnoreCase)))
                 .ToList();
                 .ToList();
         }
         }
     }
     }

+ 3 - 3
Emby.Naming/Video/VideoResolver.cs

@@ -18,7 +18,7 @@ namespace Emby.Naming.Video
         }
         }
 
 
         /// <summary>
         /// <summary>
-        /// Resolves the directory.
+        ///     Resolves the directory.
         /// </summary>
         /// </summary>
         /// <param name="path">The path.</param>
         /// <param name="path">The path.</param>
         /// <returns>VideoFileInfo.</returns>
         /// <returns>VideoFileInfo.</returns>
@@ -28,7 +28,7 @@ namespace Emby.Naming.Video
         }
         }
 
 
         /// <summary>
         /// <summary>
-        /// Resolves the file.
+        ///     Resolves the file.
         /// </summary>
         /// </summary>
         /// <param name="path">The path.</param>
         /// <param name="path">The path.</param>
         /// <returns>VideoFileInfo.</returns>
         /// <returns>VideoFileInfo.</returns>
@@ -38,7 +38,7 @@ namespace Emby.Naming.Video
         }
         }
 
 
         /// <summary>
         /// <summary>
-        /// Resolves the specified path.
+        ///     Resolves the specified path.
         /// </summary>
         /// </summary>
         /// <param name="path">The path.</param>
         /// <param name="path">The path.</param>
         /// <param name="isDirectory">if set to <c>true</c> [is folder].</param>
         /// <param name="isDirectory">if set to <c>true</c> [is folder].</param>

+ 1 - 0
MediaBrowser.Model/Entities/ChapterInfo.cs

@@ -26,6 +26,7 @@ namespace MediaBrowser.Model.Entities
         /// </summary>
         /// </summary>
         /// <value>The image path.</value>
         /// <value>The image path.</value>
         public string ImagePath { get; set; }
         public string ImagePath { get; set; }
+
         public DateTime ImageDateModified { get; set; }
         public DateTime ImageDateModified { get; set; }
 
 
         public string ImageTag { get; set; }
         public string ImageTag { get; set; }