2024-10-14 22:34:41 +01:00
|
|
|
package stirling.software.SPDF.config;
|
|
|
|
|
|
|
|
import java.io.IOException;
|
|
|
|
import java.util.UUID;
|
|
|
|
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
|
import org.springframework.core.Ordered;
|
|
|
|
import org.springframework.core.annotation.Order;
|
|
|
|
import org.springframework.stereotype.Component;
|
|
|
|
|
2024-10-22 00:42:17 +01:00
|
|
|
import io.micrometer.common.util.StringUtils;
|
2024-10-23 07:17:40 -04:00
|
|
|
|
2024-10-14 22:34:41 +01:00
|
|
|
import jakarta.annotation.PostConstruct;
|
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
|
import stirling.software.SPDF.model.ApplicationProperties;
|
|
|
|
import stirling.software.SPDF.utils.GeneralUtils;
|
|
|
|
|
|
|
|
@Component
|
|
|
|
@Slf4j
|
|
|
|
@Order(Ordered.HIGHEST_PRECEDENCE + 1)
|
|
|
|
public class InitialSetup {
|
|
|
|
|
|
|
|
@Autowired private ApplicationProperties applicationProperties;
|
|
|
|
|
|
|
|
@PostConstruct
|
|
|
|
public void initUUIDKey() throws IOException {
|
|
|
|
String uuid = applicationProperties.getAutomaticallyGenerated().getUUID();
|
|
|
|
if (!GeneralUtils.isValidUUID(uuid)) {
|
|
|
|
uuid = UUID.randomUUID().toString(); // Generating a random UUID as the secret key
|
|
|
|
GeneralUtils.saveKeyToConfig("AutomaticallyGenerated.UUID", uuid);
|
|
|
|
applicationProperties.getAutomaticallyGenerated().setUUID(uuid);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@PostConstruct
|
|
|
|
public void initSecretKey() throws IOException {
|
|
|
|
String secretKey = applicationProperties.getAutomaticallyGenerated().getKey();
|
|
|
|
if (!GeneralUtils.isValidUUID(secretKey)) {
|
|
|
|
secretKey = UUID.randomUUID().toString(); // Generating a random UUID as the secret key
|
|
|
|
GeneralUtils.saveKeyToConfig("AutomaticallyGenerated.key", secretKey);
|
|
|
|
applicationProperties.getAutomaticallyGenerated().setKey(secretKey);
|
|
|
|
}
|
|
|
|
}
|
2024-10-23 07:17:40 -04:00
|
|
|
|
2024-10-22 00:42:17 +01:00
|
|
|
@PostConstruct
|
|
|
|
public void initLegalUrls() throws IOException {
|
|
|
|
// Initialize Terms and Conditions
|
|
|
|
String termsUrl = applicationProperties.getLegal().getTermsAndConditions();
|
|
|
|
if (StringUtils.isEmpty(termsUrl)) {
|
|
|
|
String defaultTermsUrl = "https://www.stirlingpdf.com/terms-and-conditions";
|
|
|
|
GeneralUtils.saveKeyToConfig("legal.termsAndConditions", defaultTermsUrl);
|
|
|
|
applicationProperties.getLegal().setTermsAndConditions(defaultTermsUrl);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Initialize Privacy Policy
|
|
|
|
String privacyUrl = applicationProperties.getLegal().getPrivacyPolicy();
|
|
|
|
if (StringUtils.isEmpty(privacyUrl)) {
|
|
|
|
String defaultPrivacyUrl = "https://www.stirlingpdf.com/privacy-policy";
|
|
|
|
GeneralUtils.saveKeyToConfig("legal.privacyPolicy", defaultPrivacyUrl);
|
|
|
|
applicationProperties.getLegal().setPrivacyPolicy(defaultPrivacyUrl);
|
|
|
|
}
|
|
|
|
}
|
2024-10-14 22:34:41 +01:00
|
|
|
}
|