2014-02-20 04:53:15 +00:00
|
|
|
|
using MediaBrowser.Common.Net;
|
|
|
|
|
using MediaBrowser.Controller.Entities;
|
|
|
|
|
using MediaBrowser.Model.Providers;
|
2014-02-19 05:21:03 +00:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Threading;
|
2014-01-31 19:55:21 +00:00
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Providers
|
|
|
|
|
{
|
|
|
|
|
public interface IRemoteMetadataProvider : IMetadataProvider
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2014-02-20 04:53:15 +00:00
|
|
|
|
public interface IRemoteMetadataProvider<TItemType, in TLookupInfoType> : IMetadataProvider<TItemType>, IRemoteMetadataProvider, IRemoteSearchProvider<TLookupInfoType>
|
2014-02-07 03:10:13 +00:00
|
|
|
|
where TItemType : IHasMetadata, IHasLookupInfo<TLookupInfoType>
|
|
|
|
|
where TLookupInfoType : ItemLookupInfo, new()
|
2014-01-31 19:55:21 +00:00
|
|
|
|
{
|
2014-02-07 03:10:13 +00:00
|
|
|
|
Task<MetadataResult<TItemType>> GetMetadata(TLookupInfoType info, CancellationToken cancellationToken);
|
2014-01-31 19:55:21 +00:00
|
|
|
|
}
|
2014-02-19 05:21:03 +00:00
|
|
|
|
|
2014-03-01 22:34:27 +00:00
|
|
|
|
public interface IRemoteSearchProvider : IMetadataProvider
|
2014-02-19 05:21:03 +00:00
|
|
|
|
{
|
2014-02-20 04:53:15 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the image response.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="url">The URL.</param>
|
|
|
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
|
|
|
|
/// <returns>Task{HttpResponseInfo}.</returns>
|
|
|
|
|
Task<HttpResponseInfo> GetImageResponse(string url, CancellationToken cancellationToken);
|
2014-02-19 05:21:03 +00:00
|
|
|
|
}
|
2014-03-01 22:34:27 +00:00
|
|
|
|
|
|
|
|
|
public interface IRemoteSearchProvider<in TLookupInfoType> : IRemoteSearchProvider
|
|
|
|
|
where TLookupInfoType : ItemLookupInfo
|
|
|
|
|
{
|
|
|
|
|
Task<IEnumerable<RemoteSearchResult>> GetSearchResults(TLookupInfoType searchInfo, CancellationToken cancellationToken);
|
|
|
|
|
}
|
2014-02-19 05:21:03 +00:00
|
|
|
|
|
2014-02-19 16:24:06 +00:00
|
|
|
|
public class RemoteSearchQuery<T>
|
|
|
|
|
where T : ItemLookupInfo
|
|
|
|
|
{
|
|
|
|
|
public T SearchInfo { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// If set will only search within the given provider
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string SearchProviderName { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets a value indicating whether [include disabled providers].
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value><c>true</c> if [include disabled providers]; otherwise, <c>false</c>.</value>
|
|
|
|
|
public bool IncludeDisabledProviders { get; set; }
|
|
|
|
|
}
|
2014-01-31 19:55:21 +00:00
|
|
|
|
}
|