jellyfin/Emby.Server.Implementations/Channels/ChannelDynamicMediaSourceProvider.cs

44 lines
1.5 KiB
C#
Raw Normal View History

using System;
2015-03-28 21:22:27 +01:00
using System.Collections.Generic;
using System.Linq;
2015-03-28 21:22:27 +01:00
using System.Threading;
using System.Threading.Tasks;
using MediaBrowser.Controller.Channels;
using MediaBrowser.Controller.Entities;
using MediaBrowser.Controller.Library;
using MediaBrowser.Model.Dto;
2015-03-28 21:22:27 +01:00
namespace Emby.Server.Implementations.Channels
2015-03-28 21:22:27 +01:00
{
/// <summary>
/// A media source provider for channels.
/// </summary>
2015-03-28 21:22:27 +01:00
public class ChannelDynamicMediaSourceProvider : IMediaSourceProvider
{
private readonly ChannelManager _channelManager;
2019-11-01 18:38:54 +01:00
/// <summary>
/// Initializes a new instance of the <see cref="ChannelDynamicMediaSourceProvider"/> class.
/// </summary>
/// <param name="channelManager">The channel manager.</param>
2015-03-28 21:22:27 +01:00
public ChannelDynamicMediaSourceProvider(IChannelManager channelManager)
{
_channelManager = (ChannelManager)channelManager;
}
2019-11-01 18:38:54 +01:00
/// <inheritdoc />
2018-09-12 19:26:21 +02:00
public Task<IEnumerable<MediaSourceInfo>> GetMediaSources(BaseItem item, CancellationToken cancellationToken)
2015-03-28 21:22:27 +01:00
{
return item.SourceType == SourceType.Channel
? _channelManager.GetDynamicMediaSources(item, cancellationToken)
: Task.FromResult(Enumerable.Empty<MediaSourceInfo>());
2015-03-28 21:22:27 +01:00
}
2019-11-01 18:38:54 +01:00
/// <inheritdoc />
2018-09-12 19:26:21 +02:00
public Task<ILiveStream> OpenMediaSource(string openToken, List<ILiveStream> currentLiveStreams, CancellationToken cancellationToken)
2015-03-28 21:22:27 +01:00
{
throw new NotImplementedException();
}
}
}