jellyfin-server/Emby.Server.Implementations/LiveTv/TunerHosts/M3uParser.cs

327 lines
11 KiB
C#
Raw Normal View History

using System;
2016-02-19 06:20:18 +00:00
using System.Collections.Generic;
2016-12-07 20:03:00 +00:00
using System.Globalization;
2016-02-19 06:20:18 +00:00
using System.IO;
using System.Linq;
2016-02-21 17:22:13 +00:00
using System.Text.RegularExpressions;
2016-02-19 06:20:18 +00:00
using System.Threading;
using System.Threading.Tasks;
using MediaBrowser.Common.Extensions;
using MediaBrowser.Common.Net;
2016-10-18 18:35:27 +00:00
using MediaBrowser.Controller;
2016-02-19 06:20:18 +00:00
using MediaBrowser.Controller.LiveTv;
2017-01-14 19:57:08 +00:00
using MediaBrowser.Model.Extensions;
using MediaBrowser.Model.IO;
using Microsoft.Extensions.Logging;
2016-02-19 06:20:18 +00:00
2016-11-03 23:35:19 +00:00
namespace Emby.Server.Implementations.LiveTv.TunerHosts
2016-02-19 06:20:18 +00:00
{
public class M3uParser
{
private readonly ILogger _logger;
private readonly IFileSystem _fileSystem;
private readonly IHttpClient _httpClient;
2016-10-18 18:35:27 +00:00
private readonly IServerApplicationHost _appHost;
2016-02-19 06:20:18 +00:00
2016-10-18 18:35:27 +00:00
public M3uParser(ILogger logger, IFileSystem fileSystem, IHttpClient httpClient, IServerApplicationHost appHost)
2016-02-19 06:20:18 +00:00
{
_logger = logger;
_fileSystem = fileSystem;
_httpClient = httpClient;
2016-10-18 18:35:27 +00:00
_appHost = appHost;
2016-02-19 06:20:18 +00:00
}
2017-08-20 19:10:00 +00:00
public async Task<List<ChannelInfo>> Parse(string url, string channelIdPrefix, string tunerHostId, CancellationToken cancellationToken)
2016-02-19 06:20:18 +00:00
{
// Read the file and display it line by line.
using (var reader = new StreamReader(await GetListingsStream(url, cancellationToken).ConfigureAwait(false)))
{
2017-07-30 18:02:25 +00:00
return GetChannels(reader, channelIdPrefix, tunerHostId);
2016-02-19 06:20:18 +00:00
}
}
2017-08-20 19:10:00 +00:00
public List<ChannelInfo> ParseString(string text, string channelIdPrefix, string tunerHostId)
2017-01-14 03:46:02 +00:00
{
// Read the file and display it line by line.
using (var reader = new StringReader(text))
{
2017-07-30 18:02:25 +00:00
return GetChannels(reader, channelIdPrefix, tunerHostId);
2017-01-14 03:46:02 +00:00
}
}
2016-02-19 06:20:18 +00:00
public Task<Stream> GetListingsStream(string url, CancellationToken cancellationToken)
{
if (url.StartsWith("http", StringComparison.OrdinalIgnoreCase))
{
2016-10-18 18:35:27 +00:00
return _httpClient.Get(new HttpRequestOptions
{
Url = url,
CancellationToken = cancellationToken,
// Some data providers will require a user agent
UserAgent = _appHost.FriendlyName + "/" + _appHost.ApplicationVersion
});
2016-02-19 06:20:18 +00:00
}
return Task.FromResult(_fileSystem.OpenRead(url));
}
2016-11-27 20:52:24 +00:00
const string ExtInfPrefix = "#EXTINF:";
2017-08-20 19:10:00 +00:00
private List<ChannelInfo> GetChannels(TextReader reader, string channelIdPrefix, string tunerHostId)
2016-02-19 06:20:18 +00:00
{
2017-08-20 19:10:00 +00:00
var channels = new List<ChannelInfo>();
2016-02-19 06:20:18 +00:00
string line;
string extInf = "";
2017-02-01 20:56:41 +00:00
2016-11-27 20:52:24 +00:00
while ((line = reader.ReadLine()) != null)
2016-02-19 06:20:18 +00:00
{
line = line.Trim();
if (string.IsNullOrWhiteSpace(line))
{
continue;
}
if (line.StartsWith("#EXTM3U", StringComparison.OrdinalIgnoreCase))
{
continue;
}
2016-11-27 20:52:24 +00:00
if (line.StartsWith(ExtInfPrefix, StringComparison.OrdinalIgnoreCase))
2016-02-19 06:20:18 +00:00
{
2016-11-27 20:52:24 +00:00
extInf = line.Substring(ExtInfPrefix.Length).Trim();
_logger.LogInformation("Found m3u channel: {0}", extInf);
2016-02-19 06:20:18 +00:00
}
2016-03-19 01:40:13 +00:00
else if (!string.IsNullOrWhiteSpace(extInf) && !line.StartsWith("#", StringComparison.OrdinalIgnoreCase))
2016-02-24 19:06:26 +00:00
{
var channel = GetChannelnfo(extInf, tunerHostId, line);
2017-07-30 18:02:25 +00:00
if (string.IsNullOrWhiteSpace(channel.Id))
2017-01-23 21:51:23 +00:00
{
2017-07-30 18:02:25 +00:00
channel.Id = channelIdPrefix + line.GetMD5().ToString("N");
2017-01-23 21:51:23 +00:00
}
else
{
2017-07-30 18:02:25 +00:00
channel.Id = channelIdPrefix + channel.Id.GetMD5().ToString("N");
2017-01-23 21:51:23 +00:00
}
channel.Path = line;
channels.Add(channel);
extInf = "";
2016-02-19 06:20:18 +00:00
}
}
2017-02-01 20:56:41 +00:00
2016-02-19 06:20:18 +00:00
return channels;
}
2016-11-27 20:52:24 +00:00
2017-08-20 19:10:00 +00:00
private ChannelInfo GetChannelnfo(string extInf, string tunerHostId, string mediaUrl)
{
2017-08-20 19:10:00 +00:00
var channel = new ChannelInfo();
2016-02-24 19:06:26 +00:00
channel.TunerHostId = tunerHostId;
2016-11-27 20:52:24 +00:00
extInf = extInf.Trim();
var attributes = ParseExtInf(extInf, out var remaining);
2016-12-07 20:03:00 +00:00
extInf = remaining;
2016-11-27 20:52:24 +00:00
if (attributes.TryGetValue("tvg-logo", out var value))
2016-12-07 20:03:00 +00:00
{
channel.ImageUrl = value;
}
2016-11-27 20:52:24 +00:00
2016-12-07 20:03:00 +00:00
channel.Name = GetChannelName(extInf, attributes);
channel.Number = GetChannelNumber(extInf, attributes, mediaUrl);
2016-11-27 20:52:24 +00:00
attributes.TryGetValue("tvg-id", out var tvgId);
2017-02-23 19:13:26 +00:00
attributes.TryGetValue("channel-id", out var channelId);
2017-02-23 19:13:26 +00:00
channel.TunerChannelId = string.IsNullOrWhiteSpace(tvgId) ? channelId : tvgId;
var channelIdValues = new List<string>();
2017-02-04 23:32:16 +00:00
if (!string.IsNullOrWhiteSpace(channelId))
2017-01-23 21:51:23 +00:00
{
2017-02-23 19:13:26 +00:00
channelIdValues.Add(channelId);
}
if (!string.IsNullOrWhiteSpace(tvgId))
{
channelIdValues.Add(tvgId);
}
if (channelIdValues.Count > 0)
{
channel.Id = string.Join("_", channelIdValues.ToArray());
2017-01-23 21:51:23 +00:00
}
2016-11-27 20:52:24 +00:00
return channel;
}
2016-12-07 20:03:00 +00:00
private string GetChannelNumber(string extInf, Dictionary<string, string> attributes, string mediaUrl)
2016-11-27 20:52:24 +00:00
{
var nameParts = extInf.Split(new[] { ',' }, StringSplitOptions.RemoveEmptyEntries);
var nameInExtInf = nameParts.Length > 1 ? nameParts.Last().Trim() : null;
2017-01-14 03:46:02 +00:00
string numberString = null;
2016-11-27 20:52:24 +00:00
2017-01-14 04:31:43 +00:00
// Check for channel number with the format from SatIp
2017-01-14 03:46:02 +00:00
// #EXTINF:0,84. VOX Schweiz
2017-01-14 04:31:43 +00:00
// #EXTINF:0,84.0 - VOX Schweiz
2016-11-27 20:52:24 +00:00
if (!string.IsNullOrWhiteSpace(nameInExtInf))
{
2017-01-14 04:31:43 +00:00
var numberIndex = nameInExtInf.IndexOf(' ');
2016-11-27 20:52:24 +00:00
if (numberIndex > 0)
{
2017-01-14 04:31:43 +00:00
var numberPart = nameInExtInf.Substring(0, numberIndex).Trim(new[] { ' ', '.' });
if (double.TryParse(numberPart, NumberStyles.Any, CultureInfo.InvariantCulture, out var number))
2016-11-27 20:52:24 +00:00
{
2017-01-14 04:31:43 +00:00
numberString = numberPart;
2016-11-27 20:52:24 +00:00
}
}
}
2016-12-07 20:03:00 +00:00
if (!string.IsNullOrWhiteSpace(numberString))
{
numberString = numberString.Trim();
}
2017-02-04 23:32:16 +00:00
if (!IsValidChannelNumber(numberString))
{
if (attributes.TryGetValue("tvg-id", out var value))
2016-12-07 20:03:00 +00:00
{
if (double.TryParse(value, NumberStyles.Any, CultureInfo.InvariantCulture, out var doubleValue))
2017-01-14 03:46:02 +00:00
{
numberString = value;
}
2016-12-07 20:03:00 +00:00
}
}
if (!string.IsNullOrWhiteSpace(numberString))
{
numberString = numberString.Trim();
}
2017-02-04 23:32:16 +00:00
if (!IsValidChannelNumber(numberString))
{
if (attributes.TryGetValue("channel-id", out var value))
2016-12-07 20:03:00 +00:00
{
numberString = value;
}
}
if (!string.IsNullOrWhiteSpace(numberString))
{
numberString = numberString.Trim();
}
2017-02-04 23:32:16 +00:00
if (!IsValidChannelNumber(numberString))
2016-11-27 20:52:24 +00:00
{
numberString = null;
}
2016-11-27 20:52:24 +00:00
if (string.IsNullOrWhiteSpace(numberString))
{
2016-11-27 20:52:24 +00:00
if (string.IsNullOrWhiteSpace(mediaUrl))
{
numberString = null;
}
else
{
2017-06-06 06:13:49 +00:00
try
{
numberString = Path.GetFileNameWithoutExtension(mediaUrl.Split('/').Last());
2016-12-07 20:03:00 +00:00
2017-06-06 06:13:49 +00:00
if (!IsValidChannelNumber(numberString))
{
numberString = null;
}
}
catch
2016-12-07 20:03:00 +00:00
{
2017-06-06 06:13:49 +00:00
// Seeing occasional argument exception here
2016-12-07 20:03:00 +00:00
numberString = null;
}
2016-11-27 20:52:24 +00:00
}
}
2016-11-27 20:52:24 +00:00
return numberString;
}
private static bool IsValidChannelNumber(string numberString)
2017-02-04 23:32:16 +00:00
{
if (string.IsNullOrWhiteSpace(numberString) ||
string.Equals(numberString, "-1", StringComparison.OrdinalIgnoreCase) ||
string.Equals(numberString, "0", StringComparison.OrdinalIgnoreCase))
{
return false;
}
if (!double.TryParse(numberString, NumberStyles.Any, CultureInfo.InvariantCulture, out var value))
2017-02-04 23:32:16 +00:00
{
return false;
}
return true;
}
private static string GetChannelName(string extInf, Dictionary<string, string> attributes)
2016-11-27 20:52:24 +00:00
{
var nameParts = extInf.Split(new[] { ',' }, StringSplitOptions.RemoveEmptyEntries);
var nameInExtInf = nameParts.Length > 1 ? nameParts.Last().Trim() : null;
2017-01-14 04:31:43 +00:00
// Check for channel number with the format from SatIp
// #EXTINF:0,84. VOX Schweiz
// #EXTINF:0,84.0 - VOX Schweiz
2016-11-27 20:52:24 +00:00
if (!string.IsNullOrWhiteSpace(nameInExtInf))
{
2017-01-14 04:31:43 +00:00
var numberIndex = nameInExtInf.IndexOf(' ');
2016-11-27 20:52:24 +00:00
if (numberIndex > 0)
{
2017-01-14 04:31:43 +00:00
var numberPart = nameInExtInf.Substring(0, numberIndex).Trim(new[] { ' ', '.' });
if (double.TryParse(numberPart, NumberStyles.Any, CultureInfo.InvariantCulture, out var number))
2016-11-27 20:52:24 +00:00
{
//channel.Number = number.ToString();
2017-01-14 04:31:43 +00:00
nameInExtInf = nameInExtInf.Substring(numberIndex + 1).Trim(new[] { ' ', '-' });
2016-11-27 20:52:24 +00:00
}
}
}
attributes.TryGetValue("tvg-name", out var name);
2016-12-07 20:03:00 +00:00
2016-11-27 20:52:24 +00:00
if (string.IsNullOrWhiteSpace(name))
{
name = nameInExtInf;
}
2016-11-27 20:52:24 +00:00
if (string.IsNullOrWhiteSpace(name))
{
2016-12-07 20:03:00 +00:00
attributes.TryGetValue("tvg-id", out name);
}
2016-11-27 20:52:24 +00:00
if (string.IsNullOrWhiteSpace(name))
{
name = null;
}
2016-11-27 20:52:24 +00:00
return name;
}
2016-11-27 20:52:24 +00:00
private static Dictionary<string, string> ParseExtInf(string line, out string remaining)
2016-02-21 17:22:13 +00:00
{
2016-12-07 20:03:00 +00:00
var dict = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
2016-02-21 17:22:13 +00:00
var reg = new Regex(@"([a-z0-9\-_]+)=\""([^""]+)\""", RegexOptions.IgnoreCase);
2016-12-07 20:03:00 +00:00
var matches = reg.Matches(line);
2017-01-14 19:57:08 +00:00
remaining = line;
2016-02-21 17:22:13 +00:00
foreach (Match match in matches)
{
2017-01-14 19:57:08 +00:00
var key = match.Groups[1].Value;
var value = match.Groups[2].Value;
2016-12-07 20:03:00 +00:00
2017-01-14 19:57:08 +00:00
dict[match.Groups[1].Value] = match.Groups[2].Value;
remaining = remaining.Replace(key + "=\"" + value + "\"", string.Empty, StringComparison.OrdinalIgnoreCase);
2016-12-07 20:03:00 +00:00
}
return dict;
2016-02-21 17:22:13 +00:00
}
2016-02-19 06:20:18 +00:00
}
}