test av integration mot hardcover

This commit is contained in:
2025-09-17 23:46:52 +02:00
parent 910f500460
commit 1e90a68a6e
6 changed files with 128 additions and 2 deletions

View File

@@ -1,19 +1,60 @@
using Bibblan.Business.Services;
using GraphQL;
using GraphQL.Client.Abstractions;
using Microsoft.AspNetCore.Mvc;
namespace Bibblan.Controllers
{
public class Publisher
{
public string Name { get; set; }
}
public class Image
{
public string Url { get; set; }
}
public class Author
{
public string Name { get; set; }
}
public class Contributor
{
public Author Author { get; set; }
}
public class Edition
{
public long Id { get; set; }
public string Title { get; set; }
public string Edition_Format { get; set; }
public int? Pages { get; set; }
public DateTime? Release_Date { get; set; }
public string Isbn_10 { get; set; }
public string Isbn_13 { get; set; }
public Publisher Publisher { get; set; }
public List<Contributor> Contributions { get; set; }
public Image Image { get; set; }
}
public class EditionsCollectionType
{
public List<Edition> Editions { get; set; }
}
[ApiController]
[Route("api/[controller]")]
public class BibblanController : ControllerBase
{
DatabaseService _db;
CalibreService _calibre;
private readonly IGraphQLClient _client;
public BibblanController(DatabaseService databaseService, CalibreService calibre)
public BibblanController(DatabaseService databaseService, CalibreService calibre, IGraphQLClient client)
{
_db = databaseService;
_calibre = calibre;
_client = client;
}
[HttpGet("cover")]
@@ -99,5 +140,45 @@ namespace Bibblan.Controllers
var tags = _db.GetTags(filter).ToList();
return Ok(tags);
}
//test
[HttpGet("lookup")]
public async Task<IActionResult> HardcoverLookup(string title, string author)
{
var query = new GraphQLRequest
{
Query = @"
query SomeNameHere($title: String!, $author: String!) {
editions(
where: {title: {_eq: $title}, _and: {contributions: {author: {name: {_eq: $author}}}}}
) {
id
title
edition_format
pages
release_date
isbn_10
isbn_13
publisher {
name
}
contributions {
author {
name
}
}
image {
url
}
}
}",
Variables = new
{
title,
author
}
};
var response = await _client.SendQueryAsync<EditionsCollectionType>(query);
return Ok(response.Data.Editions);
}
}
}