2024-01-03 18:59:04 +01:00
|
|
|
package stirling.software.SPDF;
|
|
|
|
|
|
|
|
import java.nio.file.Files;
|
|
|
|
import java.nio.file.Paths;
|
|
|
|
import java.util.Collections;
|
|
|
|
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
|
import org.springframework.boot.SpringApplication;
|
|
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
|
|
import org.springframework.core.env.Environment;
|
|
|
|
import org.springframework.scheduling.annotation.EnableScheduling;
|
|
|
|
|
|
|
|
import jakarta.annotation.PostConstruct;
|
|
|
|
import stirling.software.SPDF.config.ConfigInitializer;
|
|
|
|
import stirling.software.SPDF.utils.GeneralUtils;
|
|
|
|
|
|
|
|
@SpringBootApplication
|
|
|
|
@EnableScheduling
|
|
|
|
public class SPdfApplication {
|
|
|
|
|
|
|
|
@Autowired private Environment env;
|
|
|
|
|
|
|
|
@PostConstruct
|
|
|
|
public void init() {
|
|
|
|
// Check if the BROWSER_OPEN environment variable is set to true
|
|
|
|
String browserOpenEnv = env.getProperty("BROWSER_OPEN");
|
|
|
|
boolean browserOpen = browserOpenEnv != null && browserOpenEnv.equalsIgnoreCase("true");
|
|
|
|
|
|
|
|
if (browserOpen) {
|
|
|
|
try {
|
|
|
|
String url = "http://localhost:" + getPort();
|
|
|
|
|
|
|
|
String os = System.getProperty("os.name").toLowerCase();
|
|
|
|
Runtime rt = Runtime.getRuntime();
|
|
|
|
if (os.contains("win")) {
|
|
|
|
// For Windows
|
|
|
|
rt.exec("rundll32 url.dll,FileProtocolHandler " + url);
|
|
|
|
}
|
|
|
|
} catch (Exception e) {
|
|
|
|
e.printStackTrace();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void main(String[] args) {
|
|
|
|
SpringApplication app = new SpringApplication(SPdfApplication.class);
|
|
|
|
app.addInitializers(new ConfigInitializer());
|
|
|
|
if (Files.exists(Paths.get("configs/settings.yml"))) {
|
|
|
|
app.setDefaultProperties(
|
|
|
|
Collections.singletonMap(
|
|
|
|
"spring.config.additional-location", "file:configs/settings.yml"));
|
|
|
|
} else {
|
|
|
|
System.out.println(
|
|
|
|
"External configuration file 'configs/settings.yml' does not exist. Using default configuration and environment configuration instead.");
|
|
|
|
}
|
|
|
|
app.run(args);
|
|
|
|
|
|
|
|
try {
|
|
|
|
Thread.sleep(1000);
|
|
|
|
} catch (InterruptedException e) {
|
|
|
|
// TODO Auto-generated catch block
|
|
|
|
e.printStackTrace();
|
|
|
|
}
|
|
|
|
|
|
|
|
GeneralUtils.createDir("customFiles/static/");
|
|
|
|
GeneralUtils.createDir("customFiles/templates/");
|
|
|
|
|
|
|
|
System.out.println("Stirling-PDF Started.");
|
|
|
|
|
|
|
|
String url = "http://localhost:" + getPort();
|
|
|
|
System.out.println("Navigate to " + url);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static String getPort() {
|
|
|
|
String port = System.getProperty("local.server.port");
|
|
|
|
if (port == null || port.isEmpty()) {
|
|
|
|
port = "8080";
|
|
|
|
}
|
|
|
|
return port;
|
|
|
|
}
|
|
|
|
}
|