2019-10-24 18:38:09 +00:00
|
|
|
// +build !consulent
|
|
|
|
|
2017-11-29 00:06:26 +00:00
|
|
|
package agent
|
|
|
|
|
2019-10-24 18:38:09 +00:00
|
|
|
import (
|
2019-12-06 16:14:56 +00:00
|
|
|
"fmt"
|
2019-10-24 18:38:09 +00:00
|
|
|
"net/http"
|
2019-12-06 16:14:56 +00:00
|
|
|
"strings"
|
2019-10-24 18:38:09 +00:00
|
|
|
|
|
|
|
"github.com/hashicorp/consul/agent/structs"
|
|
|
|
)
|
2018-02-18 01:31:24 +00:00
|
|
|
|
2019-12-06 16:14:56 +00:00
|
|
|
func (s *HTTPServer) parseEntMeta(req *http.Request, entMeta *structs.EnterpriseMeta) error {
|
|
|
|
if headerNS := req.Header.Get("X-Consul-Namespace"); headerNS != "" {
|
|
|
|
return BadRequestError{Reason: "Invalid header: \"X-Consul-Namespace\" - Namespaces is a Consul Enterprise feature"}
|
|
|
|
}
|
|
|
|
if queryNS := req.URL.Query().Get("ns"); queryNS != "" {
|
|
|
|
return BadRequestError{Reason: "Invalid query parameter: \"ns\" - Namespaces is a Consul Enterprise feature"}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-12-06 19:01:34 +00:00
|
|
|
func (s *HTTPServer) parseEntMetaNoWildcard(req *http.Request, _ *structs.EnterpriseMeta) error {
|
|
|
|
return s.parseEntMeta(req, nil)
|
|
|
|
}
|
|
|
|
|
2019-12-06 16:14:56 +00:00
|
|
|
func (s *HTTPServer) rewordUnknownEnterpriseFieldError(err error) error {
|
|
|
|
if err == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
msg := err.Error()
|
|
|
|
|
|
|
|
if strings.Contains(msg, "json: unknown field ") {
|
|
|
|
quotedField := strings.TrimPrefix(msg, "json: unknown field ")
|
|
|
|
|
|
|
|
switch quotedField {
|
|
|
|
case `"Namespace"`:
|
|
|
|
return fmt.Errorf("%v - Namespaces is a Consul Enterprise feature", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return err
|
2017-11-29 00:06:26 +00:00
|
|
|
}
|
2019-12-13 19:50:07 +00:00
|
|
|
|
|
|
|
func (s *HTTPServer) addEnterpriseHTMLTemplateVars(vars map[string]interface{}) {}
|
2020-01-14 15:09:29 +00:00
|
|
|
|
|
|
|
func parseACLAuthMethodEnterpriseMeta(req *http.Request, _ *structs.ACLAuthMethodEnterpriseMeta) error {
|
|
|
|
if methodNS := req.URL.Query().Get("authmethod-ns"); methodNS != "" {
|
2020-01-27 13:00:33 +00:00
|
|
|
return BadRequestError{Reason: "Invalid query parameter: \"authmethod-ns\" - Namespaces is a Consul Enterprise feature"}
|
2020-01-14 15:09:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
2020-04-16 22:07:52 +00:00
|
|
|
|
|
|
|
// auditReq is a noop stub for the corresponding func in http_ent.go
|
|
|
|
func (s *HTTPServer) auditReq(req *http.Request) interface{} {
|
|
|
|
// note(kit): We return an nil here so we can pass it to auditResp. Auditing the response requires the
|
|
|
|
// request object for context, so we have it pass it even when it's disabled
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// auditResp is a noop stub for the corresponding func in http_ent.go
|
|
|
|
func (s *HTTPServer) auditResp(reqPayload interface{}, httpCode int) {
|
|
|
|
}
|