using System; using System.Collections.Generic; using System.Net.Http; using System.Threading.Tasks; using Microsoft.Extensions.Logging; using Ombi.Api.TvMaze.Models; using Ombi.Api.TvMaze.Models.V2; using Ombi.Helpers; namespace Ombi.Api.TvMaze { public class TvMazeApi : ITvMazeApi { public TvMazeApi(ILogger logger, IApi api) { Api = api; Logger = logger; } private string Uri = "http://api.tvmaze.com"; private IApi Api { get; } private ILogger Logger { get; } public async Task> Search(string searchTerm) { var request = new Request("search/shows", Uri, HttpMethod.Get); request.AddQueryString("q", searchTerm); request.ContentHeaders.Add(new KeyValuePair("Content-Type","application/json")); return await Api.Request>(request); } public async Task ShowLookup(int showId) { var request = new Request($"shows/{showId}", Uri, HttpMethod.Get); request.AddContentHeader("Content-Type", "application/json"); return await Api.Request(request); } public async Task> EpisodeLookup(int showId) { var request = new Request($"shows/{showId}/episodes", Uri, HttpMethod.Get); request.AddContentHeader("Content-Type", "application/json"); return await Api.Request>(request); } public async Task ShowLookupByTheTvDbId(int theTvDbId) { var request = new Request($"lookup/shows?thetvdb={theTvDbId}", Uri, HttpMethod.Get); request.AddContentHeader("Content-Type", "application/json"); try { var obj = await Api.Request(request); return obj; } catch (Exception e) { Logger.LogError(LoggingEvents.Api, e, "Exception when calling ShowLookupByTheTvDbId with id:{0}",theTvDbId); return null; } } } }