5 changed files with 30 additions and 13 deletions
@ -0,0 +1,21 @@ |
|||
package app.services.db.web; |
|||
|
|||
import app.entities.db.CollectableStatistic; |
|||
|
|||
import java.util.function.Predicate; |
|||
|
|||
enum CollectStatisticFilter { |
|||
SERVER_REQUEST((c) -> c.getClient_ip() != null && c.getClient_ip().equals("192.168.3.3") && c.getPath() != null && c.getPath().equals("/api/stats")), |
|||
API_IGNORE_RULE((c) -> c.getPath() != null && c.getPath().equals("/api/stats") && c.getQuery() != null && !c.getQuery().contains("filter=servers")), |
|||
DISCORD_WEB_BOT((c) -> c.getUseragent().contains("Discordbot/2.0; +https://discordapp.com")); |
|||
|
|||
private final Predicate<CollectableStatistic> rule; |
|||
|
|||
CollectStatisticFilter(Predicate<CollectableStatistic> rule) { |
|||
this.rule = rule; |
|||
} |
|||
|
|||
public boolean check(CollectableStatistic collectableStatistic) { |
|||
return rule.test(collectableStatistic); |
|||
} |
|||
} |
Loading…
Reference in new issue