mirror of
				https://github.com/Frooodle/Stirling-PDF.git
				synced 2025-11-01 01:21:18 +01:00 
			
		
		
		
	refactor: reflect changes to pipeline release
This commit is contained in:
		
							parent
							
								
									036fd711f9
								
							
						
					
					
						commit
						34b4ae0e03
					
				@ -16,8 +16,11 @@ import com.fasterxml.jackson.databind.JsonNode;
 | 
			
		||||
import com.fasterxml.jackson.databind.ObjectMapper;
 | 
			
		||||
 | 
			
		||||
import jakarta.servlet.ServletContext;
 | 
			
		||||
 | 
			
		||||
import stirling.software.SPDF.SPdfApplication;
 | 
			
		||||
import stirling.software.SPDF.model.ApiEndpoint;
 | 
			
		||||
import stirling.software.SPDF.model.Role;
 | 
			
		||||
 | 
			
		||||
@Service
 | 
			
		||||
public class ApiDocService {
 | 
			
		||||
 | 
			
		||||
@ -28,10 +31,7 @@ public class ApiDocService {
 | 
			
		||||
 | 
			
		||||
    private String getApiDocsUrl() {
 | 
			
		||||
        String contextPath = servletContext.getContextPath();
 | 
			
		||||
        String port = System.getProperty("local.server.port");
 | 
			
		||||
        if(port == null || port.length() == 0) {
 | 
			
		||||
        	port="8080";
 | 
			
		||||
        }
 | 
			
		||||
        String port = SPdfApplication.getPort();
 | 
			
		||||
 | 
			
		||||
        return "http://localhost:"+ port + contextPath + "/v1/api-docs";
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
@ -34,6 +34,8 @@ import org.springframework.web.client.RestTemplate;
 | 
			
		||||
import org.springframework.web.multipart.MultipartFile;
 | 
			
		||||
 | 
			
		||||
import jakarta.servlet.ServletContext;
 | 
			
		||||
 | 
			
		||||
import stirling.software.SPDF.SPdfApplication;
 | 
			
		||||
import stirling.software.SPDF.model.PipelineConfig;
 | 
			
		||||
import stirling.software.SPDF.model.PipelineOperation;
 | 
			
		||||
import stirling.software.SPDF.model.Role;
 | 
			
		||||
@ -65,7 +67,9 @@ public class PipelineProcessor {
 | 
			
		||||
 | 
			
		||||
	private String getBaseUrl() {
 | 
			
		||||
		String contextPath = servletContext.getContextPath();
 | 
			
		||||
		return "http://localhost:8080" + contextPath + "/";
 | 
			
		||||
		String port = SPdfApplication.getPort();
 | 
			
		||||
 | 
			
		||||
		return "http://localhost:" + port + contextPath + "/";
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	 
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user