mirror of
https://github.com/maxlerebourg/crowdsec-bouncer-traefik-plugin.git
synced 2026-07-21 03:28:59 +02:00
fix lint
This commit is contained in:
+2
-5
@@ -46,8 +46,8 @@ func CreateConfig() *Config {
|
||||
CrowdsecLapiScheme: "http",
|
||||
CrowdsecLapiHost: "crowdsec:8080",
|
||||
CrowdsecLapiKey: "",
|
||||
UpdateIntervalSeconds: 10,
|
||||
DefaultDecisionSeconds: 10,
|
||||
UpdateIntervalSeconds: 60,
|
||||
DefaultDecisionSeconds: 60,
|
||||
}
|
||||
}
|
||||
|
||||
@@ -161,7 +161,6 @@ func (a *Bouncer) ServeHTTP(rw http.ResponseWriter, req *http.Request) {
|
||||
|
||||
if a.crowdsecMode == "stream" || a.crowdsecMode == "live" {
|
||||
isBanned, err := getDecision(remoteHost)
|
||||
log.Printf("ip: %v, %v, %s", remoteHost, isBanned, err)
|
||||
if err == nil {
|
||||
if isBanned {
|
||||
rw.WriteHeader(http.StatusForbidden)
|
||||
@@ -219,7 +218,6 @@ func contains(source []string, target string) bool {
|
||||
func getDecision(clientIP string) (bool, error) {
|
||||
banned, isCached := cache.Get(clientIP)
|
||||
bannedString, isValid := banned.(string)
|
||||
log.Printf("ip: %v, %v, %v", bannedString == cacheBannedValue, isCached, isValid)
|
||||
if isCached && isValid && len(bannedString) > 0 {
|
||||
return bannedString == cacheBannedValue, nil
|
||||
}
|
||||
@@ -301,7 +299,6 @@ func handleStreamCache(a *Bouncer, initialized bool) {
|
||||
}
|
||||
}
|
||||
for _, decision := range stream.Deleted {
|
||||
log.Printf("ip deleted: %v", decision.Value)
|
||||
cache.Del(decision.Value)
|
||||
}
|
||||
a.crowdsecStreamHealthy = true
|
||||
|
||||
Reference in New Issue
Block a user