Files
filestash/server/common/response.go

76 lines
1.9 KiB
Go

package common
import (
"encoding/json"
"net/http"
"strings"
)
type APISuccessResult struct {
Status string `json:"status"`
Result interface{} `json:"result,omitempty"`
}
type APISuccessResults struct {
Status string `json:"status"`
Results interface{} `json:"results"`
}
type APISuccessResultsWithMetadata struct {
Status string `json:"status"`
Results interface{} `json:"results"`
Metadata interface{} `json:"metadata,omitempty"`
}
type APIErrorMessage struct {
Status string `json:"status"`
Message string `json:"message,omitempty"`
}
func SendSuccessResult(res http.ResponseWriter, data interface{}) {
encoder := json.NewEncoder(res)
encoder.SetEscapeHTML(false)
encoder.Encode(APISuccessResult{"ok", data})
}
func SendSuccessResultWithEtag(res http.ResponseWriter, req *http.Request, data interface{}) {
json, _ := json.Marshal(APISuccessResult{"ok", data})
hash := QuickHash(string(json), 20)
if req.Header.Get("If-None-Match") == hash {
res.WriteHeader(http.StatusNotModified)
return
}
res.Header().Set("Etag", hash)
res.Write(json)
}
func SendSuccessResults(res http.ResponseWriter, data interface{}) {
encoder := json.NewEncoder(res)
encoder.SetEscapeHTML(false)
encoder.Encode(APISuccessResults{"ok", data})
}
func SendSuccessResultsWithMetadata(res http.ResponseWriter, data interface{}, p interface{}) {
encoder := json.NewEncoder(res)
encoder.SetEscapeHTML(false)
encoder.Encode(APISuccessResultsWithMetadata{"ok", data, p})
}
func SendErrorResult(res http.ResponseWriter, err error) {
encoder := json.NewEncoder(res)
encoder.SetEscapeHTML(false)
obj, ok := err.(interface{ Status() int })
if ok == true {
res.WriteHeader(obj.Status())
} else {
res.WriteHeader(http.StatusInternalServerError)
}
m := func(r string) string {
if r == "" {
return r
}
return strings.ToUpper(string(r[0])) + string(r[1:])
}(err.Error())
encoder.Encode(APIErrorMessage{"error", m})
}