mirror of
https://github.com/Stirling-Tools/Stirling-PDF.git
synced 2025-06-23 16:05:09 +00:00

# Description Please provide a summary of the changes, including relevant motivation and context. Closes #(issue_number) ## Checklist - [ ] I have read the [Contribution Guidelines](https://github.com/Stirling-Tools/Stirling-PDF/blob/main/CONTRIBUTING.md) - [ ] I have performed a self-review of my own code - [ ] I have attached images of the change if it is UI based - [ ] I have commented my code, particularly in hard-to-understand areas - [ ] If my code has heavily changed functionality I have updated relevant docs on [Stirling-PDFs doc repo](https://github.com/Stirling-Tools/Stirling-Tools.github.io/blob/main/docs/) - [ ] My changes generate no new warnings - [ ] I have read the section [Add New Translation Tags](https://github.com/Stirling-Tools/Stirling-PDF/blob/main/HowToAddNewLanguage.md#add-new-translation-tags) (for new translation tags only) --------- Co-authored-by: pixeebot[bot] <104101892+pixeebot[bot]@users.noreply.github.com> Co-authored-by: a <a>
56 lines
1.9 KiB
Java
56 lines
1.9 KiB
Java
package stirling.software.SPDF.config;
|
|
|
|
import java.io.IOException;
|
|
import java.io.InputStream;
|
|
import java.util.Map;
|
|
|
|
import org.springframework.core.io.Resource;
|
|
import org.springframework.core.io.ResourceLoader;
|
|
import org.thymeleaf.IEngineConfiguration;
|
|
import org.thymeleaf.templateresolver.AbstractConfigurableTemplateResolver;
|
|
import org.thymeleaf.templateresource.FileTemplateResource;
|
|
import org.thymeleaf.templateresource.ITemplateResource;
|
|
|
|
import stirling.software.SPDF.model.InputStreamTemplateResource;
|
|
|
|
public class FileFallbackTemplateResolver extends AbstractConfigurableTemplateResolver {
|
|
|
|
private final ResourceLoader resourceLoader;
|
|
|
|
public FileFallbackTemplateResolver(ResourceLoader resourceLoader) {
|
|
super();
|
|
this.resourceLoader = resourceLoader;
|
|
setSuffix(".html");
|
|
}
|
|
|
|
// Note this does not work in local IDE, Prod jar only.
|
|
@Override
|
|
protected ITemplateResource computeTemplateResource(
|
|
IEngineConfiguration configuration,
|
|
String ownerTemplate,
|
|
String template,
|
|
String resourceName,
|
|
String characterEncoding,
|
|
Map<String, Object> templateResolutionAttributes) {
|
|
Resource resource =
|
|
resourceLoader.getResource(
|
|
"file:" + InstallationPathConfig.getTemplatesPath() + resourceName);
|
|
try {
|
|
if (resource.exists() && resource.isReadable()) {
|
|
return new FileTemplateResource(resource.getFile().getPath(), characterEncoding);
|
|
}
|
|
} catch (IOException e) {
|
|
|
|
}
|
|
|
|
InputStream inputStream =
|
|
Thread.currentThread()
|
|
.getContextClassLoader()
|
|
.getResourceAsStream("templates/" + resourceName);
|
|
if (inputStream != null) {
|
|
return new InputStreamTemplateResource(inputStream, "UTF-8");
|
|
}
|
|
return null;
|
|
}
|
|
}
|