2014-03-01 22:34:27 +00:00
|
|
|
|
using MediaBrowser.Common.Net;
|
|
|
|
|
using MediaBrowser.Controller.Entities;
|
2013-06-23 17:48:30 +00:00
|
|
|
|
using MediaBrowser.Controller.Library;
|
2014-02-02 13:36:31 +00:00
|
|
|
|
using MediaBrowser.Model.Configuration;
|
2013-06-28 20:25:58 +00:00
|
|
|
|
using MediaBrowser.Model.Entities;
|
2013-10-30 21:33:27 +00:00
|
|
|
|
using MediaBrowser.Model.Providers;
|
2015-03-14 04:50:23 +00:00
|
|
|
|
using System;
|
2013-04-07 20:55:05 +00:00
|
|
|
|
using System.Collections.Generic;
|
2013-03-08 05:08:27 +00:00
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Threading;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Providers
|
|
|
|
|
{
|
2013-06-23 17:48:30 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Interface IProviderManager
|
|
|
|
|
/// </summary>
|
2013-04-07 20:55:05 +00:00
|
|
|
|
public interface IProviderManager
|
2013-03-08 05:08:27 +00:00
|
|
|
|
{
|
2015-03-14 04:50:23 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Queues the refresh.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="itemId">The item identifier.</param>
|
|
|
|
|
/// <param name="options">The options.</param>
|
|
|
|
|
void QueueRefresh(Guid itemId, MetadataRefreshOptions options);
|
|
|
|
|
|
2015-03-14 15:38:16 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Refreshes the full item.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="item">The item.</param>
|
|
|
|
|
/// <param name="options">The options.</param>
|
|
|
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
|
|
|
|
/// <returns>Task.</returns>
|
|
|
|
|
Task RefreshFullItem(IHasMetadata item, MetadataRefreshOptions options, CancellationToken cancellationToken);
|
|
|
|
|
|
2014-01-28 18:37:01 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Refreshes the metadata.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="item">The item.</param>
|
|
|
|
|
/// <param name="options">The options.</param>
|
|
|
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
|
|
|
|
/// <returns>Task.</returns>
|
2015-03-14 15:38:16 +00:00
|
|
|
|
Task<ItemUpdateType> RefreshSingleItem(IHasMetadata item, MetadataRefreshOptions options, CancellationToken cancellationToken);
|
2014-01-28 18:37:01 +00:00
|
|
|
|
|
2013-03-08 05:08:27 +00:00
|
|
|
|
/// <summary>
|
2013-06-28 20:25:58 +00:00
|
|
|
|
/// Saves the image.
|
2013-03-08 05:08:27 +00:00
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="item">The item.</param>
|
2013-06-28 20:25:58 +00:00
|
|
|
|
/// <param name="url">The URL.</param>
|
|
|
|
|
/// <param name="resourcePool">The resource pool.</param>
|
|
|
|
|
/// <param name="type">The type.</param>
|
|
|
|
|
/// <param name="imageIndex">Index of the image.</param>
|
2013-03-08 05:08:27 +00:00
|
|
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
|
|
|
|
/// <returns>Task.</returns>
|
2014-02-15 22:42:06 +00:00
|
|
|
|
Task SaveImage(IHasImages item, string url, SemaphoreSlim resourcePool, ImageType type, int? imageIndex, CancellationToken cancellationToken);
|
2013-03-08 05:08:27 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
2013-06-28 20:25:58 +00:00
|
|
|
|
/// Saves the image.
|
2013-03-08 05:08:27 +00:00
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="item">The item.</param>
|
2013-06-28 20:25:58 +00:00
|
|
|
|
/// <param name="source">The source.</param>
|
|
|
|
|
/// <param name="mimeType">Type of the MIME.</param>
|
|
|
|
|
/// <param name="type">The type.</param>
|
|
|
|
|
/// <param name="imageIndex">Index of the image.</param>
|
2013-03-08 05:08:27 +00:00
|
|
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
2013-06-28 20:25:58 +00:00
|
|
|
|
/// <returns>Task.</returns>
|
2014-02-15 22:42:06 +00:00
|
|
|
|
Task SaveImage(IHasImages item, Stream source, string mimeType, ImageType type, int? imageIndex, CancellationToken cancellationToken);
|
2013-03-08 05:08:27 +00:00
|
|
|
|
|
2014-10-20 03:04:45 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Saves the image.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="item">The item.</param>
|
|
|
|
|
/// <param name="source">The source.</param>
|
|
|
|
|
/// <param name="mimeType">Type of the MIME.</param>
|
|
|
|
|
/// <param name="type">The type.</param>
|
|
|
|
|
/// <param name="imageIndex">Index of the image.</param>
|
|
|
|
|
/// <param name="internalCacheKey">The internal cache key.</param>
|
|
|
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
|
|
|
|
/// <returns>Task.</returns>
|
|
|
|
|
Task SaveImage(IHasImages item, Stream source, string mimeType, ImageType type, int? imageIndex, string internalCacheKey, CancellationToken cancellationToken);
|
2015-04-08 15:45:30 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Saves the image.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="item">The item.</param>
|
|
|
|
|
/// <param name="source">The source.</param>
|
|
|
|
|
/// <param name="mimeType">Type of the MIME.</param>
|
|
|
|
|
/// <param name="type">The type.</param>
|
|
|
|
|
/// <param name="imageIndex">Index of the image.</param>
|
|
|
|
|
/// <param name="internalCacheKey">The internal cache key.</param>
|
|
|
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
|
|
|
|
/// <returns>Task.</returns>
|
|
|
|
|
Task SaveImage(IHasImages item, string source, string mimeType, ImageType type, int? imageIndex, string internalCacheKey, CancellationToken cancellationToken);
|
2014-10-20 03:04:45 +00:00
|
|
|
|
|
2013-03-08 05:08:27 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Adds the metadata providers.
|
|
|
|
|
/// </summary>
|
2013-10-30 21:33:27 +00:00
|
|
|
|
/// <param name="imageProviders">The image providers.</param>
|
2014-01-28 18:37:01 +00:00
|
|
|
|
/// <param name="metadataServices">The metadata services.</param>
|
|
|
|
|
/// <param name="metadataProviders">The metadata providers.</param>
|
2014-02-02 13:36:31 +00:00
|
|
|
|
/// <param name="savers">The savers.</param>
|
2014-02-19 05:21:03 +00:00
|
|
|
|
/// <param name="imageSavers">The image savers.</param>
|
2014-02-21 18:48:15 +00:00
|
|
|
|
/// <param name="externalIds">The external ids.</param>
|
2016-05-26 17:18:58 +00:00
|
|
|
|
void AddParts(IEnumerable<IImageProvider> imageProviders, IEnumerable<IMetadataService> metadataServices, IEnumerable<IMetadataProvider> metadataProviders,
|
2014-02-19 05:21:03 +00:00
|
|
|
|
IEnumerable<IMetadataSaver> savers,
|
2014-02-21 18:48:15 +00:00
|
|
|
|
IEnumerable<IImageSaver> imageSavers,
|
|
|
|
|
IEnumerable<IExternalId> externalIds);
|
2013-10-30 21:33:27 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the available remote images.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="item">The item.</param>
|
2014-02-12 03:46:27 +00:00
|
|
|
|
/// <param name="query">The query.</param>
|
2013-10-30 21:33:27 +00:00
|
|
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
|
|
|
|
/// <returns>Task{IEnumerable{RemoteImageInfo}}.</returns>
|
2014-02-12 03:46:27 +00:00
|
|
|
|
Task<IEnumerable<RemoteImageInfo>> GetAvailableRemoteImages(IHasImages item, RemoteImageQuery query, CancellationToken cancellationToken);
|
2013-11-01 01:48:14 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the image providers.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="item">The item.</param>
|
2014-01-28 18:37:01 +00:00
|
|
|
|
/// <returns>IEnumerable{ImageProviderInfo}.</returns>
|
2014-02-09 21:11:11 +00:00
|
|
|
|
IEnumerable<ImageProviderInfo> GetRemoteImageProviderInfo(IHasImages item);
|
2014-02-02 13:36:31 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets all metadata plugins.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>IEnumerable{MetadataPlugin}.</returns>
|
|
|
|
|
IEnumerable<MetadataPluginSummary> GetAllMetadataPlugins();
|
|
|
|
|
|
2014-02-21 18:48:15 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the external urls.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="item">The item.</param>
|
|
|
|
|
/// <returns>IEnumerable{ExternalUrl}.</returns>
|
2016-05-29 06:03:09 +00:00
|
|
|
|
IEnumerable<ExternalUrl> GetExternalUrls(BaseItem item);
|
2014-02-21 18:48:15 +00:00
|
|
|
|
|
2014-02-21 21:44:10 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the external identifier infos.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="item">The item.</param>
|
|
|
|
|
/// <returns>IEnumerable{ExternalIdInfo}.</returns>
|
|
|
|
|
IEnumerable<ExternalIdInfo> GetExternalIdInfos(IHasProviderIds item);
|
|
|
|
|
|
2014-02-02 13:36:31 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Saves the metadata.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="item">The item.</param>
|
|
|
|
|
/// <param name="updateType">Type of the update.</param>
|
|
|
|
|
/// <returns>Task.</returns>
|
|
|
|
|
Task SaveMetadata(IHasMetadata item, ItemUpdateType updateType);
|
2014-02-09 23:08:01 +00:00
|
|
|
|
|
2014-09-27 02:28:13 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Saves the metadata.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="item">The item.</param>
|
|
|
|
|
/// <param name="updateType">Type of the update.</param>
|
|
|
|
|
/// <param name="savers">The savers.</param>
|
|
|
|
|
/// <returns>Task.</returns>
|
|
|
|
|
Task SaveMetadata(IHasMetadata item, ItemUpdateType updateType, IEnumerable<string> savers);
|
|
|
|
|
|
2014-02-09 23:08:01 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the metadata options.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="item">The item.</param>
|
|
|
|
|
/// <returns>MetadataOptions.</returns>
|
2014-02-11 04:55:01 +00:00
|
|
|
|
MetadataOptions GetMetadataOptions(IHasImages item);
|
2014-02-20 04:53:15 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the remote search results.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <typeparam name="TItemType">The type of the t item type.</typeparam>
|
|
|
|
|
/// <typeparam name="TLookupType">The type of the t lookup type.</typeparam>
|
|
|
|
|
/// <param name="searchInfo">The search information.</param>
|
|
|
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
|
|
|
|
/// <returns>Task{IEnumerable{SearchResult{``1}}}.</returns>
|
|
|
|
|
Task<IEnumerable<RemoteSearchResult>> GetRemoteSearchResults<TItemType, TLookupType>(
|
|
|
|
|
RemoteSearchQuery<TLookupType> searchInfo,
|
|
|
|
|
CancellationToken cancellationToken)
|
|
|
|
|
where TItemType : BaseItem, new()
|
|
|
|
|
where TLookupType : ItemLookupInfo;
|
2014-03-01 22:34:27 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the search image.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="providerName">Name of the provider.</param>
|
|
|
|
|
/// <param name="url">The URL.</param>
|
|
|
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
|
|
|
|
/// <returns>Task{HttpResponseInfo}.</returns>
|
|
|
|
|
Task<HttpResponseInfo> GetSearchImage(string providerName, string url, CancellationToken cancellationToken);
|
2013-03-08 05:08:27 +00:00
|
|
|
|
}
|
|
|
|
|
}
|