mirror of
https://github.com/Sean-Der/fail2rest.git
synced 2024-12-22 05:32:20 +01:00
75 lines
1.9 KiB
Go
75 lines
1.9 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) {
|
|
jailStatus, _ := fail2goConn.JailStatus(mux.Vars(req)["jail"])
|
|
jailFailRegex, _ := fail2goConn.JailFailRegex(mux.Vars(req)["jail"])
|
|
|
|
output := make(map[string]interface{})
|
|
|
|
for key, value := range jailStatus {
|
|
output[key] = value
|
|
}
|
|
for key, value := range jailFailRegex {
|
|
output[key] = value
|
|
}
|
|
|
|
encodedOutput, err := json.Marshal(output)
|
|
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(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(output)
|
|
if err != nil {
|
|
}
|
|
|
|
res.Write(encodedOutput)
|
|
|
|
}
|
|
|
|
func jailHandler(jailRouter *mux.Router, fail2goConn *fail2go.Fail2goConn) {
|
|
jailRouter.HandleFunc("/{jail}/banip", func(res http.ResponseWriter, req *http.Request) {
|
|
jailBanIPHandler(res, req, fail2goConn)
|
|
}).Methods("POST")
|
|
jailRouter.HandleFunc("/{jail}/unbanip", func(res http.ResponseWriter, req *http.Request) {
|
|
jailUnbanIPHandler(res, req, fail2goConn)
|
|
}).Methods("POST")
|
|
jailRouter.HandleFunc("/{jail}", func(res http.ResponseWriter, req *http.Request) {
|
|
jailGetHandler(res, req, fail2goConn)
|
|
}).Methods("GET")
|
|
}
|