mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-03-12 04:35:27 -07:00
69 lines
2.2 KiB
C#
69 lines
2.2 KiB
C#
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<TvMazeApi> logger, IApi api)
|
|
{
|
|
Api = api;
|
|
Logger = logger;
|
|
}
|
|
private string Uri = "http://api.tvmaze.com";
|
|
private IApi Api { get; }
|
|
private ILogger<TvMazeApi> Logger { get; }
|
|
|
|
public async Task<List<TvMazeSearch>> Search(string searchTerm)
|
|
{
|
|
var request = new Request("search/shows", Uri, HttpMethod.Get);
|
|
|
|
request.AddQueryString("q", searchTerm);
|
|
request.ContentHeaders.Add(new KeyValuePair<string, string>("Content-Type","application/json"));
|
|
|
|
return await Api.Request<List<TvMazeSearch>>(request);
|
|
}
|
|
|
|
public async Task<TvMazeShow> ShowLookup(int showId)
|
|
{
|
|
var request = new Request($"shows/{showId}", Uri, HttpMethod.Get);
|
|
request.AddContentHeader("Content-Type", "application/json");
|
|
|
|
return await Api.Request<TvMazeShow>(request);
|
|
}
|
|
|
|
public async Task<IEnumerable<TvMazeEpisodes>> EpisodeLookup(int showId)
|
|
{
|
|
|
|
var request = new Request($"shows/{showId}/episodes", Uri, HttpMethod.Get);
|
|
|
|
request.AddContentHeader("Content-Type", "application/json");
|
|
|
|
return await Api.Request<List<TvMazeEpisodes>>(request);
|
|
}
|
|
|
|
public async Task<TvMazeShow> 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<TvMazeShow>(request);
|
|
|
|
return obj;
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
Logger.LogError(LoggingEvents.Api, e, "Exception when calling ShowLookupByTheTvDbId with id:{0}",theTvDbId);
|
|
return null;
|
|
}
|
|
}
|
|
}
|
|
}
|