3 changed files with 77 additions and 0 deletions
@ -0,0 +1,31 @@ |
|||
package app.utils; |
|||
|
|||
import org.springframework.stereotype.Service; |
|||
import org.springframework.web.client.RestTemplate; |
|||
|
|||
import java.time.Instant; |
|||
import java.util.HashMap; |
|||
|
|||
public class RealIPService { |
|||
private final RestTemplate restTemplate; |
|||
private final long lst_update = 0; |
|||
private String lst_ip = ""; |
|||
|
|||
public RealIPService() { |
|||
this.restTemplate = new RestTemplate(); |
|||
} |
|||
|
|||
public String getIP() { |
|||
if (Instant.now().getEpochSecond() - lst_update < 60) |
|||
return lst_ip; |
|||
|
|||
HashMap response = restTemplate.getForEntity("https://ifconfig.co/json", HashMap.class).getBody(); |
|||
lst_ip = (String) response.getOrDefault("ip", ""); |
|||
return lst_ip; |
|||
} |
|||
|
|||
public String genIPWithPort(Integer port) { |
|||
return new StringBuilder().append(getIP()).append(":").append(port).toString(); |
|||
} |
|||
|
|||
} |
@ -0,0 +1,12 @@ |
|||
package app.utils; |
|||
|
|||
import org.junit.Test; |
|||
|
|||
public class RealIPServiceTest { |
|||
|
|||
@Test |
|||
public void getIP() { |
|||
RealIPService realIPService = new RealIPService(); |
|||
System.out.println(realIPService.getIP()); |
|||
} |
|||
} |
Loading…
Reference in new issue