| | 1 | | using Jellyfin.LiveTv.Channels; |
| | 2 | | using Jellyfin.LiveTv.Guide; |
| | 3 | | using Jellyfin.LiveTv.IO; |
| | 4 | | using Jellyfin.LiveTv.Listings; |
| | 5 | | using Jellyfin.LiveTv.Recordings; |
| | 6 | | using Jellyfin.LiveTv.Timers; |
| | 7 | | using Jellyfin.LiveTv.TunerHosts; |
| | 8 | | using Jellyfin.LiveTv.TunerHosts.HdHomerun; |
| | 9 | | using MediaBrowser.Controller.Channels; |
| | 10 | | using MediaBrowser.Controller.LiveTv; |
| | 11 | | using MediaBrowser.Model.IO; |
| | 12 | | using Microsoft.Extensions.DependencyInjection; |
| | 13 | |
|
| | 14 | | namespace Jellyfin.LiveTv.Extensions; |
| | 15 | |
|
| | 16 | | /// <summary> |
| | 17 | | /// Live TV extensions for <see cref="IServiceCollection"/>. |
| | 18 | | /// </summary> |
| | 19 | | public static class LiveTvServiceCollectionExtensions |
| | 20 | | { |
| | 21 | | /// <summary> |
| | 22 | | /// Adds Live TV services to the <see cref="IServiceCollection"/>. |
| | 23 | | /// </summary> |
| | 24 | | /// <param name="services">The <see cref="IServiceCollection"/> to add services to.</param> |
| | 25 | | public static void AddLiveTvServices(this IServiceCollection services) |
| | 26 | | { |
| 21 | 27 | | services.AddSingleton<LiveTvDtoService>(); |
| 21 | 28 | | services.AddSingleton<TimerManager>(); |
| 21 | 29 | | services.AddSingleton<SeriesTimerManager>(); |
| 21 | 30 | | services.AddSingleton<RecordingsMetadataManager>(); |
| | 31 | |
|
| 21 | 32 | | services.AddSingleton<ILiveTvManager, LiveTvManager>(); |
| 21 | 33 | | services.AddSingleton<IChannelManager, ChannelManager>(); |
| 21 | 34 | | services.AddSingleton<IStreamHelper, StreamHelper>(); |
| 21 | 35 | | services.AddSingleton<ITunerHostManager, TunerHostManager>(); |
| 21 | 36 | | services.AddSingleton<IListingsManager, ListingsManager>(); |
| 21 | 37 | | services.AddSingleton<IGuideManager, GuideManager>(); |
| 21 | 38 | | services.AddSingleton<IRecordingsManager, RecordingsManager>(); |
| | 39 | |
|
| 21 | 40 | | services.AddSingleton<ILiveTvService, DefaultLiveTvService>(); |
| 21 | 41 | | services.AddSingleton<ITunerHost, HdHomerunHost>(); |
| 21 | 42 | | services.AddSingleton<ITunerHost, M3UTunerHost>(); |
| 21 | 43 | | services.AddSingleton<IListingsProvider, SchedulesDirect>(); |
| 21 | 44 | | services.AddSingleton<IListingsProvider, XmlTvListingsProvider>(); |
| 21 | 45 | | } |
| | 46 | | } |