2024-10-14 22:34:41 +01:00
|
|
|
package stirling.software.SPDF.service;
|
2024-09-13 16:42:38 +01:00
|
|
|
|
|
|
|
import java.util.Calendar;
|
|
|
|
|
|
|
|
import org.apache.pdfbox.pdmodel.PDDocument;
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
|
import org.springframework.beans.factory.annotation.Qualifier;
|
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
|
|
|
|
import stirling.software.SPDF.controller.api.pipeline.UserServiceInterface;
|
|
|
|
import stirling.software.SPDF.model.ApplicationProperties;
|
|
|
|
import stirling.software.SPDF.model.PdfMetadata;
|
|
|
|
|
|
|
|
@Service
|
|
|
|
public class PdfMetadataService {
|
|
|
|
|
|
|
|
private final ApplicationProperties applicationProperties;
|
2024-10-14 22:34:41 +01:00
|
|
|
private final String stirlingPDFLabel;
|
2024-09-13 16:42:38 +01:00
|
|
|
private final UserServiceInterface userService;
|
2025-03-27 12:42:45 +00:00
|
|
|
private final boolean runningProOrHigher;
|
2024-09-13 16:42:38 +01:00
|
|
|
|
|
|
|
@Autowired
|
|
|
|
public PdfMetadataService(
|
|
|
|
ApplicationProperties applicationProperties,
|
2024-10-14 22:34:41 +01:00
|
|
|
@Qualifier("StirlingPDFLabel") String stirlingPDFLabel,
|
2025-03-27 12:42:45 +00:00
|
|
|
@Qualifier("runningProOrHigher") boolean runningProOrHigher,
|
2024-09-13 16:42:38 +01:00
|
|
|
@Autowired(required = false) UserServiceInterface userService) {
|
|
|
|
this.applicationProperties = applicationProperties;
|
2024-10-14 22:34:41 +01:00
|
|
|
this.stirlingPDFLabel = stirlingPDFLabel;
|
2024-09-13 16:42:38 +01:00
|
|
|
this.userService = userService;
|
2025-03-27 12:42:45 +00:00
|
|
|
this.runningProOrHigher = runningProOrHigher;
|
2024-09-13 16:42:38 +01:00
|
|
|
}
|
|
|
|
|
2024-09-14 16:29:39 +01:00
|
|
|
public PdfMetadata extractMetadataFromPdf(PDDocument pdf) {
|
2024-09-13 16:42:38 +01:00
|
|
|
return PdfMetadata.builder()
|
|
|
|
.author(pdf.getDocumentInformation().getAuthor())
|
|
|
|
.producer(pdf.getDocumentInformation().getProducer())
|
|
|
|
.title(pdf.getDocumentInformation().getTitle())
|
|
|
|
.creator(pdf.getDocumentInformation().getCreator())
|
|
|
|
.subject(pdf.getDocumentInformation().getSubject())
|
|
|
|
.keywords(pdf.getDocumentInformation().getKeywords())
|
|
|
|
.creationDate(pdf.getDocumentInformation().getCreationDate())
|
|
|
|
.modificationDate(pdf.getDocumentInformation().getModificationDate())
|
|
|
|
.build();
|
|
|
|
}
|
|
|
|
|
2024-09-14 16:29:39 +01:00
|
|
|
public void setDefaultMetadata(PDDocument pdf) {
|
|
|
|
PdfMetadata metadata = extractMetadataFromPdf(pdf);
|
|
|
|
setMetadataToPdf(pdf, metadata);
|
2024-09-13 16:42:38 +01:00
|
|
|
}
|
|
|
|
|
2024-09-14 16:29:39 +01:00
|
|
|
public void setMetadataToPdf(PDDocument pdf, PdfMetadata pdfMetadata) {
|
|
|
|
setMetadataToPdf(pdf, pdfMetadata, false);
|
2024-09-13 16:42:38 +01:00
|
|
|
}
|
|
|
|
|
2024-09-14 16:29:39 +01:00
|
|
|
public void setMetadataToPdf(PDDocument pdf, PdfMetadata pdfMetadata, boolean newlyCreated) {
|
2024-09-13 16:42:38 +01:00
|
|
|
if (newlyCreated || pdfMetadata.getCreationDate() == null) {
|
|
|
|
setNewDocumentMetadata(pdf, pdfMetadata);
|
|
|
|
}
|
|
|
|
setCommonMetadata(pdf, pdfMetadata);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void setNewDocumentMetadata(PDDocument pdf, PdfMetadata pdfMetadata) {
|
|
|
|
|
2024-10-14 22:34:41 +01:00
|
|
|
String creator = stirlingPDFLabel;
|
2024-09-13 16:42:38 +01:00
|
|
|
|
2025-03-25 17:57:17 +00:00
|
|
|
if (applicationProperties
|
|
|
|
.getPremium()
|
|
|
|
.getProFeatures()
|
|
|
|
.getCustomMetadata()
|
|
|
|
.isAutoUpdateMetadata()
|
2025-03-27 12:42:45 +00:00
|
|
|
&& runningProOrHigher) {
|
2024-09-14 16:29:39 +01:00
|
|
|
|
2025-03-25 17:57:17 +00:00
|
|
|
creator =
|
|
|
|
applicationProperties
|
|
|
|
.getPremium()
|
|
|
|
.getProFeatures()
|
|
|
|
.getCustomMetadata()
|
|
|
|
.getCreator();
|
2024-10-14 22:34:41 +01:00
|
|
|
pdf.getDocumentInformation().setProducer(stirlingPDFLabel);
|
|
|
|
}
|
2024-09-13 16:42:38 +01:00
|
|
|
|
2024-10-14 22:34:41 +01:00
|
|
|
pdf.getDocumentInformation().setCreator(creator);
|
2024-09-13 16:42:38 +01:00
|
|
|
pdf.getDocumentInformation().setCreationDate(Calendar.getInstance());
|
|
|
|
}
|
|
|
|
|
|
|
|
private void setCommonMetadata(PDDocument pdf, PdfMetadata pdfMetadata) {
|
2024-09-14 16:29:39 +01:00
|
|
|
String title = pdfMetadata.getTitle();
|
|
|
|
pdf.getDocumentInformation().setTitle(title);
|
2024-10-14 22:34:41 +01:00
|
|
|
pdf.getDocumentInformation().setProducer(stirlingPDFLabel);
|
2024-09-13 16:42:38 +01:00
|
|
|
pdf.getDocumentInformation().setSubject(pdfMetadata.getSubject());
|
|
|
|
pdf.getDocumentInformation().setKeywords(pdfMetadata.getKeywords());
|
|
|
|
pdf.getDocumentInformation().setModificationDate(Calendar.getInstance());
|
|
|
|
|
|
|
|
String author = pdfMetadata.getAuthor();
|
2025-03-25 17:57:17 +00:00
|
|
|
if (applicationProperties
|
|
|
|
.getPremium()
|
|
|
|
.getProFeatures()
|
|
|
|
.getCustomMetadata()
|
|
|
|
.isAutoUpdateMetadata()
|
2025-03-27 12:42:45 +00:00
|
|
|
&& runningProOrHigher) {
|
2025-03-25 17:57:17 +00:00
|
|
|
author =
|
|
|
|
applicationProperties
|
|
|
|
.getPremium()
|
|
|
|
.getProFeatures()
|
|
|
|
.getCustomMetadata()
|
|
|
|
.getAuthor();
|
2024-10-14 22:34:41 +01:00
|
|
|
|
|
|
|
if (userService != null) {
|
|
|
|
author = author.replace("username", userService.getCurrentUsername());
|
|
|
|
}
|
|
|
|
}
|
2024-09-13 16:42:38 +01:00
|
|
|
pdf.getDocumentInformation().setAuthor(author);
|
|
|
|
}
|
|
|
|
}
|