mirror of
https://github.com/plan-player-analytics/Plan.git
synced 2025-01-12 15:56:00 +08:00
Fix a code smell
This commit is contained in:
parent
e3f344b1c6
commit
e0b05cc169
@ -10,6 +10,7 @@ import com.djrapitops.plugin.api.TimeAmount;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import java.util.OptionalDouble;
|
||||
import java.util.function.Predicate;
|
||||
import java.util.stream.Collectors;
|
||||
|
||||
/**
|
||||
@ -35,12 +36,16 @@ public class TPSMutator {
|
||||
return new TPSMutator(new ArrayList<>(mutator.tpsData));
|
||||
}
|
||||
|
||||
public TPSMutator filterDataBetween(long after, long before) {
|
||||
public TPSMutator filterBy(Predicate<TPS> filter) {
|
||||
return new TPSMutator(tpsData.stream()
|
||||
.filter(tps -> tps.getDate() >= after && tps.getDate() <= before)
|
||||
.filter(filter)
|
||||
.collect(Collectors.toList()));
|
||||
}
|
||||
|
||||
public TPSMutator filterDataBetween(long after, long before) {
|
||||
return filterBy(tps -> tps.getDate() >= after && tps.getDate() <= before);
|
||||
}
|
||||
|
||||
public List<TPS> all() {
|
||||
return tpsData;
|
||||
}
|
||||
|
@ -64,10 +64,16 @@ public class IPAnonPatch extends Patch {
|
||||
public void prepare(PreparedStatement statement) throws SQLException {
|
||||
for (List<GeoInfo> geoInfos : allGeoInfo.values()) {
|
||||
for (GeoInfo geoInfo : geoInfos) {
|
||||
addToBatch(statement, geoInfo);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private void addToBatch(PreparedStatement statement, GeoInfo geoInfo) throws SQLException {
|
||||
try {
|
||||
String oldIP = geoInfo.getIp();
|
||||
if (oldIP.endsWith(".xx.xx") || oldIP.endsWith("xx..")) {
|
||||
continue;
|
||||
return;
|
||||
}
|
||||
GeoInfo updatedInfo = new GeoInfo(
|
||||
InetAddress.getByName(oldIP),
|
||||
@ -84,8 +90,6 @@ public class IPAnonPatch extends Patch {
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user