# Description of Changes * Refactoring of SSO code around OAuth & SAML 2 * Enabling auto-login with SAML 2 via the new `SSOAutoLogin` property * Correcting typos & general cleanup --- ## Checklist ### General - [x] I have read the [Contribution Guidelines](https://github.com/Stirling-Tools/Stirling-PDF/blob/main/CONTRIBUTING.md) - [x] I have read the [Stirling-PDF Developer Guide](https://github.com/Stirling-Tools/Stirling-PDF/blob/main/DeveloperGuide.md) (if applicable) - [x] I have read the [How to add new languages to Stirling-PDF](https://github.com/Stirling-Tools/Stirling-PDF/blob/main/HowToAddNewLanguage.md) (if applicable) - [x] I have performed a self-review of my own code - [x] My changes generate no new warnings ### Documentation - [x] I have updated relevant docs on [Stirling-PDF's doc repo](https://github.com/Stirling-Tools/Stirling-Tools.github.io/blob/main/docs/) (if functionality has heavily changed) - [x] 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) ### UI Changes (if applicable) - [ ] Screenshots or videos demonstrating the UI changes are attached (e.g., as comments or direct attachments in the PR) ### Testing (if applicable) - [x] I have tested my changes locally. Refer to the [Testing Guide](https://github.com/Stirling-Tools/Stirling-PDF/blob/main/DeveloperGuide.md#6-testing) for more details.
35 lines
996 B
Java
35 lines
996 B
Java
package stirling.software.SPDF.utils;
|
|
|
|
import java.io.IOException;
|
|
import java.net.ServerSocket;
|
|
|
|
import jakarta.servlet.http.HttpServletRequest;
|
|
|
|
public class UrlUtils {
|
|
|
|
public static String getOrigin(HttpServletRequest request) {
|
|
String scheme = request.getScheme(); // http or https
|
|
String serverName = request.getServerName(); // localhost
|
|
int serverPort = request.getServerPort(); // 8080
|
|
String contextPath = request.getContextPath(); // /myapp
|
|
|
|
return scheme + "://" + serverName + ":" + serverPort + contextPath;
|
|
}
|
|
|
|
public static boolean isPortAvailable(int port) {
|
|
try (ServerSocket socket = new ServerSocket(port)) {
|
|
return true;
|
|
} catch (IOException e) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
public static String findAvailablePort(int startPort) {
|
|
int port = startPort;
|
|
while (!isPortAvailable(port)) {
|
|
port++;
|
|
}
|
|
return String.valueOf(port);
|
|
}
|
|
}
|