using MediaBrowser.Controller.Entities; using MediaBrowser.Controller.Providers; using MediaBrowser.Model.Entities; using System; using System.Collections.Generic; using System.Threading; using System.Threading.Tasks; namespace MediaBrowser.Controller.Channels { public interface IChannel { /// /// Gets the name. /// /// The name. string Name { get; } /// /// Gets the home page URL. /// /// The home page URL. string HomePageUrl { get; } /// /// Gets the capabilities. /// /// ChannelCapabilities. ChannelCapabilities GetCapabilities(); /// /// Determines whether [is enabled for] [the specified user]. /// /// The user. /// true if [is enabled for] [the specified user]; otherwise, false. bool IsEnabledFor(User user); /// /// Searches the specified search term. /// /// The search information. /// The user. /// The cancellation token. /// Task{IEnumerable{ChannelItemInfo}}. Task> Search(ChannelSearchInfo searchInfo, User user, CancellationToken cancellationToken); /// /// Gets the channel items. /// /// The query. /// The cancellation token. /// Task{IEnumerable{ChannelItem}}. Task GetChannelItems(InternalChannelItemQuery query, CancellationToken cancellationToken); /// /// Gets the channel image. /// /// The type. /// The cancellation token. /// Task{DynamicImageInfo}. Task GetChannelImage(ImageType type, CancellationToken cancellationToken); /// /// Gets the supported channel images. /// /// IEnumerable{ImageType}. IEnumerable GetSupportedChannelImages(); } public class ChannelCapabilities { public bool CanSearch { get; set; } } public class ChannelSearchInfo { public string SearchTerm { get; set; } } public class InternalChannelItemQuery { public string CategoryId { get; set; } public User User { get; set; } } public class ChannelItemResult { public List Items { get; set; } public TimeSpan CacheLength { get; set; } } }