# Description This pull request includes several changes aimed at improving the code structure and removing redundant code. The most significant changes involve reordering methods, removing unnecessary annotations, and refactoring constructors to use dependency injection. Autowired now comes via constructor (which also doesn't need autowired annotation as its done by default for configuration) ## 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)
190 lines
5.7 KiB
Java
190 lines
5.7 KiB
Java
package stirling.software.SPDF.controller.web;
|
|
|
|
import java.io.File;
|
|
import java.util.Arrays;
|
|
import java.util.Collections;
|
|
import java.util.List;
|
|
import java.util.stream.Collectors;
|
|
|
|
import org.springframework.stereotype.Controller;
|
|
import org.springframework.ui.Model;
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
import org.springframework.web.servlet.ModelAndView;
|
|
|
|
import io.swagger.v3.oas.annotations.Hidden;
|
|
import io.swagger.v3.oas.annotations.tags.Tag;
|
|
|
|
import stirling.software.SPDF.model.ApplicationProperties;
|
|
import stirling.software.SPDF.utils.CheckProgramInstall;
|
|
|
|
@Controller
|
|
@Tag(name = "Misc", description = "Miscellaneous APIs")
|
|
public class OtherWebController {
|
|
|
|
private final ApplicationProperties applicationProperties;
|
|
|
|
public OtherWebController(ApplicationProperties applicationProperties) {
|
|
this.applicationProperties = applicationProperties;
|
|
}
|
|
|
|
@GetMapping("/compress-pdf")
|
|
@Hidden
|
|
public String compressPdfForm(Model model) {
|
|
model.addAttribute("currentPage", "compress-pdf");
|
|
return "misc/compress-pdf";
|
|
}
|
|
|
|
@GetMapping("/replace-and-invert-color-pdf")
|
|
@Hidden
|
|
public String replaceAndInvertColorPdfForm(Model model) {
|
|
model.addAttribute("currentPage", "replace-invert-color-pdf");
|
|
return "misc/replace-color";
|
|
}
|
|
|
|
@GetMapping("/extract-image-scans")
|
|
@Hidden
|
|
public ModelAndView extractImageScansForm() {
|
|
ModelAndView modelAndView = new ModelAndView("misc/extract-image-scans");
|
|
boolean isPython = CheckProgramInstall.isPythonAvailable();
|
|
modelAndView.addObject("isPython", isPython);
|
|
modelAndView.addObject("currentPage", "extract-image-scans");
|
|
return modelAndView;
|
|
}
|
|
|
|
@GetMapping("/show-javascript")
|
|
@Hidden
|
|
public String extractJavascriptForm(Model model) {
|
|
model.addAttribute("currentPage", "show-javascript");
|
|
return "misc/show-javascript";
|
|
}
|
|
|
|
@GetMapping("/stamp")
|
|
@Hidden
|
|
public String stampForm(Model model) {
|
|
model.addAttribute("currentPage", "stamp");
|
|
return "misc/stamp";
|
|
}
|
|
|
|
@GetMapping("/add-page-numbers")
|
|
@Hidden
|
|
public String addPageNumbersForm(Model model) {
|
|
model.addAttribute("currentPage", "add-page-numbers");
|
|
return "misc/add-page-numbers";
|
|
}
|
|
|
|
@GetMapping("/fake-scan")
|
|
@Hidden
|
|
public String fakeScanForm(Model model) {
|
|
model.addAttribute("currentPage", "fake-scan");
|
|
return "misc/fake-scan";
|
|
}
|
|
|
|
@GetMapping("/extract-images")
|
|
@Hidden
|
|
public String extractImagesForm(Model model) {
|
|
model.addAttribute("currentPage", "extract-images");
|
|
return "misc/extract-images";
|
|
}
|
|
|
|
@GetMapping("/flatten")
|
|
@Hidden
|
|
public String flattenForm(Model model) {
|
|
model.addAttribute("currentPage", "flatten");
|
|
return "misc/flatten";
|
|
}
|
|
|
|
@GetMapping("/change-metadata")
|
|
@Hidden
|
|
public String addWatermarkForm(Model model) {
|
|
model.addAttribute("currentPage", "change-metadata");
|
|
return "misc/change-metadata";
|
|
}
|
|
|
|
@GetMapping("/compare")
|
|
@Hidden
|
|
public String compareForm(Model model) {
|
|
model.addAttribute("currentPage", "compare");
|
|
return "misc/compare";
|
|
}
|
|
|
|
@GetMapping("/print-file")
|
|
@Hidden
|
|
public String printFileForm(Model model) {
|
|
model.addAttribute("currentPage", "print-file");
|
|
return "misc/print-file";
|
|
}
|
|
|
|
public List<String> getAvailableTesseractLanguages() {
|
|
String tessdataDir = applicationProperties.getSystem().getTessdataDir();
|
|
File[] files = new File(tessdataDir).listFiles();
|
|
if (files == null) {
|
|
return Collections.emptyList();
|
|
}
|
|
return Arrays.stream(files)
|
|
.filter(file -> file.getName().endsWith(".traineddata"))
|
|
.map(file -> file.getName().replace(".traineddata", ""))
|
|
.filter(lang -> !lang.equalsIgnoreCase("osd"))
|
|
.collect(Collectors.toList());
|
|
}
|
|
|
|
@GetMapping("/ocr-pdf")
|
|
@Hidden
|
|
public ModelAndView ocrPdfPage() {
|
|
ModelAndView modelAndView = new ModelAndView("misc/ocr-pdf");
|
|
List<String> languages = getAvailableTesseractLanguages();
|
|
Collections.sort(languages);
|
|
modelAndView.addObject("languages", languages);
|
|
modelAndView.addObject("currentPage", "ocr-pdf");
|
|
return modelAndView;
|
|
}
|
|
|
|
@GetMapping("/add-image")
|
|
@Hidden
|
|
public String overlayImage(Model model) {
|
|
model.addAttribute("currentPage", "add-image");
|
|
return "misc/add-image";
|
|
}
|
|
|
|
@GetMapping("/adjust-contrast")
|
|
@Hidden
|
|
public String contrast(Model model) {
|
|
model.addAttribute("currentPage", "adjust-contrast");
|
|
return "misc/adjust-contrast";
|
|
}
|
|
|
|
@GetMapping("/repair")
|
|
@Hidden
|
|
public String repairForm(Model model) {
|
|
model.addAttribute("currentPage", "repair");
|
|
return "misc/repair";
|
|
}
|
|
|
|
@GetMapping("/remove-blanks")
|
|
@Hidden
|
|
public String removeBlanksForm(Model model) {
|
|
model.addAttribute("currentPage", "remove-blanks");
|
|
return "misc/remove-blanks";
|
|
}
|
|
|
|
@GetMapping("/remove-annotations")
|
|
@Hidden
|
|
public String removeAnnotationsForm(Model model) {
|
|
model.addAttribute("currentPage", "remove-annotations");
|
|
return "misc/remove-annotations";
|
|
}
|
|
|
|
@GetMapping("/auto-crop")
|
|
@Hidden
|
|
public String autoCropForm(Model model) {
|
|
model.addAttribute("currentPage", "auto-crop");
|
|
return "misc/auto-crop";
|
|
}
|
|
|
|
@GetMapping("/auto-rename")
|
|
@Hidden
|
|
public String autoRenameForm(Model model) {
|
|
model.addAttribute("currentPage", "auto-rename");
|
|
return "misc/auto-rename";
|
|
}
|
|
}
|