Files
Readarr/src/Readarr.Api.V1/Search/SearchController.cs
T
Taloth Saldono 525e855038 Fixed: Return remote image links for RemotePoster and RemoteCover
(cherry picked from commit 4219cdb3644f96e1e8f3178fe0a50430c1004506)

Fixes #4101
Closes #212
2025-06-01 23:55:06 +03:00

88 lines
3.1 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using Microsoft.AspNetCore.Mvc;
using NzbDrone.Core.MediaCover;
using NzbDrone.Core.MetadataSource;
using NzbDrone.Core.Organizer;
using Readarr.Api.V1.Author;
using Readarr.Api.V1.Books;
using Readarr.Http;
namespace Readarr.Api.V1.Search
{
[V1ApiController]
public class SearchController : Controller
{
private readonly ISearchForNewEntity _searchProxy;
private readonly IBuildFileNames _fileNameBuilder;
private readonly IMapCoversToLocal _coverMapper;
public SearchController(ISearchForNewEntity searchProxy, IBuildFileNames fileNameBuilder, IMapCoversToLocal coverMapper)
{
_searchProxy = searchProxy;
_fileNameBuilder = fileNameBuilder;
_coverMapper = coverMapper;
}
[HttpGet]
public object Search([FromQuery] string term)
{
var searchResults = _searchProxy.SearchForNewEntity(term);
return MapToResource(searchResults).ToList();
}
private IEnumerable<SearchResource> MapToResource(IEnumerable<object> results)
{
var id = 1;
foreach (var result in results)
{
var resource = new SearchResource();
resource.Id = id++;
if (result is NzbDrone.Core.Books.Author author)
{
resource.Author = author.ToResource();
resource.ForeignId = author.ForeignAuthorId;
_coverMapper.ConvertToLocalUrls(resource.Author.Id, MediaCoverEntity.Author, resource.Author.Images);
var poster = resource.Author.Images.FirstOrDefault(c => c.CoverType == MediaCoverTypes.Poster);
if (poster != null)
{
resource.Author.RemotePoster = poster.RemoteUrl;
}
resource.Author.Folder = _fileNameBuilder.GetAuthorFolder(author);
}
else if (result is NzbDrone.Core.Books.Book book)
{
resource.Book = book.ToResource();
resource.Book.Overview = book.Editions.Value.Single(x => x.Monitored).Overview;
resource.Book.Author = book.Author.Value.ToResource();
resource.Book.Editions = book.Editions.Value.ToResource();
resource.ForeignId = book.ForeignBookId;
_coverMapper.ConvertToLocalUrls(resource.Book.Id, MediaCoverEntity.Book, resource.Book.Images);
var cover = resource.Book.Images.FirstOrDefault(c => c.CoverType == MediaCoverTypes.Cover);
if (cover != null)
{
resource.Book.RemoteCover = cover.RemoteUrl;
}
resource.Book.Author.Folder = _fileNameBuilder.GetAuthorFolder(book.Author);
}
else
{
throw new NotImplementedException("Bad response from search all proxy");
}
yield return resource;
}
}
}
}