jellyfin/Emby.Server.Implementations/LiveTv/TunerHosts/M3UTunerHost.cs

217 lines
8 KiB
C#
Raw Normal View History

#nullable disable
#pragma warning disable CS1591
using System;
2015-07-20 20:32:55 +02:00
using System.Collections.Generic;
using System.Globalization;
using System.IO;
2015-07-20 20:32:55 +02:00
using System.Linq;
using System.Net.Http;
2015-07-20 20:32:55 +02:00
using System.Threading;
using System.Threading.Tasks;
2021-12-20 13:31:07 +01:00
using Jellyfin.Extensions;
using MediaBrowser.Common.Extensions;
2015-09-23 03:22:52 +02:00
using MediaBrowser.Common.Net;
2016-10-18 20:35:27 +02:00
using MediaBrowser.Controller;
2016-09-25 20:39:13 +02:00
using MediaBrowser.Controller.Configuration;
using MediaBrowser.Controller.Library;
using MediaBrowser.Controller.LiveTv;
using MediaBrowser.Model.Dto;
using MediaBrowser.Model.Entities;
using MediaBrowser.Model.IO;
using MediaBrowser.Model.LiveTv;
using MediaBrowser.Model.MediaInfo;
2020-08-05 00:58:14 +02:00
using Microsoft.Extensions.Caching.Memory;
using Microsoft.Extensions.Logging;
using Microsoft.Net.Http.Headers;
2015-07-20 20:32:55 +02:00
2016-11-04 00:35:19 +01:00
namespace Emby.Server.Implementations.LiveTv.TunerHosts
2015-07-20 20:32:55 +02:00
{
2016-02-19 07:20:18 +01:00
public class M3UTunerHost : BaseTunerHost, ITunerHost, IConfigurableTunerHost
2015-07-20 20:32:55 +02:00
{
2021-05-28 14:33:54 +02:00
private static readonly string[] _disallowedSharedStreamExtensions =
{
".mkv",
".mp4",
".m3u8",
".mpd"
};
private readonly IHttpClientFactory _httpClientFactory;
2016-10-18 20:35:27 +02:00
private readonly IServerApplicationHost _appHost;
2017-08-20 21:10:00 +02:00
private readonly INetworkManager _networkManager;
2018-09-12 19:26:21 +02:00
private readonly IMediaSourceManager _mediaSourceManager;
2019-07-07 16:39:35 +02:00
private readonly IStreamHelper _streamHelper;
public M3UTunerHost(
IServerConfigurationManager config,
IMediaSourceManager mediaSourceManager,
ILogger<M3UTunerHost> logger,
2019-07-07 16:39:35 +02:00
IFileSystem fileSystem,
IHttpClientFactory httpClientFactory,
2019-07-07 16:39:35 +02:00
IServerApplicationHost appHost,
INetworkManager networkManager,
2020-08-05 00:58:14 +02:00
IStreamHelper streamHelper,
IMemoryCache memoryCache)
: base(config, logger, fileSystem, memoryCache)
2015-07-20 20:32:55 +02:00
{
_httpClientFactory = httpClientFactory;
2016-10-18 20:35:27 +02:00
_appHost = appHost;
2017-08-20 21:10:00 +02:00
_networkManager = networkManager;
2018-09-12 19:26:21 +02:00
_mediaSourceManager = mediaSourceManager;
2019-07-07 16:39:35 +02:00
_streamHelper = streamHelper;
2015-07-20 20:32:55 +02:00
}
public override string Type => "m3u";
2015-08-19 18:43:23 +02:00
public virtual string Name => "M3U Tuner";
2015-08-19 18:43:23 +02:00
2017-07-30 20:02:25 +02:00
private string GetFullChannelIdPrefix(TunerHostInfo info)
{
return ChannelIdPrefix + info.Url.GetMD5().ToString("N", CultureInfo.InvariantCulture);
2017-07-30 20:02:25 +02:00
}
2021-09-03 18:46:34 +02:00
protected override async Task<List<ChannelInfo>> GetChannelsInternal(TunerHostInfo tuner, CancellationToken cancellationToken)
2015-08-19 18:43:23 +02:00
{
2021-09-03 18:46:34 +02:00
var channelIdPrefix = GetFullChannelIdPrefix(tuner);
2017-07-30 20:02:25 +02:00
2021-05-28 14:33:54 +02:00
return await new M3uParser(Logger, _httpClientFactory)
2021-09-03 18:46:34 +02:00
.Parse(tuner, channelIdPrefix, cancellationToken)
.ConfigureAwait(false);
2015-07-20 20:32:55 +02:00
}
2015-08-19 18:43:23 +02:00
public Task<List<LiveTvTunerInfo>> GetTunerInfos(CancellationToken cancellationToken)
2015-07-20 20:32:55 +02:00
{
2016-02-19 07:20:18 +01:00
var list = GetTunerHosts()
2015-08-19 18:43:23 +02:00
.Select(i => new LiveTvTunerInfo()
2015-07-20 20:32:55 +02:00
{
Name = Name,
SourceType = Type,
Status = LiveTvTunerStatus.Available,
Id = i.Url.GetMD5().ToString("N", CultureInfo.InvariantCulture),
2015-08-19 18:43:23 +02:00
Url = i.Url
})
.ToList();
2015-08-19 21:25:18 +02:00
2015-07-20 20:32:55 +02:00
return Task.FromResult(list);
}
2021-09-03 18:46:34 +02:00
protected override async Task<ILiveStream> GetChannelStream(TunerHostInfo tunerHost, ChannelInfo channel, string streamId, List<ILiveStream> currentLiveStreams, CancellationToken cancellationToken)
2015-08-27 21:59:42 +02:00
{
2021-09-03 18:46:34 +02:00
var tunerCount = tunerHost.TunerCount;
if (tunerCount > 0)
{
2021-09-03 18:46:34 +02:00
var tunerHostId = tunerHost.Id;
var liveStreams = currentLiveStreams.Where(i => string.Equals(i.TunerHostId, tunerHostId, StringComparison.OrdinalIgnoreCase));
if (liveStreams.Count() >= tunerCount)
{
2018-09-12 19:26:21 +02:00
throw new LiveTvConflictException("M3U simultaneous stream limit has been reached.");
}
}
2021-09-03 18:46:34 +02:00
var sources = await GetChannelStreamMediaSources(tunerHost, channel, cancellationToken).ConfigureAwait(false);
2015-08-27 21:59:42 +02:00
var mediaSource = sources[0];
2017-11-14 08:41:21 +01:00
if (mediaSource.Protocol == MediaProtocol.Http && !mediaSource.RequiresLooping)
{
2017-11-29 21:50:18 +01:00
var extension = Path.GetExtension(mediaSource.Path) ?? string.Empty;
2021-12-20 13:31:07 +01:00
if (!_disallowedSharedStreamExtensions.Contains(extension, StringComparison.OrdinalIgnoreCase))
2017-11-29 21:50:18 +01:00
{
2021-09-03 18:46:34 +02:00
return new SharedHttpStream(mediaSource, tunerHost, streamId, FileSystem, _httpClientFactory, Logger, Config, _appHost, _streamHelper);
2017-11-29 21:50:18 +01:00
}
2017-11-14 08:41:21 +01:00
}
2021-09-03 18:46:34 +02:00
return new LiveStream(mediaSource, tunerHost, FileSystem, Logger, Config, _streamHelper);
2015-08-27 21:59:42 +02:00
}
public async Task Validate(TunerHostInfo info)
{
2021-12-15 18:25:36 +01:00
using (await new M3uParser(Logger, _httpClientFactory).GetListingsStream(info, CancellationToken.None).ConfigureAwait(false))
2015-08-27 21:59:42 +02:00
{
}
}
2021-09-03 18:46:34 +02:00
protected override Task<List<MediaSourceInfo>> GetChannelStreamMediaSources(TunerHostInfo tuner, ChannelInfo channel, CancellationToken cancellationToken)
2015-07-20 20:32:55 +02:00
{
2021-09-03 18:46:34 +02:00
return Task.FromResult(new List<MediaSourceInfo> { CreateMediaSourceInfo(tuner, channel) });
2017-08-20 21:10:00 +02:00
}
protected virtual MediaSourceInfo CreateMediaSourceInfo(TunerHostInfo info, ChannelInfo channel)
{
var path = channel.Path;
2018-09-12 19:26:21 +02:00
var supportsDirectPlay = !info.EnableStreamLooping && info.TunerCount == 0;
var supportsDirectStream = !info.EnableStreamLooping;
var protocol = _mediaSourceManager.GetPathProtocol(path);
2017-08-20 21:10:00 +02:00
var isRemote = true;
if (Uri.TryCreate(path, UriKind.Absolute, out var uri))
2017-08-20 21:10:00 +02:00
{
isRemote = !_networkManager.IsInLocalNetwork(uri.Host);
}
2015-07-20 20:32:55 +02:00
2018-09-12 19:26:21 +02:00
var httpHeaders = new Dictionary<string, string>();
if (protocol == MediaProtocol.Http)
{
// Use user-defined user-agent. If there isn't one, make it look like a browser.
httpHeaders[HeaderNames.UserAgent] = string.IsNullOrWhiteSpace(info.UserAgent) ?
2018-09-12 19:26:21 +02:00
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.85 Safari/537.36" :
info.UserAgent;
}
2017-11-21 23:14:56 +01:00
2017-08-20 21:10:00 +02:00
var mediaSource = new MediaSourceInfo
{
Path = path,
Protocol = protocol,
2022-01-22 15:40:05 +01:00
MediaStreams = new MediaStream[]
2015-07-20 20:32:55 +02:00
{
2017-08-20 21:10:00 +02:00
new MediaStream
2015-07-20 20:32:55 +02:00
{
2017-08-20 21:10:00 +02:00
Type = MediaStreamType.Video,
// Set the index to -1 because we don't know the exact index of the video stream within the container
Index = -1,
IsInterlaced = true
2015-07-24 01:40:54 +02:00
},
2017-08-20 21:10:00 +02:00
new MediaStream
{
Type = MediaStreamType.Audio,
// Set the index to -1 because we don't know the exact index of the audio stream within the container
Index = -1
}
},
RequiresOpening = true,
RequiresClosing = true,
RequiresLooping = info.EnableStreamLooping,
2016-09-25 20:39:13 +02:00
2017-08-20 21:10:00 +02:00
ReadAtNativeFramerate = false,
2017-07-15 22:19:58 +02:00
Id = channel.Path.GetMD5().ToString("N", CultureInfo.InvariantCulture),
2017-08-20 21:10:00 +02:00
IsInfiniteStream = true,
IsRemote = isRemote,
2015-07-23 15:23:22 +02:00
IgnoreDts = info.IgnoreDts,
2018-09-12 19:26:21 +02:00
SupportsDirectPlay = supportsDirectPlay,
SupportsDirectStream = supportsDirectStream,
RequiredHttpHeaders = httpHeaders
2017-08-20 21:10:00 +02:00
};
2017-01-21 21:27:07 +01:00
2017-08-20 21:10:00 +02:00
mediaSource.InferTotalBitrate();
return mediaSource;
2015-07-24 01:40:54 +02:00
}
2015-10-30 17:40:12 +01:00
2017-03-13 05:49:10 +01:00
public Task<List<TunerHostInfo>> DiscoverDevices(int discoveryDurationMs, CancellationToken cancellationToken)
2017-03-13 05:08:49 +01:00
{
return Task.FromResult(new List<TunerHostInfo>());
}
2015-07-20 20:32:55 +02:00
}
}