mirror of
https://github.com/Sean-Der/fail2rest.git
synced 2024-12-22 21:52:18 +01:00
116 lines
3.3 KiB
Go
116 lines
3.3 KiB
Go
package main
|
|
|
|
import (
|
|
"encoding/json"
|
|
"github.com/Sean-Der/fail2go"
|
|
"github.com/gorilla/mux"
|
|
"net/http"
|
|
)
|
|
|
|
func jailGetHandler(res http.ResponseWriter, req *http.Request, fail2goConn *fail2go.Fail2goConn) {
|
|
currentlyFailed, totalFailed, fileList, currentlyBanned, totalBanned, IPList, _ := fail2goConn.JailStatus(mux.Vars(req)["jail"])
|
|
failRegexes, _ := fail2goConn.JailFailRegex(mux.Vars(req)["jail"])
|
|
|
|
encodedOutput, err := json.Marshal(map[string]interface{}{
|
|
"currentlyFailed": currentlyFailed,
|
|
"totalFailed": totalFailed,
|
|
"fileList": fileList,
|
|
"currentlyBanned": currentlyBanned,
|
|
"totalBanned": totalBanned,
|
|
"IPList": IPList,
|
|
"failRegexes": failRegexes})
|
|
|
|
if err != nil {
|
|
}
|
|
|
|
res.Write(encodedOutput)
|
|
}
|
|
|
|
type jailBanIPBody struct {
|
|
IP string
|
|
}
|
|
|
|
func jailBanIPHandler(res http.ResponseWriter, req *http.Request, fail2goConn *fail2go.Fail2goConn) {
|
|
var input jailBanIPBody
|
|
err := json.NewDecoder(req.Body).Decode(&input)
|
|
if err != nil {
|
|
}
|
|
|
|
output, _ := fail2goConn.JailBanIP(mux.Vars(req)["jail"], input.IP)
|
|
|
|
encodedOutput, err := json.Marshal(map[string]interface{}{"bannedIP": output})
|
|
if err != nil {
|
|
}
|
|
|
|
res.Write(encodedOutput)
|
|
}
|
|
|
|
func jailUnbanIPHandler(res http.ResponseWriter, req *http.Request, fail2goConn *fail2go.Fail2goConn) {
|
|
var input jailBanIPBody
|
|
err := json.NewDecoder(req.Body).Decode(&input)
|
|
if err != nil {
|
|
}
|
|
|
|
output, _ := fail2goConn.JailUnbanIP(mux.Vars(req)["jail"], input.IP)
|
|
|
|
encodedOutput, err := json.Marshal(map[string]interface{}{"unBannedIP": output})
|
|
if err != nil {
|
|
}
|
|
|
|
res.Write(encodedOutput)
|
|
}
|
|
|
|
type jailFailRegexBody struct {
|
|
FailRegex string
|
|
}
|
|
|
|
func jailAddFailRegexHandler(res http.ResponseWriter, req *http.Request, fail2goConn *fail2go.Fail2goConn) {
|
|
var input jailFailRegexBody
|
|
err := json.NewDecoder(req.Body).Decode(&input)
|
|
if err != nil {
|
|
}
|
|
|
|
output, _ := fail2goConn.JailAddFailRegex(mux.Vars(req)["jail"], input.FailRegex)
|
|
|
|
encodedOutput, err := json.Marshal(map[string]interface{}{"FailRegex": output})
|
|
if err != nil {
|
|
}
|
|
|
|
res.Write(encodedOutput)
|
|
}
|
|
|
|
func jailDeleteFailRegexHandler(res http.ResponseWriter, req *http.Request, fail2goConn *fail2go.Fail2goConn) {
|
|
var input jailFailRegexBody
|
|
err := json.NewDecoder(req.Body).Decode(&input)
|
|
if err != nil {
|
|
}
|
|
|
|
output, _ := fail2goConn.JailDeleteFailRegex(mux.Vars(req)["jail"], input.FailRegex)
|
|
|
|
encodedOutput, err := json.Marshal(map[string]interface{}{"FailRegex": output})
|
|
if err != nil {
|
|
}
|
|
|
|
res.Write(encodedOutput)
|
|
}
|
|
|
|
func jailHandler(jailRouter *mux.Router, fail2goConn *fail2go.Fail2goConn) {
|
|
|
|
jailRouter.HandleFunc("/{jail}/bannedip", func(res http.ResponseWriter, req *http.Request) {
|
|
jailBanIPHandler(res, req, fail2goConn)
|
|
}).Methods("POST")
|
|
jailRouter.HandleFunc("/{jail}/bannedip", func(res http.ResponseWriter, req *http.Request) {
|
|
jailUnbanIPHandler(res, req, fail2goConn)
|
|
}).Methods("DELETE")
|
|
|
|
jailRouter.HandleFunc("/{jail}/failregex", func(res http.ResponseWriter, req *http.Request) {
|
|
jailAddFailRegexHandler(res, req, fail2goConn)
|
|
}).Methods("POST")
|
|
jailRouter.HandleFunc("/{jail}/failregex", func(res http.ResponseWriter, req *http.Request) {
|
|
jailDeleteFailRegexHandler(res, req, fail2goConn)
|
|
}).Methods("DELETE")
|
|
|
|
jailRouter.HandleFunc("/{jail}", func(res http.ResponseWriter, req *http.Request) {
|
|
jailGetHandler(res, req, fail2goConn)
|
|
}).Methods("GET")
|
|
}
|