aicra/api/response.go

64 lines
1.3 KiB
Go
Raw Permalink Normal View History

2018-10-07 09:23:00 +00:00
package api
2018-06-01 08:51:51 +00:00
import (
"encoding/json"
"net/http"
2018-06-01 08:51:51 +00:00
)
// ResponseData defines format for response parameters to return
type ResponseData map[string]interface{}
// Response represents an API response to be sent
type Response struct {
Data ResponseData
2019-05-01 14:40:26 +00:00
Status int
Headers http.Header
err Err
}
// EmptyResponse creates an empty response.
func EmptyResponse() *Response {
return &Response{
2019-05-01 14:40:26 +00:00
Status: http.StatusOK,
Data: make(ResponseData),
err: ErrFailure,
2019-05-01 14:40:26 +00:00
Headers: make(http.Header),
2018-06-01 08:51:51 +00:00
}
}
// WithError sets the error
func (res *Response) WithError(err Err) *Response {
res.err = err
return res
}
func (res *Response) Error() string {
return res.err.Error()
}
// SetData adds/overrides a new response field
func (res *Response) SetData(name string, value interface{}) {
res.Data[name] = value
2018-06-01 08:51:51 +00:00
}
// MarshalJSON implements the 'json.Marshaler' interface and is used
// to generate the JSON representation of the response
func (res *Response) MarshalJSON() ([]byte, error) {
2019-05-01 13:14:49 +00:00
fmt := make(map[string]interface{})
for k, v := range res.Data {
2019-05-01 13:14:49 +00:00
fmt[k] = v
}
fmt["error"] = res.err
2019-05-01 13:14:49 +00:00
return json.Marshal(fmt)
2018-06-01 08:51:51 +00:00
}
func (res *Response) ServeHTTP(w http.ResponseWriter, r *http.Request) error {
w.WriteHeader(res.err.Status)
2020-03-09 18:12:26 +00:00
encoded, err := json.Marshal(res)
if err != nil {
return err
}
2020-03-09 18:12:26 +00:00
w.Write(encoded)
return nil
}