2023-08-01 01:03:13 +02:00
|
|
|
package stirling.software.SPDF.utils;
|
|
|
|
|
|
|
|
import java.io.ByteArrayInputStream;
|
|
|
|
import java.io.IOException;
|
|
|
|
import java.nio.file.Files;
|
|
|
|
import java.nio.file.Path;
|
|
|
|
import java.util.ArrayList;
|
|
|
|
import java.util.List;
|
|
|
|
import java.util.stream.Collectors;
|
|
|
|
import java.util.stream.Stream;
|
|
|
|
import java.util.zip.ZipEntry;
|
|
|
|
import java.util.zip.ZipInputStream;
|
|
|
|
|
|
|
|
import stirling.software.SPDF.utils.ProcessExecutor.ProcessExecutorResult;
|
|
|
|
|
|
|
|
public class FileToPdf {
|
2024-01-09 23:39:21 +01:00
|
|
|
|
|
|
|
public static byte[] convertHtmlToPdf(
|
|
|
|
byte[] fileBytes, String fileName, boolean htmlFormatsInstalled)
|
2023-08-01 01:03:13 +02:00
|
|
|
throws IOException, InterruptedException {
|
|
|
|
|
|
|
|
Path tempOutputFile = Files.createTempFile("output_", ".pdf");
|
|
|
|
Path tempInputFile = null;
|
|
|
|
byte[] pdfBytes;
|
|
|
|
try {
|
|
|
|
if (fileName.endsWith(".html")) {
|
|
|
|
tempInputFile = Files.createTempFile("input_", ".html");
|
|
|
|
Files.write(tempInputFile, fileBytes);
|
|
|
|
} else {
|
|
|
|
tempInputFile = unzipAndGetMainHtml(fileBytes);
|
|
|
|
}
|
|
|
|
|
|
|
|
List<String> command = new ArrayList<>();
|
2024-01-09 23:39:21 +01:00
|
|
|
if (!htmlFormatsInstalled) {
|
|
|
|
command.add("weasyprint");
|
|
|
|
} else {
|
|
|
|
command.add("wkhtmltopdf");
|
2024-01-10 01:33:07 +01:00
|
|
|
command.add("--enable-local-file-access");
|
2024-01-18 22:57:41 +01:00
|
|
|
command.add("--load-error-handling");
|
|
|
|
command.add("ignore");
|
|
|
|
command.add("--load-media-error-handling");
|
|
|
|
command.add("ignore");
|
2024-01-09 23:39:21 +01:00
|
|
|
}
|
2024-01-10 01:33:07 +01:00
|
|
|
|
2023-08-01 01:03:13 +02:00
|
|
|
command.add(tempInputFile.toString());
|
|
|
|
command.add(tempOutputFile.toString());
|
|
|
|
ProcessExecutorResult returnCode;
|
|
|
|
if (fileName.endsWith(".zip")) {
|
2024-01-09 23:39:21 +01:00
|
|
|
|
|
|
|
if (htmlFormatsInstalled) {
|
2024-01-10 01:33:07 +01:00
|
|
|
// command.add(1, "--allow");
|
|
|
|
// command.add(2, tempInputFile.getParent().toString());
|
2024-01-09 23:39:21 +01:00
|
|
|
}
|
2023-08-01 01:03:13 +02:00
|
|
|
returnCode =
|
|
|
|
ProcessExecutor.getInstance(ProcessExecutor.Processes.WEASYPRINT)
|
|
|
|
.runCommandWithOutputHandling(
|
|
|
|
command, tempInputFile.getParent().toFile());
|
2023-12-30 20:11:27 +01:00
|
|
|
} else {
|
2023-08-01 01:03:13 +02:00
|
|
|
|
|
|
|
returnCode =
|
|
|
|
ProcessExecutor.getInstance(ProcessExecutor.Processes.WEASYPRINT)
|
|
|
|
.runCommandWithOutputHandling(command);
|
|
|
|
}
|
|
|
|
|
|
|
|
pdfBytes = Files.readAllBytes(tempOutputFile);
|
2024-01-19 00:28:39 +01:00
|
|
|
} catch (IOException e) {
|
|
|
|
pdfBytes = Files.readAllBytes(tempOutputFile);
|
|
|
|
if (pdfBytes.length < 1) {
|
|
|
|
throw e;
|
|
|
|
}
|
2023-08-01 01:03:13 +02:00
|
|
|
} finally {
|
2024-01-19 00:28:39 +01:00
|
|
|
|
2023-08-01 01:03:13 +02:00
|
|
|
// Clean up temporary files
|
|
|
|
Files.delete(tempOutputFile);
|
|
|
|
Files.delete(tempInputFile);
|
|
|
|
|
|
|
|
if (fileName.endsWith(".zip")) {
|
|
|
|
GeneralUtils.deleteDirectory(tempInputFile.getParent());
|
2023-12-30 20:11:27 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-08-01 01:03:13 +02:00
|
|
|
return pdfBytes;
|
2023-12-30 20:11:27 +01:00
|
|
|
}
|
|
|
|
|
2023-08-01 01:03:13 +02:00
|
|
|
private static Path unzipAndGetMainHtml(byte[] fileBytes) throws IOException {
|
|
|
|
Path tempDirectory = Files.createTempDirectory("unzipped_");
|
|
|
|
try (ZipInputStream zipIn = new ZipInputStream(new ByteArrayInputStream(fileBytes))) {
|
|
|
|
ZipEntry entry = zipIn.getNextEntry();
|
|
|
|
while (entry != null) {
|
|
|
|
Path filePath = tempDirectory.resolve(entry.getName());
|
|
|
|
if (entry.isDirectory()) {
|
|
|
|
Files.createDirectories(filePath); // Explicitly create the directory structure
|
2023-12-30 20:11:27 +01:00
|
|
|
} else {
|
2023-08-01 01:03:13 +02:00
|
|
|
Files.createDirectories(
|
|
|
|
filePath.getParent()); // Create parent directories if they don't exist
|
|
|
|
Files.copy(zipIn, filePath);
|
2023-12-30 20:11:27 +01:00
|
|
|
}
|
2023-08-01 01:03:13 +02:00
|
|
|
zipIn.closeEntry();
|
|
|
|
entry = zipIn.getNextEntry();
|
2023-12-30 20:11:27 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-08-01 01:03:13 +02:00
|
|
|
// search for the main HTML file.
|
|
|
|
try (Stream<Path> walk = Files.walk(tempDirectory)) {
|
|
|
|
List<Path> htmlFiles =
|
|
|
|
walk.filter(file -> file.toString().endsWith(".html"))
|
|
|
|
.collect(Collectors.toList());
|
2023-12-30 20:11:27 +01:00
|
|
|
|
2023-08-01 01:03:13 +02:00
|
|
|
if (htmlFiles.isEmpty()) {
|
|
|
|
throw new IOException("No HTML files found in the unzipped directory.");
|
2023-12-30 20:11:27 +01:00
|
|
|
}
|
|
|
|
|
2023-08-01 01:03:13 +02:00
|
|
|
// Prioritize 'index.html' if it exists, otherwise use the first .html file
|
|
|
|
for (Path htmlFile : htmlFiles) {
|
|
|
|
if (htmlFile.getFileName().toString().equals("index.html")) {
|
|
|
|
return htmlFile;
|
2023-12-30 20:11:27 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-08-01 01:03:13 +02:00
|
|
|
return htmlFiles.get(0);
|
|
|
|
}
|
2023-12-30 20:11:27 +01:00
|
|
|
}
|
2024-01-09 23:39:21 +01:00
|
|
|
|
|
|
|
public static byte[] convertBookTypeToPdf(byte[] bytes, String originalFilename)
|
|
|
|
throws IOException, InterruptedException {
|
|
|
|
if (originalFilename == null || originalFilename.lastIndexOf('.') == -1) {
|
|
|
|
throw new IllegalArgumentException("Invalid original filename.");
|
|
|
|
}
|
|
|
|
|
|
|
|
String fileExtension = originalFilename.substring(originalFilename.lastIndexOf('.'));
|
|
|
|
List<String> command = new ArrayList<>();
|
|
|
|
Path tempOutputFile = Files.createTempFile("output_", ".pdf");
|
|
|
|
Path tempInputFile = null;
|
|
|
|
|
|
|
|
try {
|
|
|
|
// Create temp file with appropriate extension
|
|
|
|
tempInputFile = Files.createTempFile("input_", fileExtension);
|
|
|
|
Files.write(tempInputFile, bytes);
|
|
|
|
|
|
|
|
command.add("ebook-convert");
|
|
|
|
command.add(tempInputFile.toString());
|
|
|
|
command.add(tempOutputFile.toString());
|
|
|
|
ProcessExecutorResult returnCode =
|
|
|
|
ProcessExecutor.getInstance(ProcessExecutor.Processes.CALIBRE)
|
|
|
|
.runCommandWithOutputHandling(command);
|
|
|
|
|
|
|
|
return Files.readAllBytes(tempOutputFile);
|
|
|
|
} finally {
|
|
|
|
// Clean up temporary files
|
|
|
|
if (tempInputFile != null) {
|
|
|
|
Files.deleteIfExists(tempInputFile);
|
|
|
|
}
|
|
|
|
Files.deleteIfExists(tempOutputFile);
|
|
|
|
}
|
|
|
|
}
|
2023-08-01 01:03:13 +02:00
|
|
|
}
|