2015-03-04 21:10:10 +00:00
|
|
|
package api
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
2015-03-11 19:02:11 +00:00
|
|
|
"net/http/cookiejar"
|
2015-03-09 18:38:50 +00:00
|
|
|
"net/url"
|
2015-03-04 21:10:10 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// Config is used to configure the creation of the client.
|
|
|
|
type Config struct {
|
|
|
|
// Address is the address of the Vault server. This should be a complete
|
|
|
|
// URL such as "http://vault.example.com". If you need a custom SSL
|
|
|
|
// cert or want to enable insecure mode, you need to specify a custom
|
|
|
|
// HttpClient.
|
|
|
|
Address string
|
|
|
|
|
|
|
|
// HttpClient is the HTTP client to use. http.DefaultClient will be
|
2015-03-11 19:02:11 +00:00
|
|
|
// used if not specified. The HTTP client must have the cookie jar set
|
|
|
|
// to be able to store cookies, otherwise authentication (login) will
|
|
|
|
// not work properly. If the jar is nil, a default empty cookie jar
|
|
|
|
// will be set.
|
2015-03-04 21:10:10 +00:00
|
|
|
HttpClient *http.Client
|
|
|
|
}
|
|
|
|
|
|
|
|
// DefaultConfig returns a default configuration for the client. It is
|
|
|
|
// safe to modify the return value of this function.
|
|
|
|
func DefaultConfig() *Config {
|
|
|
|
config := &Config{
|
|
|
|
Address: "https://127.0.0.1:8200",
|
|
|
|
HttpClient: http.DefaultClient,
|
|
|
|
}
|
|
|
|
|
|
|
|
return config
|
|
|
|
}
|
|
|
|
|
|
|
|
// Client is the client to the Vault API. Create a client with
|
|
|
|
// NewClient.
|
|
|
|
type Client struct {
|
2015-03-09 18:38:50 +00:00
|
|
|
addr *url.URL
|
2015-03-04 21:10:10 +00:00
|
|
|
config Config
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewClient returns a new client for the given configuration.
|
|
|
|
func NewClient(c Config) (*Client, error) {
|
2015-03-09 18:38:50 +00:00
|
|
|
u, err := url.Parse(c.Address)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2015-03-11 19:02:11 +00:00
|
|
|
// Make a copy of the HTTP client so we can configure it without
|
|
|
|
// affecting the original
|
|
|
|
//
|
|
|
|
// If no cookie jar is set on the client, we set a default empty
|
|
|
|
// cookie jar.
|
|
|
|
client := *c.HttpClient
|
|
|
|
if client.Jar == nil {
|
|
|
|
jar, err := cookiejar.New(&cookiejar.Options{})
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
client.Jar = jar
|
|
|
|
}
|
|
|
|
|
2015-03-04 21:10:10 +00:00
|
|
|
return &Client{
|
2015-03-09 18:38:50 +00:00
|
|
|
addr: u,
|
2015-03-04 21:10:10 +00:00
|
|
|
config: c,
|
|
|
|
}, nil
|
|
|
|
}
|
2015-03-09 18:38:50 +00:00
|
|
|
|
|
|
|
// NewRequest creates a new raw request object to query the Vault server
|
|
|
|
// configured for this client. This is an advanced method and generally
|
|
|
|
// doesn't need to be called externally.
|
|
|
|
func (c *Client) NewRequest(method, path string) *Request {
|
|
|
|
return &Request{
|
|
|
|
Method: method,
|
|
|
|
URL: &url.URL{
|
|
|
|
Scheme: c.addr.Scheme,
|
|
|
|
Host: c.addr.Host,
|
|
|
|
Path: path,
|
|
|
|
},
|
|
|
|
Params: make(map[string][]string),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// RawRequest performs the raw request given. This request may be against
|
|
|
|
// a Vault server not configured with this client. This is an advanced operation
|
|
|
|
// that generally won't need to be called externally.
|
2015-03-11 18:33:20 +00:00
|
|
|
func (c *Client) RawRequest(r *Request) (*Response, error) {
|
2015-03-09 18:38:50 +00:00
|
|
|
req, err := r.ToHTTP()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
resp, err := c.config.HttpClient.Do(req)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2015-03-11 18:46:07 +00:00
|
|
|
result := &Response{Response: resp}
|
|
|
|
if err := result.Error(); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return result, nil
|
2015-03-09 18:38:50 +00:00
|
|
|
}
|