2023-04-28 23:18:10 +01:00
package stirling.software.SPDF.controller.api ;
import java.io.IOException ;
import java.util.ArrayList ;
import java.util.List ;
import org.apache.pdfbox.pdmodel.PDDocument ;
import org.apache.pdfbox.pdmodel.PDPage ;
import org.apache.pdfbox.pdmodel.PDPageTree ;
import org.slf4j.Logger ;
import org.slf4j.LoggerFactory ;
import org.springframework.http.ResponseEntity ;
import org.springframework.web.bind.annotation.PostMapping ;
import org.springframework.web.bind.annotation.RequestPart ;
import org.springframework.web.bind.annotation.RestController ;
import org.springframework.web.multipart.MultipartFile ;
2023-05-13 10:32:47 +01:00
import io.swagger.v3.oas.annotations.Operation ;
import io.swagger.v3.oas.annotations.Parameter ;
2023-04-28 23:18:10 +01:00
import stirling.software.SPDF.utils.PdfUtils ;
@RestController
public class MergeController {
private static final Logger logger = LoggerFactory . getLogger ( MergeController . class );
private PDDocument mergeDocuments ( List < PDDocument > documents ) throws IOException {
// Create a new empty document
PDDocument mergedDoc = new PDDocument ();
// Iterate over the list of documents and add their pages to the merged document
for ( PDDocument doc : documents ) {
// Get all pages from the current document
PDPageTree pages = doc . getPages ();
// Iterate over the pages and add them to the merged document
for ( PDPage page : pages ) {
mergedDoc . addPage ( page );
}
2023-04-28 23:45:54 +01:00
2023-04-28 23:18:10 +01:00
}
// Return the merged document
return mergedDoc ;
}
@PostMapping ( consumes = "multipart/form-data" , value = "/merge-pdfs" )
2023-05-13 10:32:47 +01:00
@Operation (
summary = "Merge multiple PDF files into one" ,
description = "This endpoint merges multiple PDF files into a single PDF file. The merged file will contain all pages from the input files in the order they were provided."
)
public ResponseEntity < byte []> mergePdfs (
@RequestPart ( required = true , value = "fileInput" )
@Parameter ( description = "The input PDF files to be merged into a single file" , required = true )
MultipartFile [] files ) throws IOException {
// Read the input PDF files into PDDocument objects
2023-04-28 23:18:10 +01:00
List < PDDocument > documents = new ArrayList <> ();
// Loop through the files array and read each file into a PDDocument
for ( MultipartFile file : files ) {
documents . add ( PDDocument . load ( file . getInputStream ()));
}
PDDocument mergedDoc = mergeDocuments ( documents );
2023-04-28 23:45:54 +01:00
2023-04-28 23:18:10 +01:00
// Return the merged PDF as a response
2023-04-28 23:45:54 +01:00
ResponseEntity < byte []> response = PdfUtils . pdfDocToWebResponse ( mergedDoc , files [ 0 ] . getOriginalFilename (). replaceFirst ( "[.][^.]+$" , "" ) + "_merged.pdf" );
for ( PDDocument doc : documents ) {
// Close the document after processing
doc . close ();
}
return response ;
2023-04-28 23:18:10 +01:00
}
2023-02-03 20:26:35 +00:00
}