1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- // Copyright (C) 2019-2023 Nicola Murino
- //
- // This program is free software: you can redistribute it and/or modify
- // it under the terms of the GNU Affero General Public License as published
- // by the Free Software Foundation, version 3.
- //
- // This program is distributed in the hope that it will be useful,
- // but WITHOUT ANY WARRANTY; without even the implied warranty of
- // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- // GNU Affero General Public License for more details.
- //
- // You should have received a copy of the GNU Affero General Public License
- // along with this program. If not, see <https://www.gnu.org/licenses/>.
- package httpd
- import (
- "encoding/hex"
- "errors"
- "fmt"
- "net"
- "net/http"
- "github.com/go-chi/render"
- "github.com/drakkan/sftpgo/v2/internal/common"
- "github.com/drakkan/sftpgo/v2/internal/dataprovider"
- )
- func getDefenderHosts(w http.ResponseWriter, r *http.Request) {
- r.Body = http.MaxBytesReader(w, r.Body, maxRequestSize)
- hosts, err := common.GetDefenderHosts()
- if err != nil {
- sendAPIResponse(w, r, err, "", getRespStatus(err))
- return
- }
- if hosts == nil {
- render.JSON(w, r, make([]dataprovider.DefenderEntry, 0))
- return
- }
- render.JSON(w, r, hosts)
- }
- func getDefenderHostByID(w http.ResponseWriter, r *http.Request) {
- r.Body = http.MaxBytesReader(w, r.Body, maxRequestSize)
- ip, err := getIPFromID(r)
- if err != nil {
- sendAPIResponse(w, r, err, "", http.StatusBadRequest)
- return
- }
- host, err := common.GetDefenderHost(ip)
- if err != nil {
- sendAPIResponse(w, r, err, "", getRespStatus(err))
- return
- }
- render.JSON(w, r, host)
- }
- func deleteDefenderHostByID(w http.ResponseWriter, r *http.Request) {
- r.Body = http.MaxBytesReader(w, r.Body, maxRequestSize)
- ip, err := getIPFromID(r)
- if err != nil {
- sendAPIResponse(w, r, err, "", http.StatusBadRequest)
- return
- }
- if !common.DeleteDefenderHost(ip) {
- sendAPIResponse(w, r, nil, "Not found", http.StatusNotFound)
- return
- }
- sendAPIResponse(w, r, nil, "OK", http.StatusOK)
- }
- func getIPFromID(r *http.Request) (string, error) {
- decoded, err := hex.DecodeString(getURLParam(r, "id"))
- if err != nil {
- return "", errors.New("invalid host id")
- }
- ip := string(decoded)
- err = validateIPAddress(ip)
- if err != nil {
- return "", err
- }
- return ip, nil
- }
- func validateIPAddress(ip string) error {
- if net.ParseIP(ip) == nil {
- return fmt.Errorf("ip address %q is not valid", ip)
- }
- return nil
- }
|