2013-12-23 22:26:34 +00:00
|
|
|
package agent
|
|
|
|
|
|
|
|
import (
|
2013-12-24 00:20:51 +00:00
|
|
|
"fmt"
|
2013-12-23 22:26:34 +00:00
|
|
|
"net/http"
|
2013-12-24 19:55:14 +00:00
|
|
|
"strings"
|
2016-08-15 22:05:02 +00:00
|
|
|
|
2017-12-21 21:22:48 +00:00
|
|
|
metrics "github.com/armon/go-metrics"
|
2018-09-06 10:34:28 +00:00
|
|
|
cachetype "github.com/hashicorp/consul/agent/cache-types"
|
2017-07-06 10:34:00 +00:00
|
|
|
"github.com/hashicorp/consul/agent/structs"
|
2013-12-23 22:26:34 +00:00
|
|
|
)
|
|
|
|
|
2020-09-04 18:42:15 +00:00
|
|
|
func (s *HTTPHandlers) CatalogRegister(resp http.ResponseWriter, req *http.Request) (interface{}, error) {
|
2017-12-22 04:30:29 +00:00
|
|
|
metrics.IncrCounterWithLabels([]string{"client", "api", "catalog_register"}, 1,
|
|
|
|
[]metrics.Label{{Name: "node", Value: s.nodeName()}})
|
2017-09-26 06:11:19 +00:00
|
|
|
|
2013-12-24 00:20:51 +00:00
|
|
|
var args structs.RegisterRequest
|
2019-12-10 02:26:41 +00:00
|
|
|
if err := s.parseEntMetaNoWildcard(req, &args.EnterpriseMeta); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := s.rewordUnknownEnterpriseFieldError(decodeBody(req.Body, &args)); err != nil {
|
2017-08-23 19:19:11 +00:00
|
|
|
resp.WriteHeader(http.StatusBadRequest)
|
Use fmt.Fprint/Fprintf/Fprintln
Used the following rewrite rules:
gofmt -w -r 'resp.Write([]byte(fmt.Sprintf(a, b, c, d))) -> fmt.Fprintf(resp, a, b, c, d)' *.go
gofmt -w -r 'resp.Write([]byte(fmt.Sprintf(a, b, c))) -> fmt.Fprintf(resp, a, b, c)' *.go
gofmt -w -r 'resp.Write([]byte(fmt.Sprintf(a, b))) -> fmt.Fprintf(resp, a, b)' *.go
gofmt -w -r 'resp.Write([]byte(fmt.Sprintf(a))) -> fmt.Fprint(resp, a)' *.go
gofmt -w -r 'resp.Write([]byte(a + "\n")) -> fmt.Fprintln(resp, a)' *.go
gofmt -w -r 'resp.Write([]byte(a)) -> fmt.Fprint(resp, a)' *.go
2017-04-20 14:07:42 +00:00
|
|
|
fmt.Fprintf(resp, "Request decode failed: %v", err)
|
2013-12-24 00:20:51 +00:00
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Setup the default DC if not provided
|
|
|
|
if args.Datacenter == "" {
|
|
|
|
args.Datacenter = s.agent.config.Datacenter
|
|
|
|
}
|
2016-05-17 17:16:33 +00:00
|
|
|
s.parseToken(req, &args.Token)
|
2013-12-24 00:20:51 +00:00
|
|
|
|
|
|
|
// Forward to the servers
|
|
|
|
var out struct{}
|
|
|
|
if err := s.agent.RPC("Catalog.Register", &args, &out); err != nil {
|
2017-12-22 04:30:29 +00:00
|
|
|
metrics.IncrCounterWithLabels([]string{"client", "rpc", "error", "catalog_register"}, 1,
|
|
|
|
[]metrics.Label{{Name: "node", Value: s.nodeName()}})
|
2013-12-24 00:20:51 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
2017-12-22 04:30:29 +00:00
|
|
|
metrics.IncrCounterWithLabels([]string{"client", "api", "success", "catalog_register"}, 1,
|
|
|
|
[]metrics.Label{{Name: "node", Value: s.nodeName()}})
|
2013-12-24 00:20:51 +00:00
|
|
|
return true, nil
|
|
|
|
}
|
|
|
|
|
2020-09-04 18:42:15 +00:00
|
|
|
func (s *HTTPHandlers) CatalogDeregister(resp http.ResponseWriter, req *http.Request) (interface{}, error) {
|
2017-12-22 04:30:29 +00:00
|
|
|
metrics.IncrCounterWithLabels([]string{"client", "api", "catalog_deregister"}, 1,
|
|
|
|
[]metrics.Label{{Name: "node", Value: s.nodeName()}})
|
2017-09-26 06:11:19 +00:00
|
|
|
|
2013-12-24 19:55:14 +00:00
|
|
|
var args structs.DeregisterRequest
|
2019-12-10 02:26:41 +00:00
|
|
|
if err := s.parseEntMetaNoWildcard(req, &args.EnterpriseMeta); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if err := s.rewordUnknownEnterpriseFieldError(decodeBody(req.Body, &args)); err != nil {
|
2017-08-23 19:19:11 +00:00
|
|
|
resp.WriteHeader(http.StatusBadRequest)
|
Use fmt.Fprint/Fprintf/Fprintln
Used the following rewrite rules:
gofmt -w -r 'resp.Write([]byte(fmt.Sprintf(a, b, c, d))) -> fmt.Fprintf(resp, a, b, c, d)' *.go
gofmt -w -r 'resp.Write([]byte(fmt.Sprintf(a, b, c))) -> fmt.Fprintf(resp, a, b, c)' *.go
gofmt -w -r 'resp.Write([]byte(fmt.Sprintf(a, b))) -> fmt.Fprintf(resp, a, b)' *.go
gofmt -w -r 'resp.Write([]byte(fmt.Sprintf(a))) -> fmt.Fprint(resp, a)' *.go
gofmt -w -r 'resp.Write([]byte(a + "\n")) -> fmt.Fprintln(resp, a)' *.go
gofmt -w -r 'resp.Write([]byte(a)) -> fmt.Fprint(resp, a)' *.go
2017-04-20 14:07:42 +00:00
|
|
|
fmt.Fprintf(resp, "Request decode failed: %v", err)
|
2013-12-24 19:55:14 +00:00
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Setup the default DC if not provided
|
|
|
|
if args.Datacenter == "" {
|
|
|
|
args.Datacenter = s.agent.config.Datacenter
|
|
|
|
}
|
2016-05-17 17:16:33 +00:00
|
|
|
s.parseToken(req, &args.Token)
|
2013-12-24 19:55:14 +00:00
|
|
|
|
|
|
|
// Forward to the servers
|
|
|
|
var out struct{}
|
|
|
|
if err := s.agent.RPC("Catalog.Deregister", &args, &out); err != nil {
|
2017-12-22 04:30:29 +00:00
|
|
|
metrics.IncrCounterWithLabels([]string{"client", "rpc", "error", "catalog_deregister"}, 1,
|
|
|
|
[]metrics.Label{{Name: "node", Value: s.nodeName()}})
|
2013-12-24 19:55:14 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
2017-12-22 04:30:29 +00:00
|
|
|
metrics.IncrCounterWithLabels([]string{"client", "api", "success", "catalog_deregister"}, 1,
|
|
|
|
[]metrics.Label{{Name: "node", Value: s.nodeName()}})
|
2013-12-24 19:55:14 +00:00
|
|
|
return true, nil
|
|
|
|
}
|
|
|
|
|
2020-09-04 18:42:15 +00:00
|
|
|
func (s *HTTPHandlers) CatalogDatacenters(resp http.ResponseWriter, req *http.Request) (interface{}, error) {
|
2017-12-22 04:30:29 +00:00
|
|
|
metrics.IncrCounterWithLabels([]string{"client", "api", "catalog_datacenters"}, 1,
|
|
|
|
[]metrics.Label{{Name: "node", Value: s.nodeName()}})
|
2017-09-26 06:11:19 +00:00
|
|
|
|
2019-06-24 18:11:34 +00:00
|
|
|
args := structs.DatacentersRequest{}
|
|
|
|
s.parseConsistency(resp, req, &args.QueryOptions)
|
|
|
|
parseCacheControl(resp, req, &args.QueryOptions)
|
2013-12-23 22:26:34 +00:00
|
|
|
var out []string
|
2019-06-24 18:11:34 +00:00
|
|
|
|
2020-06-08 08:08:12 +00:00
|
|
|
if s.agent.config.HTTPUseCache && args.QueryOptions.UseCache {
|
2020-06-15 15:01:25 +00:00
|
|
|
raw, m, err := s.agent.cache.Get(req.Context(), cachetype.CatalogDatacentersName, &args)
|
2019-06-24 18:11:34 +00:00
|
|
|
if err != nil {
|
|
|
|
metrics.IncrCounterWithLabels([]string{"client", "rpc", "error", "catalog_datacenters"}, 1,
|
|
|
|
[]metrics.Label{{Name: "node", Value: s.nodeName()}})
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
reply, ok := raw.(*[]string)
|
|
|
|
if !ok {
|
|
|
|
// This should never happen, but we want to protect against panics
|
|
|
|
return nil, fmt.Errorf("internal error: response type not correct")
|
|
|
|
}
|
|
|
|
defer setCacheMeta(resp, &m)
|
|
|
|
out = *reply
|
|
|
|
} else {
|
|
|
|
if err := s.agent.RPC("Catalog.ListDatacenters", &args, &out); err != nil {
|
|
|
|
metrics.IncrCounterWithLabels([]string{"client", "rpc", "error", "catalog_datacenters"}, 1,
|
|
|
|
[]metrics.Label{{Name: "node", Value: s.nodeName()}})
|
|
|
|
return nil, err
|
|
|
|
}
|
2013-12-23 22:26:34 +00:00
|
|
|
}
|
2019-06-24 18:11:34 +00:00
|
|
|
|
2017-12-22 04:30:29 +00:00
|
|
|
metrics.IncrCounterWithLabels([]string{"client", "api", "success", "catalog_datacenters"}, 1,
|
|
|
|
[]metrics.Label{{Name: "node", Value: s.nodeName()}})
|
2013-12-23 22:26:34 +00:00
|
|
|
return out, nil
|
|
|
|
}
|
2013-12-24 00:20:51 +00:00
|
|
|
|
2020-09-04 18:42:15 +00:00
|
|
|
func (s *HTTPHandlers) CatalogNodes(resp http.ResponseWriter, req *http.Request) (interface{}, error) {
|
2017-12-22 04:30:29 +00:00
|
|
|
metrics.IncrCounterWithLabels([]string{"client", "api", "catalog_nodes"}, 1,
|
|
|
|
[]metrics.Label{{Name: "node", Value: s.nodeName()}})
|
2017-09-26 06:11:19 +00:00
|
|
|
|
2014-02-05 22:36:13 +00:00
|
|
|
// Setup the request
|
|
|
|
args := structs.DCSpecificRequest{}
|
2015-06-30 21:25:40 +00:00
|
|
|
s.parseSource(req, &args.Source)
|
2017-01-11 19:41:12 +00:00
|
|
|
args.NodeMetaFilters = s.parseMetaFilter(req)
|
2014-04-21 19:25:36 +00:00
|
|
|
if done := s.parse(resp, req, &args.Datacenter, &args.QueryOptions); done {
|
2017-12-22 04:30:29 +00:00
|
|
|
metrics.IncrCounterWithLabels([]string{"client", "rpc", "error", "catalog_nodes"}, 1,
|
|
|
|
[]metrics.Label{{Name: "node", Value: s.nodeName()}})
|
2014-04-21 19:40:11 +00:00
|
|
|
return nil, nil
|
2013-12-24 00:20:51 +00:00
|
|
|
}
|
|
|
|
|
2014-02-05 22:36:13 +00:00
|
|
|
var out structs.IndexedNodes
|
2014-04-21 19:40:11 +00:00
|
|
|
defer setMeta(resp, &out.QueryMeta)
|
2018-03-30 15:14:44 +00:00
|
|
|
RETRY_ONCE:
|
2014-02-05 22:36:13 +00:00
|
|
|
if err := s.agent.RPC("Catalog.ListNodes", &args, &out); err != nil {
|
2014-04-21 19:40:11 +00:00
|
|
|
return nil, err
|
2013-12-24 00:20:51 +00:00
|
|
|
}
|
2018-03-30 15:14:44 +00:00
|
|
|
if args.QueryOptions.AllowStale && args.MaxStaleDuration > 0 && args.MaxStaleDuration < out.LastContact {
|
|
|
|
args.AllowStale = false
|
|
|
|
args.MaxStaleDuration = 0
|
|
|
|
goto RETRY_ONCE
|
|
|
|
}
|
|
|
|
out.ConsistencyLevel = args.QueryOptions.ConsistencyLevel()
|
|
|
|
|
2020-01-17 14:54:17 +00:00
|
|
|
s.agent.TranslateAddresses(args.Datacenter, out.Nodes, TranslateAddressAcceptAny)
|
2015-11-15 05:05:37 +00:00
|
|
|
|
|
|
|
// Use empty list instead of nil
|
|
|
|
if out.Nodes == nil {
|
|
|
|
out.Nodes = make(structs.Nodes, 0)
|
|
|
|
}
|
2017-12-22 04:30:29 +00:00
|
|
|
metrics.IncrCounterWithLabels([]string{"client", "api", "success", "catalog_nodes"}, 1,
|
|
|
|
[]metrics.Label{{Name: "node", Value: s.nodeName()}})
|
2014-04-21 19:40:11 +00:00
|
|
|
return out.Nodes, nil
|
2013-12-24 00:20:51 +00:00
|
|
|
}
|
2013-12-24 19:55:14 +00:00
|
|
|
|
2020-09-04 18:42:15 +00:00
|
|
|
func (s *HTTPHandlers) CatalogServices(resp http.ResponseWriter, req *http.Request) (interface{}, error) {
|
2017-12-22 04:30:29 +00:00
|
|
|
metrics.IncrCounterWithLabels([]string{"client", "api", "catalog_services"}, 1,
|
|
|
|
[]metrics.Label{{Name: "node", Value: s.nodeName()}})
|
2017-09-26 06:11:19 +00:00
|
|
|
|
2013-12-24 19:55:14 +00:00
|
|
|
// Set default DC
|
2014-02-05 22:36:13 +00:00
|
|
|
args := structs.DCSpecificRequest{}
|
2019-12-10 02:26:41 +00:00
|
|
|
if err := s.parseEntMetaNoWildcard(req, &args.EnterpriseMeta); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2017-01-11 19:41:12 +00:00
|
|
|
args.NodeMetaFilters = s.parseMetaFilter(req)
|
2014-04-21 19:25:36 +00:00
|
|
|
if done := s.parse(resp, req, &args.Datacenter, &args.QueryOptions); done {
|
2014-04-21 19:40:11 +00:00
|
|
|
return nil, nil
|
2013-12-24 19:55:14 +00:00
|
|
|
}
|
2014-02-05 22:36:13 +00:00
|
|
|
var out structs.IndexedServices
|
2014-04-21 19:40:11 +00:00
|
|
|
defer setMeta(resp, &out.QueryMeta)
|
2019-06-24 18:11:34 +00:00
|
|
|
|
2020-06-08 08:08:12 +00:00
|
|
|
if s.agent.config.HTTPUseCache && args.QueryOptions.UseCache {
|
2020-06-15 15:01:25 +00:00
|
|
|
raw, m, err := s.agent.cache.Get(req.Context(), cachetype.CatalogListServicesName, &args)
|
2019-06-24 18:11:34 +00:00
|
|
|
if err != nil {
|
|
|
|
metrics.IncrCounterWithLabels([]string{"client", "rpc", "error", "catalog_services"}, 1,
|
|
|
|
[]metrics.Label{{Name: "node", Value: s.nodeName()}})
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
reply, ok := raw.(*structs.IndexedServices)
|
|
|
|
if !ok {
|
|
|
|
// This should never happen, but we want to protect against panics
|
|
|
|
return nil, fmt.Errorf("internal error: response type not correct")
|
|
|
|
}
|
|
|
|
defer setCacheMeta(resp, &m)
|
|
|
|
out = *reply
|
|
|
|
} else {
|
|
|
|
RETRY_ONCE:
|
|
|
|
if err := s.agent.RPC("Catalog.ListServices", &args, &out); err != nil {
|
|
|
|
metrics.IncrCounterWithLabels([]string{"client", "rpc", "error", "catalog_services"}, 1,
|
|
|
|
[]metrics.Label{{Name: "node", Value: s.nodeName()}})
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if args.QueryOptions.AllowStale && args.MaxStaleDuration > 0 && args.MaxStaleDuration < out.LastContact {
|
|
|
|
args.AllowStale = false
|
|
|
|
args.MaxStaleDuration = 0
|
|
|
|
goto RETRY_ONCE
|
|
|
|
}
|
2018-03-30 15:14:44 +00:00
|
|
|
}
|
2019-06-24 18:11:34 +00:00
|
|
|
|
2018-03-30 15:14:44 +00:00
|
|
|
out.ConsistencyLevel = args.QueryOptions.ConsistencyLevel()
|
2017-04-28 01:22:07 +00:00
|
|
|
|
|
|
|
// Use empty map instead of nil
|
|
|
|
if out.Services == nil {
|
2019-07-20 13:37:19 +00:00
|
|
|
out.Services = make(structs.Services)
|
2017-04-28 01:22:07 +00:00
|
|
|
}
|
2017-12-22 04:30:29 +00:00
|
|
|
metrics.IncrCounterWithLabels([]string{"client", "api", "success", "catalog_services"}, 1,
|
|
|
|
[]metrics.Label{{Name: "node", Value: s.nodeName()}})
|
2014-04-21 19:40:11 +00:00
|
|
|
return out.Services, nil
|
2013-12-24 19:55:14 +00:00
|
|
|
}
|
|
|
|
|
2020-09-04 18:42:15 +00:00
|
|
|
func (s *HTTPHandlers) CatalogConnectServiceNodes(resp http.ResponseWriter, req *http.Request) (interface{}, error) {
|
2018-03-09 18:01:42 +00:00
|
|
|
return s.catalogServiceNodes(resp, req, true)
|
|
|
|
}
|
|
|
|
|
2020-09-04 18:42:15 +00:00
|
|
|
func (s *HTTPHandlers) CatalogServiceNodes(resp http.ResponseWriter, req *http.Request) (interface{}, error) {
|
2018-03-09 18:01:42 +00:00
|
|
|
return s.catalogServiceNodes(resp, req, false)
|
|
|
|
}
|
|
|
|
|
2020-09-04 18:42:15 +00:00
|
|
|
func (s *HTTPHandlers) catalogServiceNodes(resp http.ResponseWriter, req *http.Request, connect bool) (interface{}, error) {
|
2018-03-09 18:01:42 +00:00
|
|
|
metricsKey := "catalog_service_nodes"
|
|
|
|
pathPrefix := "/v1/catalog/service/"
|
|
|
|
if connect {
|
|
|
|
metricsKey = "catalog_connect_service_nodes"
|
|
|
|
pathPrefix = "/v1/catalog/connect/"
|
|
|
|
}
|
|
|
|
|
|
|
|
metrics.IncrCounterWithLabels([]string{"client", "api", metricsKey}, 1,
|
2017-12-22 04:30:29 +00:00
|
|
|
[]metrics.Label{{Name: "node", Value: s.nodeName()}})
|
2017-09-26 06:11:19 +00:00
|
|
|
|
2013-12-24 19:55:14 +00:00
|
|
|
// Set default DC
|
2018-03-09 18:01:42 +00:00
|
|
|
args := structs.ServiceSpecificRequest{Connect: connect}
|
2020-02-10 15:40:44 +00:00
|
|
|
if err := s.parseEntMetaNoWildcard(req, &args.EnterpriseMeta); err != nil {
|
2019-12-10 02:26:41 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2015-06-30 21:25:40 +00:00
|
|
|
s.parseSource(req, &args.Source)
|
2017-01-14 01:08:43 +00:00
|
|
|
args.NodeMetaFilters = s.parseMetaFilter(req)
|
2014-04-21 19:25:36 +00:00
|
|
|
if done := s.parse(resp, req, &args.Datacenter, &args.QueryOptions); done {
|
2014-04-21 19:40:11 +00:00
|
|
|
return nil, nil
|
2013-12-24 19:55:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Check for a tag
|
2014-02-05 22:36:13 +00:00
|
|
|
params := req.URL.Query()
|
2013-12-24 19:55:14 +00:00
|
|
|
if _, ok := params["tag"]; ok {
|
2018-10-11 11:50:05 +00:00
|
|
|
args.ServiceTags = params["tag"]
|
2013-12-24 19:55:14 +00:00
|
|
|
args.TagFilter = true
|
|
|
|
}
|
|
|
|
|
|
|
|
// Pull out the service name
|
2018-03-09 18:01:42 +00:00
|
|
|
args.ServiceName = strings.TrimPrefix(req.URL.Path, pathPrefix)
|
2013-12-24 19:55:14 +00:00
|
|
|
if args.ServiceName == "" {
|
2017-08-23 19:19:11 +00:00
|
|
|
resp.WriteHeader(http.StatusBadRequest)
|
Use fmt.Fprint/Fprintf/Fprintln
Used the following rewrite rules:
gofmt -w -r 'resp.Write([]byte(fmt.Sprintf(a, b, c, d))) -> fmt.Fprintf(resp, a, b, c, d)' *.go
gofmt -w -r 'resp.Write([]byte(fmt.Sprintf(a, b, c))) -> fmt.Fprintf(resp, a, b, c)' *.go
gofmt -w -r 'resp.Write([]byte(fmt.Sprintf(a, b))) -> fmt.Fprintf(resp, a, b)' *.go
gofmt -w -r 'resp.Write([]byte(fmt.Sprintf(a))) -> fmt.Fprint(resp, a)' *.go
gofmt -w -r 'resp.Write([]byte(a + "\n")) -> fmt.Fprintln(resp, a)' *.go
gofmt -w -r 'resp.Write([]byte(a)) -> fmt.Fprint(resp, a)' *.go
2017-04-20 14:07:42 +00:00
|
|
|
fmt.Fprint(resp, "Missing service name")
|
2014-04-21 19:40:11 +00:00
|
|
|
return nil, nil
|
2013-12-24 19:55:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Make the RPC request
|
2014-02-05 22:36:13 +00:00
|
|
|
var out structs.IndexedServiceNodes
|
2014-04-21 19:40:11 +00:00
|
|
|
defer setMeta(resp, &out.QueryMeta)
|
2018-09-06 10:34:28 +00:00
|
|
|
|
2020-06-08 08:08:12 +00:00
|
|
|
if s.agent.config.HTTPUseCache && args.QueryOptions.UseCache {
|
2020-06-15 15:01:25 +00:00
|
|
|
raw, m, err := s.agent.cache.Get(req.Context(), cachetype.CatalogServicesName, &args)
|
2018-09-06 10:34:28 +00:00
|
|
|
if err != nil {
|
|
|
|
metrics.IncrCounterWithLabels([]string{"client", "rpc", "error", "catalog_service_nodes"}, 1,
|
|
|
|
[]metrics.Label{{Name: "node", Value: s.nodeName()}})
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
defer setCacheMeta(resp, &m)
|
|
|
|
reply, ok := raw.(*structs.IndexedServiceNodes)
|
|
|
|
if !ok {
|
|
|
|
// This should never happen, but we want to protect against panics
|
|
|
|
return nil, fmt.Errorf("internal error: response type not correct")
|
|
|
|
}
|
|
|
|
out = *reply
|
|
|
|
} else {
|
|
|
|
RETRY_ONCE:
|
|
|
|
if err := s.agent.RPC("Catalog.ServiceNodes", &args, &out); err != nil {
|
|
|
|
metrics.IncrCounterWithLabels([]string{"client", "rpc", "error", "catalog_service_nodes"}, 1,
|
|
|
|
[]metrics.Label{{Name: "node", Value: s.nodeName()}})
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if args.QueryOptions.AllowStale && args.MaxStaleDuration > 0 && args.MaxStaleDuration < out.LastContact {
|
|
|
|
args.AllowStale = false
|
|
|
|
args.MaxStaleDuration = 0
|
|
|
|
goto RETRY_ONCE
|
|
|
|
}
|
2018-03-30 15:14:44 +00:00
|
|
|
}
|
2018-09-06 10:34:28 +00:00
|
|
|
|
2018-03-30 15:14:44 +00:00
|
|
|
out.ConsistencyLevel = args.QueryOptions.ConsistencyLevel()
|
2020-01-17 14:54:17 +00:00
|
|
|
s.agent.TranslateAddresses(args.Datacenter, out.ServiceNodes, TranslateAddressAcceptAny)
|
2015-11-15 05:05:37 +00:00
|
|
|
|
|
|
|
// Use empty list instead of nil
|
|
|
|
if out.ServiceNodes == nil {
|
|
|
|
out.ServiceNodes = make(structs.ServiceNodes, 0)
|
|
|
|
}
|
2018-02-07 04:35:55 +00:00
|
|
|
for i, s := range out.ServiceNodes {
|
2017-04-28 01:22:07 +00:00
|
|
|
if s.ServiceTags == nil {
|
2018-02-07 04:35:55 +00:00
|
|
|
clone := *s
|
|
|
|
clone.ServiceTags = make([]string, 0)
|
|
|
|
out.ServiceNodes[i] = &clone
|
2017-04-28 01:22:07 +00:00
|
|
|
}
|
|
|
|
}
|
2017-12-22 04:30:29 +00:00
|
|
|
metrics.IncrCounterWithLabels([]string{"client", "api", "success", "catalog_service_nodes"}, 1,
|
|
|
|
[]metrics.Label{{Name: "node", Value: s.nodeName()}})
|
2014-04-21 19:40:11 +00:00
|
|
|
return out.ServiceNodes, nil
|
2013-12-24 19:55:14 +00:00
|
|
|
}
|
|
|
|
|
2020-09-04 18:42:15 +00:00
|
|
|
func (s *HTTPHandlers) CatalogNodeServices(resp http.ResponseWriter, req *http.Request) (interface{}, error) {
|
2017-12-22 04:30:29 +00:00
|
|
|
metrics.IncrCounterWithLabels([]string{"client", "api", "catalog_node_services"}, 1,
|
|
|
|
[]metrics.Label{{Name: "node", Value: s.nodeName()}})
|
2017-09-26 06:11:19 +00:00
|
|
|
|
2013-12-24 19:55:14 +00:00
|
|
|
// Set default Datacenter
|
2014-02-05 22:36:13 +00:00
|
|
|
args := structs.NodeSpecificRequest{}
|
2019-12-10 02:26:41 +00:00
|
|
|
if err := s.parseEntMetaNoWildcard(req, &args.EnterpriseMeta); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2014-04-21 19:25:36 +00:00
|
|
|
if done := s.parse(resp, req, &args.Datacenter, &args.QueryOptions); done {
|
2014-04-21 19:40:11 +00:00
|
|
|
return nil, nil
|
2013-12-24 19:55:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Pull out the node name
|
|
|
|
args.Node = strings.TrimPrefix(req.URL.Path, "/v1/catalog/node/")
|
|
|
|
if args.Node == "" {
|
2017-08-23 19:19:11 +00:00
|
|
|
resp.WriteHeader(http.StatusBadRequest)
|
Use fmt.Fprint/Fprintf/Fprintln
Used the following rewrite rules:
gofmt -w -r 'resp.Write([]byte(fmt.Sprintf(a, b, c, d))) -> fmt.Fprintf(resp, a, b, c, d)' *.go
gofmt -w -r 'resp.Write([]byte(fmt.Sprintf(a, b, c))) -> fmt.Fprintf(resp, a, b, c)' *.go
gofmt -w -r 'resp.Write([]byte(fmt.Sprintf(a, b))) -> fmt.Fprintf(resp, a, b)' *.go
gofmt -w -r 'resp.Write([]byte(fmt.Sprintf(a))) -> fmt.Fprint(resp, a)' *.go
gofmt -w -r 'resp.Write([]byte(a + "\n")) -> fmt.Fprintln(resp, a)' *.go
gofmt -w -r 'resp.Write([]byte(a)) -> fmt.Fprint(resp, a)' *.go
2017-04-20 14:07:42 +00:00
|
|
|
fmt.Fprint(resp, "Missing node name")
|
2014-04-21 19:40:11 +00:00
|
|
|
return nil, nil
|
2013-12-24 19:55:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Make the RPC request
|
2014-02-05 22:36:13 +00:00
|
|
|
var out structs.IndexedNodeServices
|
2014-04-21 19:40:11 +00:00
|
|
|
defer setMeta(resp, &out.QueryMeta)
|
2018-03-30 15:14:44 +00:00
|
|
|
RETRY_ONCE:
|
2014-02-05 22:36:13 +00:00
|
|
|
if err := s.agent.RPC("Catalog.NodeServices", &args, &out); err != nil {
|
2017-12-22 04:30:29 +00:00
|
|
|
metrics.IncrCounterWithLabels([]string{"client", "rpc", "error", "catalog_node_services"}, 1,
|
|
|
|
[]metrics.Label{{Name: "node", Value: s.nodeName()}})
|
2014-04-21 19:40:11 +00:00
|
|
|
return nil, err
|
2013-12-24 19:55:14 +00:00
|
|
|
}
|
2018-03-30 15:14:44 +00:00
|
|
|
if args.QueryOptions.AllowStale && args.MaxStaleDuration > 0 && args.MaxStaleDuration < out.LastContact {
|
|
|
|
args.AllowStale = false
|
|
|
|
args.MaxStaleDuration = 0
|
|
|
|
goto RETRY_ONCE
|
|
|
|
}
|
|
|
|
out.ConsistencyLevel = args.QueryOptions.ConsistencyLevel()
|
2019-06-17 14:51:50 +00:00
|
|
|
if out.NodeServices != nil {
|
2020-01-17 14:54:17 +00:00
|
|
|
s.agent.TranslateAddresses(args.Datacenter, out.NodeServices, TranslateAddressAcceptAny)
|
2016-06-15 18:02:51 +00:00
|
|
|
}
|
|
|
|
|
2018-02-07 15:02:10 +00:00
|
|
|
// TODO: The NodeServices object in IndexedNodeServices is a pointer to
|
|
|
|
// something that's created for each request by the state store way down
|
|
|
|
// in https://github.com/hashicorp/consul/blob/v1.0.4/agent/consul/state/catalog.go#L953-L963.
|
|
|
|
// Since this isn't a pointer to a real state store object, it's safe to
|
|
|
|
// modify out.NodeServices.Services in the loop below without making a
|
|
|
|
// copy here. Same for the Tags in each service entry, since that was
|
|
|
|
// created by .ToNodeService() which made a copy. This is safe as-is but
|
|
|
|
// this whole business is tricky and subtle. See #3867 for more context.
|
|
|
|
|
2017-04-28 01:22:07 +00:00
|
|
|
// Use empty list instead of nil
|
|
|
|
if out.NodeServices != nil {
|
|
|
|
for _, s := range out.NodeServices.Services {
|
|
|
|
if s.Tags == nil {
|
|
|
|
s.Tags = make([]string, 0)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-12-22 04:30:29 +00:00
|
|
|
metrics.IncrCounterWithLabels([]string{"client", "api", "success", "catalog_node_services"}, 1,
|
|
|
|
[]metrics.Label{{Name: "node", Value: s.nodeName()}})
|
2014-04-21 19:40:11 +00:00
|
|
|
return out.NodeServices, nil
|
2013-12-24 19:55:14 +00:00
|
|
|
}
|
2020-01-24 14:27:25 +00:00
|
|
|
|
2020-09-04 18:42:15 +00:00
|
|
|
func (s *HTTPHandlers) CatalogNodeServiceList(resp http.ResponseWriter, req *http.Request) (interface{}, error) {
|
2020-01-24 14:27:25 +00:00
|
|
|
metrics.IncrCounterWithLabels([]string{"client", "api", "catalog_node_service_list"}, 1,
|
|
|
|
[]metrics.Label{{Name: "node", Value: s.nodeName()}})
|
|
|
|
|
|
|
|
// Set default Datacenter
|
|
|
|
args := structs.NodeSpecificRequest{}
|
|
|
|
if err := s.parseEntMeta(req, &args.EnterpriseMeta); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if done := s.parse(resp, req, &args.Datacenter, &args.QueryOptions); done {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Pull out the node name
|
|
|
|
args.Node = strings.TrimPrefix(req.URL.Path, "/v1/catalog/node-services/")
|
|
|
|
if args.Node == "" {
|
|
|
|
resp.WriteHeader(http.StatusBadRequest)
|
|
|
|
fmt.Fprint(resp, "Missing node name")
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Make the RPC request
|
|
|
|
var out structs.IndexedNodeServiceList
|
|
|
|
defer setMeta(resp, &out.QueryMeta)
|
|
|
|
RETRY_ONCE:
|
|
|
|
if err := s.agent.RPC("Catalog.NodeServiceList", &args, &out); err != nil {
|
|
|
|
metrics.IncrCounterWithLabels([]string{"client", "rpc", "error", "catalog_node_service_list"}, 1,
|
|
|
|
[]metrics.Label{{Name: "node", Value: s.nodeName()}})
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if args.QueryOptions.AllowStale && args.MaxStaleDuration > 0 && args.MaxStaleDuration < out.LastContact {
|
|
|
|
args.AllowStale = false
|
|
|
|
args.MaxStaleDuration = 0
|
|
|
|
goto RETRY_ONCE
|
|
|
|
}
|
|
|
|
out.ConsistencyLevel = args.QueryOptions.ConsistencyLevel()
|
|
|
|
s.agent.TranslateAddresses(args.Datacenter, &out.NodeServices, TranslateAddressAcceptAny)
|
|
|
|
|
|
|
|
// Use empty list instead of nil
|
|
|
|
for _, s := range out.NodeServices.Services {
|
|
|
|
if s.Tags == nil {
|
|
|
|
s.Tags = make([]string, 0)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
metrics.IncrCounterWithLabels([]string{"client", "api", "success", "catalog_node_service_list"}, 1,
|
|
|
|
[]metrics.Label{{Name: "node", Value: s.nodeName()}})
|
|
|
|
return &out.NodeServices, nil
|
|
|
|
}
|
2020-06-12 05:30:21 +00:00
|
|
|
|
2020-09-04 18:42:15 +00:00
|
|
|
func (s *HTTPHandlers) CatalogGatewayServices(resp http.ResponseWriter, req *http.Request) (interface{}, error) {
|
2020-06-12 05:30:21 +00:00
|
|
|
metrics.IncrCounterWithLabels([]string{"client", "api", "catalog_gateway_services"}, 1,
|
|
|
|
[]metrics.Label{{Name: "node", Value: s.nodeName()}})
|
|
|
|
|
|
|
|
var args structs.ServiceSpecificRequest
|
|
|
|
|
|
|
|
if err := s.parseEntMetaNoWildcard(req, &args.EnterpriseMeta); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if done := s.parse(resp, req, &args.Datacenter, &args.QueryOptions); done {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Pull out the gateway's service name
|
|
|
|
args.ServiceName = strings.TrimPrefix(req.URL.Path, "/v1/catalog/gateway-services/")
|
|
|
|
if args.ServiceName == "" {
|
|
|
|
resp.WriteHeader(http.StatusBadRequest)
|
|
|
|
fmt.Fprint(resp, "Missing gateway name")
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Make the RPC request
|
|
|
|
var out structs.IndexedGatewayServices
|
|
|
|
defer setMeta(resp, &out.QueryMeta)
|
|
|
|
RETRY_ONCE:
|
|
|
|
if err := s.agent.RPC("Catalog.GatewayServices", &args, &out); err != nil {
|
|
|
|
metrics.IncrCounterWithLabels([]string{"client", "rpc", "error", "catalog_gateway_services"}, 1,
|
|
|
|
[]metrics.Label{{Name: "node", Value: s.nodeName()}})
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if args.QueryOptions.AllowStale && args.MaxStaleDuration > 0 && args.MaxStaleDuration < out.LastContact {
|
|
|
|
args.AllowStale = false
|
|
|
|
args.MaxStaleDuration = 0
|
|
|
|
goto RETRY_ONCE
|
|
|
|
}
|
|
|
|
out.ConsistencyLevel = args.QueryOptions.ConsistencyLevel()
|
|
|
|
|
2020-06-12 20:44:36 +00:00
|
|
|
metrics.IncrCounterWithLabels([]string{"client", "api", "success", "catalog_gateway_services"}, 1,
|
|
|
|
[]metrics.Label{{Name: "node", Value: s.nodeName()}})
|
2020-06-12 05:30:21 +00:00
|
|
|
return out.Services, nil
|
|
|
|
}
|