Manga Cover request retrieve sizing from query instead of body

This commit is contained in:
Glax 2025-03-13 16:35:29 +01:00
parent 34ec185125
commit a43901564b
2 changed files with 5 additions and 19 deletions

View File

@ -1,13 +0,0 @@
using SixLabors.ImageSharp;
namespace API.APIEndpointRecords;
public record CoverFormatRequestRecord(Size size)
{
public bool Validate()
{
if (size.Height <= 0 || size.Width <= 0 || size.Height > 65535 || size.Width > 65535) //JPEG max size
return false;
return true;
}
}

View File

@ -92,7 +92,8 @@ public class MangaController(PgsqlContext context) : Controller
/// Returns Cover of Manga
/// </summary>
/// <param name="MangaId">Manga-ID</param>
/// <param name="formatRequest">Formatting/Resizing Request</param>
/// <param name="width">If width is provided, height needs to also be provided</param>
/// <param name="height">If height is provided, width needs to also be provided</param>
/// <response code="200">JPEG Image</response>
/// <response code="204">Cover not loaded</response>
/// <response code="400">The formatting-request was invalid</response>
@ -102,7 +103,7 @@ public class MangaController(PgsqlContext context) : Controller
[ProducesResponseType(Status204NoContent)]
[ProducesResponseType(Status400BadRequest)]
[ProducesResponseType(Status404NotFound)]
public IActionResult GetCover(string MangaId, [FromBody(EmptyBodyBehavior = EmptyBodyBehavior.Allow)]CoverFormatRequestRecord? formatRequest)
public IActionResult GetCover(string MangaId, [FromQuery]int? width, [FromQuery]int? height)
{
Manga? m = context.Manga.Find(MangaId);
if (m is null)
@ -112,14 +113,12 @@ public class MangaController(PgsqlContext context) : Controller
Image image = Image.Load(m.CoverFileNameInCache);
if (formatRequest is not null)
if (width is { } w && height is { } h)
{
if(!formatRequest.Validate())
return BadRequest();
image.Mutate(i => i.ApplyProcessor(new ResizeProcessor(new ResizeOptions()
{
Mode = ResizeMode.Max,
Size = formatRequest.size
Size = new Size(w, h)
}, image.Size)));
}