You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
110 lines
4.3 KiB
110 lines
4.3 KiB
using MediaBrowser.Controller.Entities;
|
|
using MediaBrowser.Model.Channels;
|
|
using MediaBrowser.Model.Dto;
|
|
using MediaBrowser.Model.Querying;
|
|
using System.Collections.Generic;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MediaBrowser.Controller.Channels
|
|
{
|
|
public interface IChannelManager
|
|
{
|
|
/// <summary>
|
|
/// Adds the parts.
|
|
/// </summary>
|
|
/// <param name="channels">The channels.</param>
|
|
/// <param name="factories">The factories.</param>
|
|
void AddParts(IEnumerable<IChannel> channels, IEnumerable<IChannelFactory> factories);
|
|
|
|
/// <summary>
|
|
/// Gets the channel download path.
|
|
/// </summary>
|
|
/// <value>The channel download path.</value>
|
|
string ChannelDownloadPath { get; }
|
|
|
|
/// <summary>
|
|
/// Gets the channel features.
|
|
/// </summary>
|
|
/// <param name="id">The identifier.</param>
|
|
/// <returns>ChannelFeatures.</returns>
|
|
ChannelFeatures GetChannelFeatures(string id);
|
|
|
|
/// <summary>
|
|
/// Gets all channel features.
|
|
/// </summary>
|
|
/// <returns>IEnumerable{ChannelFeatures}.</returns>
|
|
IEnumerable<ChannelFeatures> GetAllChannelFeatures();
|
|
|
|
/// <summary>
|
|
/// Gets the channel.
|
|
/// </summary>
|
|
/// <param name="id">The identifier.</param>
|
|
/// <returns>Channel.</returns>
|
|
Channel GetChannel(string id);
|
|
|
|
/// <summary>
|
|
/// Gets the channels.
|
|
/// </summary>
|
|
/// <param name="query">The query.</param>
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
|
/// <returns>Task{QueryResult{BaseItemDto}}.</returns>
|
|
Task<QueryResult<BaseItemDto>> GetChannels(ChannelQuery query, CancellationToken cancellationToken);
|
|
|
|
/// <summary>
|
|
/// Gets all media.
|
|
/// </summary>
|
|
/// <param name="query">The query.</param>
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
|
/// <returns>Task{QueryResult{BaseItemDto}}.</returns>
|
|
Task<QueryResult<BaseItemDto>> GetAllMedia(AllChannelMediaQuery query, CancellationToken cancellationToken);
|
|
|
|
/// <summary>
|
|
/// Gets the latest media.
|
|
/// </summary>
|
|
/// <param name="query">The query.</param>
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
|
/// <returns>Task{QueryResult{BaseItemDto}}.</returns>
|
|
Task<QueryResult<BaseItemDto>> GetLatestChannelItems(AllChannelMediaQuery query, CancellationToken cancellationToken);
|
|
|
|
/// <summary>
|
|
/// Gets the channel items.
|
|
/// </summary>
|
|
/// <param name="query">The query.</param>
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
|
/// <returns>Task{QueryResult{BaseItemDto}}.</returns>
|
|
Task<QueryResult<BaseItemDto>> GetChannelItems(ChannelItemQuery query, CancellationToken cancellationToken);
|
|
|
|
/// <summary>
|
|
/// Gets the cached channel item media sources.
|
|
/// </summary>
|
|
/// <param name="id">The identifier.</param>
|
|
/// <returns>IEnumerable{MediaSourceInfo}.</returns>
|
|
IEnumerable<MediaSourceInfo> GetCachedChannelItemMediaSources(string id);
|
|
|
|
/// <summary>
|
|
/// Gets the channel item media sources.
|
|
/// </summary>
|
|
/// <param name="id">The identifier.</param>
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
|
/// <returns>Task{IEnumerable{MediaSourceInfo}}.</returns>
|
|
Task<IEnumerable<MediaSourceInfo>> GetChannelItemMediaSources(string id, CancellationToken cancellationToken);
|
|
|
|
/// <summary>
|
|
/// Gets the channel folder.
|
|
/// </summary>
|
|
/// <param name="userId">The user identifier.</param>
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
|
/// <returns>BaseItemDto.</returns>
|
|
Task<Folder> GetInternalChannelFolder(string userId, CancellationToken cancellationToken);
|
|
|
|
/// <summary>
|
|
/// Gets the channel folder.
|
|
/// </summary>
|
|
/// <param name="userId">The user identifier.</param>
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
|
/// <returns>BaseItemDto.</returns>
|
|
Task<BaseItemDto> GetChannelFolder(string userId, CancellationToken cancellationToken);
|
|
}
|
|
}
|