123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854 |
- #nullable disable
- #pragma warning disable CS1591
- using System;
- using System.Collections.Concurrent;
- using System.Collections.Generic;
- using System.Globalization;
- using System.Linq;
- using System.Net;
- using System.Net.Http;
- using System.Net.Http.Json;
- using System.Net.Mime;
- using System.Security.Cryptography;
- using System.Text;
- using System.Text.Json;
- using System.Threading;
- using System.Threading.Tasks;
- using Emby.Server.Implementations.LiveTv.Listings.SchedulesDirectDtos;
- using Jellyfin.Extensions;
- using Jellyfin.Extensions.Json;
- using MediaBrowser.Common.Net;
- using MediaBrowser.Controller.Authentication;
- using MediaBrowser.Controller.LiveTv;
- using MediaBrowser.Model.Dto;
- using MediaBrowser.Model.Entities;
- using MediaBrowser.Model.LiveTv;
- using Microsoft.Extensions.Logging;
- namespace Emby.Server.Implementations.LiveTv.Listings
- {
- public class SchedulesDirect : IListingsProvider, IDisposable
- {
- private const string ApiUrl = "https://json.schedulesdirect.org/20141201";
- private readonly ILogger<SchedulesDirect> _logger;
- private readonly IHttpClientFactory _httpClientFactory;
- private readonly SemaphoreSlim _tokenSemaphore = new SemaphoreSlim(1, 1);
- private readonly ConcurrentDictionary<string, NameValuePair> _tokens = new ConcurrentDictionary<string, NameValuePair>();
- private readonly JsonSerializerOptions _jsonOptions = JsonDefaults.Options;
- private DateTime _lastErrorResponse;
- private bool _disposed = false;
- public SchedulesDirect(
- ILogger<SchedulesDirect> logger,
- IHttpClientFactory httpClientFactory)
- {
- _logger = logger;
- _httpClientFactory = httpClientFactory;
- }
- /// <inheritdoc />
- public string Name => "Schedules Direct";
- /// <inheritdoc />
- public string Type => nameof(SchedulesDirect);
- private static List<string> GetScheduleRequestDates(DateTime startDateUtc, DateTime endDateUtc)
- {
- var dates = new List<string>();
- var start = new[] { startDateUtc, startDateUtc.ToLocalTime() }.Min().Date;
- var end = new[] { endDateUtc, endDateUtc.ToLocalTime() }.Max().Date;
- while (start <= end)
- {
- dates.Add(start.ToString("yyyy-MM-dd", CultureInfo.InvariantCulture));
- start = start.AddDays(1);
- }
- return dates;
- }
- public async Task<IEnumerable<ProgramInfo>> GetProgramsAsync(ListingsProviderInfo info, string channelId, DateTime startDateUtc, DateTime endDateUtc, CancellationToken cancellationToken)
- {
- if (string.IsNullOrEmpty(channelId))
- {
- throw new ArgumentNullException(nameof(channelId));
- }
- // Normalize incoming input
- channelId = channelId.Replace(".json.schedulesdirect.org", string.Empty, StringComparison.OrdinalIgnoreCase).TrimStart('I');
- var token = await GetToken(info, cancellationToken).ConfigureAwait(false);
- if (string.IsNullOrEmpty(token))
- {
- _logger.LogWarning("SchedulesDirect token is empty, returning empty program list");
- return Enumerable.Empty<ProgramInfo>();
- }
- var dates = GetScheduleRequestDates(startDateUtc, endDateUtc);
- _logger.LogInformation("Channel Station ID is: {ChannelID}", channelId);
- var requestList = new List<RequestScheduleForChannelDto>()
- {
- new RequestScheduleForChannelDto()
- {
- StationId = channelId,
- Date = dates
- }
- };
- _logger.LogDebug("Request string for schedules is: {@RequestString}", requestList);
- using var options = new HttpRequestMessage(HttpMethod.Post, ApiUrl + "/schedules");
- options.Content = JsonContent.Create(requestList, options: _jsonOptions);
- options.Headers.TryAddWithoutValidation("token", token);
- using var response = await Send(options, true, info, cancellationToken).ConfigureAwait(false);
- await using var responseStream = await response.Content.ReadAsStreamAsync(cancellationToken).ConfigureAwait(false);
- var dailySchedules = await JsonSerializer.DeserializeAsync<IReadOnlyList<DayDto>>(responseStream, _jsonOptions, cancellationToken).ConfigureAwait(false);
- if (dailySchedules is null)
- {
- return Array.Empty<ProgramInfo>();
- }
- _logger.LogDebug("Found {ScheduleCount} programs on {ChannelID} ScheduleDirect", dailySchedules.Count, channelId);
- using var programRequestOptions = new HttpRequestMessage(HttpMethod.Post, ApiUrl + "/programs");
- programRequestOptions.Headers.TryAddWithoutValidation("token", token);
- var programIds = dailySchedules.SelectMany(d => d.Programs.Select(s => s.ProgramId)).Distinct();
- programRequestOptions.Content = JsonContent.Create(programIds, options: _jsonOptions);
- using var innerResponse = await Send(programRequestOptions, true, info, cancellationToken).ConfigureAwait(false);
- await using var innerResponseStream = await innerResponse.Content.ReadAsStreamAsync(cancellationToken).ConfigureAwait(false);
- var programDetails = await JsonSerializer.DeserializeAsync<IReadOnlyList<ProgramDetailsDto>>(innerResponseStream, _jsonOptions, cancellationToken).ConfigureAwait(false);
- if (programDetails is null)
- {
- return Array.Empty<ProgramInfo>();
- }
- var programDict = programDetails.ToDictionary(p => p.ProgramId, y => y);
- var programIdsWithImages = programDetails
- .Where(p => p.HasImageArtwork).Select(p => p.ProgramId)
- .ToList();
- var images = await GetImageForPrograms(info, programIdsWithImages, cancellationToken).ConfigureAwait(false);
- var programsInfo = new List<ProgramInfo>();
- 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 " +
- // schedule.ProgramId + " which says it has images? " +
- // programDict[schedule.ProgramId].hasImageArtwork);
- if (string.IsNullOrEmpty(schedule.ProgramId))
- {
- continue;
- }
- if (images is not null)
- {
- var imageIndex = images.FindIndex(i => i.ProgramId == schedule.ProgramId[..10]);
- if (imageIndex > -1)
- {
- var programEntry = programDict[schedule.ProgramId];
- var allImages = images[imageIndex].Data;
- var imagesWithText = allImages.Where(i => string.Equals(i.Text, "yes", StringComparison.OrdinalIgnoreCase)).ToList();
- var imagesWithoutText = allImages.Where(i => string.Equals(i.Text, "no", StringComparison.OrdinalIgnoreCase)).ToList();
- const double DesiredAspect = 2.0 / 3;
- programEntry.PrimaryImage = GetProgramImage(ApiUrl, imagesWithText, DesiredAspect, token) ??
- GetProgramImage(ApiUrl, allImages, DesiredAspect, token);
- const double WideAspect = 16.0 / 9;
- programEntry.ThumbImage = GetProgramImage(ApiUrl, imagesWithText, WideAspect, token);
- // Don't supply the same image twice
- if (string.Equals(programEntry.PrimaryImage, programEntry.ThumbImage, StringComparison.Ordinal))
- {
- programEntry.ThumbImage = null;
- }
- programEntry.BackdropImage = GetProgramImage(ApiUrl, imagesWithoutText, WideAspect, token);
- // 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);
- }
- }
- programsInfo.Add(GetProgram(channelId, schedule, programDict[schedule.ProgramId]));
- }
- return programsInfo;
- }
- private static int GetSizeOrder(ImageDataDto image)
- {
- if (int.TryParse(image.Height, out int value))
- {
- return value;
- }
- return 0;
- }
- private static string GetChannelNumber(MapDto map)
- {
- var channelNumber = map.LogicalChannelNumber;
- if (string.IsNullOrWhiteSpace(channelNumber))
- {
- channelNumber = map.Channel;
- }
- if (string.IsNullOrWhiteSpace(channelNumber))
- {
- channelNumber = map.AtscMajor + "." + map.AtscMinor;
- }
- return channelNumber.TrimStart('0');
- }
- private static bool IsMovie(ProgramDetailsDto programInfo)
- {
- return string.Equals(programInfo.EntityType, "movie", StringComparison.OrdinalIgnoreCase);
- }
- private ProgramInfo GetProgram(string channelId, ProgramDto programInfo, ProgramDetailsDto details)
- {
- if (programInfo.AirDateTime is null)
- {
- return null;
- }
- var startAt = programInfo.AirDateTime.Value;
- var endAt = startAt.AddSeconds(programInfo.Duration);
- var audioType = ProgramAudio.Stereo;
- var programId = programInfo.ProgramId ?? string.Empty;
- string newID = programId + "T" + startAt.Ticks + "C" + channelId;
- if (programInfo.AudioProperties.Count != 0)
- {
- if (programInfo.AudioProperties.Contains("atmos", StringComparison.OrdinalIgnoreCase))
- {
- audioType = ProgramAudio.Atmos;
- }
- else if (programInfo.AudioProperties.Contains("dd 5.1", StringComparison.OrdinalIgnoreCase))
- {
- audioType = ProgramAudio.DolbyDigital;
- }
- else if (programInfo.AudioProperties.Contains("dd", StringComparison.OrdinalIgnoreCase))
- {
- audioType = ProgramAudio.DolbyDigital;
- }
- else if (programInfo.AudioProperties.Contains("stereo", StringComparison.OrdinalIgnoreCase))
- {
- audioType = ProgramAudio.Stereo;
- }
- else
- {
- audioType = ProgramAudio.Mono;
- }
- }
- string episodeTitle = null;
- if (details.EpisodeTitle150 is not null)
- {
- episodeTitle = details.EpisodeTitle150;
- }
- var info = new ProgramInfo
- {
- ChannelId = channelId,
- Id = newID,
- StartDate = startAt,
- EndDate = endAt,
- Name = details.Titles[0].Title120 ?? "Unknown",
- OfficialRating = null,
- CommunityRating = null,
- EpisodeTitle = episodeTitle,
- Audio = audioType,
- // IsNew = programInfo.@new ?? false,
- IsRepeat = programInfo.New is 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),
- IsMovie = IsMovie(details),
- Etag = programInfo.Md5,
- IsLive = string.Equals(programInfo.LiveTapeDelay, "live", StringComparison.OrdinalIgnoreCase),
- IsPremiere = programInfo.Premiere || (programInfo.IsPremiereOrFinale ?? string.Empty).IndexOf("premiere", StringComparison.OrdinalIgnoreCase) != -1
- };
- var showId = programId;
- if (!info.IsSeries)
- {
- // It's also a series if it starts with SH
- info.IsSeries = showId.StartsWith("SH", StringComparison.OrdinalIgnoreCase) && showId.Length >= 14;
- }
- // 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;
- if (programInfo.VideoProperties is not null)
- {
- info.IsHD = programInfo.VideoProperties.Contains("hdtv", StringComparison.OrdinalIgnoreCase);
- info.Is3D = programInfo.VideoProperties.Contains("3d", StringComparison.OrdinalIgnoreCase);
- }
- if (details.ContentRating is not null && details.ContentRating.Count > 0)
- {
- info.OfficialRating = details.ContentRating[0].Code.Replace("TV", "TV-", StringComparison.Ordinal)
- .Replace("--", "-", StringComparison.Ordinal);
- var invalid = new[] { "N/A", "Approved", "Not Rated", "Passed" };
- if (invalid.Contains(info.OfficialRating, StringComparison.OrdinalIgnoreCase))
- {
- info.OfficialRating = null;
- }
- }
- if (details.Descriptions is not null)
- {
- if (details.Descriptions.Description1000 is not null && details.Descriptions.Description1000.Count > 0)
- {
- info.Overview = details.Descriptions.Description1000[0].Description;
- }
- else if (details.Descriptions.Description100 is not null && details.Descriptions.Description100.Count > 0)
- {
- info.Overview = details.Descriptions.Description100[0].Description;
- }
- }
- if (info.IsSeries)
- {
- info.SeriesId = programId.Substring(0, 10);
- info.SeriesProviderIds[MetadataProvider.Zap2It.ToString()] = info.SeriesId;
- if (details.Metadata is not null)
- {
- foreach (var metadataProgram in details.Metadata)
- {
- var gracenote = metadataProgram.Gracenote;
- if (gracenote is not null)
- {
- info.SeasonNumber = gracenote.Season;
- if (gracenote.Episode > 0)
- {
- info.EpisodeNumber = gracenote.Episode;
- }
- break;
- }
- }
- }
- }
- if (details.OriginalAirDate is not null)
- {
- info.OriginalAirDate = details.OriginalAirDate;
- info.ProductionYear = info.OriginalAirDate.Value.Year;
- }
- if (details.Movie is not null)
- {
- if (!string.IsNullOrEmpty(details.Movie.Year)
- && int.TryParse(details.Movie.Year, out int year))
- {
- info.ProductionYear = year;
- }
- }
- if (details.Genres is not null)
- {
- info.Genres = details.Genres.Where(g => !string.IsNullOrWhiteSpace(g)).ToList();
- info.IsNews = details.Genres.Contains("news", StringComparison.OrdinalIgnoreCase);
- if (info.Genres.Contains("children", StringComparison.OrdinalIgnoreCase))
- {
- info.IsKids = true;
- }
- }
- return info;
- }
- private static string GetProgramImage(string apiUrl, IEnumerable<ImageDataDto> images, double desiredAspect, string token)
- {
- var match = images
- .OrderBy(i => Math.Abs(desiredAspect - GetAspectRatio(i)))
- .ThenByDescending(i => GetSizeOrder(i))
- .FirstOrDefault();
- if (match is null)
- {
- return null;
- }
- var uri = match.Uri;
- if (string.IsNullOrWhiteSpace(uri))
- {
- return null;
- }
- else if (uri.IndexOf("http", StringComparison.OrdinalIgnoreCase) != -1)
- {
- return uri;
- }
- else
- {
- return apiUrl + "/image/" + uri + "?token=" + token;
- }
- }
- private static double GetAspectRatio(ImageDataDto i)
- {
- int width = 0;
- int height = 0;
- if (!string.IsNullOrWhiteSpace(i.Width))
- {
- _ = int.TryParse(i.Width, out width);
- }
- if (!string.IsNullOrWhiteSpace(i.Height))
- {
- _ = int.TryParse(i.Height, out height);
- }
- if (height == 0 || width == 0)
- {
- return 0;
- }
- double result = width;
- result /= height;
- return result;
- }
- private async Task<IReadOnlyList<ShowImagesDto>> GetImageForPrograms(
- ListingsProviderInfo info,
- IReadOnlyList<string> programIds,
- CancellationToken cancellationToken)
- {
- var token = await GetToken(info, cancellationToken).ConfigureAwait(false);
- if (programIds.Count == 0)
- {
- return Array.Empty<ShowImagesDto>();
- }
- StringBuilder str = new StringBuilder("[", 1 + (programIds.Count * 13));
- foreach (ReadOnlySpan<char> i in programIds)
- {
- str.Append('"')
- .Append(i.Slice(0, 10))
- .Append("\",");
- }
- // Remove last ,
- str.Length--;
- str.Append(']');
- using var message = new HttpRequestMessage(HttpMethod.Post, ApiUrl + "/metadata/programs")
- {
- Content = new StringContent(str.ToString(), Encoding.UTF8, MediaTypeNames.Application.Json)
- };
- message.Headers.TryAddWithoutValidation("token", token);
- try
- {
- using var innerResponse2 = await Send(message, true, info, cancellationToken).ConfigureAwait(false);
- await using var response = await innerResponse2.Content.ReadAsStreamAsync(cancellationToken).ConfigureAwait(false);
- return await JsonSerializer.DeserializeAsync<IReadOnlyList<ShowImagesDto>>(response, _jsonOptions, cancellationToken).ConfigureAwait(false);
- }
- catch (Exception ex)
- {
- _logger.LogError(ex, "Error getting image info from schedules direct");
- return Array.Empty<ShowImagesDto>();
- }
- }
- public async Task<List<NameIdPair>> GetHeadends(ListingsProviderInfo info, string country, string location, CancellationToken cancellationToken)
- {
- var token = await GetToken(info, cancellationToken).ConfigureAwait(false);
- 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);
- try
- {
- using var httpResponse = await Send(options, false, info, cancellationToken).ConfigureAwait(false);
- await using var response = await httpResponse.Content.ReadAsStreamAsync(cancellationToken).ConfigureAwait(false);
- var root = await JsonSerializer.DeserializeAsync<IReadOnlyList<HeadendsDto>>(response, _jsonOptions, cancellationToken).ConfigureAwait(false);
- if (root is not null)
- {
- foreach (HeadendsDto headend in root)
- {
- foreach (LineupDto lineup in headend.Lineups)
- {
- lineups.Add(new NameIdPair
- {
- Name = string.IsNullOrWhiteSpace(lineup.Name) ? lineup.Lineup : lineup.Name,
- Id = lineup.Uri?[18..]
- });
- }
- }
- }
- else
- {
- _logger.LogInformation("No lineups available");
- }
- }
- catch (Exception ex)
- {
- _logger.LogError(ex, "Error getting headends");
- }
- return lineups;
- }
- private async Task<string> GetToken(ListingsProviderInfo info, CancellationToken cancellationToken)
- {
- var username = info.Username;
- // Reset the token if there's no username
- if (string.IsNullOrWhiteSpace(username))
- {
- return null;
- }
- var password = info.Password;
- if (string.IsNullOrEmpty(password))
- {
- return null;
- }
- // Avoid hammering SD
- if ((DateTime.UtcNow - _lastErrorResponse).TotalMinutes < 1)
- {
- return null;
- }
- if (!_tokens.TryGetValue(username, out NameValuePair savedToken))
- {
- savedToken = new NameValuePair();
- _tokens.TryAdd(username, savedToken);
- }
- if (!string.IsNullOrEmpty(savedToken.Name) && !string.IsNullOrEmpty(savedToken.Value))
- {
- if (long.TryParse(savedToken.Value, NumberStyles.Any, CultureInfo.InvariantCulture, out long ticks))
- {
- // If it's under 24 hours old we can still use it
- if (DateTime.UtcNow.Ticks - ticks < TimeSpan.FromHours(20).Ticks)
- {
- return savedToken.Name;
- }
- }
- }
- await _tokenSemaphore.WaitAsync(cancellationToken).ConfigureAwait(false);
- try
- {
- var result = await GetTokenInternal(username, password, cancellationToken).ConfigureAwait(false);
- savedToken.Name = result;
- savedToken.Value = DateTime.UtcNow.Ticks.ToString(CultureInfo.InvariantCulture);
- return result;
- }
- catch (HttpRequestException ex)
- {
- if (ex.StatusCode.HasValue && ex.StatusCode.Value == HttpStatusCode.BadRequest)
- {
- _tokens.Clear();
- _lastErrorResponse = DateTime.UtcNow;
- }
- throw;
- }
- finally
- {
- _tokenSemaphore.Release();
- }
- }
- private async Task<HttpResponseMessage> Send(
- HttpRequestMessage options,
- bool enableRetry,
- ListingsProviderInfo providerInfo,
- CancellationToken cancellationToken,
- HttpCompletionOption completionOption = HttpCompletionOption.ResponseContentRead)
- {
- var response = await _httpClientFactory.CreateClient(NamedClient.Default)
- .SendAsync(options, completionOption, cancellationToken).ConfigureAwait(false);
- if (response.IsSuccessStatusCode)
- {
- return response;
- }
- // 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);
- }
- _tokens.Clear();
- options.Headers.TryAddWithoutValidation("token", await GetToken(providerInfo, cancellationToken).ConfigureAwait(false));
- return await Send(options, false, providerInfo, cancellationToken).ConfigureAwait(false);
- }
- private async Task<string> GetTokenInternal(
- string username,
- string password,
- CancellationToken cancellationToken)
- {
- using var options = new HttpRequestMessage(HttpMethod.Post, ApiUrl + "/token");
- #pragma warning disable CA5350 // SchedulesDirect is always SHA1.
- var hashedPasswordBytes = SHA1.HashData(Encoding.ASCII.GetBytes(password));
- #pragma warning restore CA5350
- // 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);
- using var response = await Send(options, false, null, cancellationToken).ConfigureAwait(false);
- response.EnsureSuccessStatusCode();
- await using var stream = await response.Content.ReadAsStreamAsync(cancellationToken).ConfigureAwait(false);
- var root = await JsonSerializer.DeserializeAsync<TokenDto>(stream, _jsonOptions, cancellationToken).ConfigureAwait(false);
- if (string.Equals(root?.Message, "OK", StringComparison.Ordinal))
- {
- _logger.LogInformation("Authenticated with Schedules Direct token: {Token}", root.Token);
- return root.Token;
- }
- throw new AuthenticationException("Could not authenticate with Schedules Direct Error: " + root.Message);
- }
- private async Task AddLineupToAccount(ListingsProviderInfo info, CancellationToken cancellationToken)
- {
- var token = await GetToken(info, cancellationToken).ConfigureAwait(false);
- if (string.IsNullOrEmpty(token))
- {
- throw new ArgumentException("Authentication required.");
- }
- if (string.IsNullOrEmpty(info.ListingsId))
- {
- throw new ArgumentException("Listings Id required");
- }
- _logger.LogInformation("Adding new LineUp ");
- using var options = new HttpRequestMessage(HttpMethod.Put, ApiUrl + "/lineups/" + info.ListingsId);
- options.Headers.TryAddWithoutValidation("token", token);
- using var response = await _httpClientFactory.CreateClient(NamedClient.Default).SendAsync(options, HttpCompletionOption.ResponseHeadersRead, cancellationToken).ConfigureAwait(false);
- }
- private async Task<bool> HasLineup(ListingsProviderInfo info, CancellationToken cancellationToken)
- {
- if (string.IsNullOrEmpty(info.ListingsId))
- {
- throw new ArgumentException("Listings Id required");
- }
- var token = await GetToken(info, cancellationToken).ConfigureAwait(false);
- if (string.IsNullOrEmpty(token))
- {
- throw new ArgumentException("token required");
- }
- _logger.LogInformation("Headends on account ");
- using var options = new HttpRequestMessage(HttpMethod.Get, ApiUrl + "/lineups");
- options.Headers.TryAddWithoutValidation("token", token);
- try
- {
- using var httpResponse = await Send(options, false, null, cancellationToken).ConfigureAwait(false);
- httpResponse.EnsureSuccessStatusCode();
- await using var stream = await httpResponse.Content.ReadAsStreamAsync(cancellationToken).ConfigureAwait(false);
- using var response = httpResponse.Content;
- var root = await JsonSerializer.DeserializeAsync<LineupsDto>(stream, _jsonOptions, cancellationToken).ConfigureAwait(false);
- return root?.Lineups.Any(i => string.Equals(info.ListingsId, i.Lineup, StringComparison.OrdinalIgnoreCase)) ?? false;
- }
- catch (HttpRequestException ex)
- {
- // SchedulesDirect returns 400 if no lineups are configured.
- if (ex.StatusCode is HttpStatusCode.BadRequest)
- {
- return false;
- }
- throw;
- }
- }
- public async Task Validate(ListingsProviderInfo info, bool validateLogin, bool validateListings)
- {
- if (validateLogin)
- {
- if (string.IsNullOrEmpty(info.Username))
- {
- throw new ArgumentException("Username is required");
- }
- if (string.IsNullOrEmpty(info.Password))
- {
- throw new ArgumentException("Password is required");
- }
- }
- if (validateListings)
- {
- if (string.IsNullOrEmpty(info.ListingsId))
- {
- throw new ArgumentException("Listings Id required");
- }
- var hasLineup = await HasLineup(info, CancellationToken.None).ConfigureAwait(false);
- if (!hasLineup)
- {
- await AddLineupToAccount(info, CancellationToken.None).ConfigureAwait(false);
- }
- }
- }
- public Task<List<NameIdPair>> GetLineups(ListingsProviderInfo info, string country, string location)
- {
- return GetHeadends(info, country, location, CancellationToken.None);
- }
- public async Task<List<ChannelInfo>> GetChannels(ListingsProviderInfo info, CancellationToken cancellationToken)
- {
- var listingsId = info.ListingsId;
- if (string.IsNullOrEmpty(listingsId))
- {
- throw new ArgumentException("ListingsId required");
- }
- var token = await GetToken(info, cancellationToken).ConfigureAwait(false);
- if (string.IsNullOrEmpty(token))
- {
- throw new ArgumentException("token required");
- }
- using var options = new HttpRequestMessage(HttpMethod.Get, ApiUrl + "/lineups/" + listingsId);
- options.Headers.TryAddWithoutValidation("token", token);
- using var httpResponse = await Send(options, true, info, cancellationToken).ConfigureAwait(false);
- await using var stream = await httpResponse.Content.ReadAsStreamAsync(cancellationToken).ConfigureAwait(false);
- var root = await JsonSerializer.DeserializeAsync<ChannelDto>(stream, _jsonOptions, cancellationToken).ConfigureAwait(false);
- if (root is null)
- {
- return new List<ChannelInfo>();
- }
- _logger.LogInformation("Found {ChannelCount} channels on the lineup on ScheduleDirect", root.Map.Count);
- _logger.LogInformation("Mapping Stations to Channel");
- var allStations = root.Stations;
- var map = root.Map;
- var list = new List<ChannelInfo>(map.Count);
- foreach (var channel in map)
- {
- var channelNumber = GetChannelNumber(channel);
- var stationIndex = allStations.FindIndex(item => string.Equals(item.StationId, channel.StationId, StringComparison.OrdinalIgnoreCase));
- var station = stationIndex == -1
- ? new StationDto { StationId = channel.StationId }
- : allStations[stationIndex];
- var channelInfo = new ChannelInfo
- {
- Id = station.StationId,
- CallSign = station.Callsign,
- Number = channelNumber,
- Name = string.IsNullOrWhiteSpace(station.Name) ? channelNumber : station.Name
- };
- if (station.Logo is not null)
- {
- channelInfo.ImageUrl = station.Logo.Url;
- }
- list.Add(channelInfo);
- }
- return list;
- }
- /// <inheritdoc />
- public void Dispose()
- {
- Dispose(true);
- GC.SuppressFinalize(this);
- }
- /// <summary>
- /// Releases unmanaged and optionally managed resources.
- /// </summary>
- /// <param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
- protected virtual void Dispose(bool disposing)
- {
- if (_disposed)
- {
- return;
- }
- if (disposing)
- {
- _tokenSemaphore?.Dispose();
- }
- _disposed = true;
- }
- }
- }
|