2020-02-07 16:36:28 +00:00
|
|
|
// Copyright (C) 2020 Storj Labs, Inc.
|
|
|
|
// See LICENSE for copying information.
|
|
|
|
|
|
|
|
package admin
|
|
|
|
|
2020-08-05 14:13:11 +01:00
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"net/http"
|
|
|
|
|
|
|
|
"github.com/zeebo/errs"
|
|
|
|
)
|
2020-02-07 16:36:28 +00:00
|
|
|
|
|
|
|
// Error is default error class for admin package.
|
|
|
|
var Error = errs.Class("admin")
|
2020-08-05 14:13:11 +01:00
|
|
|
|
2021-10-01 12:50:21 +01:00
|
|
|
func sendJSONError(w http.ResponseWriter, errMsg, detail string, statusCode int) {
|
2020-08-05 14:13:11 +01:00
|
|
|
errStr := struct {
|
|
|
|
Error string `json:"error"`
|
|
|
|
Detail string `json:"detail"`
|
|
|
|
}{
|
2021-10-01 12:36:41 +01:00
|
|
|
Error: errMsg,
|
2020-08-05 14:13:11 +01:00
|
|
|
Detail: detail,
|
|
|
|
}
|
2021-10-01 12:36:41 +01:00
|
|
|
body, err := json.Marshal(errStr)
|
2020-08-05 14:13:11 +01:00
|
|
|
if err != nil {
|
2021-10-01 12:36:41 +01:00
|
|
|
w.WriteHeader(http.StatusInternalServerError)
|
2020-08-05 14:13:11 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-10-01 12:36:41 +01:00
|
|
|
sendJSONData(w, statusCode, body)
|
|
|
|
}
|
|
|
|
|
|
|
|
func sendJSONData(w http.ResponseWriter, statusCode int, data []byte) {
|
2020-08-05 14:13:11 +01:00
|
|
|
w.Header().Set("Content-Type", "application/json")
|
2021-10-01 12:36:41 +01:00
|
|
|
w.WriteHeader(statusCode)
|
|
|
|
_, _ = w.Write(data) // any error here entitles a client side disconnect or similar, which we do not care about.
|
2020-08-05 14:13:11 +01:00
|
|
|
}
|