mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-10-31 02:27:18 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			131 lines
		
	
	
		
			5.0 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			131 lines
		
	
	
		
			5.0 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| #pragma warning disable CS1591
 | |
| 
 | |
| using System;
 | |
| using System.Collections.Generic;
 | |
| using System.Globalization;
 | |
| using System.Linq;
 | |
| using System.Net.Http;
 | |
| using System.Threading;
 | |
| using System.Threading.Tasks;
 | |
| using MediaBrowser.Common.Net;
 | |
| using MediaBrowser.Controller.Entities.Movies;
 | |
| using MediaBrowser.Controller.Library;
 | |
| using MediaBrowser.Controller.Providers;
 | |
| using MediaBrowser.Model.Entities;
 | |
| using MediaBrowser.Model.Providers;
 | |
| 
 | |
| namespace MediaBrowser.Providers.Plugins.Tmdb.BoxSets
 | |
| {
 | |
|     public class TmdbBoxSetProvider : IRemoteMetadataProvider<BoxSet, BoxSetInfo>
 | |
|     {
 | |
|         private readonly IHttpClientFactory _httpClientFactory;
 | |
|         private readonly TmdbClientManager _tmdbClientManager;
 | |
|         private readonly ILibraryManager _libraryManager;
 | |
| 
 | |
|         public TmdbBoxSetProvider(IHttpClientFactory httpClientFactory, TmdbClientManager tmdbClientManager, ILibraryManager libraryManager)
 | |
|         {
 | |
|             _httpClientFactory = httpClientFactory;
 | |
|             _tmdbClientManager = tmdbClientManager;
 | |
|             _libraryManager = libraryManager;
 | |
|         }
 | |
| 
 | |
|         public string Name => TmdbUtils.ProviderName;
 | |
| 
 | |
|         public async Task<IEnumerable<RemoteSearchResult>> GetSearchResults(BoxSetInfo searchInfo, CancellationToken cancellationToken)
 | |
|         {
 | |
|             var tmdbId = Convert.ToInt32(searchInfo.GetProviderId(MetadataProvider.Tmdb), CultureInfo.InvariantCulture);
 | |
|             var language = searchInfo.MetadataLanguage;
 | |
| 
 | |
|             if (tmdbId > 0)
 | |
|             {
 | |
|                 var collection = await _tmdbClientManager.GetCollectionAsync(tmdbId, language, TmdbUtils.GetImageLanguagesParam(language), cancellationToken).ConfigureAwait(false);
 | |
| 
 | |
|                 if (collection == null)
 | |
|                 {
 | |
|                     return Enumerable.Empty<RemoteSearchResult>();
 | |
|                 }
 | |
| 
 | |
|                 var result = new RemoteSearchResult
 | |
|                 {
 | |
|                     Name = collection.Name,
 | |
|                     SearchProviderName = Name
 | |
|                 };
 | |
| 
 | |
|                 if (collection.Images != null)
 | |
|                 {
 | |
|                     result.ImageUrl = _tmdbClientManager.GetPosterUrl(collection.PosterPath);
 | |
|                 }
 | |
| 
 | |
|                 result.SetProviderId(MetadataProvider.Tmdb, collection.Id.ToString(CultureInfo.InvariantCulture));
 | |
| 
 | |
|                 return new[] { result };
 | |
|             }
 | |
| 
 | |
|             var collectionSearchResults = await _tmdbClientManager.SearchCollectionAsync(searchInfo.Name, language, cancellationToken).ConfigureAwait(false);
 | |
| 
 | |
|             var collections = new List<RemoteSearchResult>();
 | |
|             for (var i = 0; i < collectionSearchResults.Count; i++)
 | |
|             {
 | |
|                 var collection = new RemoteSearchResult
 | |
|                 {
 | |
|                     Name = collectionSearchResults[i].Name,
 | |
|                     SearchProviderName = Name
 | |
|                 };
 | |
|                 collection.SetProviderId(MetadataProvider.Tmdb, collectionSearchResults[i].Id.ToString(CultureInfo.InvariantCulture));
 | |
| 
 | |
|                 collections.Add(collection);
 | |
|             }
 | |
| 
 | |
|             return collections;
 | |
|         }
 | |
| 
 | |
|         public async Task<MetadataResult<BoxSet>> GetMetadata(BoxSetInfo id, CancellationToken cancellationToken)
 | |
|         {
 | |
|             var tmdbId = Convert.ToInt32(id.GetProviderId(MetadataProvider.Tmdb), CultureInfo.InvariantCulture);
 | |
|             var language = id.MetadataLanguage;
 | |
|             // We don't already have an Id, need to fetch it
 | |
|             if (tmdbId <= 0)
 | |
|             {
 | |
|                 // ParseName is required here.
 | |
|                 // Caller provides the filename with extension stripped and NOT the parsed filename
 | |
|                 var parsedName = _libraryManager.ParseName(id.Name);
 | |
|                 var cleanedName = TmdbUtils.CleanName(parsedName.Name);
 | |
|                 var searchResults = await _tmdbClientManager.SearchCollectionAsync(cleanedName, language, cancellationToken).ConfigureAwait(false);
 | |
| 
 | |
|                 if (searchResults != null && searchResults.Count > 0)
 | |
|                 {
 | |
|                     tmdbId = searchResults[0].Id;
 | |
|                 }
 | |
|             }
 | |
| 
 | |
|             var result = new MetadataResult<BoxSet>();
 | |
| 
 | |
|             if (tmdbId > 0)
 | |
|             {
 | |
|                 var collection = await _tmdbClientManager.GetCollectionAsync(tmdbId, language, TmdbUtils.GetImageLanguagesParam(language), cancellationToken).ConfigureAwait(false);
 | |
| 
 | |
|                 if (collection != null)
 | |
|                 {
 | |
|                     var item = new BoxSet
 | |
|                     {
 | |
|                         Name = collection.Name,
 | |
|                         Overview = collection.Overview
 | |
|                     };
 | |
| 
 | |
|                     item.SetProviderId(MetadataProvider.Tmdb, collection.Id.ToString(CultureInfo.InvariantCulture));
 | |
| 
 | |
|                     result.HasMetadata = true;
 | |
|                     result.Item = item;
 | |
|                 }
 | |
|             }
 | |
| 
 | |
|             return result;
 | |
|         }
 | |
| 
 | |
|         public Task<HttpResponseMessage> GetImageResponse(string url, CancellationToken cancellationToken)
 | |
|         {
 | |
|             return _httpClientFactory.CreateClient(NamedClient.Default).GetAsync(url, cancellationToken);
 | |
|         }
 | |
|     }
 | |
| }
 |