jellyfin/MediaBrowser.Server.Implementations/LiveTv/TunerHosts/HdHomerun/HdHomerunHost.cs

355 lines
13 KiB
C#
Raw Normal View History

2015-07-20 20:32:55 +02:00
using MediaBrowser.Common.Configuration;
using MediaBrowser.Common.Net;
using MediaBrowser.Controller.LiveTv;
using MediaBrowser.Model.Dto;
using MediaBrowser.Model.Entities;
using MediaBrowser.Model.LiveTv;
using MediaBrowser.Model.Logging;
using MediaBrowser.Model.MediaInfo;
using MediaBrowser.Model.Serialization;
using System;
using System.Collections.Generic;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
2015-07-23 18:32:34 +02:00
namespace MediaBrowser.Server.Implementations.LiveTv.TunerHosts.HdHomerun
2015-07-20 20:32:55 +02:00
{
2015-07-23 18:32:34 +02:00
public class HdHomerunHost : ITunerHost
2015-07-20 20:32:55 +02:00
{
private readonly IHttpClient _httpClient;
private readonly ILogger _logger;
private readonly IJsonSerializer _jsonSerializer;
private readonly IConfigurationManager _config;
2015-07-23 18:32:34 +02:00
public HdHomerunHost(IHttpClient httpClient, ILogger logger, IJsonSerializer jsonSerializer, IConfigurationManager config)
2015-07-20 20:32:55 +02:00
{
_httpClient = httpClient;
_logger = logger;
_jsonSerializer = jsonSerializer;
_config = config;
}
public string Name
{
get { return "HD Homerun"; }
}
public string Type
2015-07-23 18:32:34 +02:00
{
get { return DeviceType; }
}
public static string DeviceType
2015-07-20 20:32:55 +02:00
{
get { return "hdhomerun"; }
}
public async Task<IEnumerable<ChannelInfo>> GetChannels(TunerHostInfo info, CancellationToken cancellationToken)
{
var options = new HttpRequestOptions
{
2015-07-24 01:40:54 +02:00
Url = string.Format("{0}/lineup.json", GetApiUrl(info, false)),
2015-07-20 20:32:55 +02:00
CancellationToken = cancellationToken
};
using (var stream = await _httpClient.Get(options))
{
var root = _jsonSerializer.DeserializeFromStream<List<Channels>>(stream);
if (root != null)
{
return root.Select(i => new ChannelInfo
{
Name = i.GuideName,
Number = i.GuideNumber.ToString(CultureInfo.InvariantCulture),
Id = i.GuideNumber.ToString(CultureInfo.InvariantCulture),
IsFavorite = i.Favorite
});
}
return new List<ChannelInfo>();
}
}
2015-07-24 04:48:10 +02:00
private async Task<string> GetModelInfo(TunerHostInfo info, CancellationToken cancellationToken)
2015-07-20 20:32:55 +02:00
{
2015-07-21 06:22:46 +02:00
string model = null;
using (var stream = await _httpClient.Get(new HttpRequestOptions()
{
2015-07-24 01:40:54 +02:00
Url = string.Format("{0}/", GetApiUrl(info, false)),
2015-07-24 04:48:10 +02:00
CancellationToken = cancellationToken,
CacheLength = TimeSpan.FromDays(1),
CacheMode = CacheMode.Unconditional
2015-07-21 06:22:46 +02:00
}))
{
using (var sr = new StreamReader(stream, System.Text.Encoding.UTF8))
{
while (!sr.EndOfStream)
{
string line = StripXML(sr.ReadLine());
if (line.StartsWith("Model:")) { model = line.Replace("Model: ", ""); }
//if (line.StartsWith("Device ID:")) { deviceID = line.Replace("Device ID: ", ""); }
//if (line.StartsWith("Firmware:")) { firmware = line.Replace("Firmware: ", ""); }
}
}
}
2015-07-24 04:48:10 +02:00
return null;
}
public async Task<List<LiveTvTunerInfo>> GetTunerInfos(TunerHostInfo info, CancellationToken cancellationToken)
{
string model = await GetModelInfo(info, cancellationToken).ConfigureAwait(false);
2015-07-21 06:22:46 +02:00
using (var stream = await _httpClient.Get(new HttpRequestOptions()
2015-07-20 20:32:55 +02:00
{
2015-07-24 01:40:54 +02:00
Url = string.Format("{0}/tuners.html", GetApiUrl(info, false)),
2015-07-20 20:32:55 +02:00
CancellationToken = cancellationToken
2015-07-21 06:22:46 +02:00
}))
2015-07-20 20:32:55 +02:00
{
var tuners = new List<LiveTvTunerInfo>();
using (var sr = new StreamReader(stream, System.Text.Encoding.UTF8))
{
while (!sr.EndOfStream)
{
string line = StripXML(sr.ReadLine());
if (line.Contains("Channel"))
{
LiveTvTunerStatus status;
var index = line.IndexOf("Channel", StringComparison.OrdinalIgnoreCase);
var name = line.Substring(0, index - 1);
var currentChannel = line.Substring(index + 7);
if (currentChannel != "none") { status = LiveTvTunerStatus.LiveTv; } else { status = LiveTvTunerStatus.Available; }
tuners.Add(new LiveTvTunerInfo()
{
Name = name,
2015-07-21 06:22:46 +02:00
SourceType = string.IsNullOrWhiteSpace(model) ? Name : model,
2015-07-20 20:32:55 +02:00
ProgramName = currentChannel,
Status = status
});
}
}
}
return tuners;
}
}
2015-07-24 01:40:54 +02:00
private string GetApiUrl(TunerHostInfo info, bool isPlayback)
2015-07-20 20:32:55 +02:00
{
var url = info.Url;
if (!url.StartsWith("http", StringComparison.OrdinalIgnoreCase))
{
url = "http://" + url;
}
2015-07-24 01:40:54 +02:00
var uri = new Uri(url);
if (isPlayback)
{
var builder = new UriBuilder(uri);
builder.Port = 5004;
uri = builder.Uri;
}
return uri.AbsoluteUri.TrimEnd('/');
2015-07-20 20:32:55 +02:00
}
private static string StripXML(string source)
{
char[] buffer = new char[source.Length];
int bufferIndex = 0;
bool inside = false;
for (int i = 0; i < source.Length; i++)
{
char let = source[i];
if (let == '<')
{
inside = true;
continue;
}
if (let == '>')
{
inside = false;
continue;
}
if (!inside)
{
buffer[bufferIndex] = let;
bufferIndex++;
}
}
return new string(buffer, 0, bufferIndex);
}
private class Channels
{
public string GuideNumber { get; set; }
public string GuideName { get; set; }
public string URL { get; set; }
public bool Favorite { get; set; }
public bool DRM { get; set; }
}
private LiveTvOptions GetConfiguration()
{
return _config.GetConfiguration<LiveTvOptions>("livetv");
}
public List<TunerHostInfo> GetTunerHosts()
{
return GetConfiguration().TunerHosts.Where(i => string.Equals(i.Type, Type, StringComparison.OrdinalIgnoreCase)).ToList();
}
2015-07-24 01:40:54 +02:00
private MediaSourceInfo GetMediaSource(TunerHostInfo info, string channelId, string profile)
2015-07-20 20:32:55 +02:00
{
2015-07-24 04:48:10 +02:00
int? width = null;
int? height = null;
bool isInterlaced = true;
var videoCodec = "mpeg2video";
int? videoBitrate = null;
if (string.Equals(profile, "mobile", StringComparison.OrdinalIgnoreCase))
{
width = 1280;
height = 720;
isInterlaced = false;
videoCodec = "h264";
videoBitrate = 2000000;
}
else if (string.Equals(profile, "heavy", StringComparison.OrdinalIgnoreCase))
{
width = 1920;
height = 1080;
isInterlaced = false;
videoCodec = "h264";
videoBitrate = 8000000;
}
else if (string.Equals(profile, "internet720", StringComparison.OrdinalIgnoreCase))
{
width = 1280;
height = 720;
isInterlaced = false;
videoCodec = "h264";
videoBitrate = 5000000;
}
else if (string.Equals(profile, "internet540", StringComparison.OrdinalIgnoreCase))
{
width = 1280;
height = 720;
isInterlaced = false;
videoCodec = "h264";
videoBitrate = 2500000;
}
else if (string.Equals(profile, "internet480", StringComparison.OrdinalIgnoreCase))
{
width = 848;
height = 480;
isInterlaced = false;
videoCodec = "h264";
videoBitrate = 2000000;
}
else if (string.Equals(profile, "internet360", StringComparison.OrdinalIgnoreCase))
{
width = 640;
height = 360;
isInterlaced = false;
videoCodec = "h264";
videoBitrate = 1500000;
}
else if (string.Equals(profile, "internet240", StringComparison.OrdinalIgnoreCase))
{
width = 432;
height = 240;
isInterlaced = false;
videoCodec = "h264";
videoBitrate = 1000000;
}
var url = GetApiUrl(info, true) + "/auto/v" + channelId;
2015-07-24 23:44:25 +02:00
if (!string.IsNullOrWhiteSpace(profile) && !string.Equals(profile, "native", StringComparison.OrdinalIgnoreCase))
2015-07-24 04:48:10 +02:00
{
url += "?transcode=" + profile;
}
2015-07-24 01:40:54 +02:00
var mediaSource = new MediaSourceInfo
2015-07-20 20:32:55 +02:00
{
2015-07-24 04:48:10 +02:00
Path = url,
2015-07-24 01:40:54 +02:00
Protocol = MediaProtocol.Http,
MediaStreams = new List<MediaStream>
2015-07-20 20:32:55 +02:00
{
new MediaStream
{
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,
2015-07-24 04:48:10 +02:00
IsInterlaced = isInterlaced,
Codec = videoCodec,
Width = width,
Height = height,
BitRate = videoBitrate
2015-07-20 20:32:55 +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
2015-07-24 04:48:10 +02:00
Index = -1,
Codec = "ac3",
BitRate = 128000
2015-07-20 20:32:55 +02:00
}
2015-07-24 01:40:54 +02:00
},
RequiresOpening = false,
RequiresClosing = false,
BufferMs = 1000
};
2015-07-20 20:32:55 +02:00
2015-07-24 01:40:54 +02:00
return mediaSource;
2015-07-20 20:32:55 +02:00
}
2015-07-23 15:23:22 +02:00
2015-07-24 04:48:10 +02:00
public async Task<List<MediaSourceInfo>> GetChannelStreamMediaSources(TunerHostInfo info, string channelId, CancellationToken cancellationToken)
2015-07-24 01:40:54 +02:00
{
var list = new List<MediaSourceInfo>();
2015-07-24 23:44:25 +02:00
list.Add(GetMediaSource(info, channelId, "native"));
2015-07-24 01:40:54 +02:00
2015-07-24 04:48:10 +02:00
try
{
string model = await GetModelInfo(info, cancellationToken).ConfigureAwait(false);
model = model ?? string.Empty;
if (model.IndexOf("hdtc", StringComparison.OrdinalIgnoreCase) != -1)
{
2015-07-24 17:20:11 +02:00
list.Insert(0, GetMediaSource(info, channelId, "heavy"));
2015-07-24 04:48:10 +02:00
list.Add(GetMediaSource(info, channelId, "internet480"));
list.Add(GetMediaSource(info, channelId, "internet360"));
list.Add(GetMediaSource(info, channelId, "internet240"));
list.Add(GetMediaSource(info, channelId, "mobile"));
}
}
catch (Exception ex)
{
}
return list;
2015-07-24 01:40:54 +02:00
}
public async Task<MediaSourceInfo> GetChannelStream(TunerHostInfo info, string channelId, string streamId, CancellationToken cancellationToken)
{
2015-07-24 23:44:25 +02:00
return GetMediaSource(info, channelId, streamId);
2015-07-24 01:40:54 +02:00
}
2015-07-23 15:23:22 +02:00
public async Task Validate(TunerHostInfo info)
{
await GetChannels(info, CancellationToken.None).ConfigureAwait(false);
}
2015-07-20 20:32:55 +02:00
}
}