4 changed files with 97 additions and 7 deletions
@ -0,0 +1,69 @@ |
|||||
|
package app.configurations; |
||||
|
|
||||
|
import org.slf4j.Logger; |
||||
|
import org.slf4j.LoggerFactory; |
||||
|
import org.springframework.context.annotation.Bean; |
||||
|
import org.springframework.context.annotation.Configuration; |
||||
|
import org.springframework.context.annotation.Primary; |
||||
|
import org.springframework.context.annotation.Scope; |
||||
|
import org.springframework.core.env.Environment; |
||||
|
import org.springframework.http.client.SimpleClientHttpRequestFactory; |
||||
|
import org.springframework.web.client.RestTemplate; |
||||
|
|
||||
|
import java.net.InetSocketAddress; |
||||
|
import java.net.Proxy; |
||||
|
|
||||
|
@Configuration |
||||
|
public class RestTemplateConfig { |
||||
|
|
||||
|
private final String proxy = System.getenv("PROXY_URL"); |
||||
|
private final Logger logger = LoggerFactory.getLogger(getClass()); |
||||
|
|
||||
|
@Bean(name = "RestTemplate") |
||||
|
@Scope(value = "prototype") |
||||
|
@Primary |
||||
|
public RestTemplate getRestTemplate() { |
||||
|
return new RestTemplate(); |
||||
|
} |
||||
|
|
||||
|
@Bean(name = "RestTemplateProxy") |
||||
|
@Scope(value = "prototype") |
||||
|
public RestTemplate getRestTemplateProxy() { |
||||
|
if (proxy == null || proxy.isEmpty()) { |
||||
|
logger.warn("Called proxied restTemplate but PROXY_URL is not setted"); |
||||
|
return getRestTemplate(); |
||||
|
} |
||||
|
|
||||
|
try { |
||||
|
String[] proto_address = proxy.split("://"); |
||||
|
String[] address_port = proto_address[0].split(":"); |
||||
|
int port = Integer.parseInt(address_port[1]); |
||||
|
|
||||
|
Proxy.Type type; |
||||
|
switch (proto_address[0]) { |
||||
|
case "http" -> { |
||||
|
type = Proxy.Type.HTTP; |
||||
|
} |
||||
|
case "socks5" -> { |
||||
|
type = Proxy.Type.SOCKS; |
||||
|
} |
||||
|
default -> { |
||||
|
logger.error("PROXY_URL is setted but can't be parse proxy type"); |
||||
|
return getRestTemplate(); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
SimpleClientHttpRequestFactory factory = new SimpleClientHttpRequestFactory(); |
||||
|
InetSocketAddress address = new InetSocketAddress(address_port[0], port); |
||||
|
Proxy proxy_inst = new Proxy(type, address); |
||||
|
factory.setProxy(proxy_inst); |
||||
|
|
||||
|
RestTemplate restTemplate = getRestTemplate(); |
||||
|
restTemplate.setRequestFactory(factory); |
||||
|
return restTemplate; |
||||
|
} catch (IndexOutOfBoundsException | NumberFormatException e) { |
||||
|
logger.error("PROXY_URL is setted but can't be splitted or parsed"); |
||||
|
return getRestTemplate(); |
||||
|
} |
||||
|
} |
||||
|
} |
Loading…
Reference in new issue