jellyfin/MediaBrowser.Controller/LiveTv/IListingsProvider.cs

25 lines
813 B
C#
Raw Normal View History

using System;
2018-12-27 18:27:57 -05:00
using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
using MediaBrowser.Model.Dto;
using MediaBrowser.Model.LiveTv;
2018-12-27 18:27:57 -05:00
namespace MediaBrowser.Controller.LiveTv
{
public interface IListingsProvider
{
string Name { get; }
2019-09-25 11:19:48 -04:00
2018-12-27 18:27:57 -05:00
string Type { get; }
2019-09-25 11:19:48 -04:00
2018-12-27 18:27:57 -05:00
Task<IEnumerable<ProgramInfo>> GetProgramsAsync(ListingsProviderInfo info, string channelId, DateTime startDateUtc, DateTime endDateUtc, CancellationToken cancellationToken);
2019-09-25 11:19:48 -04:00
2018-12-27 18:27:57 -05:00
Task Validate(ListingsProviderInfo info, bool validateLogin, bool validateListings);
2019-09-25 11:19:48 -04:00
2018-12-27 18:27:57 -05:00
Task<List<NameIdPair>> GetLineups(ListingsProviderInfo info, string country, string location);
2019-09-25 11:19:48 -04:00
2018-12-27 18:27:57 -05:00
Task<List<ChannelInfo>> GetChannels(ListingsProviderInfo info, CancellationToken cancellationToken);
}
}