forked from drakkan/sftpgo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
436 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
package httpd | ||
|
||
import ( | ||
"errors" | ||
"fmt" | ||
"net" | ||
"net/http" | ||
"time" | ||
|
||
"github.com/go-chi/render" | ||
|
||
"github.com/drakkan/sftpgo/common" | ||
) | ||
|
||
func getBanTime(w http.ResponseWriter, r *http.Request) { | ||
ip := r.URL.Query().Get("ip") | ||
err := validateIPAddress(ip) | ||
if err != nil { | ||
sendAPIResponse(w, r, err, "", http.StatusBadRequest) | ||
return | ||
} | ||
|
||
banStatus := make(map[string]*string) | ||
|
||
banTime := common.GetDefenderBanTime(ip) | ||
var banTimeString *string | ||
if banTime != nil { | ||
rfc3339String := banTime.UTC().Format(time.RFC3339) | ||
banTimeString = &rfc3339String | ||
} | ||
|
||
banStatus["date_time"] = banTimeString | ||
render.JSON(w, r, banStatus) | ||
} | ||
|
||
func getScore(w http.ResponseWriter, r *http.Request) { | ||
ip := r.URL.Query().Get("ip") | ||
err := validateIPAddress(ip) | ||
if err != nil { | ||
sendAPIResponse(w, r, err, "", http.StatusBadRequest) | ||
return | ||
} | ||
|
||
scoreStatus := make(map[string]int) | ||
scoreStatus["score"] = common.GetDefenderScore(ip) | ||
|
||
render.JSON(w, r, scoreStatus) | ||
} | ||
|
||
func unban(w http.ResponseWriter, r *http.Request) { | ||
r.Body = http.MaxBytesReader(w, r.Body, maxRequestSize) | ||
|
||
var postBody map[string]string | ||
err := render.DecodeJSON(r.Body, &postBody) | ||
if err != nil { | ||
sendAPIResponse(w, r, err, "", http.StatusBadRequest) | ||
return | ||
} | ||
|
||
ip := postBody["ip"] | ||
err = validateIPAddress(ip) | ||
if err != nil { | ||
sendAPIResponse(w, r, err, "", http.StatusBadRequest) | ||
return | ||
} | ||
|
||
if common.Unban(ip) { | ||
sendAPIResponse(w, r, nil, "OK", http.StatusOK) | ||
} else { | ||
sendAPIResponse(w, r, nil, "Not found", http.StatusNotFound) | ||
} | ||
} | ||
|
||
func validateIPAddress(ip string) error { | ||
if ip == "" { | ||
return errors.New("ip address is required") | ||
} | ||
if net.ParseIP(ip) == nil { | ||
return fmt.Errorf("ip address %#v is not valid", ip) | ||
} | ||
return nil | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.