summaryrefslogtreecommitdiff
path: root/admin.go
diff options
context:
space:
mode:
authorMohammed Al Sahaf <msaa1990@gmail.com>2020-03-22 01:49:10 +0300
committerGitHub <noreply@github.com>2020-03-21 16:49:10 -0600
commit37093befd59107316d422fcd3cc011b2481cd2cf (patch)
tree2a55429f8f90b75874933192b19b71639c761a69 /admin.go
parentd692d503a3d327d54c82bceab48bb1de07bb3c3d (diff)
caddyconfig: register adapters as Caddy modules (#3132)
* admin: Refactor /load endpoint out of caddy package This eliminates the caddy package's dependency on the caddyconfig package, which helps prevent import cycles. * v2: adapter: register config adapters as Caddy modules * v2: adapter: simplify adapter registration as adapters and modules * v2: adapter: let RegisterAdapter be in charge of registering adapters as modules * v2: adapter: remove underscrores placeholders * v2: adapter: explicitly ignore the error of writing response of writing warnings back to client * Implicitly wrap config adapters as modules Co-authored-by: Matthew Holt <mholt@users.noreply.github.com>
Diffstat (limited to 'admin.go')
-rw-r--r--admin.go83
1 files changed, 0 insertions, 83 deletions
diff --git a/admin.go b/admin.go
index 7a5d0b6..212637f 100644
--- a/admin.go
+++ b/admin.go
@@ -21,7 +21,6 @@ import (
"expvar"
"fmt"
"io"
- "mime"
"net/http"
"net/http/pprof"
"net/url"
@@ -33,7 +32,6 @@ import (
"sync"
"time"
- "github.com/caddyserver/caddy/v2/caddyconfig"
"go.uber.org/zap"
)
@@ -115,7 +113,6 @@ func (admin AdminConfig) newAdminHandler(listenAddr string) adminHandler {
}
// register standard config control endpoints
- addRoute("/load", AdminHandlerFunc(handleLoad))
addRoute("/"+rawConfigKey+"/", AdminHandlerFunc(handleConfig))
addRoute("/id/", AdminHandlerFunc(handleConfigID))
addRoute("/stop", AdminHandlerFunc(handleStop))
@@ -407,86 +404,6 @@ func (h adminHandler) originAllowed(origin string) bool {
return false
}
-func handleLoad(w http.ResponseWriter, r *http.Request) error {
- if r.Method != http.MethodPost {
- return APIError{
- Code: http.StatusMethodNotAllowed,
- Err: fmt.Errorf("method not allowed"),
- }
- }
-
- buf := bufPool.Get().(*bytes.Buffer)
- buf.Reset()
- defer bufPool.Put(buf)
-
- _, err := io.Copy(buf, r.Body)
- if err != nil {
- return APIError{
- Code: http.StatusBadRequest,
- Err: fmt.Errorf("reading request body: %v", err),
- }
- }
- body := buf.Bytes()
-
- // if the config is formatted other than Caddy's native
- // JSON, we need to adapt it before loading it
- if ctHeader := r.Header.Get("Content-Type"); ctHeader != "" {
- ct, _, err := mime.ParseMediaType(ctHeader)
- if err != nil {
- return APIError{
- Code: http.StatusBadRequest,
- Err: fmt.Errorf("invalid Content-Type: %v", err),
- }
- }
- if !strings.HasSuffix(ct, "/json") {
- slashIdx := strings.Index(ct, "/")
- if slashIdx < 0 {
- return APIError{
- Code: http.StatusBadRequest,
- Err: fmt.Errorf("malformed Content-Type"),
- }
- }
- adapterName := ct[slashIdx+1:]
- cfgAdapter := caddyconfig.GetAdapter(adapterName)
- if cfgAdapter == nil {
- return APIError{
- Code: http.StatusBadRequest,
- Err: fmt.Errorf("unrecognized config adapter '%s'", adapterName),
- }
- }
- result, warnings, err := cfgAdapter.Adapt(body, nil)
- if err != nil {
- return APIError{
- Code: http.StatusBadRequest,
- Err: fmt.Errorf("adapting config using %s adapter: %v", adapterName, err),
- }
- }
- if len(warnings) > 0 {
- respBody, err := json.Marshal(warnings)
- if err != nil {
- Log().Named("admin.api.load").Error(err.Error())
- }
- w.Write(respBody)
- }
- body = result
- }
- }
-
- forceReload := r.Header.Get("Cache-Control") == "must-revalidate"
-
- err = Load(body, forceReload)
- if err != nil {
- return APIError{
- Code: http.StatusBadRequest,
- Err: fmt.Errorf("loading config: %v", err),
- }
- }
-
- Log().Named("admin.api").Info("load complete")
-
- return nil
-}
-
func handleConfig(w http.ResponseWriter, r *http.Request) error {
switch r.Method {
case http.MethodGet: