2023-04-29 00:18:10 +02:00
|
|
|
package stirling.software.SPDF.controller.web;
|
|
|
|
|
|
|
|
import org.springframework.stereotype.Controller;
|
|
|
|
import org.springframework.ui.Model;
|
|
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
|
|
|
|
|
|
import io.swagger.v3.oas.annotations.Hidden;
|
2023-06-25 10:16:32 +02:00
|
|
|
import io.swagger.v3.oas.annotations.tags.Tag;
|
2023-04-29 00:18:10 +02:00
|
|
|
|
|
|
|
@Controller
|
2023-06-25 10:16:32 +02:00
|
|
|
@Tag(name = "General", description = "General APIs")
|
2023-04-29 00:18:10 +02:00
|
|
|
public class GeneralWebController {
|
2023-06-13 01:32:15 +02:00
|
|
|
@GetMapping("/pipeline")
|
|
|
|
@Hidden
|
|
|
|
public String pipelineForm(Model model) {
|
|
|
|
model.addAttribute("currentPage", "pipeline");
|
|
|
|
return "pipeline";
|
|
|
|
}
|
|
|
|
|
2023-04-29 00:18:10 +02:00
|
|
|
@GetMapping("/merge-pdfs")
|
|
|
|
@Hidden
|
|
|
|
public String mergePdfForm(Model model) {
|
|
|
|
model.addAttribute("currentPage", "merge-pdfs");
|
|
|
|
return "merge-pdfs";
|
|
|
|
}
|
2023-06-25 10:16:32 +02:00
|
|
|
|
2023-04-29 23:26:16 +02:00
|
|
|
|
2023-04-29 00:18:10 +02:00
|
|
|
@GetMapping("/multi-tool")
|
|
|
|
@Hidden
|
|
|
|
public String multiToolForm(Model model) {
|
|
|
|
model.addAttribute("currentPage", "multi-tool");
|
|
|
|
return "multi-tool";
|
|
|
|
}
|
2023-06-25 10:16:32 +02:00
|
|
|
|
2023-04-29 00:18:10 +02:00
|
|
|
|
|
|
|
@GetMapping("/remove-pages")
|
|
|
|
@Hidden
|
|
|
|
public String pageDeleter(Model model) {
|
|
|
|
model.addAttribute("currentPage", "remove-pages");
|
|
|
|
return "remove-pages";
|
|
|
|
}
|
|
|
|
|
|
|
|
@GetMapping("/pdf-organizer")
|
|
|
|
@Hidden
|
|
|
|
public String pageOrganizer(Model model) {
|
|
|
|
model.addAttribute("currentPage", "pdf-organizer");
|
|
|
|
return "pdf-organizer";
|
|
|
|
}
|
|
|
|
|
|
|
|
@GetMapping("/rotate-pdf")
|
|
|
|
@Hidden
|
|
|
|
public String rotatePdfForm(Model model) {
|
|
|
|
model.addAttribute("currentPage", "rotate-pdf");
|
|
|
|
return "rotate-pdf";
|
|
|
|
}
|
|
|
|
|
|
|
|
@GetMapping("/split-pdfs")
|
|
|
|
@Hidden
|
|
|
|
public String splitPdfForm(Model model) {
|
|
|
|
model.addAttribute("currentPage", "split-pdfs");
|
|
|
|
return "split-pdfs";
|
|
|
|
}
|
2023-05-02 23:59:16 +02:00
|
|
|
|
|
|
|
@GetMapping("/sign")
|
|
|
|
@Hidden
|
|
|
|
public String signForm(Model model) {
|
|
|
|
model.addAttribute("currentPage", "sign");
|
|
|
|
return "sign";
|
|
|
|
}
|
2023-05-08 01:17:20 +02:00
|
|
|
|
2023-07-09 01:05:33 +02:00
|
|
|
@GetMapping("/crop")
|
|
|
|
@Hidden
|
|
|
|
public String cropForm(Model model) {
|
|
|
|
model.addAttribute("currentPage", "crop");
|
|
|
|
return "crop";
|
|
|
|
}
|
2023-04-29 00:18:10 +02:00
|
|
|
}
|