mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-10-31 02:27:18 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			45 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System.IO;
 | |
| using System.Threading;
 | |
| using MediaBrowser.Controller.Entities.Movies;
 | |
| using MediaBrowser.Controller.Providers;
 | |
| using MediaBrowser.LocalMetadata.Parsers;
 | |
| using MediaBrowser.Model.IO;
 | |
| using Microsoft.Extensions.Logging;
 | |
| 
 | |
| namespace MediaBrowser.LocalMetadata.Providers
 | |
| {
 | |
|     /// <summary>
 | |
|     /// Class BoxSetXmlProvider.
 | |
|     /// </summary>
 | |
|     public class BoxSetXmlProvider : BaseXmlProvider<BoxSet>
 | |
|     {
 | |
|         private readonly ILogger<BoxSetXmlParser> _logger;
 | |
|         private readonly IProviderManager _providerManager;
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Initializes a new instance of the <see cref="BoxSetXmlProvider"/> class.
 | |
|         /// </summary>
 | |
|         /// <param name="fileSystem">Instance of the <see cref="IFileSystem"/> interface.</param>
 | |
|         /// <param name="logger">Instance of the <see cref="ILogger{BoxSetXmlParser}"/> interface.</param>
 | |
|         /// <param name="providerManager">Instance of the <see cref="IProviderManager"/> interface.</param>
 | |
|         public BoxSetXmlProvider(IFileSystem fileSystem, ILogger<BoxSetXmlParser> logger, IProviderManager providerManager)
 | |
|             : base(fileSystem)
 | |
|         {
 | |
|             _logger = logger;
 | |
|             _providerManager = providerManager;
 | |
|         }
 | |
| 
 | |
|         /// <inheritdoc />
 | |
|         protected override void Fetch(MetadataResult<BoxSet> result, string path, CancellationToken cancellationToken)
 | |
|         {
 | |
|             new BoxSetXmlParser(_logger, _providerManager).Fetch(result, path, cancellationToken);
 | |
|         }
 | |
| 
 | |
|         /// <inheritdoc />
 | |
|         protected override FileSystemMetadata? GetXmlFile(ItemInfo info, IDirectoryService directoryService)
 | |
|         {
 | |
|             return directoryService.GetFile(Path.Combine(info.Path, "collection.xml"));
 | |
|         }
 | |
|     }
 | |
| }
 |