jellyfin/Emby.Server.Implementations/LiveTv/Listings/SchedulesDirect.cs

836 lines
33 KiB
C#
Raw Normal View History

#nullable disable
#pragma warning disable CS1591
2015-07-21 06:22:46 +02:00
using System;
2015-07-23 07:25:55 +02:00
using System.Collections.Concurrent;
2015-07-21 06:22:46 +02:00
using System.Collections.Generic;
2015-07-23 07:25:55 +02:00
using System.Globalization;
using System.Linq;
using System.Net;
using System.Net.Http;
2021-09-03 21:36:07 +02:00
using System.Net.Http.Headers;
using System.Net.Mime;
using System.Security.Cryptography;
using System.Text;
using System.Text.Json;
2015-07-21 06:22:46 +02:00
using System.Threading;
using System.Threading.Tasks;
2021-08-29 00:32:50 +02:00
using Emby.Server.Implementations.LiveTv.Listings.SchedulesDirectDtos;
2021-09-03 20:35:52 +02:00
using Jellyfin.Extensions;
using Jellyfin.Extensions.Json;
using MediaBrowser.Common.Net;
using MediaBrowser.Controller.LiveTv;
using MediaBrowser.Model.Cryptography;
using MediaBrowser.Model.Dto;
2018-09-12 19:26:21 +02:00
using MediaBrowser.Model.Entities;
using MediaBrowser.Model.LiveTv;
using Microsoft.Extensions.Logging;
2015-07-21 06:22:46 +02:00
2016-11-04 00:35:19 +01:00
namespace Emby.Server.Implementations.LiveTv.Listings
2015-07-21 06:22:46 +02:00
{
2015-08-15 20:46:57 +02:00
public class SchedulesDirect : IListingsProvider
2015-07-21 06:22:46 +02:00
{
2020-08-31 22:20:19 +02:00
private const string ApiUrl = "https://json.schedulesdirect.org/20141201";
2020-06-06 02:15:56 +02:00
private readonly ILogger<SchedulesDirect> _logger;
private readonly IHttpClientFactory _httpClientFactory;
2015-07-23 07:25:55 +02:00
private readonly SemaphoreSlim _tokenSemaphore = new SemaphoreSlim(1, 1);
private readonly ICryptoProvider _cryptoProvider;
2015-07-23 07:25:55 +02:00
2020-11-26 21:54:14 +01:00
private readonly ConcurrentDictionary<string, NameValuePair> _tokens = new ConcurrentDictionary<string, NameValuePair>();
2021-03-09 05:57:38 +01:00
private readonly JsonSerializerOptions _jsonOptions = JsonDefaults.Options;
2021-02-13 00:39:18 +01:00
private DateTime _lastErrorResponse;
2020-11-26 21:54:14 +01:00
public SchedulesDirect(
ILogger<SchedulesDirect> logger,
IHttpClientFactory httpClientFactory,
ICryptoProvider cryptoProvider)
2015-07-23 07:25:55 +02:00
{
_logger = logger;
_httpClientFactory = httpClientFactory;
_cryptoProvider = cryptoProvider;
2015-07-29 22:31:15 +02:00
}
2019-09-20 12:42:08 +02:00
/// <inheritdoc />
public string Name => "Schedules Direct";
/// <inheritdoc />
public string Type => nameof(SchedulesDirect);
private static List<string> GetScheduleRequestDates(DateTime startDateUtc, DateTime endDateUtc)
2015-07-29 19:16:00 +02:00
{
2019-01-13 21:37:13 +01:00
var dates = new List<string>();
2015-07-29 19:16:00 +02:00
2015-11-12 03:25:12 +01:00
var start = new List<DateTime> { startDateUtc, startDateUtc.ToLocalTime() }.Min().Date;
var end = new List<DateTime> { endDateUtc, endDateUtc.ToLocalTime() }.Max().Date;
2015-07-29 19:16:00 +02:00
2015-11-12 03:25:12 +01:00
while (start <= end)
2015-07-29 19:16:00 +02:00
{
2020-08-31 22:20:19 +02:00
dates.Add(start.ToString("yyyy-MM-dd", CultureInfo.InvariantCulture));
2015-07-29 19:16:00 +02:00
start = start.AddDays(1);
}
return dates;
}
2017-02-05 00:32:16 +01:00
public async Task<IEnumerable<ProgramInfo>> GetProgramsAsync(ListingsProviderInfo info, string channelId, DateTime startDateUtc, DateTime endDateUtc, CancellationToken cancellationToken)
2015-07-23 07:25:55 +02:00
{
2018-09-12 19:26:21 +02:00
if (string.IsNullOrEmpty(channelId))
2017-02-05 00:32:16 +01:00
{
throw new ArgumentNullException(nameof(channelId));
2017-02-05 00:32:16 +01:00
}
// Normalize incoming input
channelId = channelId.Replace(".json.schedulesdirect.org", string.Empty, StringComparison.OrdinalIgnoreCase).TrimStart('I');
2015-09-01 21:18:25 +02:00
var token = await GetToken(info, cancellationToken).ConfigureAwait(false);
2015-07-23 07:25:55 +02:00
2018-09-12 19:26:21 +02:00
if (string.IsNullOrEmpty(token))
2015-07-23 07:25:55 +02:00
{
_logger.LogWarning("SchedulesDirect token is empty, returning empty program list");
return Enumerable.Empty<ProgramInfo>();
2015-07-23 07:25:55 +02:00
}
2015-07-29 19:16:00 +02:00
var dates = GetScheduleRequestDates(startDateUtc, endDateUtc);
2015-07-23 07:25:55 +02:00
_logger.LogInformation("Channel Station ID is: {ChannelID}", channelId);
2021-08-29 00:32:50 +02:00
var requestList = new List<RequestScheduleForChannelDto>()
{
2021-08-29 00:32:50 +02:00
new RequestScheduleForChannelDto()
2015-07-23 07:25:55 +02:00
{
2021-08-29 00:32:50 +02:00
StationId = channelId,
Date = dates
}
};
2015-07-23 07:25:55 +02:00
var requestString = JsonSerializer.Serialize(requestList, _jsonOptions);
_logger.LogDebug("Request string for schedules is: {RequestString}", requestString);
2016-03-17 20:29:53 +01:00
using var options = new HttpRequestMessage(HttpMethod.Post, ApiUrl + "/schedules");
options.Content = new StringContent(requestString, Encoding.UTF8, MediaTypeNames.Application.Json);
options.Headers.TryAddWithoutValidation("token", token);
using var response = await Send(options, true, info, cancellationToken).ConfigureAwait(false);
2020-11-17 19:43:00 +01:00
await using var responseStream = await response.Content.ReadAsStreamAsync(cancellationToken).ConfigureAwait(false);
2021-09-03 20:35:52 +02:00
var dailySchedules = await JsonSerializer.DeserializeAsync<IReadOnlyList<DayDto>>(responseStream, _jsonOptions, cancellationToken).ConfigureAwait(false);
2021-09-03 21:36:07 +02:00
if (dailySchedules == null)
{
return Array.Empty<ProgramInfo>();
}
_logger.LogDebug("Found {ScheduleCount} programs on {ChannelID} ScheduleDirect", dailySchedules.Count, channelId);
2016-03-17 20:29:53 +01:00
using var programRequestOptions = new HttpRequestMessage(HttpMethod.Post, ApiUrl + "/programs");
programRequestOptions.Headers.TryAddWithoutValidation("token", token);
2015-07-23 07:25:55 +02:00
2021-09-03 18:59:40 +02:00
var programIds = dailySchedules.SelectMany(d => d.Programs.Select(s => s.ProgramId)).Distinct();
2021-09-03 21:36:07 +02:00
programRequestOptions.Content = new ByteArrayContent(JsonSerializer.SerializeToUtf8Bytes(programIds, _jsonOptions));
programRequestOptions.Content.Headers.ContentType = MediaTypeHeaderValue.Parse(MediaTypeNames.Application.Json);
2015-07-23 07:25:55 +02:00
using var innerResponse = await Send(programRequestOptions, true, info, cancellationToken).ConfigureAwait(false);
2020-11-17 19:43:00 +01:00
await using var innerResponseStream = await innerResponse.Content.ReadAsStreamAsync(cancellationToken).ConfigureAwait(false);
2021-09-03 20:35:52 +02:00
var programDetails = await JsonSerializer.DeserializeAsync<IReadOnlyList<ProgramDetailsDto>>(innerResponseStream, _jsonOptions, cancellationToken).ConfigureAwait(false);
2021-09-03 21:36:07 +02:00
if (programDetails == null)
{
return Array.Empty<ProgramInfo>();
}
var programDict = programDetails.ToDictionary(p => p.ProgramId, y => y);
2017-06-11 22:40:25 +02:00
2021-02-15 14:19:08 +01:00
var programIdsWithImages = programDetails
2021-08-29 00:32:50 +02:00
.Where(p => p.HasImageArtwork).Select(p => p.ProgramId)
2021-02-15 14:19:08 +01:00
.ToList();
2015-07-23 07:25:55 +02:00
var images = await GetImageForPrograms(info, programIdsWithImages, cancellationToken).ConfigureAwait(false);
2017-02-09 04:58:04 +01:00
var programsInfo = new List<ProgramInfo>();
2021-08-29 00:32:50 +02:00
foreach (ProgramDto schedule in dailySchedules.SelectMany(d => d.Programs))
{
// _logger.LogDebug("Proccesing Schedule for statio ID " + stationID +
// " which corresponds to channel " + channelNumber + " and program id " +
2021-08-29 00:32:50 +02:00
// schedule.ProgramId + " which says it has images? " +
// programDict[schedule.ProgramId].hasImageArtwork);
2015-07-23 07:25:55 +02:00
2021-09-03 20:35:52 +02:00
if (string.IsNullOrEmpty(schedule.ProgramId))
{
continue;
}
if (images != null)
{
2021-08-29 00:32:50 +02:00
var imageIndex = images.FindIndex(i => i.ProgramId == schedule.ProgramId[..10]);
if (imageIndex > -1)
2015-07-23 07:25:55 +02:00
{
2021-08-29 00:32:50 +02:00
var programEntry = programDict[schedule.ProgramId];
2017-06-11 22:40:25 +02:00
2021-09-03 20:35:52 +02:00
var allImages = images[imageIndex].Data;
2021-08-29 00:32:50 +02:00
var imagesWithText = allImages.Where(i => string.Equals(i.Text, "yes", StringComparison.OrdinalIgnoreCase));
var imagesWithoutText = allImages.Where(i => string.Equals(i.Text, "no", StringComparison.OrdinalIgnoreCase));
2017-06-11 22:40:25 +02:00
const double DesiredAspect = 2.0 / 3;
2021-08-29 00:32:50 +02:00
programEntry.PrimaryImage = GetProgramImage(ApiUrl, imagesWithText, true, DesiredAspect) ??
GetProgramImage(ApiUrl, allImages, true, DesiredAspect);
2017-06-11 22:40:25 +02:00
const double WideAspect = 16.0 / 9;
2016-09-11 09:33:53 +02:00
2021-08-29 00:32:50 +02:00
programEntry.ThumbImage = GetProgramImage(ApiUrl, imagesWithText, true, WideAspect);
2017-06-11 23:58:49 +02:00
// Don't supply the same image twice
2021-08-29 00:32:50 +02:00
if (string.Equals(programEntry.PrimaryImage, programEntry.ThumbImage, StringComparison.Ordinal))
{
2021-08-29 00:32:50 +02:00
programEntry.ThumbImage = null;
2015-07-23 07:25:55 +02:00
}
2021-08-29 00:32:50 +02:00
programEntry.BackdropImage = GetProgramImage(ApiUrl, imagesWithoutText, true, WideAspect);
2019-09-20 12:42:08 +02:00
// programEntry.bannerImage = GetProgramImage(ApiUrl, data, "Banner", false) ??
// GetProgramImage(ApiUrl, data, "Banner-L1", false) ??
// GetProgramImage(ApiUrl, data, "Banner-LO", false) ??
// GetProgramImage(ApiUrl, data, "Banner-LOT", false);
}
2015-07-23 07:25:55 +02:00
}
2021-08-29 00:32:50 +02:00
programsInfo.Add(GetProgram(channelId, schedule, programDict[schedule.ProgramId]));
2015-07-23 07:25:55 +02:00
}
return programsInfo;
2015-07-23 07:25:55 +02:00
}
2021-08-29 00:32:50 +02:00
private static int GetSizeOrder(ImageDataDto image)
2016-09-11 09:33:53 +02:00
{
2021-08-29 00:32:50 +02:00
if (int.TryParse(image.Height, out int value))
2016-09-11 09:33:53 +02:00
{
2019-09-20 12:42:08 +02:00
return value;
2016-09-11 09:33:53 +02:00
}
return 0;
}
2021-08-29 00:32:50 +02:00
private static string GetChannelNumber(MapDto map)
2015-10-11 02:39:30 +02:00
{
2021-08-29 00:32:50 +02:00
var channelNumber = map.LogicalChannelNumber;
2016-09-09 08:59:23 +02:00
2017-02-05 00:32:16 +01:00
if (string.IsNullOrWhiteSpace(channelNumber))
2015-10-11 02:39:30 +02:00
{
2021-08-29 00:32:50 +02:00
channelNumber = map.Channel;
2015-10-11 02:39:30 +02:00
}
2020-06-15 23:43:52 +02:00
2017-02-05 00:32:16 +01:00
if (string.IsNullOrWhiteSpace(channelNumber))
2016-03-17 20:29:53 +01:00
{
2021-08-29 00:32:50 +02:00
channelNumber = map.AtscMajor + "." + map.AtscMinor;
2016-03-17 20:29:53 +01:00
}
2015-10-11 02:39:30 +02:00
return channelNumber.TrimStart('0');
2015-10-11 02:39:30 +02:00
}
2021-08-29 00:32:50 +02:00
private static bool IsMovie(ProgramDetailsDto programInfo)
2017-06-11 22:40:25 +02:00
{
2021-08-29 00:32:50 +02:00
return string.Equals(programInfo.EntityType, "movie", StringComparison.OrdinalIgnoreCase);
2017-06-11 22:40:25 +02:00
}
2021-08-29 00:32:50 +02:00
private ProgramInfo GetProgram(string channelId, ProgramDto programInfo, ProgramDetailsDto details)
2015-07-23 07:25:55 +02:00
{
2021-09-03 20:35:52 +02:00
if (programInfo.AirDateTime == null)
{
return null;
}
var startAt = programInfo.AirDateTime.Value;
2021-08-29 00:32:50 +02:00
var endAt = startAt.AddSeconds(programInfo.Duration);
2019-01-13 21:37:13 +01:00
var audioType = ProgramAudio.Stereo;
2015-08-19 08:12:58 +02:00
2021-08-29 00:32:50 +02:00
var programId = programInfo.ProgramId ?? string.Empty;
2017-08-23 18:49:42 +02:00
string newID = programId + "T" + startAt.Ticks + "C" + channelId;
2015-07-23 07:25:55 +02:00
2021-09-03 18:59:40 +02:00
if (programInfo.AudioProperties.Count != 0)
2015-07-23 07:25:55 +02:00
{
2021-09-03 18:59:40 +02:00
if (programInfo.AudioProperties.Contains("atmos", StringComparer.OrdinalIgnoreCase))
2016-09-08 22:32:30 +02:00
{
audioType = ProgramAudio.Atmos;
}
2021-09-03 18:59:40 +02:00
else if (programInfo.AudioProperties.Contains("dd 5.1", StringComparer.OrdinalIgnoreCase))
2015-07-29 19:16:00 +02:00
{
audioType = ProgramAudio.DolbyDigital;
}
2021-09-03 18:59:40 +02:00
else if (programInfo.AudioProperties.Contains("dd", StringComparer.OrdinalIgnoreCase))
2015-07-29 19:16:00 +02:00
{
audioType = ProgramAudio.DolbyDigital;
}
2021-09-03 18:59:40 +02:00
else if (programInfo.AudioProperties.Contains("stereo", StringComparer.OrdinalIgnoreCase))
2015-07-23 07:25:55 +02:00
{
audioType = ProgramAudio.Stereo;
}
else
{
audioType = ProgramAudio.Mono;
}
}
2015-08-04 16:26:36 +02:00
string episodeTitle = null;
2021-08-29 00:32:50 +02:00
if (details.EpisodeTitle150 != null)
2015-07-23 07:25:55 +02:00
{
2021-08-29 00:32:50 +02:00
episodeTitle = details.EpisodeTitle150;
2015-07-23 07:25:55 +02:00
}
2015-08-04 16:26:36 +02:00
2015-07-23 07:25:55 +02:00
var info = new ProgramInfo
{
2017-02-05 00:32:16 +01:00
ChannelId = channelId,
2015-07-23 07:25:55 +02:00
Id = newID,
StartDate = startAt,
EndDate = endAt,
2021-08-29 00:32:50 +02:00
Name = details.Titles[0].Title120 ?? "Unknown",
2015-08-16 20:37:53 +02:00
OfficialRating = null,
2015-07-23 07:25:55 +02:00
CommunityRating = null,
2015-08-04 16:26:36 +02:00
EpisodeTitle = episodeTitle,
2015-07-23 07:25:55 +02:00
Audio = audioType,
2020-06-14 11:11:11 +02:00
// IsNew = programInfo.@new ?? false,
2021-08-29 00:32:50 +02:00
IsRepeat = programInfo.New == null,
IsSeries = string.Equals(details.EntityType, "episode", StringComparison.OrdinalIgnoreCase),
ImageUrl = details.PrimaryImage,
ThumbImageUrl = details.ThumbImage,
IsKids = string.Equals(details.Audience, "children", StringComparison.OrdinalIgnoreCase),
IsSports = string.Equals(details.EntityType, "sports", StringComparison.OrdinalIgnoreCase),
2017-06-11 22:40:25 +02:00
IsMovie = IsMovie(details),
2021-08-29 00:32:50 +02:00
Etag = programInfo.Md5,
IsLive = string.Equals(programInfo.LiveTapeDelay, "live", StringComparison.OrdinalIgnoreCase),
IsPremiere = programInfo.Premiere || (programInfo.IsPremiereOrFinale ?? string.Empty).IndexOf("premiere", StringComparison.OrdinalIgnoreCase) != -1
2015-07-23 07:25:55 +02:00
};
2015-08-04 16:26:36 +02:00
2017-08-23 18:49:42 +02:00
var showId = programId;
2016-12-22 16:58:09 +01:00
2017-03-01 21:30:05 +01:00
if (!info.IsSeries)
{
// It's also a series if it starts with SH
info.IsSeries = showId.StartsWith("SH", StringComparison.OrdinalIgnoreCase) && showId.Length >= 14;
}
2016-12-22 16:58:09 +01:00
// According to SchedulesDirect, these are generic, unidentified episodes
// SH005316560000
var hasUniqueShowId = !showId.StartsWith("SH", StringComparison.OrdinalIgnoreCase) ||
!showId.EndsWith("0000", StringComparison.OrdinalIgnoreCase);
if (!hasUniqueShowId)
{
showId = newID;
}
info.ShowId = showId;
2021-08-29 00:32:50 +02:00
if (programInfo.VideoProperties != null)
2015-08-19 08:12:58 +02:00
{
2021-08-29 00:32:50 +02:00
info.IsHD = programInfo.VideoProperties.Contains("hdtv", StringComparer.OrdinalIgnoreCase);
info.Is3D = programInfo.VideoProperties.Contains("3d", StringComparer.OrdinalIgnoreCase);
2015-08-19 08:12:58 +02:00
}
2021-08-29 00:32:50 +02:00
if (details.ContentRating != null && details.ContentRating.Count > 0)
2015-08-19 08:12:58 +02:00
{
2021-08-29 00:32:50 +02:00
info.OfficialRating = details.ContentRating[0].Code.Replace("TV", "TV-", StringComparison.Ordinal)
2020-11-26 21:54:14 +01:00
.Replace("--", "-", StringComparison.Ordinal);
2015-08-21 17:34:42 +02:00
2015-08-26 20:17:38 +02:00
var invalid = new[] { "N/A", "Approved", "Not Rated", "Passed" };
2015-08-21 17:34:42 +02:00
if (invalid.Contains(info.OfficialRating, StringComparer.OrdinalIgnoreCase))
{
info.OfficialRating = null;
}
2015-08-19 08:12:58 +02:00
}
2021-08-29 00:32:50 +02:00
if (details.Descriptions != null)
2015-08-19 08:12:58 +02:00
{
2021-08-29 00:32:50 +02:00
if (details.Descriptions.Description1000 != null && details.Descriptions.Description1000.Count > 0)
2015-08-19 08:12:58 +02:00
{
2021-08-29 00:32:50 +02:00
info.Overview = details.Descriptions.Description1000[0].Description;
2015-08-19 08:12:58 +02:00
}
2021-08-29 00:32:50 +02:00
else if (details.Descriptions.Description100 != null && details.Descriptions.Description100.Count > 0)
2015-08-19 08:12:58 +02:00
{
2021-08-29 00:32:50 +02:00
info.Overview = details.Descriptions.Description100[0].Description;
2015-08-19 08:12:58 +02:00
}
}
2015-08-16 20:37:53 +02:00
if (info.IsSeries)
{
2017-08-23 18:49:42 +02:00
info.SeriesId = programId.Substring(0, 10);
2015-08-19 08:12:58 +02:00
2020-06-06 21:17:49 +02:00
info.SeriesProviderIds[MetadataProvider.Zap2It.ToString()] = info.SeriesId;
2018-09-12 19:26:21 +02:00
2021-08-29 00:32:50 +02:00
if (details.Metadata != null)
2015-08-19 08:12:58 +02:00
{
2021-08-29 00:32:50 +02:00
foreach (var metadataProgram in details.Metadata)
2017-03-01 21:30:05 +01:00
{
2017-08-24 21:52:48 +02:00
var gracenote = metadataProgram.Gracenote;
if (gracenote != null)
2017-08-23 18:49:42 +02:00
{
2021-08-29 00:32:50 +02:00
info.SeasonNumber = gracenote.Season;
2017-08-24 21:52:48 +02:00
2021-08-29 00:32:50 +02:00
if (gracenote.Episode > 0)
2017-08-24 21:52:48 +02:00
{
2021-08-29 00:32:50 +02:00
info.EpisodeNumber = gracenote.Episode;
2017-08-24 21:52:48 +02:00
}
break;
2017-08-23 18:49:42 +02:00
}
2017-03-01 21:30:05 +01:00
}
2015-08-19 08:12:58 +02:00
}
2015-08-16 20:37:53 +02:00
}
2021-09-03 20:35:52 +02:00
if (details.OriginalAirDate != null)
2015-07-23 07:25:55 +02:00
{
2021-09-03 20:35:52 +02:00
info.OriginalAirDate = details.OriginalAirDate;
2016-10-22 16:50:21 +02:00
info.ProductionYear = info.OriginalAirDate.Value.Year;
2015-07-23 07:25:55 +02:00
}
2021-08-29 00:32:50 +02:00
if (details.Movie != null)
2018-09-12 19:26:21 +02:00
{
2021-08-29 00:32:50 +02:00
if (!string.IsNullOrEmpty(details.Movie.Year)
&& int.TryParse(details.Movie.Year, out int year))
2018-09-12 19:26:21 +02:00
{
info.ProductionYear = year;
}
}
2021-08-29 00:32:50 +02:00
if (details.Genres != null)
2015-07-23 07:25:55 +02:00
{
2021-08-29 00:32:50 +02:00
info.Genres = details.Genres.Where(g => !string.IsNullOrWhiteSpace(g)).ToList();
info.IsNews = details.Genres.Contains("news", StringComparer.OrdinalIgnoreCase);
2015-08-19 19:58:41 +02:00
if (info.Genres.Contains("children", StringComparer.OrdinalIgnoreCase))
{
info.IsKids = true;
}
2015-07-23 07:25:55 +02:00
}
2015-08-19 08:12:58 +02:00
2015-07-23 07:25:55 +02:00
return info;
}
2021-08-29 00:32:50 +02:00
private string GetProgramImage(string apiUrl, IEnumerable<ImageDataDto> images, bool returnDefaultImage, double desiredAspect)
2015-07-23 07:25:55 +02:00
{
var match = images
.OrderBy(i => Math.Abs(desiredAspect - GetAspectRatio(i)))
2021-08-29 00:32:50 +02:00
.ThenByDescending(i => GetSizeOrder(i))
.FirstOrDefault();
2016-09-20 17:21:44 +02:00
2016-09-16 01:19:27 +02:00
if (match == null)
{
return null;
}
2021-08-29 00:32:50 +02:00
var uri = match.Uri;
2016-09-11 09:33:53 +02:00
if (string.IsNullOrWhiteSpace(uri))
2016-09-11 09:33:53 +02:00
{
return null;
}
else if (uri.IndexOf("http", StringComparison.OrdinalIgnoreCase) != -1)
{
return uri;
}
else
{
return apiUrl + "/image/" + uri;
2015-07-23 07:25:55 +02:00
}
}
2021-08-29 00:32:50 +02:00
private static double GetAspectRatio(ImageDataDto i)
2017-06-11 22:40:25 +02:00
{
int width = 0;
int height = 0;
2021-08-29 00:32:50 +02:00
if (!string.IsNullOrWhiteSpace(i.Width))
2017-06-11 22:40:25 +02:00
{
2021-08-29 00:32:50 +02:00
_ = int.TryParse(i.Width, out width);
2017-06-11 22:40:25 +02:00
}
2021-08-29 00:32:50 +02:00
if (!string.IsNullOrWhiteSpace(i.Height))
2017-06-11 22:40:25 +02:00
{
2021-08-29 00:32:50 +02:00
_ = int.TryParse(i.Height, out height);
2017-06-11 22:40:25 +02:00
}
if (height == 0 || width == 0)
{
return 0;
}
double result = width;
result /= height;
return result;
}
2021-09-03 20:35:52 +02:00
private async Task<IReadOnlyList<ShowImagesDto>> GetImageForPrograms(
2016-06-08 23:04:52 +02:00
ListingsProviderInfo info,
2020-11-26 21:54:14 +01:00
IReadOnlyList<string> programIds,
CancellationToken cancellationToken)
2015-07-23 07:25:55 +02:00
{
2017-02-09 04:58:04 +01:00
if (programIds.Count == 0)
{
2021-09-03 20:35:52 +02:00
return Array.Empty<ShowImagesDto>();
2017-02-09 04:58:04 +01:00
}
2020-11-26 21:54:14 +01:00
StringBuilder str = new StringBuilder("[", 1 + (programIds.Count * 13));
foreach (ReadOnlySpan<char> i in programIds)
2015-07-23 07:25:55 +02:00
{
2020-11-26 21:54:14 +01:00
str.Append('"')
.Append(i.Slice(0, 10))
.Append("\",");
2016-11-04 00:35:19 +01:00
}
2020-11-26 21:54:14 +01:00
// Remove last ,
str.Length--;
str.Append(']');
2015-08-22 04:59:10 +02:00
2020-09-07 13:20:39 +02:00
using var message = new HttpRequestMessage(HttpMethod.Post, ApiUrl + "/metadata/programs")
{
2020-11-26 21:54:14 +01:00
Content = new StringContent(str.ToString(), Encoding.UTF8, MediaTypeNames.Application.Json)
2020-09-07 13:20:39 +02:00
};
2017-02-09 04:58:04 +01:00
try
2015-07-23 07:25:55 +02:00
{
using var innerResponse2 = await Send(message, true, info, cancellationToken).ConfigureAwait(false);
2020-11-17 19:43:00 +01:00
await using var response = await innerResponse2.Content.ReadAsStreamAsync(cancellationToken).ConfigureAwait(false);
2021-09-03 20:35:52 +02:00
return await JsonSerializer.DeserializeAsync<IReadOnlyList<ShowImagesDto>>(response, _jsonOptions, cancellationToken).ConfigureAwait(false);
2015-07-23 07:25:55 +02:00
}
2017-02-09 04:58:04 +01:00
catch (Exception ex)
{
2018-12-20 13:11:26 +01:00
_logger.LogError(ex, "Error getting image info from schedules direct");
2015-07-23 07:25:55 +02:00
2021-09-03 20:35:52 +02:00
return Array.Empty<ShowImagesDto>();
2017-02-09 04:58:04 +01:00
}
2015-07-23 07:25:55 +02:00
}
2015-07-23 19:58:20 +02:00
public async Task<List<NameIdPair>> GetHeadends(ListingsProviderInfo info, string country, string location, CancellationToken cancellationToken)
2015-07-23 07:25:55 +02:00
{
2019-10-25 12:47:20 +02:00
var token = await GetToken(info, cancellationToken).ConfigureAwait(false);
2015-07-23 07:25:55 +02:00
var lineups = new List<NameIdPair>();
if (string.IsNullOrWhiteSpace(token))
{
return lineups;
}
using var options = new HttpRequestMessage(HttpMethod.Get, ApiUrl + "/headends?country=" + country + "&postalcode=" + location);
options.Headers.TryAddWithoutValidation("token", token);
2015-07-23 07:25:55 +02:00
try
{
using var httpResponse = await Send(options, false, info, cancellationToken).ConfigureAwait(false);
2020-11-17 19:43:00 +01:00
await using var response = await httpResponse.Content.ReadAsStreamAsync(cancellationToken).ConfigureAwait(false);
2021-09-03 20:35:52 +02:00
var root = await JsonSerializer.DeserializeAsync<IReadOnlyList<HeadendsDto>>(response, _jsonOptions, cancellationToken).ConfigureAwait(false);
2017-10-20 18:16:56 +02:00
if (root != null)
{
2021-08-29 00:32:50 +02:00
foreach (HeadendsDto headend in root)
2018-12-20 13:11:26 +01:00
{
2021-08-29 00:32:50 +02:00
foreach (LineupDto lineup in headend.Lineups)
2015-07-23 07:25:55 +02:00
{
lineups.Add(new NameIdPair
2015-07-23 07:25:55 +02:00
{
2021-08-29 00:32:50 +02:00
Name = string.IsNullOrWhiteSpace(lineup.Name) ? lineup.Lineup : lineup.Name,
2021-09-03 18:59:40 +02:00
Id = lineup.Uri?[18..]
});
2015-07-23 07:25:55 +02:00
}
2018-12-20 13:11:26 +01:00
}
}
else
{
_logger.LogInformation("No lineups available");
2015-07-23 07:25:55 +02:00
}
}
catch (Exception ex)
{
2018-12-20 13:11:26 +01:00
_logger.LogError(ex, "Error getting headends");
2015-07-23 07:25:55 +02:00
}
return lineups;
}
private async Task<string> GetToken(ListingsProviderInfo info, CancellationToken cancellationToken)
{
2015-07-23 15:23:22 +02:00
var username = info.Username;
2015-07-23 07:25:55 +02:00
2015-07-23 15:23:22 +02:00
// Reset the token if there's no username
if (string.IsNullOrWhiteSpace(username))
{
return null;
}
2015-07-23 07:25:55 +02:00
2015-07-23 15:23:22 +02:00
var password = info.Password;
2018-09-12 19:26:21 +02:00
if (string.IsNullOrEmpty(password))
2015-07-23 15:23:22 +02:00
{
return null;
}
2015-07-23 07:25:55 +02:00
2015-09-01 21:18:25 +02:00
// Avoid hammering SD
if ((DateTime.UtcNow - _lastErrorResponse).TotalMinutes < 1)
{
return null;
}
2020-11-26 21:54:14 +01:00
if (!_tokens.TryGetValue(username, out NameValuePair savedToken))
2015-07-23 15:23:22 +02:00
{
savedToken = new NameValuePair();
_tokens.TryAdd(username, savedToken);
}
2015-07-23 07:25:55 +02:00
2018-09-12 19:26:21 +02:00
if (!string.IsNullOrEmpty(savedToken.Name) && !string.IsNullOrEmpty(savedToken.Value))
2015-07-23 15:23:22 +02:00
{
if (long.TryParse(savedToken.Value, NumberStyles.Any, CultureInfo.InvariantCulture, out long ticks))
2015-07-23 07:25:55 +02:00
{
2015-07-23 15:23:22 +02:00
// If it's under 24 hours old we can still use it
2016-03-27 23:11:27 +02:00
if (DateTime.UtcNow.Ticks - ticks < TimeSpan.FromHours(20).Ticks)
2015-07-23 07:25:55 +02:00
{
2015-07-23 15:23:22 +02:00
return savedToken.Name;
2015-07-23 07:25:55 +02:00
}
}
2015-07-23 15:23:22 +02:00
}
2015-07-23 07:25:55 +02:00
2015-07-23 15:23:22 +02:00
await _tokenSemaphore.WaitAsync(cancellationToken).ConfigureAwait(false);
try
{
2015-07-23 07:25:55 +02:00
var result = await GetTokenInternal(username, password, cancellationToken).ConfigureAwait(false);
savedToken.Name = result;
savedToken.Value = DateTime.UtcNow.Ticks.ToString(CultureInfo.InvariantCulture);
return result;
}
2020-11-14 22:30:34 +01:00
catch (HttpRequestException ex)
2015-09-01 21:18:25 +02:00
{
if (ex.StatusCode.HasValue)
{
if ((int)ex.StatusCode.Value == 400)
{
_tokens.Clear();
_lastErrorResponse = DateTime.UtcNow;
}
}
2020-06-15 23:43:52 +02:00
2015-09-01 21:18:25 +02:00
throw;
}
2015-07-23 07:25:55 +02:00
finally
{
_tokenSemaphore.Release();
}
}
private async Task<HttpResponseMessage> Send(
HttpRequestMessage options,
2016-06-08 23:04:52 +02:00
bool enableRetry,
ListingsProviderInfo providerInfo,
CancellationToken cancellationToken,
HttpCompletionOption completionOption = HttpCompletionOption.ResponseContentRead)
2015-11-21 04:13:03 +01:00
{
2020-12-10 16:25:05 +01:00
var response = await _httpClientFactory.CreateClient(NamedClient.Default)
.SendAsync(options, completionOption, cancellationToken).ConfigureAwait(false);
if (response.IsSuccessStatusCode)
2015-11-21 04:13:03 +01:00
{
2020-12-08 16:28:19 +01:00
return response;
2016-06-08 23:04:52 +02:00
}
2020-12-10 16:25:05 +01:00
// Response is automatically disposed in the calling function,
// so dispose manually if not returning.
response.Dispose();
if (!enableRetry || (int)response.StatusCode >= 500)
{
throw new HttpRequestException(
string.Format(CultureInfo.InvariantCulture, "Request failed: {0}", response.ReasonPhrase),
null,
response.StatusCode);
2016-06-08 23:04:52 +02:00
}
2020-12-10 16:25:05 +01:00
_tokens.Clear();
options.Headers.TryAddWithoutValidation("token", await GetToken(providerInfo, cancellationToken).ConfigureAwait(false));
return await Send(options, false, providerInfo, cancellationToken).ConfigureAwait(false);
2015-11-21 04:13:03 +01:00
}
private async Task<string> GetTokenInternal(
string username,
string password,
2015-07-23 07:25:55 +02:00
CancellationToken cancellationToken)
2015-07-21 06:22:46 +02:00
{
using var options = new HttpRequestMessage(HttpMethod.Post, ApiUrl + "/token");
var hashedPasswordBytes = SHA1.HashData(Encoding.ASCII.GetBytes(password));
// TODO: remove ToLower when Convert.ToHexString supports lowercase
// Schedules Direct requires the hex to be lowercase
string hashedPassword = Convert.ToHexString(hashedPasswordBytes).ToLowerInvariant();
options.Content = new StringContent("{\"username\":\"" + username + "\",\"password\":\"" + hashedPassword + "\"}", Encoding.UTF8, MediaTypeNames.Application.Json);
2015-07-23 07:25:55 +02:00
using var response = await Send(options, false, null, cancellationToken).ConfigureAwait(false);
2020-12-08 16:28:19 +01:00
response.EnsureSuccessStatusCode();
2020-11-17 19:43:00 +01:00
await using var stream = await response.Content.ReadAsStreamAsync(cancellationToken).ConfigureAwait(false);
2021-08-29 00:32:50 +02:00
var root = await JsonSerializer.DeserializeAsync<TokenDto>(stream, _jsonOptions, cancellationToken).ConfigureAwait(false);
2021-09-03 20:35:52 +02:00
if (string.Equals(root?.Message, "OK", StringComparison.Ordinal))
2015-07-23 07:25:55 +02:00
{
2021-08-29 00:32:50 +02:00
_logger.LogInformation("Authenticated with Schedules Direct token: {Token}", root.Token);
return root.Token;
2015-07-23 07:25:55 +02:00
}
2021-08-29 00:32:50 +02:00
throw new Exception("Could not authenticate with Schedules Direct Error: " + root.Message);
2015-07-23 07:25:55 +02:00
}
2015-07-23 19:04:54 +02:00
private async Task AddLineupToAccount(ListingsProviderInfo info, CancellationToken cancellationToken)
{
2019-10-25 12:47:20 +02:00
var token = await GetToken(info, cancellationToken).ConfigureAwait(false);
2015-07-23 19:04:54 +02:00
2018-09-12 19:26:21 +02:00
if (string.IsNullOrEmpty(token))
2015-07-23 19:04:54 +02:00
{
throw new ArgumentException("Authentication required.");
}
2018-09-12 19:26:21 +02:00
if (string.IsNullOrEmpty(info.ListingsId))
2015-07-24 23:44:25 +02:00
{
throw new ArgumentException("Listings Id required");
}
_logger.LogInformation("Adding new LineUp ");
2015-07-23 19:04:54 +02:00
using var options = new HttpRequestMessage(HttpMethod.Put, ApiUrl + "/lineups/" + info.ListingsId);
options.Headers.TryAddWithoutValidation("token", token);
2020-09-03 15:30:34 +02:00
using var response = await _httpClientFactory.CreateClient(NamedClient.Default).SendAsync(options, HttpCompletionOption.ResponseHeadersRead, cancellationToken).ConfigureAwait(false);
2015-07-23 19:04:54 +02:00
}
2015-07-24 01:40:54 +02:00
private async Task<bool> HasLineup(ListingsProviderInfo info, CancellationToken cancellationToken)
{
2018-09-12 19:26:21 +02:00
if (string.IsNullOrEmpty(info.ListingsId))
2015-07-24 23:44:25 +02:00
{
throw new ArgumentException("Listings Id required");
}
2019-10-25 12:47:20 +02:00
var token = await GetToken(info, cancellationToken).ConfigureAwait(false);
2015-07-24 01:40:54 +02:00
2018-09-12 19:26:21 +02:00
if (string.IsNullOrEmpty(token))
2015-07-26 23:02:23 +02:00
{
throw new Exception("token required");
}
_logger.LogInformation("Headends on account ");
2015-07-24 01:40:54 +02:00
using var options = new HttpRequestMessage(HttpMethod.Get, ApiUrl + "/lineups");
options.Headers.TryAddWithoutValidation("token", token);
2015-07-24 01:40:54 +02:00
2015-08-21 07:00:56 +02:00
try
{
using var httpResponse = await Send(options, false, null, cancellationToken).ConfigureAwait(false);
2020-12-08 16:28:19 +01:00
httpResponse.EnsureSuccessStatusCode();
2020-11-17 19:43:00 +01:00
await using var stream = await httpResponse.Content.ReadAsStreamAsync(cancellationToken).ConfigureAwait(false);
using var response = httpResponse.Content;
2021-08-29 00:32:50 +02:00
var root = await JsonSerializer.DeserializeAsync<LineupsDto>(stream, _jsonOptions, cancellationToken).ConfigureAwait(false);
2015-08-21 07:00:56 +02:00
2021-09-03 20:35:52 +02:00
return root?.Lineups.Any(i => string.Equals(info.ListingsId, i.Lineup, StringComparison.OrdinalIgnoreCase)) ?? false;
2015-08-21 07:00:56 +02:00
}
2020-11-14 22:30:34 +01:00
catch (HttpRequestException ex)
2015-07-24 01:40:54 +02:00
{
2020-12-08 16:28:19 +01:00
// SchedulesDirect returns 400 if no lineups are configured.
2021-09-03 20:35:52 +02:00
if (ex.StatusCode is HttpStatusCode.BadRequest)
2015-08-21 07:00:56 +02:00
{
return false;
}
2015-07-24 01:40:54 +02:00
2015-08-21 07:00:56 +02:00
throw;
2015-07-24 01:40:54 +02:00
}
}
2015-07-25 19:21:10 +02:00
public async Task Validate(ListingsProviderInfo info, bool validateLogin, bool validateListings)
2015-07-24 01:40:54 +02:00
{
2015-07-25 19:21:10 +02:00
if (validateLogin)
2015-07-24 23:44:25 +02:00
{
2018-09-12 19:26:21 +02:00
if (string.IsNullOrEmpty(info.Username))
2015-07-25 19:21:10 +02:00
{
throw new ArgumentException("Username is required");
}
2020-06-15 23:43:52 +02:00
2018-09-12 19:26:21 +02:00
if (string.IsNullOrEmpty(info.Password))
2015-07-25 19:21:10 +02:00
{
throw new ArgumentException("Password is required");
}
2015-07-24 23:44:25 +02:00
}
2020-06-15 23:43:52 +02:00
2015-07-25 19:21:10 +02:00
if (validateListings)
{
2018-09-12 19:26:21 +02:00
if (string.IsNullOrEmpty(info.ListingsId))
2015-07-25 19:21:10 +02:00
{
throw new ArgumentException("Listings Id required");
}
2015-07-24 23:44:25 +02:00
2015-07-25 19:21:10 +02:00
var hasLineup = await HasLineup(info, CancellationToken.None).ConfigureAwait(false);
2015-07-24 01:40:54 +02:00
2015-07-25 19:21:10 +02:00
if (!hasLineup)
{
await AddLineupToAccount(info, CancellationToken.None).ConfigureAwait(false);
}
2015-07-24 01:40:54 +02:00
}
}
public Task<List<NameIdPair>> GetLineups(ListingsProviderInfo info, string country, string location)
{
return GetHeadends(info, country, location, CancellationToken.None);
}
2016-06-08 07:24:25 +02:00
public async Task<List<ChannelInfo>> GetChannels(ListingsProviderInfo info, CancellationToken cancellationToken)
{
2016-06-08 23:04:52 +02:00
var listingsId = info.ListingsId;
2018-09-12 19:26:21 +02:00
if (string.IsNullOrEmpty(listingsId))
2016-06-08 23:04:52 +02:00
{
throw new Exception("ListingsId required");
}
2019-10-25 12:47:20 +02:00
var token = await GetToken(info, cancellationToken).ConfigureAwait(false);
2016-06-08 23:04:52 +02:00
2018-09-12 19:26:21 +02:00
if (string.IsNullOrEmpty(token))
2016-06-08 23:04:52 +02:00
{
throw new Exception("token required");
}
using var options = new HttpRequestMessage(HttpMethod.Get, ApiUrl + "/lineups/" + listingsId);
options.Headers.TryAddWithoutValidation("token", token);
2016-06-08 23:04:52 +02:00
using var httpResponse = await Send(options, true, info, cancellationToken).ConfigureAwait(false);
2020-11-17 19:43:00 +01:00
await using var stream = await httpResponse.Content.ReadAsStreamAsync(cancellationToken).ConfigureAwait(false);
2021-08-29 00:32:50 +02:00
var root = await JsonSerializer.DeserializeAsync<ChannelDto>(stream, _jsonOptions, cancellationToken).ConfigureAwait(false);
2021-09-03 21:36:07 +02:00
if (root == null)
{
return new List<ChannelInfo>();
}
_logger.LogInformation("Found {ChannelCount} channels on the lineup on ScheduleDirect", root.Map.Count);
_logger.LogInformation("Mapping Stations to Channel");
2017-02-05 00:32:16 +01:00
2021-09-03 20:35:52 +02:00
var allStations = root.Stations;
2017-02-05 00:32:16 +01:00
2021-08-29 00:32:50 +02:00
var map = root.Map;
var list = new List<ChannelInfo>(map.Count);
foreach (var channel in map)
{
var channelNumber = GetChannelNumber(channel);
2017-10-20 18:16:56 +02:00
2021-09-06 19:08:40 +02:00
var stationIndex = allStations.FindIndex(item => string.Equals(item.StationId, channel.StationId, StringComparison.OrdinalIgnoreCase));
var station = stationIndex == -1
? new StationDto { StationId = channel.StationId }
: allStations[stationIndex];
2017-02-05 00:32:16 +01:00
2020-09-01 15:58:05 +02:00
var channelInfo = new ChannelInfo
{
2021-08-29 00:32:50 +02:00
Id = station.StationId,
CallSign = station.Callsign,
2020-09-01 15:58:05 +02:00
Number = channelNumber,
2021-08-29 00:32:50 +02:00
Name = string.IsNullOrWhiteSpace(station.Name) ? channelNumber : station.Name
2020-09-01 15:58:05 +02:00
};
2021-08-29 00:32:50 +02:00
if (station.Logo != null)
{
2021-08-29 00:32:50 +02:00
channelInfo.ImageUrl = station.Logo.Url;
2016-06-08 23:04:52 +02:00
}
list.Add(channelInfo);
2017-02-05 00:32:16 +01:00
}
return list;
2017-02-05 00:32:16 +01:00
}
private static string NormalizeName(string value)
2017-02-05 00:32:16 +01:00
{
return value.Replace(" ", string.Empty, StringComparison.Ordinal).Replace("-", string.Empty, StringComparison.Ordinal);
2017-02-05 00:32:16 +01:00
}
2015-07-21 06:22:46 +02:00
}
2018-12-30 18:30:29 +01:00
}