1
0
mirror of https://github.com/drakkan/sftpgo.git synced 2025-11-29 22:08:10 +02:00
Files
sftpgo/httpd/api_utils.go

55 lines
1.3 KiB
Go
Raw Normal View History

package httpd
2019-07-20 12:26:52 +02:00
import (
2020-01-31 23:26:56 +01:00
"context"
2019-07-20 12:26:52 +02:00
"net/http"
2019-12-27 23:12:44 +01:00
"os"
2019-07-20 12:26:52 +02:00
"github.com/go-chi/render"
"github.com/drakkan/sftpgo/common"
2019-07-20 12:26:52 +02:00
"github.com/drakkan/sftpgo/dataprovider"
)
func sendAPIResponse(w http.ResponseWriter, r *http.Request, err error, message string, code int) {
var errorString string
if err != nil {
errorString = err.Error()
}
resp := apiResponse{
Error: errorString,
Message: message,
}
2020-01-31 23:26:56 +01:00
ctx := context.WithValue(r.Context(), render.StatusCtxKey, code)
render.JSON(w, r.WithContext(ctx), resp)
}
func getRespStatus(err error) int {
if _, ok := err.(*dataprovider.ValidationError); ok {
return http.StatusBadRequest
}
if _, ok := err.(*dataprovider.MethodDisabledError); ok {
return http.StatusForbidden
}
if _, ok := err.(*dataprovider.RecordNotFoundError); ok {
return http.StatusNotFound
}
2019-12-27 23:12:44 +01:00
if os.IsNotExist(err) {
return http.StatusBadRequest
}
return http.StatusInternalServerError
}
func handleCloseConnection(w http.ResponseWriter, r *http.Request) {
connectionID := getURLParam(r, "connectionID")
if connectionID == "" {
sendAPIResponse(w, r, nil, "connectionID is mandatory", http.StatusBadRequest)
return
}
if common.Connections.Close(connectionID) {
sendAPIResponse(w, r, nil, "Connection closed", http.StatusOK)
} else {
sendAPIResponse(w, r, nil, "Not Found", http.StatusNotFound)
}
}