- ValidatePdfQueryHandler: Convert byte[] → MemoryStream before calling IPdfProcessor - ValidatePdfAQueryHandler: Same pattern - Update AutoMapper namespace imports (remove Domain.Models.ValueObjects references)
49 lines
1.6 KiB
C#
49 lines
1.6 KiB
C#
using AutoMapper;
|
|
using DocumentOperator.Application.Common.DTOs;
|
|
using DocumentOperator.Application.Common.Interfaces;
|
|
using MediatR;
|
|
|
|
namespace DocumentOperator.Application.ValidatePdf.Queries;
|
|
|
|
/// <summary>
|
|
/// Query for PDF validation (supports both byte array and Base64 input)
|
|
/// </summary>
|
|
public record ValidatePdfQuery : IRequest<PdfValidationResult>
|
|
{
|
|
/// <summary>
|
|
/// PDF as byte array (direct upload)
|
|
/// </summary>
|
|
public byte[]? PdfBytes { get; init; }
|
|
|
|
/// <summary>
|
|
/// PDF as Base64 string (API clients)
|
|
/// </summary>
|
|
public string? Base64Pdf { get; init; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Handler for ValidatePdfQuery
|
|
/// Orchestrates PDF validation using IPdfProcessor and AutoMapper
|
|
/// </summary>
|
|
public class ValidatePdfQueryHandler(IPdfProcessor PdfProcessor, IMapper Mapper)
|
|
: IRequestHandler<ValidatePdfQuery, PdfValidationResult>
|
|
{
|
|
/// <summary>
|
|
/// Validates PDF and returns metadata
|
|
/// </summary>
|
|
public async Task<PdfValidationResult> Handle(ValidatePdfQuery request, CancellationToken cancellationToken)
|
|
{
|
|
// Use byte[] if available, otherwise convert Base64
|
|
byte[] pdfBytes = request.PdfBytes ?? Convert.FromBase64String(request.Base64Pdf!);
|
|
|
|
// Convert to stream for IPdfProcessor (using MemoryStream)
|
|
using var pdfStream = new MemoryStream(pdfBytes);
|
|
|
|
// Call DevExpress service (exceptions propagate naturally)
|
|
var metadata = await PdfProcessor.ValidateAsync(pdfStream);
|
|
|
|
// Map DTO to response DTO using AutoMapper
|
|
return Mapper.Map<PdfValidationResult>(metadata);
|
|
}
|
|
}
|