2018-03-17 04:39:26 +00:00
|
|
|
package agent
|
|
|
|
|
|
|
|
import (
|
2018-03-21 19:42:42 +00:00
|
|
|
"fmt"
|
2018-03-17 04:39:26 +00:00
|
|
|
"net/http"
|
|
|
|
|
2019-11-21 17:40:29 +00:00
|
|
|
"github.com/hashicorp/consul/agent/consul"
|
2018-03-17 04:39:26 +00:00
|
|
|
"github.com/hashicorp/consul/agent/structs"
|
|
|
|
)
|
|
|
|
|
|
|
|
// GET /v1/connect/ca/roots
|
|
|
|
func (s *HTTPServer) ConnectCARoots(resp http.ResponseWriter, req *http.Request) (interface{}, error) {
|
|
|
|
var args structs.DCSpecificRequest
|
|
|
|
if done := s.parse(resp, req, &args.Datacenter, &args.QueryOptions); done {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var reply structs.IndexedCARoots
|
|
|
|
defer setMeta(resp, &reply.QueryMeta)
|
|
|
|
if err := s.agent.RPC("ConnectCA.Roots", &args, &reply); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2018-03-19 05:07:52 +00:00
|
|
|
return reply, nil
|
2018-03-17 04:39:26 +00:00
|
|
|
}
|
2018-03-21 19:42:42 +00:00
|
|
|
|
|
|
|
// /v1/connect/ca/configuration
|
|
|
|
func (s *HTTPServer) ConnectCAConfiguration(resp http.ResponseWriter, req *http.Request) (interface{}, error) {
|
|
|
|
switch req.Method {
|
2018-04-09 04:59:08 +00:00
|
|
|
case "GET":
|
|
|
|
return s.ConnectCAConfigurationGet(resp, req)
|
|
|
|
|
2018-03-21 19:42:42 +00:00
|
|
|
case "PUT":
|
|
|
|
return s.ConnectCAConfigurationSet(resp, req)
|
|
|
|
|
|
|
|
default:
|
|
|
|
return nil, MethodNotAllowedError{req.Method, []string{"GET", "POST"}}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-09 04:59:08 +00:00
|
|
|
// GEt /v1/connect/ca/configuration
|
|
|
|
func (s *HTTPServer) ConnectCAConfigurationGet(resp http.ResponseWriter, req *http.Request) (interface{}, error) {
|
|
|
|
// Method is tested in ConnectCAConfiguration
|
|
|
|
var args structs.DCSpecificRequest
|
|
|
|
if done := s.parse(resp, req, &args.Datacenter, &args.QueryOptions); done {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var reply structs.CAConfiguration
|
|
|
|
err := s.agent.RPC("ConnectCA.ConfigurationGet", &args, &reply)
|
2018-05-25 17:28:18 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return reply, nil
|
2018-04-09 04:59:08 +00:00
|
|
|
}
|
|
|
|
|
2018-03-21 19:42:42 +00:00
|
|
|
// PUT /v1/connect/ca/configuration
|
|
|
|
func (s *HTTPServer) ConnectCAConfigurationSet(resp http.ResponseWriter, req *http.Request) (interface{}, error) {
|
|
|
|
// Method is tested in ConnectCAConfiguration
|
|
|
|
|
2018-04-09 04:59:08 +00:00
|
|
|
var args structs.CARequest
|
|
|
|
s.parseDC(req, &args.Datacenter)
|
|
|
|
s.parseToken(req, &args.Token)
|
2019-10-29 18:13:36 +00:00
|
|
|
if err := decodeBody(req.Body, &args.Config); err != nil {
|
2019-11-11 21:36:22 +00:00
|
|
|
return nil, BadRequestError{
|
|
|
|
Reason: fmt.Sprintf("Request decode failed: %v", err),
|
|
|
|
}
|
2018-03-21 19:42:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var reply interface{}
|
|
|
|
err := s.agent.RPC("ConnectCA.ConfigurationSet", &args, &reply)
|
2019-11-21 17:40:29 +00:00
|
|
|
if err != nil && err.Error() == consul.ErrStateReadOnly.Error() {
|
|
|
|
return nil, BadRequestError{
|
|
|
|
Reason: "Provider State is read-only. It must be omitted" +
|
|
|
|
" or identical to the current value",
|
|
|
|
}
|
|
|
|
}
|
2018-03-21 19:42:42 +00:00
|
|
|
return nil, err
|
|
|
|
}
|