You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Readarr/src/Readarr.Api.V1/Parse/ParseController.cs

61 lines
1.5 KiB

using Microsoft.AspNetCore.Mvc;
using NzbDrone.Common.Extensions;
using NzbDrone.Core.Parser;
using Readarr.Api.V1.Author;
using Readarr.Api.V1.Books;
using Readarr.Http;
namespace Readarr.Api.V1.Parse
{
[V1ApiController]
public class ParseController : Controller
{
private readonly IParsingService _parsingService;
public ParseController(IParsingService parsingService)
{
_parsingService = parsingService;
}
[HttpGet]
public ParseResource Parse(string title)
{
if (title.IsNullOrWhiteSpace())
{
return null;
}
var parsedBookInfo = Parser.ParseBookTitle(title);
if (parsedBookInfo == null)
{
return new ParseResource
{
Title = title
};
}
var remoteBook = _parsingService.Map(parsedBookInfo);
if (remoteBook != null)
{
return new ParseResource
{
Title = title,
ParsedBookInfo = remoteBook.ParsedBookInfo,
Author = remoteBook.Author.ToResource(),
Books = remoteBook.Books.ToResource()
};
}
else
{
return new ParseResource
{
Title = title,
ParsedBookInfo = parsedBookInfo
};
}
}
}
}