| | 1 | | #nullable disable |
| | 2 | |
|
| | 3 | | using System; |
| | 4 | | using System.Collections.Generic; |
| | 5 | | using System.IO; |
| | 6 | | using System.Linq; |
| | 7 | | using System.Threading; |
| | 8 | | using System.Threading.Tasks; |
| | 9 | | using Emby.Naming.Common; |
| | 10 | | using MediaBrowser.Controller.Chapters; |
| | 11 | | using MediaBrowser.Controller.Configuration; |
| | 12 | | using MediaBrowser.Controller.Entities; |
| | 13 | | using MediaBrowser.Controller.Entities.Audio; |
| | 14 | | using MediaBrowser.Controller.Entities.Movies; |
| | 15 | | using MediaBrowser.Controller.Entities.TV; |
| | 16 | | using MediaBrowser.Controller.Library; |
| | 17 | | using MediaBrowser.Controller.Lyrics; |
| | 18 | | using MediaBrowser.Controller.MediaEncoding; |
| | 19 | | using MediaBrowser.Controller.Persistence; |
| | 20 | | using MediaBrowser.Controller.Providers; |
| | 21 | | using MediaBrowser.Controller.Subtitles; |
| | 22 | | using MediaBrowser.Model.Entities; |
| | 23 | | using MediaBrowser.Model.Globalization; |
| | 24 | | using MediaBrowser.Model.IO; |
| | 25 | | using MediaBrowser.Model.MediaInfo; |
| | 26 | | using Microsoft.Extensions.Logging; |
| | 27 | |
|
| | 28 | | namespace MediaBrowser.Providers.MediaInfo |
| | 29 | | { |
| | 30 | | /// <summary> |
| | 31 | | /// The probe provider. |
| | 32 | | /// </summary> |
| | 33 | | public class ProbeProvider : ICustomMetadataProvider<Episode>, |
| | 34 | | ICustomMetadataProvider<MusicVideo>, |
| | 35 | | ICustomMetadataProvider<Movie>, |
| | 36 | | ICustomMetadataProvider<Trailer>, |
| | 37 | | ICustomMetadataProvider<Video>, |
| | 38 | | ICustomMetadataProvider<Audio>, |
| | 39 | | ICustomMetadataProvider<AudioBook>, |
| | 40 | | IHasOrder, |
| | 41 | | IForcedProvider, |
| | 42 | | IPreRefreshProvider, |
| | 43 | | IHasItemChangeMonitor |
| | 44 | | { |
| | 45 | | private readonly ILogger<ProbeProvider> _logger; |
| | 46 | | private readonly AudioResolver _audioResolver; |
| | 47 | | private readonly SubtitleResolver _subtitleResolver; |
| | 48 | | private readonly LyricResolver _lyricResolver; |
| | 49 | | private readonly FFProbeVideoInfo _videoProber; |
| | 50 | | private readonly AudioFileProber _audioProber; |
| 21 | 51 | | private readonly Task<ItemUpdateType> _cachedTask = Task.FromResult(ItemUpdateType.None); |
| | 52 | |
|
| | 53 | | /// <summary> |
| | 54 | | /// Initializes a new instance of the <see cref="ProbeProvider"/> class. |
| | 55 | | /// </summary> |
| | 56 | | /// <param name="mediaSourceManager">Instance of the <see cref="IMediaSourceManager"/> interface.</param> |
| | 57 | | /// <param name="mediaEncoder">Instance of the <see cref="IMediaEncoder"/> interface.</param> |
| | 58 | | /// <param name="itemRepo">Instance of the <see cref="IItemRepository"/> interface.</param> |
| | 59 | | /// <param name="blurayExaminer">Instance of the <see cref="IBlurayExaminer"/> interface.</param> |
| | 60 | | /// <param name="localization">Instance of the <see cref="ILocalizationManager"/> interface.</param> |
| | 61 | | /// <param name="encodingManager">Instance of the <see cref="IEncodingManager"/> interface.</param> |
| | 62 | | /// <param name="config">Instance of the <see cref="IServerConfigurationManager"/> interface.</param> |
| | 63 | | /// <param name="subtitleManager">Instance of the <see cref="ISubtitleManager"/> interface.</param> |
| | 64 | | /// <param name="chapterManager">Instance of the <see cref="IChapterRepository"/> interface.</param> |
| | 65 | | /// <param name="libraryManager">Instance of the <see cref="ILibraryManager"/> interface.</param> |
| | 66 | | /// <param name="loggerFactory">Instance of the <see cref="ILoggerFactory"/>.</param> |
| | 67 | | /// <param name="fileSystem">Instance of the <see cref="IFileSystem"/> interface.</param> |
| | 68 | | /// <param name="namingOptions">The <see cref="NamingOptions"/>.</param> |
| | 69 | | /// <param name="lyricManager">Instance of the <see cref="ILyricManager"/> interface.</param> |
| | 70 | | /// <param name="mediaAttachmentRepository">Instance of the <see cref="IMediaAttachmentRepository"/> interface.< |
| | 71 | | /// <param name="mediaStreamRepository">Instance of the <see cref="IMediaStreamRepository"/> interface.</param> |
| | 72 | | public ProbeProvider( |
| | 73 | | IMediaSourceManager mediaSourceManager, |
| | 74 | | IMediaEncoder mediaEncoder, |
| | 75 | | IItemRepository itemRepo, |
| | 76 | | IBlurayExaminer blurayExaminer, |
| | 77 | | ILocalizationManager localization, |
| | 78 | | IEncodingManager encodingManager, |
| | 79 | | IServerConfigurationManager config, |
| | 80 | | ISubtitleManager subtitleManager, |
| | 81 | | IChapterRepository chapterManager, |
| | 82 | | ILibraryManager libraryManager, |
| | 83 | | IFileSystem fileSystem, |
| | 84 | | ILoggerFactory loggerFactory, |
| | 85 | | NamingOptions namingOptions, |
| | 86 | | ILyricManager lyricManager, |
| | 87 | | IMediaAttachmentRepository mediaAttachmentRepository, |
| | 88 | | IMediaStreamRepository mediaStreamRepository) |
| | 89 | | { |
| 21 | 90 | | _logger = loggerFactory.CreateLogger<ProbeProvider>(); |
| 21 | 91 | | _audioResolver = new AudioResolver(loggerFactory.CreateLogger<AudioResolver>(), localization, mediaEncoder, |
| 21 | 92 | | _subtitleResolver = new SubtitleResolver(loggerFactory.CreateLogger<SubtitleResolver>(), localization, media |
| 21 | 93 | | _lyricResolver = new LyricResolver(loggerFactory.CreateLogger<LyricResolver>(), localization, mediaEncoder, |
| | 94 | |
|
| 21 | 95 | | _videoProber = new FFProbeVideoInfo( |
| 21 | 96 | | loggerFactory.CreateLogger<FFProbeVideoInfo>(), |
| 21 | 97 | | mediaSourceManager, |
| 21 | 98 | | mediaEncoder, |
| 21 | 99 | | itemRepo, |
| 21 | 100 | | blurayExaminer, |
| 21 | 101 | | localization, |
| 21 | 102 | | encodingManager, |
| 21 | 103 | | config, |
| 21 | 104 | | subtitleManager, |
| 21 | 105 | | chapterManager, |
| 21 | 106 | | libraryManager, |
| 21 | 107 | | _audioResolver, |
| 21 | 108 | | _subtitleResolver, |
| 21 | 109 | | mediaAttachmentRepository, |
| 21 | 110 | | mediaStreamRepository); |
| | 111 | |
|
| 21 | 112 | | _audioProber = new AudioFileProber( |
| 21 | 113 | | loggerFactory.CreateLogger<AudioFileProber>(), |
| 21 | 114 | | mediaSourceManager, |
| 21 | 115 | | mediaEncoder, |
| 21 | 116 | | itemRepo, |
| 21 | 117 | | libraryManager, |
| 21 | 118 | | _lyricResolver, |
| 21 | 119 | | lyricManager, |
| 21 | 120 | | mediaStreamRepository); |
| 21 | 121 | | } |
| | 122 | |
|
| | 123 | | /// <inheritdoc /> |
| 0 | 124 | | public string Name => "Probe Provider"; |
| | 125 | |
|
| | 126 | | /// <inheritdoc /> |
| 0 | 127 | | public int Order => 100; |
| | 128 | |
|
| | 129 | | /// <inheritdoc /> |
| | 130 | | public bool HasChanged(BaseItem item, IDirectoryService directoryService) |
| | 131 | | { |
| 0 | 132 | | var video = item as Video; |
| 0 | 133 | | if (video is null || video.VideoType == VideoType.VideoFile || video.VideoType == VideoType.Iso) |
| | 134 | | { |
| 0 | 135 | | var path = item.Path; |
| | 136 | |
|
| 0 | 137 | | if (!string.IsNullOrWhiteSpace(path) && item.IsFileProtocol) |
| | 138 | | { |
| 0 | 139 | | var file = directoryService.GetFile(path); |
| 0 | 140 | | if (file is not null && file.LastWriteTimeUtc != item.DateModified) |
| | 141 | | { |
| 0 | 142 | | _logger.LogDebug("Refreshing {ItemPath} due to date modified timestamp change.", path); |
| 0 | 143 | | return true; |
| | 144 | | } |
| | 145 | | } |
| | 146 | | } |
| | 147 | |
|
| 0 | 148 | | if (video is not null |
| 0 | 149 | | && item.SupportsLocalMetadata |
| 0 | 150 | | && !video.IsPlaceHolder) |
| | 151 | | { |
| 0 | 152 | | var externalFiles = new HashSet<string>(_subtitleResolver.GetExternalFiles(video, directoryService, fals |
| 0 | 153 | | if (!new HashSet<string>(video.SubtitleFiles, StringComparer.Ordinal).SetEquals(externalFiles)) |
| | 154 | | { |
| 0 | 155 | | _logger.LogDebug("Refreshing {ItemPath} due to external subtitles change.", item.Path); |
| 0 | 156 | | return true; |
| | 157 | | } |
| | 158 | |
|
| 0 | 159 | | externalFiles = new HashSet<string>(_audioResolver.GetExternalFiles(video, directoryService, false).Sele |
| 0 | 160 | | if (!new HashSet<string>(video.AudioFiles, StringComparer.Ordinal).SetEquals(externalFiles)) |
| | 161 | | { |
| 0 | 162 | | _logger.LogDebug("Refreshing {ItemPath} due to external audio change.", item.Path); |
| 0 | 163 | | return true; |
| | 164 | | } |
| | 165 | | } |
| | 166 | |
|
| 0 | 167 | | if (item is Audio audio |
| 0 | 168 | | && item.SupportsLocalMetadata) |
| | 169 | | { |
| 0 | 170 | | var externalFiles = new HashSet<string>(_lyricResolver.GetExternalFiles(audio, directoryService, false). |
| 0 | 171 | | if (!new HashSet<string>(audio.LyricFiles, StringComparer.Ordinal).SetEquals(externalFiles)) |
| | 172 | | { |
| 0 | 173 | | _logger.LogDebug("Refreshing {ItemPath} due to external lyrics change.", item.Path); |
| 0 | 174 | | return true; |
| | 175 | | } |
| | 176 | | } |
| | 177 | |
|
| 0 | 178 | | return false; |
| | 179 | | } |
| | 180 | |
|
| | 181 | | /// <inheritdoc /> |
| | 182 | | public Task<ItemUpdateType> FetchAsync(Episode item, MetadataRefreshOptions options, CancellationToken cancellat |
| | 183 | | { |
| 0 | 184 | | return FetchVideoInfo(item, options, cancellationToken); |
| | 185 | | } |
| | 186 | |
|
| | 187 | | /// <inheritdoc /> |
| | 188 | | public Task<ItemUpdateType> FetchAsync(MusicVideo item, MetadataRefreshOptions options, CancellationToken cancel |
| | 189 | | { |
| 0 | 190 | | return FetchVideoInfo(item, options, cancellationToken); |
| | 191 | | } |
| | 192 | |
|
| | 193 | | /// <inheritdoc /> |
| | 194 | | public Task<ItemUpdateType> FetchAsync(Movie item, MetadataRefreshOptions options, CancellationToken cancellatio |
| | 195 | | { |
| 0 | 196 | | return FetchVideoInfo(item, options, cancellationToken); |
| | 197 | | } |
| | 198 | |
|
| | 199 | | /// <inheritdoc /> |
| | 200 | | public Task<ItemUpdateType> FetchAsync(Trailer item, MetadataRefreshOptions options, CancellationToken cancellat |
| | 201 | | { |
| 0 | 202 | | return FetchVideoInfo(item, options, cancellationToken); |
| | 203 | | } |
| | 204 | |
|
| | 205 | | /// <inheritdoc /> |
| | 206 | | public Task<ItemUpdateType> FetchAsync(Video item, MetadataRefreshOptions options, CancellationToken cancellatio |
| | 207 | | { |
| 0 | 208 | | return FetchVideoInfo(item, options, cancellationToken); |
| | 209 | | } |
| | 210 | |
|
| | 211 | | /// <inheritdoc /> |
| | 212 | | public Task<ItemUpdateType> FetchAsync(Audio item, MetadataRefreshOptions options, CancellationToken cancellatio |
| | 213 | | { |
| 0 | 214 | | return FetchAudioInfo(item, options, cancellationToken); |
| | 215 | | } |
| | 216 | |
|
| | 217 | | /// <inheritdoc /> |
| | 218 | | public Task<ItemUpdateType> FetchAsync(AudioBook item, MetadataRefreshOptions options, CancellationToken cancell |
| | 219 | | { |
| 0 | 220 | | return FetchAudioInfo(item, options, cancellationToken); |
| | 221 | | } |
| | 222 | |
|
| | 223 | | /// <summary> |
| | 224 | | /// Fetches video information for an item. |
| | 225 | | /// </summary> |
| | 226 | | /// <param name="item">The item.</param> |
| | 227 | | /// <param name="options">The <see cref="MetadataRefreshOptions"/>.</param> |
| | 228 | | /// <param name="cancellationToken">The <see cref="CancellationToken"/>.</param> |
| | 229 | | /// <typeparam name="T">The type of item to resolve.</typeparam> |
| | 230 | | /// <returns>A <see cref="Task"/> fetching the <see cref="ItemUpdateType"/> for an item.</returns> |
| | 231 | | public Task<ItemUpdateType> FetchVideoInfo<T>(T item, MetadataRefreshOptions options, CancellationToken cancella |
| | 232 | | where T : Video |
| | 233 | | { |
| 0 | 234 | | if (item.IsPlaceHolder) |
| | 235 | | { |
| 0 | 236 | | return _cachedTask; |
| | 237 | | } |
| | 238 | |
|
| 0 | 239 | | if (!item.IsCompleteMedia) |
| | 240 | | { |
| 0 | 241 | | return _cachedTask; |
| | 242 | | } |
| | 243 | |
|
| 0 | 244 | | if (item.IsVirtualItem) |
| | 245 | | { |
| 0 | 246 | | return _cachedTask; |
| | 247 | | } |
| | 248 | |
|
| 0 | 249 | | if (!options.EnableRemoteContentProbe && !item.IsFileProtocol) |
| | 250 | | { |
| 0 | 251 | | return _cachedTask; |
| | 252 | | } |
| | 253 | |
|
| 0 | 254 | | if (item.IsShortcut) |
| | 255 | | { |
| 0 | 256 | | FetchShortcutInfo(item); |
| | 257 | | } |
| | 258 | |
|
| 0 | 259 | | return _videoProber.ProbeVideo(item, options, cancellationToken); |
| | 260 | | } |
| | 261 | |
|
| | 262 | | private string NormalizeStrmLine(string line) |
| | 263 | | { |
| 0 | 264 | | return line.Replace("\t", string.Empty, StringComparison.Ordinal) |
| 0 | 265 | | .Replace("\r", string.Empty, StringComparison.Ordinal) |
| 0 | 266 | | .Replace("\n", string.Empty, StringComparison.Ordinal) |
| 0 | 267 | | .Trim(); |
| | 268 | | } |
| | 269 | |
|
| | 270 | | private void FetchShortcutInfo(BaseItem item) |
| | 271 | | { |
| 0 | 272 | | item.ShortcutPath = File.ReadAllLines(item.Path) |
| 0 | 273 | | .Select(NormalizeStrmLine) |
| 0 | 274 | | .FirstOrDefault(i => !string.IsNullOrWhiteSpace(i) && !i.StartsWith('#')); |
| 0 | 275 | | } |
| | 276 | |
|
| | 277 | | /// <summary> |
| | 278 | | /// Fetches audio information for an item. |
| | 279 | | /// </summary> |
| | 280 | | /// <param name="item">The item.</param> |
| | 281 | | /// <param name="options">The <see cref="MetadataRefreshOptions"/>.</param> |
| | 282 | | /// <param name="cancellationToken">The <see cref="CancellationToken"/>.</param> |
| | 283 | | /// <typeparam name="T">The type of item to resolve.</typeparam> |
| | 284 | | /// <returns>A <see cref="Task"/> fetching the <see cref="ItemUpdateType"/> for an item.</returns> |
| | 285 | | public Task<ItemUpdateType> FetchAudioInfo<T>(T item, MetadataRefreshOptions options, CancellationToken cancella |
| | 286 | | where T : Audio |
| | 287 | | { |
| 0 | 288 | | if (item.IsVirtualItem) |
| | 289 | | { |
| 0 | 290 | | return _cachedTask; |
| | 291 | | } |
| | 292 | |
|
| 0 | 293 | | if (!options.EnableRemoteContentProbe && !item.IsFileProtocol) |
| | 294 | | { |
| 0 | 295 | | return _cachedTask; |
| | 296 | | } |
| | 297 | |
|
| 0 | 298 | | if (item.IsShortcut) |
| | 299 | | { |
| 0 | 300 | | FetchShortcutInfo(item); |
| | 301 | | } |
| | 302 | |
|
| 0 | 303 | | return _audioProber.Probe(item, options, cancellationToken); |
| | 304 | | } |
| | 305 | | } |
| | 306 | | } |