2017-10-11 12:51:19 +00:00
|
|
|
package flags
|
|
|
|
|
|
|
|
import (
|
|
|
|
"flag"
|
2019-04-26 17:49:28 +00:00
|
|
|
"io/ioutil"
|
|
|
|
"strings"
|
2017-10-11 12:51:19 +00:00
|
|
|
|
|
|
|
"github.com/hashicorp/consul/api"
|
|
|
|
)
|
|
|
|
|
|
|
|
type HTTPFlags struct {
|
|
|
|
// client api flags
|
|
|
|
address StringValue
|
|
|
|
token StringValue
|
2019-04-26 17:49:28 +00:00
|
|
|
tokenFile StringValue
|
2017-10-11 12:51:19 +00:00
|
|
|
caFile StringValue
|
|
|
|
caPath StringValue
|
|
|
|
certFile StringValue
|
|
|
|
keyFile StringValue
|
|
|
|
tlsServerName StringValue
|
|
|
|
|
|
|
|
// server flags
|
|
|
|
datacenter StringValue
|
|
|
|
stale BoolValue
|
2019-12-06 16:14:56 +00:00
|
|
|
|
|
|
|
// namespace flags
|
|
|
|
namespace StringValue
|
2017-10-11 12:51:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (f *HTTPFlags) ClientFlags() *flag.FlagSet {
|
|
|
|
fs := flag.NewFlagSet("", flag.ContinueOnError)
|
|
|
|
fs.Var(&f.address, "http-addr",
|
|
|
|
"The `address` and port of the Consul HTTP agent. The value can be an IP "+
|
|
|
|
"address or DNS address, but it must also include the port. This can "+
|
|
|
|
"also be specified via the CONSUL_HTTP_ADDR environment variable. The "+
|
|
|
|
"default value is http://127.0.0.1:8500. The scheme can also be set to "+
|
|
|
|
"HTTPS by setting the environment variable CONSUL_HTTP_SSL=true.")
|
|
|
|
fs.Var(&f.token, "token",
|
|
|
|
"ACL token to use in the request. This can also be specified via the "+
|
|
|
|
"CONSUL_HTTP_TOKEN environment variable. If unspecified, the query will "+
|
|
|
|
"default to the token of the Consul agent at the HTTP address.")
|
2019-04-26 17:49:28 +00:00
|
|
|
fs.Var(&f.tokenFile, "token-file",
|
|
|
|
"File containing the ACL token to use in the request instead of one specified "+
|
|
|
|
"via the -token argument or CONSUL_HTTP_TOKEN environment variable. "+
|
|
|
|
"This can also be specified via the CONSUL_HTTP_TOKEN_FILE environment variable.")
|
2017-10-11 12:51:19 +00:00
|
|
|
fs.Var(&f.caFile, "ca-file",
|
|
|
|
"Path to a CA file to use for TLS when communicating with Consul. This "+
|
|
|
|
"can also be specified via the CONSUL_CACERT environment variable.")
|
|
|
|
fs.Var(&f.caPath, "ca-path",
|
|
|
|
"Path to a directory of CA certificates to use for TLS when communicating "+
|
|
|
|
"with Consul. This can also be specified via the CONSUL_CAPATH environment variable.")
|
|
|
|
fs.Var(&f.certFile, "client-cert",
|
|
|
|
"Path to a client cert file to use for TLS when 'verify_incoming' is enabled. This "+
|
|
|
|
"can also be specified via the CONSUL_CLIENT_CERT environment variable.")
|
|
|
|
fs.Var(&f.keyFile, "client-key",
|
|
|
|
"Path to a client key file to use for TLS when 'verify_incoming' is enabled. This "+
|
|
|
|
"can also be specified via the CONSUL_CLIENT_KEY environment variable.")
|
|
|
|
fs.Var(&f.tlsServerName, "tls-server-name",
|
|
|
|
"The server name to use as the SNI host when connecting via TLS. This "+
|
|
|
|
"can also be specified via the CONSUL_TLS_SERVER_NAME environment variable.")
|
|
|
|
return fs
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *HTTPFlags) ServerFlags() *flag.FlagSet {
|
|
|
|
fs := flag.NewFlagSet("", flag.ContinueOnError)
|
|
|
|
fs.Var(&f.datacenter, "datacenter",
|
|
|
|
"Name of the datacenter to query. If unspecified, this will default to "+
|
|
|
|
"the datacenter of the queried agent.")
|
|
|
|
fs.Var(&f.stale, "stale",
|
|
|
|
"Permit any Consul server (non-leader) to respond to this request. This "+
|
|
|
|
"allows for lower latency and higher throughput, but can result in "+
|
|
|
|
"stale data. This option has no effect on non-read operations. The "+
|
|
|
|
"default value is false.")
|
|
|
|
return fs
|
|
|
|
}
|
|
|
|
|
2019-12-06 16:14:56 +00:00
|
|
|
func (f *HTTPFlags) NamespaceFlags() *flag.FlagSet {
|
|
|
|
fs := flag.NewFlagSet("", flag.ContinueOnError)
|
2019-12-18 16:06:39 +00:00
|
|
|
fs.Var(&f.namespace, "namespace",
|
2020-02-05 20:43:25 +00:00
|
|
|
"Specifies the namespace to query. If not provided, the namespace will be inferred "+
|
2019-12-20 16:52:50 +00:00
|
|
|
"from the request's ACL token, or will default to the `default` namespace. "+
|
2020-06-23 16:57:30 +00:00
|
|
|
"Namespaces are a Consul Enterprise feature.")
|
2019-12-06 16:14:56 +00:00
|
|
|
return fs
|
|
|
|
}
|
|
|
|
|
2017-10-17 08:24:49 +00:00
|
|
|
func (f *HTTPFlags) Addr() string {
|
|
|
|
return f.address.String()
|
|
|
|
}
|
|
|
|
|
2017-10-11 12:51:19 +00:00
|
|
|
func (f *HTTPFlags) Datacenter() string {
|
|
|
|
return f.datacenter.String()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *HTTPFlags) Stale() bool {
|
|
|
|
if f.stale.v == nil {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
return *f.stale.v
|
|
|
|
}
|
|
|
|
|
2017-10-17 08:24:49 +00:00
|
|
|
func (f *HTTPFlags) Token() string {
|
|
|
|
return f.token.String()
|
|
|
|
}
|
|
|
|
|
2018-05-07 03:27:31 +00:00
|
|
|
func (f *HTTPFlags) SetToken(v string) error {
|
|
|
|
return f.token.Set(v)
|
|
|
|
}
|
|
|
|
|
2019-04-26 17:49:28 +00:00
|
|
|
func (f *HTTPFlags) TokenFile() string {
|
|
|
|
return f.tokenFile.String()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *HTTPFlags) SetTokenFile(v string) error {
|
|
|
|
return f.tokenFile.Set(v)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *HTTPFlags) ReadTokenFile() (string, error) {
|
|
|
|
tokenFile := f.tokenFile.String()
|
|
|
|
if tokenFile == "" {
|
|
|
|
return "", nil
|
|
|
|
}
|
|
|
|
|
|
|
|
data, err := ioutil.ReadFile(tokenFile)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
|
|
|
return strings.TrimSpace(string(data)), nil
|
|
|
|
}
|
|
|
|
|
2017-10-11 12:51:19 +00:00
|
|
|
func (f *HTTPFlags) APIClient() (*api.Client, error) {
|
|
|
|
c := api.DefaultConfig()
|
|
|
|
|
2018-02-05 23:00:04 +00:00
|
|
|
f.MergeOntoConfig(c)
|
|
|
|
|
|
|
|
return api.NewClient(c)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *HTTPFlags) MergeOntoConfig(c *api.Config) {
|
2017-10-11 12:51:19 +00:00
|
|
|
f.address.Merge(&c.Address)
|
|
|
|
f.token.Merge(&c.Token)
|
2019-04-26 17:49:28 +00:00
|
|
|
f.tokenFile.Merge(&c.TokenFile)
|
2017-10-11 12:51:19 +00:00
|
|
|
f.caFile.Merge(&c.TLSConfig.CAFile)
|
|
|
|
f.caPath.Merge(&c.TLSConfig.CAPath)
|
|
|
|
f.certFile.Merge(&c.TLSConfig.CertFile)
|
|
|
|
f.keyFile.Merge(&c.TLSConfig.KeyFile)
|
|
|
|
f.tlsServerName.Merge(&c.TLSConfig.Address)
|
|
|
|
f.datacenter.Merge(&c.Datacenter)
|
2019-11-25 17:57:35 +00:00
|
|
|
f.namespace.Merge(&c.Namespace)
|
2017-10-11 12:51:19 +00:00
|
|
|
}
|