2016-03-23 20:53:09 +01:00
|
|
|
package fastly
|
|
|
|
|
|
|
|
import (
|
2016-04-20 20:43:54 +02:00
|
|
|
"fmt"
|
|
|
|
"sort"
|
2016-03-23 20:53:09 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
// HealthCheck represents a health check response from the Fastly API.
|
|
|
|
type HealthCheck struct {
|
2016-04-20 20:43:54 +02:00
|
|
|
ServiceID string `mapstructure:"service_id"`
|
|
|
|
Version string `mapstructure:"version"`
|
|
|
|
|
|
|
|
Name string `mapstructure:"name"`
|
|
|
|
Method string `mapstructure:"method"`
|
|
|
|
Host string `mapstructure:"host"`
|
|
|
|
Path string `mapstructure:"path"`
|
|
|
|
HTTPVersion string `mapstructure:"http_version"`
|
|
|
|
Timeout uint `mapstructure:"timeout"`
|
|
|
|
CheckInterval uint `mapstructure:"check_interval"`
|
|
|
|
ExpectedResponse uint `mapstructure:"expected_response"`
|
|
|
|
Window uint `mapstructure:"window"`
|
|
|
|
Threshold uint `mapstructure:"threshold"`
|
|
|
|
Initial uint `mapstructure:"initial"`
|
2016-03-23 20:53:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// healthChecksByName is a sortable list of health checks.
|
|
|
|
type healthChecksByName []*HealthCheck
|
|
|
|
|
|
|
|
// Len, Swap, and Less implement the sortable interface.
|
|
|
|
func (s healthChecksByName) Len() int { return len(s) }
|
|
|
|
func (s healthChecksByName) Swap(i, j int) { s[i], s[j] = s[j], s[i] }
|
|
|
|
func (s healthChecksByName) Less(i, j int) bool {
|
2016-04-20 20:43:54 +02:00
|
|
|
return s[i].Name < s[j].Name
|
2016-03-23 20:53:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// ListHealthChecksInput is used as input to the ListHealthChecks function.
|
|
|
|
type ListHealthChecksInput struct {
|
2016-04-20 20:43:54 +02:00
|
|
|
// Service is the ID of the service (required).
|
|
|
|
Service string
|
2016-03-23 20:53:09 +01:00
|
|
|
|
2016-04-20 20:43:54 +02:00
|
|
|
// Version is the specific configuration version (required).
|
|
|
|
Version string
|
2016-03-23 20:53:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// ListHealthChecks returns the list of health checks for the configuration
|
|
|
|
// version.
|
|
|
|
func (c *Client) ListHealthChecks(i *ListHealthChecksInput) ([]*HealthCheck, error) {
|
2016-04-20 20:43:54 +02:00
|
|
|
if i.Service == "" {
|
|
|
|
return nil, ErrMissingService
|
|
|
|
}
|
|
|
|
|
|
|
|
if i.Version == "" {
|
|
|
|
return nil, ErrMissingVersion
|
|
|
|
}
|
|
|
|
|
|
|
|
path := fmt.Sprintf("/service/%s/version/%s/healthcheck", i.Service, i.Version)
|
|
|
|
resp, err := c.Get(path, nil)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
var hcs []*HealthCheck
|
|
|
|
if err := decodeJSON(&hcs, resp.Body); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
sort.Stable(healthChecksByName(hcs))
|
|
|
|
return hcs, nil
|
2016-03-23 20:53:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// CreateHealthCheckInput is used as input to the CreateHealthCheck function.
|
|
|
|
type CreateHealthCheckInput struct {
|
2016-04-20 20:43:54 +02:00
|
|
|
// Service is the ID of the service. Version is the specific configuration
|
|
|
|
// version. Both fields are required.
|
|
|
|
Service string
|
|
|
|
Version string
|
|
|
|
|
|
|
|
Name string `form:"name,omitempty"`
|
|
|
|
Method string `form:"method,omitempty"`
|
|
|
|
Host string `form:"host,omitempty"`
|
|
|
|
Path string `form:"path,omitempty"`
|
|
|
|
HTTPVersion string `form:"http_version,omitempty"`
|
|
|
|
Timeout uint `form:"timeout,omitempty"`
|
|
|
|
CheckInterval uint `form:"check_interval,omitempty"`
|
|
|
|
ExpectedResponse uint `form:"expected_response,omitempty"`
|
|
|
|
Window uint `form:"window,omitempty"`
|
|
|
|
Threshold uint `form:"threshold,omitempty"`
|
|
|
|
Initial uint `form:"initial,omitempty"`
|
2016-03-23 20:53:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// CreateHealthCheck creates a new Fastly health check.
|
|
|
|
func (c *Client) CreateHealthCheck(i *CreateHealthCheckInput) (*HealthCheck, error) {
|
2016-04-20 20:43:54 +02:00
|
|
|
if i.Service == "" {
|
|
|
|
return nil, ErrMissingService
|
|
|
|
}
|
|
|
|
|
|
|
|
if i.Version == "" {
|
|
|
|
return nil, ErrMissingVersion
|
|
|
|
}
|
|
|
|
|
|
|
|
path := fmt.Sprintf("/service/%s/version/%s/healthcheck", i.Service, i.Version)
|
|
|
|
resp, err := c.PostForm(path, i, nil)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
var h *HealthCheck
|
|
|
|
if err := decodeJSON(&h, resp.Body); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return h, nil
|
2016-03-23 20:53:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// GetHealthCheckInput is used as input to the GetHealthCheck function.
|
|
|
|
type GetHealthCheckInput struct {
|
2016-04-20 20:43:54 +02:00
|
|
|
// Service is the ID of the service. Version is the specific configuration
|
|
|
|
// version. Both fields are required.
|
|
|
|
Service string
|
|
|
|
Version string
|
2016-03-23 20:53:09 +01:00
|
|
|
|
2016-04-20 20:43:54 +02:00
|
|
|
// Name is the name of the health check to fetch.
|
|
|
|
Name string
|
2016-03-23 20:53:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// GetHealthCheck gets the health check configuration with the given parameters.
|
|
|
|
func (c *Client) GetHealthCheck(i *GetHealthCheckInput) (*HealthCheck, error) {
|
2016-04-20 20:43:54 +02:00
|
|
|
if i.Service == "" {
|
|
|
|
return nil, ErrMissingService
|
|
|
|
}
|
|
|
|
|
|
|
|
if i.Version == "" {
|
|
|
|
return nil, ErrMissingVersion
|
|
|
|
}
|
|
|
|
|
|
|
|
if i.Name == "" {
|
|
|
|
return nil, ErrMissingName
|
|
|
|
}
|
|
|
|
|
|
|
|
path := fmt.Sprintf("/service/%s/version/%s/healthcheck/%s", i.Service, i.Version, i.Name)
|
|
|
|
resp, err := c.Get(path, nil)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
var h *HealthCheck
|
|
|
|
if err := decodeJSON(&h, resp.Body); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return h, nil
|
2016-03-23 20:53:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// UpdateHealthCheckInput is used as input to the UpdateHealthCheck function.
|
|
|
|
type UpdateHealthCheckInput struct {
|
2016-04-20 20:43:54 +02:00
|
|
|
// Service is the ID of the service. Version is the specific configuration
|
|
|
|
// version. Both fields are required.
|
|
|
|
Service string
|
|
|
|
Version string
|
|
|
|
|
|
|
|
// Name is the name of the health check to update.
|
|
|
|
Name string
|
|
|
|
|
|
|
|
NewName string `form:"name,omitempty"`
|
|
|
|
Method string `form:"method,omitempty"`
|
|
|
|
Host string `form:"host,omitempty"`
|
|
|
|
Path string `form:"path,omitempty"`
|
|
|
|
HTTPVersion string `form:"http_version,omitempty"`
|
|
|
|
Timeout uint `form:"timeout,omitempty"`
|
|
|
|
CheckInterval uint `form:"check_interval,omitempty"`
|
|
|
|
ExpectedResponse uint `form:"expected_response,omitempty"`
|
|
|
|
Window uint `form:"window,omitempty"`
|
|
|
|
Threshold uint `form:"threshold,omitempty"`
|
|
|
|
Initial uint `form:"initial,omitempty"`
|
2016-03-23 20:53:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// UpdateHealthCheck updates a specific health check.
|
|
|
|
func (c *Client) UpdateHealthCheck(i *UpdateHealthCheckInput) (*HealthCheck, error) {
|
2016-04-20 20:43:54 +02:00
|
|
|
if i.Service == "" {
|
|
|
|
return nil, ErrMissingService
|
|
|
|
}
|
|
|
|
|
|
|
|
if i.Version == "" {
|
|
|
|
return nil, ErrMissingVersion
|
|
|
|
}
|
|
|
|
|
|
|
|
if i.Name == "" {
|
|
|
|
return nil, ErrMissingName
|
|
|
|
}
|
|
|
|
|
|
|
|
path := fmt.Sprintf("/service/%s/version/%s/healthcheck/%s", i.Service, i.Version, i.Name)
|
|
|
|
resp, err := c.PutForm(path, i, nil)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
var h *HealthCheck
|
|
|
|
if err := decodeJSON(&h, resp.Body); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return h, nil
|
2016-03-23 20:53:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// DeleteHealthCheckInput is the input parameter to DeleteHealthCheck.
|
|
|
|
type DeleteHealthCheckInput struct {
|
2016-04-20 20:43:54 +02:00
|
|
|
// Service is the ID of the service. Version is the specific configuration
|
|
|
|
// version. Both fields are required.
|
|
|
|
Service string
|
|
|
|
Version string
|
2016-03-23 20:53:09 +01:00
|
|
|
|
2016-04-20 20:43:54 +02:00
|
|
|
// Name is the name of the health check to delete (required).
|
|
|
|
Name string
|
2016-03-23 20:53:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// DeleteHealthCheck deletes the given health check.
|
|
|
|
func (c *Client) DeleteHealthCheck(i *DeleteHealthCheckInput) error {
|
2016-04-20 20:43:54 +02:00
|
|
|
if i.Service == "" {
|
|
|
|
return ErrMissingService
|
|
|
|
}
|
|
|
|
|
|
|
|
if i.Version == "" {
|
|
|
|
return ErrMissingVersion
|
|
|
|
}
|
|
|
|
|
|
|
|
if i.Name == "" {
|
|
|
|
return ErrMissingName
|
|
|
|
}
|
|
|
|
|
|
|
|
path := fmt.Sprintf("/service/%s/version/%s/healthcheck/%s", i.Service, i.Version, i.Name)
|
|
|
|
resp, err := c.Delete(path, nil)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
var r *statusResp
|
|
|
|
if err := decodeJSON(&r, resp.Body); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if !r.Ok() {
|
|
|
|
return fmt.Errorf("Not Ok")
|
|
|
|
}
|
|
|
|
return nil
|
2016-03-23 20:53:09 +01:00
|
|
|
}
|