2015-07-29 23:33:25 +00:00
|
|
|
package agent
|
|
|
|
|
|
|
|
import (
|
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"
|
2015-07-29 23:33:25 +00:00
|
|
|
"net/http"
|
2015-07-30 18:31:35 +00:00
|
|
|
"sort"
|
2017-10-26 12:24:42 +00:00
|
|
|
"strings"
|
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
|
|
|
|
2017-07-06 10:34:00 +00:00
|
|
|
"github.com/hashicorp/consul/agent/structs"
|
2015-07-29 23:33:25 +00:00
|
|
|
)
|
|
|
|
|
2017-11-28 21:57:45 +00:00
|
|
|
// checkCoordinateDisabled will return a standard response if coordinates are
|
|
|
|
// disabled. This returns true if they are disabled and we should not continue.
|
|
|
|
func (s *HTTPServer) checkCoordinateDisabled(resp http.ResponseWriter, req *http.Request) bool {
|
|
|
|
if !s.agent.config.DisableCoordinates {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2017-08-23 19:19:11 +00:00
|
|
|
resp.WriteHeader(http.StatusUnauthorized)
|
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, "Coordinate support disabled")
|
2017-11-28 21:57:45 +00:00
|
|
|
return true
|
2015-07-30 18:23:09 +00:00
|
|
|
}
|
|
|
|
|
2015-07-30 18:31:35 +00:00
|
|
|
// sorter wraps a coordinate list and implements the sort.Interface to sort by
|
|
|
|
// node name.
|
|
|
|
type sorter struct {
|
2015-10-23 22:19:14 +00:00
|
|
|
coordinates structs.Coordinates
|
2015-07-30 18:31:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// See sort.Interface.
|
|
|
|
func (s *sorter) Len() int {
|
|
|
|
return len(s.coordinates)
|
|
|
|
}
|
|
|
|
|
|
|
|
// See sort.Interface.
|
|
|
|
func (s *sorter) Swap(i, j int) {
|
|
|
|
s.coordinates[i], s.coordinates[j] = s.coordinates[j], s.coordinates[i]
|
|
|
|
}
|
|
|
|
|
|
|
|
// See sort.Interface.
|
|
|
|
func (s *sorter) Less(i, j int) bool {
|
|
|
|
return s.coordinates[i].Node < s.coordinates[j].Node
|
|
|
|
}
|
|
|
|
|
2015-07-29 23:33:25 +00:00
|
|
|
// CoordinateDatacenters returns the WAN nodes in each datacenter, along with
|
|
|
|
// raw network coordinates.
|
|
|
|
func (s *HTTPServer) CoordinateDatacenters(resp http.ResponseWriter, req *http.Request) (interface{}, error) {
|
2017-11-28 21:57:45 +00:00
|
|
|
if s.checkCoordinateDisabled(resp, req) {
|
|
|
|
return nil, nil
|
|
|
|
}
|
2017-09-26 06:11:19 +00:00
|
|
|
|
2015-07-29 23:33:25 +00:00
|
|
|
var out []structs.DatacenterMap
|
|
|
|
if err := s.agent.RPC("Coordinate.ListDatacenters", struct{}{}, &out); err != nil {
|
2015-07-30 18:31:35 +00:00
|
|
|
for i := range out {
|
|
|
|
sort.Sort(&sorter{out[i].Coordinates})
|
|
|
|
}
|
2015-07-29 23:33:25 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
2015-11-15 05:05:37 +00:00
|
|
|
|
|
|
|
// Use empty list instead of nil (these aren't really possible because
|
|
|
|
// Serf will give back a default coordinate and there's always one DC,
|
|
|
|
// but it's better to be explicit about what we want here).
|
2017-04-20 18:42:22 +00:00
|
|
|
for i := range out {
|
2015-11-15 05:05:37 +00:00
|
|
|
if out[i].Coordinates == nil {
|
|
|
|
out[i].Coordinates = make(structs.Coordinates, 0)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if out == nil {
|
|
|
|
out = make([]structs.DatacenterMap, 0)
|
|
|
|
}
|
2015-07-29 23:33:25 +00:00
|
|
|
return out, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// CoordinateNodes returns the LAN nodes in the given datacenter, along with
|
|
|
|
// raw network coordinates.
|
|
|
|
func (s *HTTPServer) CoordinateNodes(resp http.ResponseWriter, req *http.Request) (interface{}, error) {
|
2017-11-28 21:57:45 +00:00
|
|
|
if s.checkCoordinateDisabled(resp, req) {
|
|
|
|
return nil, nil
|
|
|
|
}
|
2017-09-26 06:11:19 +00:00
|
|
|
|
2015-07-29 23:33:25 +00:00
|
|
|
args := structs.DCSpecificRequest{}
|
|
|
|
if done := s.parse(resp, req, &args.Datacenter, &args.QueryOptions); done {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var out structs.IndexedCoordinates
|
|
|
|
defer setMeta(resp, &out.QueryMeta)
|
|
|
|
if err := s.agent.RPC("Coordinate.ListNodes", &args, &out); err != nil {
|
2015-07-30 18:31:35 +00:00
|
|
|
sort.Sort(&sorter{out.Coordinates})
|
2015-07-29 23:33:25 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
2015-11-15 05:05:37 +00:00
|
|
|
|
2017-10-31 22:08:14 +00:00
|
|
|
return filterCoordinates(req, out.Coordinates), nil
|
2017-10-26 12:24:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// CoordinateNode returns the LAN node in the given datacenter, along with
|
|
|
|
// raw network coordinates.
|
|
|
|
func (s *HTTPServer) CoordinateNode(resp http.ResponseWriter, req *http.Request) (interface{}, error) {
|
2017-11-28 21:57:45 +00:00
|
|
|
if s.checkCoordinateDisabled(resp, req) {
|
|
|
|
return nil, nil
|
|
|
|
}
|
2017-08-14 14:36:07 +00:00
|
|
|
|
2017-10-27 02:16:40 +00:00
|
|
|
node := strings.TrimPrefix(req.URL.Path, "/v1/coordinate/node/")
|
|
|
|
args := structs.NodeSpecificRequest{Node: node}
|
2017-10-26 12:24:42 +00:00
|
|
|
if done := s.parse(resp, req, &args.Datacenter, &args.QueryOptions); done {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var out structs.IndexedCoordinates
|
|
|
|
defer setMeta(resp, &out.QueryMeta)
|
2017-10-27 02:16:40 +00:00
|
|
|
if err := s.agent.RPC("Coordinate.Node", &args, &out); err != nil {
|
2017-10-26 12:24:42 +00:00
|
|
|
return nil, err
|
2017-08-14 14:36:07 +00:00
|
|
|
}
|
|
|
|
|
2017-10-31 22:08:14 +00:00
|
|
|
result := filterCoordinates(req, out.Coordinates)
|
|
|
|
if len(result) == 0 {
|
|
|
|
resp.WriteHeader(http.StatusNotFound)
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return result, nil
|
2017-10-26 12:24:42 +00:00
|
|
|
}
|
|
|
|
|
2017-10-31 22:08:14 +00:00
|
|
|
func filterCoordinates(req *http.Request, in structs.Coordinates) structs.Coordinates {
|
2017-10-26 12:24:42 +00:00
|
|
|
out := structs.Coordinates{}
|
|
|
|
|
|
|
|
if in == nil {
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
|
|
|
segment := ""
|
|
|
|
v, filterBySegment := req.URL.Query()["segment"]
|
|
|
|
if filterBySegment && len(v) > 0 {
|
|
|
|
segment = v[0]
|
2017-08-14 14:36:07 +00:00
|
|
|
}
|
|
|
|
|
2017-10-26 12:24:42 +00:00
|
|
|
for _, c := range in {
|
|
|
|
if filterBySegment && c.Segment != segment {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
out = append(out, c)
|
|
|
|
}
|
|
|
|
return out
|
2015-07-29 23:33:25 +00:00
|
|
|
}
|
2017-10-24 00:44:50 +00:00
|
|
|
|
|
|
|
// CoordinateUpdate inserts or updates the LAN coordinate of a node.
|
|
|
|
func (s *HTTPServer) CoordinateUpdate(resp http.ResponseWriter, req *http.Request) (interface{}, error) {
|
2017-11-28 21:57:45 +00:00
|
|
|
if s.checkCoordinateDisabled(resp, req) {
|
|
|
|
return nil, nil
|
|
|
|
}
|
2017-10-24 00:44:50 +00:00
|
|
|
|
|
|
|
args := structs.CoordinateUpdateRequest{}
|
2019-10-29 18:13:36 +00:00
|
|
|
if err := decodeBody(req.Body, &args); err != nil {
|
2017-10-24 00:44:50 +00:00
|
|
|
resp.WriteHeader(http.StatusBadRequest)
|
|
|
|
fmt.Fprintf(resp, "Request decode failed: %v", err)
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
s.parseDC(req, &args.Datacenter)
|
2018-02-15 19:58:02 +00:00
|
|
|
s.parseToken(req, &args.Token)
|
2017-10-24 00:44:50 +00:00
|
|
|
|
|
|
|
var reply struct{}
|
|
|
|
if err := s.agent.RPC("Coordinate.Update", &args, &reply); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil, nil
|
|
|
|
}
|