| | 1 | | using System; |
| | 2 | | using System.IO; |
| | 3 | | using System.Linq; |
| | 4 | | using Emby.Naming.Common; |
| | 5 | | using Jellyfin.Extensions; |
| | 6 | | using MediaBrowser.Model.Dlna; |
| | 7 | | using MediaBrowser.Model.Globalization; |
| | 8 | |
|
| | 9 | | namespace Emby.Naming.ExternalFiles |
| | 10 | | { |
| | 11 | | /// <summary> |
| | 12 | | /// External media file parser class. |
| | 13 | | /// </summary> |
| | 14 | | public class ExternalPathParser |
| | 15 | | { |
| | 16 | | private readonly NamingOptions _namingOptions; |
| | 17 | | private readonly DlnaProfileType _type; |
| | 18 | | private readonly ILocalizationManager _localizationManager; |
| | 19 | |
|
| | 20 | | /// <summary> |
| | 21 | | /// Initializes a new instance of the <see cref="ExternalPathParser"/> class. |
| | 22 | | /// </summary> |
| | 23 | | /// <param name="localizationManager">The localization manager.</param> |
| | 24 | | /// <param name="namingOptions">The <see cref="NamingOptions"/> object containing FileExtensions, MediaDefaultFl |
| | 25 | | /// <param name="type">The <see cref="DlnaProfileType"/> of the parsed file.</param> |
| | 26 | | public ExternalPathParser(NamingOptions namingOptions, ILocalizationManager localizationManager, DlnaProfileType |
| | 27 | | { |
| 215 | 28 | | _localizationManager = localizationManager; |
| 215 | 29 | | _namingOptions = namingOptions; |
| 215 | 30 | | _type = type; |
| 215 | 31 | | } |
| | 32 | |
|
| | 33 | | /// <summary> |
| | 34 | | /// Parse filename and extract information. |
| | 35 | | /// </summary> |
| | 36 | | /// <param name="path">Path to file.</param> |
| | 37 | | /// <param name="extraString">Part of the filename only containing the extra information.</param> |
| | 38 | | /// <returns>Returns null or an <see cref="ExternalPathParserResult"/> object if parsing is successful.</returns |
| | 39 | | public ExternalPathParserResult? ParseFile(string path, string? extraString) |
| | 40 | | { |
| 72 | 41 | | if (path.Length == 0) |
| | 42 | | { |
| 2 | 43 | | return null; |
| | 44 | | } |
| | 45 | |
|
| 70 | 46 | | var extension = Path.GetExtension(path.AsSpan()); |
| 70 | 47 | | if (!(_type == DlnaProfileType.Subtitle && _namingOptions.SubtitleFileExtensions.Contains(extension, StringC |
| 70 | 48 | | && !(_type == DlnaProfileType.Audio && _namingOptions.AudioFileExtensions.Contains(extension, StringComp |
| 70 | 49 | | && !(_type == DlnaProfileType.Lyric && _namingOptions.LyricFileExtensions.Contains(extension, StringComp |
| | 50 | | { |
| 17 | 51 | | return null; |
| | 52 | | } |
| | 53 | |
|
| 53 | 54 | | var pathInfo = new ExternalPathParserResult(path); |
| | 55 | |
|
| 53 | 56 | | if (string.IsNullOrEmpty(extraString)) |
| | 57 | | { |
| 19 | 58 | | return pathInfo; |
| | 59 | | } |
| | 60 | |
|
| 136 | 61 | | foreach (var separator in _namingOptions.MediaFlagDelimiters) |
| | 62 | | { |
| 34 | 63 | | var languageString = extraString; |
| 34 | 64 | | var titleString = string.Empty; |
| | 65 | | const int SeparatorLength = 1; |
| | 66 | |
|
| 103 | 67 | | while (languageString.Length > 0) |
| | 68 | | { |
| 69 | 69 | | int lastSeparator = languageString.LastIndexOf(separator); |
| | 70 | |
|
| 69 | 71 | | if (lastSeparator == -1) |
| | 72 | | { |
| | 73 | | break; |
| | 74 | | } |
| | 75 | |
|
| 69 | 76 | | string currentSlice = languageString[lastSeparator..]; |
| 69 | 77 | | string currentSliceWithoutSeparator = currentSlice[SeparatorLength..]; |
| | 78 | |
|
| 69 | 79 | | if (_namingOptions.MediaDefaultFlags.Any(s => currentSliceWithoutSeparator.Contains(s, StringCompari |
| | 80 | | { |
| 9 | 81 | | pathInfo.IsDefault = true; |
| 9 | 82 | | extraString = extraString.Replace(currentSlice, string.Empty, StringComparison.OrdinalIgnoreCase |
| 9 | 83 | | languageString = languageString[..lastSeparator]; |
| 9 | 84 | | continue; |
| | 85 | | } |
| | 86 | |
|
| 60 | 87 | | if (_namingOptions.MediaForcedFlags.Any(s => currentSliceWithoutSeparator.Contains(s, StringComparis |
| | 88 | | { |
| 10 | 89 | | pathInfo.IsForced = true; |
| 10 | 90 | | extraString = extraString.Replace(currentSlice, string.Empty, StringComparison.OrdinalIgnoreCase |
| 10 | 91 | | languageString = languageString[..lastSeparator]; |
| 10 | 92 | | continue; |
| | 93 | | } |
| | 94 | |
|
| | 95 | | // Try to translate to three character code |
| 50 | 96 | | var culture = _localizationManager.FindLanguageInfo(currentSliceWithoutSeparator); |
| | 97 | |
|
| 50 | 98 | | if (culture is not null && pathInfo.Language is null) |
| | 99 | | { |
| 20 | 100 | | pathInfo.Language = culture.ThreeLetterISOLanguageName; |
| 20 | 101 | | extraString = extraString.Replace(currentSlice, string.Empty, StringComparison.OrdinalIgnoreCase |
| | 102 | | } |
| 30 | 103 | | else if (culture is not null && pathInfo.Language == "hin") |
| | 104 | | { |
| | 105 | | // Hindi language code "hi" collides with a hearing impaired flag - use as Hindi only if no othe |
| 1 | 106 | | pathInfo.IsHearingImpaired = true; |
| 1 | 107 | | pathInfo.Language = culture.ThreeLetterISOLanguageName; |
| 1 | 108 | | extraString = extraString.Replace(currentSlice, string.Empty, StringComparison.OrdinalIgnoreCase |
| | 109 | | } |
| 29 | 110 | | else if (_namingOptions.MediaHearingImpairedFlags.Any(s => currentSliceWithoutSeparator.Equals(s, St |
| | 111 | | { |
| 5 | 112 | | pathInfo.IsHearingImpaired = true; |
| 5 | 113 | | extraString = extraString.Replace(currentSlice, string.Empty, StringComparison.OrdinalIgnoreCase |
| | 114 | | } |
| | 115 | | else |
| | 116 | | { |
| 24 | 117 | | titleString = currentSlice + titleString; |
| | 118 | | } |
| | 119 | |
|
| 50 | 120 | | languageString = languageString[..lastSeparator]; |
| | 121 | | } |
| | 122 | |
|
| 34 | 123 | | pathInfo.Title = titleString.Length >= SeparatorLength ? titleString[SeparatorLength..] : null; |
| | 124 | | } |
| | 125 | |
|
| 34 | 126 | | return pathInfo; |
| | 127 | | } |
| | 128 | | } |
| | 129 | | } |