mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-22 04:55:33 +03:00
c26ab190e7
Merge in DNS/adguard-home from imp-json-resp to master Squashed commit of the following: commit 44532b6fa551815e5ea876e7320ce0a73c32b6fb Author: Ainar Garipov <A.Garipov@AdGuard.COM> Date: Fri Sep 30 15:59:58 2022 +0300 all: imp json resp
82 lines
2.6 KiB
Go
82 lines
2.6 KiB
Go
// Package aghhttp provides some common methods to work with HTTP.
|
|
package aghhttp
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
"io"
|
|
"net/http"
|
|
|
|
"github.com/AdguardTeam/AdGuardHome/internal/version"
|
|
"github.com/AdguardTeam/golibs/log"
|
|
)
|
|
|
|
// HTTP scheme constants.
|
|
const (
|
|
SchemeHTTP = "http"
|
|
SchemeHTTPS = "https"
|
|
)
|
|
|
|
// RegisterFunc is the function that sets the handler to handle the URL for the
|
|
// method.
|
|
//
|
|
// TODO(e.burkov, a.garipov): Get rid of it.
|
|
type RegisterFunc func(method, url string, handler http.HandlerFunc)
|
|
|
|
// OK responds with word OK.
|
|
func OK(w http.ResponseWriter) {
|
|
if _, err := io.WriteString(w, "OK\n"); err != nil {
|
|
log.Error("couldn't write body: %s", err)
|
|
}
|
|
}
|
|
|
|
// Error writes formatted message to w and also logs it.
|
|
func Error(r *http.Request, w http.ResponseWriter, code int, format string, args ...any) {
|
|
text := fmt.Sprintf(format, args...)
|
|
log.Error("%s %s %s: %s", r.Method, r.Host, r.URL, text)
|
|
http.Error(w, text, code)
|
|
}
|
|
|
|
// UserAgent returns the ID of the service as a User-Agent string. It can also
|
|
// be used as the value of the Server HTTP header.
|
|
func UserAgent() (ua string) {
|
|
return fmt.Sprintf("AdGuardHome/%s", version.Version())
|
|
}
|
|
|
|
// textPlainDeprMsg is the message returned to API users when they try to use
|
|
// an API that used to accept "text/plain" but doesn't anymore.
|
|
const textPlainDeprMsg = `using this api with the text/plain content-type is deprecated; ` +
|
|
`use application/json`
|
|
|
|
// WriteTextPlainDeprecated responds to the request with a message about
|
|
// deprecation and removal of a plain-text API if the request is made with the
|
|
// "text/plain" content-type.
|
|
func WriteTextPlainDeprecated(w http.ResponseWriter, r *http.Request) (isPlainText bool) {
|
|
if r.Header.Get(HdrNameContentType) != HdrValTextPlain {
|
|
return false
|
|
}
|
|
|
|
Error(r, w, http.StatusUnsupportedMediaType, textPlainDeprMsg)
|
|
|
|
return true
|
|
}
|
|
|
|
// WriteJSONResponse sets the content-type header in w.Header() to
|
|
// "application/json", writes a header with a "200 OK" status, encodes resp to
|
|
// w, calls [Error] on any returned error, and returns it as well.
|
|
func WriteJSONResponse(w http.ResponseWriter, r *http.Request, resp any) (err error) {
|
|
return WriteJSONResponseCode(w, r, http.StatusOK, resp)
|
|
}
|
|
|
|
// WriteJSONResponseCode is like [WriteJSONResponse] but adds the ability to
|
|
// redefine the status code.
|
|
func WriteJSONResponseCode(w http.ResponseWriter, r *http.Request, code int, resp any) (err error) {
|
|
w.WriteHeader(code)
|
|
w.Header().Set(HdrNameContentType, HdrValApplicationJSON)
|
|
err = json.NewEncoder(w).Encode(resp)
|
|
if err != nil {
|
|
Error(r, w, http.StatusInternalServerError, "encoding resp: %s", err)
|
|
}
|
|
|
|
return err
|
|
}
|