mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-10-30 18:22:48 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			91 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			91 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| #pragma warning disable CS1591
 | |
| 
 | |
| using System;
 | |
| using System.Collections.Generic;
 | |
| using System.Threading;
 | |
| using System.Threading.Tasks;
 | |
| using MediaBrowser.Controller.Entities;
 | |
| using MediaBrowser.Model.Channels;
 | |
| using MediaBrowser.Model.Dto;
 | |
| using MediaBrowser.Model.Querying;
 | |
| 
 | |
| namespace MediaBrowser.Controller.Channels
 | |
| {
 | |
|     public interface IChannelManager
 | |
|     {
 | |
|         /// <summary>
 | |
|         /// Adds the parts.
 | |
|         /// </summary>
 | |
|         /// <param name="channels">The channels.</param>
 | |
|         void AddParts(IEnumerable<IChannel> channels);
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Gets the channel features.
 | |
|         /// </summary>
 | |
|         /// <param name="id">The identifier.</param>
 | |
|         /// <returns>ChannelFeatures.</returns>
 | |
|         ChannelFeatures GetChannelFeatures(Guid? id);
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Gets all channel features.
 | |
|         /// </summary>
 | |
|         /// <returns>IEnumerable{ChannelFeatures}.</returns>
 | |
|         ChannelFeatures[] GetAllChannelFeatures();
 | |
| 
 | |
|         bool EnableMediaSourceDisplay(BaseItem item);
 | |
| 
 | |
|         bool CanDelete(BaseItem item);
 | |
| 
 | |
|         Task DeleteItem(BaseItem item);
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Gets the channel.
 | |
|         /// </summary>
 | |
|         /// <param name="id">The identifier.</param>
 | |
|         /// <returns>Channel.</returns>
 | |
|         Channel GetChannel(string id);
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Gets the channels internal.
 | |
|         /// </summary>
 | |
|         /// <param name="query">The query.</param>
 | |
|         QueryResult<Channel> GetChannelsInternal(ChannelQuery query);
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Gets the channels.
 | |
|         /// </summary>
 | |
|         /// <param name="query">The query.</param>
 | |
|         QueryResult<BaseItemDto> GetChannels(ChannelQuery query);
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Gets the latest media.
 | |
|         /// </summary>
 | |
|         Task<QueryResult<BaseItemDto>> GetLatestChannelItems(InternalItemsQuery query, CancellationToken cancellationToken);
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Gets the latest media.
 | |
|         /// </summary>
 | |
|         Task<QueryResult<BaseItem>> GetLatestChannelItemsInternal(InternalItemsQuery query, CancellationToken cancellationToken);
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Gets the channel items.
 | |
|         /// </summary>
 | |
|         Task<QueryResult<BaseItemDto>> GetChannelItems(InternalItemsQuery query, CancellationToken cancellationToken);
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Gets the channel items internal.
 | |
|         /// </summary>
 | |
|         Task<QueryResult<BaseItem>> GetChannelItemsInternal(InternalItemsQuery query, IProgress<double> progress, CancellationToken cancellationToken);
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Gets the channel item media sources.
 | |
|         /// </summary>
 | |
|         /// <param name="item">The item.</param>
 | |
|         /// <param name="cancellationToken">The cancellation token.</param>
 | |
|         /// <returns>Task{IEnumerable{MediaSourceInfo}}.</returns>
 | |
|         IEnumerable<MediaSourceInfo> GetStaticMediaSources(BaseItem item, CancellationToken cancellationToken);
 | |
| 
 | |
|         bool EnableMediaProbe(BaseItem item);
 | |
|     }
 | |
| }
 |