11 changed files with 248 additions and 88 deletions
@ -1,35 +0,0 @@ |
|||
package app.services.io; |
|||
|
|||
import com.maxmind.geoip2.DatabaseReader; |
|||
import com.maxmind.geoip2.exception.GeoIp2Exception; |
|||
import org.springframework.beans.factory.annotation.Autowired; |
|||
import org.springframework.beans.factory.annotation.Value; |
|||
import org.springframework.core.io.Resource; |
|||
import org.springframework.stereotype.Component; |
|||
|
|||
import java.io.File; |
|||
import java.io.IOException; |
|||
import java.net.InetAddress; |
|||
import java.net.UnknownHostException; |
|||
|
|||
@Component |
|||
public class GeoIP { |
|||
private DatabaseReader databaseReader; |
|||
|
|||
@Autowired |
|||
public GeoIP(@Value("${backend.geoip_file}") String data) throws IOException { |
|||
databaseReader = new DatabaseReader.Builder(new File(data)).build(); |
|||
} |
|||
|
|||
public String GetCountry(String ip) throws UnknownHostException, GeoIp2Exception, IOException { |
|||
return databaseReader.country(InetAddress.getByName(ip)).getCountry().getName(); |
|||
} |
|||
|
|||
public String GetCountry(String ip, String replace) { |
|||
try { |
|||
return this.GetCountry(ip); |
|||
} catch (GeoIp2Exception | IOException e) { |
|||
return replace; |
|||
} |
|||
} |
|||
} |
@ -1,43 +0,0 @@ |
|||
package app.services.io; |
|||
|
|||
import app.entities.server.Server; |
|||
import app.entities.Stats; |
|||
import app.updates.PlayersUpdater; |
|||
import com.fasterxml.jackson.databind.JsonNode; |
|||
import com.fasterxml.jackson.databind.ObjectMapper; |
|||
import org.slf4j.Logger; |
|||
import org.slf4j.LoggerFactory; |
|||
import org.springframework.beans.factory.annotation.Autowired; |
|||
import org.springframework.beans.factory.annotation.Value; |
|||
import org.springframework.stereotype.Component; |
|||
|
|||
import java.io.File; |
|||
import java.io.IOException; |
|||
import java.util.Iterator; |
|||
import java.util.Map; |
|||
|
|||
@Component |
|||
public class ServersReader { |
|||
Stats stats; |
|||
ObjectMapper objectMapper; |
|||
|
|||
private final Logger logger = LoggerFactory.getLogger(ServersReader.class); |
|||
@Autowired |
|||
public ServersReader(Stats stats, @Value("${backend.servers_file}") String servers_path) { |
|||
this.stats = stats; |
|||
this.objectMapper = new ObjectMapper(); |
|||
|
|||
try { |
|||
logger.info("Read from: {}", servers_path); |
|||
JsonNode node = this.objectMapper.readTree(new File(servers_path)); |
|||
Iterator<Map.Entry<String, JsonNode>> iterator = node.fields(); |
|||
while (iterator.hasNext()) { |
|||
Map.Entry<String, JsonNode> server = iterator.next(); |
|||
stats.getServers().put(server.getKey(), this.objectMapper.treeToValue(server.getValue(), Server.class)); |
|||
logger.info("{}\n{}",server.getKey() ,stats.getServers().get(server.getKey())); |
|||
} |
|||
} catch (IOException err) { |
|||
logger.error("Cannot read servers file: {}", servers_path); |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,55 @@ |
|||
package app.services.io.fileloader; |
|||
|
|||
import org.springframework.http.HttpEntity; |
|||
import org.springframework.http.HttpHeaders; |
|||
import org.springframework.http.HttpMethod; |
|||
import org.springframework.http.ResponseEntity; |
|||
import org.springframework.stereotype.Component; |
|||
import org.springframework.web.client.RestTemplate; |
|||
|
|||
@Component |
|||
public class GitFileLoader implements IFileLoader { |
|||
private final String token; |
|||
private final RestTemplate restTemplate; |
|||
|
|||
public GitFileLoader() { |
|||
this.token = System.getenv("GIT_TOKEN"); |
|||
this.restTemplate = new RestTemplate(); |
|||
if (!isEnabled()) { |
|||
logger.warn("{} is disable", getClass().getName()); |
|||
} |
|||
} |
|||
|
|||
private HttpEntity<String> getEntity() { |
|||
HttpHeaders httpHeaders = new HttpHeaders(); |
|||
httpHeaders.set("Authorization", "token " + token); |
|||
return new HttpEntity<>("<body>", httpHeaders); |
|||
} |
|||
|
|||
/* |
|||
url: https://{githost}/api/v1/repos/{user}/{repo}/raw/{file}
|
|||
*/ |
|||
@Override |
|||
public byte[] loadFile(String path) { |
|||
if (path == null || path.isEmpty()) return null; |
|||
logger.info("Load file using git: {}", path); |
|||
ResponseEntity<byte[]> response = restTemplate.exchange(path, HttpMethod.GET, getEntity(), byte[].class); |
|||
if (response.getStatusCode().is2xxSuccessful()) return response.getBody(); |
|||
else return null; |
|||
} |
|||
|
|||
@Override |
|||
public boolean isEnabled() { |
|||
return token != null && !token.isEmpty(); |
|||
} |
|||
|
|||
@Override |
|||
public int getPriority() { |
|||
return Integer.MIN_VALUE; |
|||
} |
|||
|
|||
@Override |
|||
public String getSuffix() { |
|||
return "_GIT"; |
|||
} |
|||
} |
@ -0,0 +1,12 @@ |
|||
package app.services.io.fileloader; |
|||
|
|||
import org.slf4j.Logger; |
|||
import org.slf4j.LoggerFactory; |
|||
|
|||
public interface IFileLoader { |
|||
Logger logger = LoggerFactory.getLogger(IFileLoader.class); |
|||
byte[] loadFile(String path); |
|||
boolean isEnabled(); |
|||
int getPriority(); |
|||
String getSuffix(); |
|||
} |
@ -0,0 +1,41 @@ |
|||
package app.services.io.fileloader; |
|||
|
|||
import org.springframework.stereotype.Component; |
|||
|
|||
import java.io.File; |
|||
import java.io.IOException; |
|||
import java.nio.file.Files; |
|||
import java.nio.file.Path; |
|||
|
|||
@Component |
|||
public class LocalyFileLoader implements IFileLoader { |
|||
|
|||
public LocalyFileLoader() {} |
|||
|
|||
@Override |
|||
public byte[] loadFile(String path) { |
|||
if (path == null || path.isEmpty()) return null; |
|||
if (!Files.exists(Path.of(path))) return null; |
|||
logger.info("Load file using disk: {}", path); |
|||
try { |
|||
return Files.readAllBytes(new File(path).toPath()); |
|||
} catch (IOException ioe) { |
|||
return null; |
|||
} |
|||
} |
|||
|
|||
@Override |
|||
public boolean isEnabled() { |
|||
return true; |
|||
} |
|||
|
|||
@Override |
|||
public int getPriority() { |
|||
return Integer.MAX_VALUE; |
|||
} |
|||
|
|||
@Override |
|||
public String getSuffix() { |
|||
return ""; |
|||
} |
|||
} |
@ -0,0 +1,38 @@ |
|||
package app.services.io.readers; |
|||
|
|||
import app.services.io.fileloader.IFileLoader; |
|||
import org.slf4j.Logger; |
|||
import org.slf4j.LoggerFactory; |
|||
import org.springframework.beans.factory.annotation.Autowired; |
|||
import org.springframework.stereotype.Component; |
|||
|
|||
import java.util.Comparator; |
|||
import java.util.List; |
|||
import java.util.Objects; |
|||
import java.util.function.Function; |
|||
|
|||
@Component |
|||
public abstract class BaseReader { |
|||
|
|||
protected final static Logger logger = LoggerFactory.getLogger(ServersReader.class); |
|||
public List<IFileLoader> fileLoaders; |
|||
|
|||
@Autowired |
|||
public BaseReader(List<IFileLoader> fileLoaders) { |
|||
this.fileLoaders = fileLoaders; |
|||
} |
|||
|
|||
public Object loadConfiguration(String environmentVar, Function<byte[], ?> reMap) { |
|||
return fileLoaders.stream() |
|||
.filter(IFileLoader::isEnabled) |
|||
.sorted(Comparator.comparingInt(IFileLoader::getPriority)) |
|||
.peek(l -> logger.info("Use {}", l.getClass().getName())) |
|||
.map(l -> l.loadFile(System.getenv(environmentVar + l.getSuffix()))) |
|||
.filter(Objects::nonNull) |
|||
.map(reMap) |
|||
.filter(Objects::nonNull) |
|||
.limit(1) |
|||
.findFirst() |
|||
.orElse(null); |
|||
} |
|||
} |
@ -0,0 +1,53 @@ |
|||
package app.services.io.readers; |
|||
|
|||
import app.services.io.fileloader.IFileLoader; |
|||
import com.maxmind.geoip2.DatabaseReader; |
|||
import com.maxmind.geoip2.exception.GeoIp2Exception; |
|||
import org.springframework.beans.factory.annotation.Autowired; |
|||
import org.springframework.stereotype.Component; |
|||
|
|||
import java.io.ByteArrayInputStream; |
|||
import java.io.IOException; |
|||
import java.net.InetAddress; |
|||
import java.net.UnknownHostException; |
|||
import java.util.List; |
|||
|
|||
@Component |
|||
public class GeoIP extends BaseReader { |
|||
private final DatabaseReader databaseReader; |
|||
|
|||
@Autowired |
|||
public GeoIP(List<IFileLoader> fileLoaders) { |
|||
super(fileLoaders); |
|||
databaseReader = loadConfiguration(); |
|||
if (databaseReader == null) { |
|||
logger.error("GEOIP file is missing"); |
|||
System.exit(1); |
|||
} |
|||
} |
|||
|
|||
public String GetCountry(String ip) throws UnknownHostException, GeoIp2Exception, IOException { |
|||
return databaseReader.country(InetAddress.getByName(ip)).getCountry().getName(); |
|||
} |
|||
|
|||
public String GetCountry(String ip, String replace) { |
|||
try { |
|||
return this.GetCountry(ip); |
|||
} catch (GeoIp2Exception | IOException e) { |
|||
return replace; |
|||
} |
|||
} |
|||
|
|||
public DatabaseReader loadConfiguration() { |
|||
return (DatabaseReader) super.loadConfiguration( |
|||
"GEOIP_FILE", |
|||
b -> { |
|||
try { |
|||
return new DatabaseReader.Builder(new ByteArrayInputStream(b)).build(); |
|||
} catch (IOException e) { |
|||
return null; |
|||
} |
|||
} |
|||
); |
|||
} |
|||
} |
@ -0,0 +1,47 @@ |
|||
package app.services.io.readers; |
|||
|
|||
import app.entities.server.Server; |
|||
import app.entities.Stats; |
|||
import app.services.io.fileloader.IFileLoader; |
|||
import com.fasterxml.jackson.databind.JsonNode; |
|||
import com.fasterxml.jackson.databind.ObjectMapper; |
|||
import org.springframework.beans.factory.annotation.Autowired; |
|||
import org.springframework.stereotype.Component; |
|||
|
|||
import java.io.IOException; |
|||
import java.util.*; |
|||
|
|||
@Component |
|||
public class ServersReader extends BaseReader { |
|||
Stats stats; |
|||
private final static ObjectMapper objectMapper = new ObjectMapper(); |
|||
|
|||
@Autowired |
|||
public ServersReader(Stats stats, List<IFileLoader> fileLoaders) { |
|||
super(fileLoaders); |
|||
this.stats = stats; |
|||
try { |
|||
Iterator<Map.Entry<String, JsonNode>> iterator = loadConfiguration().fields(); |
|||
while (iterator.hasNext()) { |
|||
Map.Entry<String, JsonNode> server = iterator.next(); |
|||
stats.getServers().put(server.getKey(), objectMapper.treeToValue(server.getValue(), Server.class)); |
|||
logger.info("{}\n{}",server.getKey() ,stats.getServers().get(server.getKey())); |
|||
} |
|||
} catch (IOException err) { |
|||
logger.error("Cannot parse configuration", err); |
|||
System.exit(1); |
|||
} |
|||
} |
|||
|
|||
public JsonNode loadConfiguration() { |
|||
return (JsonNode) super.loadConfiguration( |
|||
"SERVERS_FILE", |
|||
b -> { |
|||
try { |
|||
return objectMapper.readTree(b); |
|||
} catch (IOException e) { |
|||
return null; |
|||
} |
|||
}); |
|||
} |
|||
} |
Loading…
Reference in new issue