2015-09-06 21:18:11 +00:00
|
|
|
package agent
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
2015-09-07 02:35:05 +00:00
|
|
|
"strconv"
|
2015-09-06 21:18:11 +00:00
|
|
|
"strings"
|
|
|
|
|
|
|
|
"github.com/hashicorp/nomad/nomad/structs"
|
|
|
|
)
|
|
|
|
|
|
|
|
func (s *HTTPServer) NodesRequest(resp http.ResponseWriter, req *http.Request) (interface{}, error) {
|
|
|
|
if req.Method != "GET" {
|
|
|
|
return nil, CodedError(405, ErrInvalidMethod)
|
|
|
|
}
|
|
|
|
|
2015-09-06 21:31:17 +00:00
|
|
|
args := structs.NodeListRequest{}
|
|
|
|
if s.parse(resp, req, &args.Region, &args.QueryOptions) {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var out structs.NodeListResponse
|
2015-09-07 03:31:32 +00:00
|
|
|
if err := s.agent.RPC("Node.List", &args, &out); err != nil {
|
2015-09-06 21:31:17 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
setMeta(resp, &out.QueryMeta)
|
2015-09-07 17:03:10 +00:00
|
|
|
if out.Nodes == nil {
|
|
|
|
out.Nodes = make([]*structs.NodeListStub, 0)
|
|
|
|
}
|
2015-09-06 21:31:17 +00:00
|
|
|
return out.Nodes, nil
|
2015-09-06 21:18:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s *HTTPServer) NodeSpecificRequest(resp http.ResponseWriter, req *http.Request) (interface{}, error) {
|
|
|
|
path := strings.TrimPrefix(req.URL.Path, "/v1/node/")
|
|
|
|
switch {
|
|
|
|
case strings.HasSuffix(path, "/evaluate"):
|
|
|
|
nodeName := strings.TrimSuffix(path, "/evaluate")
|
|
|
|
return s.nodeForceEvaluate(resp, req, nodeName)
|
|
|
|
case strings.HasSuffix(path, "/allocations"):
|
|
|
|
nodeName := strings.TrimSuffix(path, "/allocations")
|
|
|
|
return s.nodeAllocations(resp, req, nodeName)
|
|
|
|
case strings.HasSuffix(path, "/drain"):
|
|
|
|
nodeName := strings.TrimSuffix(path, "/drain")
|
|
|
|
return s.nodeToggleDrain(resp, req, nodeName)
|
|
|
|
default:
|
|
|
|
return s.nodeQuery(resp, req, path)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *HTTPServer) nodeForceEvaluate(resp http.ResponseWriter, req *http.Request,
|
|
|
|
nodeID string) (interface{}, error) {
|
|
|
|
if req.Method != "PUT" && req.Method != "POST" {
|
|
|
|
return nil, CodedError(405, ErrInvalidMethod)
|
|
|
|
}
|
|
|
|
args := structs.NodeEvaluateRequest{
|
|
|
|
NodeID: nodeID,
|
|
|
|
}
|
|
|
|
s.parseRegion(req, &args.Region)
|
|
|
|
|
|
|
|
var out structs.NodeUpdateResponse
|
2015-09-07 03:31:32 +00:00
|
|
|
if err := s.agent.RPC("Node.Evaluate", &args, &out); err != nil {
|
2015-09-06 21:18:11 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
setIndex(resp, out.Index)
|
|
|
|
return out, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *HTTPServer) nodeAllocations(resp http.ResponseWriter, req *http.Request,
|
|
|
|
nodeID string) (interface{}, error) {
|
|
|
|
if req.Method != "GET" {
|
|
|
|
return nil, CodedError(405, ErrInvalidMethod)
|
|
|
|
}
|
|
|
|
args := structs.NodeSpecificRequest{
|
|
|
|
NodeID: nodeID,
|
|
|
|
}
|
|
|
|
if s.parse(resp, req, &args.Region, &args.QueryOptions) {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var out structs.NodeAllocsResponse
|
2015-09-07 03:31:32 +00:00
|
|
|
if err := s.agent.RPC("Node.GetAllocs", &args, &out); err != nil {
|
2015-09-06 21:18:11 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
setMeta(resp, &out.QueryMeta)
|
2015-09-07 17:03:10 +00:00
|
|
|
if out.Allocs == nil {
|
|
|
|
out.Allocs = make([]*structs.Allocation, 0)
|
|
|
|
}
|
2015-09-06 21:18:11 +00:00
|
|
|
return out.Allocs, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *HTTPServer) nodeToggleDrain(resp http.ResponseWriter, req *http.Request,
|
2015-09-07 03:03:59 +00:00
|
|
|
nodeID string) (interface{}, error) {
|
2015-09-06 21:18:11 +00:00
|
|
|
if req.Method != "PUT" && req.Method != "POST" {
|
|
|
|
return nil, CodedError(405, ErrInvalidMethod)
|
|
|
|
}
|
|
|
|
|
2015-09-07 02:35:05 +00:00
|
|
|
// Get the enable value
|
|
|
|
enableRaw := req.URL.Query().Get("enable")
|
|
|
|
if enableRaw == "" {
|
|
|
|
return nil, CodedError(400, "missing enable value")
|
|
|
|
}
|
|
|
|
enable, err := strconv.ParseBool(enableRaw)
|
|
|
|
if err != nil {
|
|
|
|
return nil, CodedError(400, "invalid enable value")
|
|
|
|
}
|
|
|
|
|
2015-09-07 03:03:59 +00:00
|
|
|
args := structs.NodeUpdateDrainRequest{
|
|
|
|
NodeID: nodeID,
|
|
|
|
Drain: enable,
|
|
|
|
}
|
|
|
|
s.parseRegion(req, &args.Region)
|
|
|
|
|
|
|
|
var out structs.NodeDrainUpdateResponse
|
2015-09-07 03:31:32 +00:00
|
|
|
if err := s.agent.RPC("Node.UpdateDrain", &args, &out); err != nil {
|
2015-09-07 03:03:59 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
setIndex(resp, out.Index)
|
|
|
|
return out, nil
|
2015-09-06 21:18:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s *HTTPServer) nodeQuery(resp http.ResponseWriter, req *http.Request,
|
|
|
|
nodeID string) (interface{}, error) {
|
|
|
|
if req.Method != "GET" {
|
|
|
|
return nil, CodedError(405, ErrInvalidMethod)
|
|
|
|
}
|
|
|
|
args := structs.NodeSpecificRequest{
|
|
|
|
NodeID: nodeID,
|
|
|
|
}
|
|
|
|
if s.parse(resp, req, &args.Region, &args.QueryOptions) {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var out structs.SingleNodeResponse
|
2015-09-07 03:31:32 +00:00
|
|
|
if err := s.agent.RPC("Node.GetNode", &args, &out); err != nil {
|
2015-09-06 21:18:11 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
setMeta(resp, &out.QueryMeta)
|
|
|
|
if out.Node == nil {
|
|
|
|
return nil, CodedError(404, "node not found")
|
|
|
|
}
|
|
|
|
return out.Node, nil
|
|
|
|
}
|