mirror of
https://github.com/containers/podman.git
synced 2025-06-06 23:08:04 +08:00

`gocritic` is a powerful linter that helps in preventing certain kinds of errors as well as enforcing a coding style. Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
45 lines
1.0 KiB
Go
45 lines
1.0 KiB
Go
package utils
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
"io"
|
|
"net/http"
|
|
"os"
|
|
|
|
log "github.com/sirupsen/logrus"
|
|
)
|
|
|
|
// WriteResponse encodes the given value as JSON or string and renders it for http client
|
|
func WriteResponse(w http.ResponseWriter, code int, value interface{}) {
|
|
switch v := value.(type) {
|
|
case string:
|
|
w.Header().Set("Content-Type", "text/plain; charset=us-ascii")
|
|
w.WriteHeader(code)
|
|
|
|
if _, err := fmt.Fprintln(w, v); err != nil {
|
|
log.Errorf("unable to send string response: %q", err)
|
|
}
|
|
case *os.File:
|
|
w.Header().Set("Content-Type", "application/octet; charset=us-ascii")
|
|
w.WriteHeader(code)
|
|
|
|
if _, err := io.Copy(w, v); err != nil {
|
|
log.Errorf("unable to copy to response: %q", err)
|
|
}
|
|
default:
|
|
WriteJSON(w, code, value)
|
|
}
|
|
}
|
|
|
|
func WriteJSON(w http.ResponseWriter, code int, value interface{}) {
|
|
w.Header().Set("Content-Type", "application/json")
|
|
w.WriteHeader(code)
|
|
|
|
coder := json.NewEncoder(w)
|
|
coder.SetEscapeHTML(true)
|
|
if err := coder.Encode(value); err != nil {
|
|
log.Errorf("unable to write json: %q", err)
|
|
}
|
|
}
|