435c0d9fc8
This PR switches the Nomad repository from using govendor to Go modules for managing dependencies. Aspects of the Nomad workflow remain pretty much the same. The usual Makefile targets should continue to work as they always did. The API submodule simply defers to the parent Nomad version on the repository, keeping the semantics of API versioning that currently exists.
65 lines
1.5 KiB
Go
65 lines
1.5 KiB
Go
package linodego
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
)
|
|
|
|
// Region represents a linode region object
|
|
type Region struct {
|
|
ID string `json:"id"`
|
|
Country string `json:"country"`
|
|
}
|
|
|
|
// RegionsPagedResponse represents a linode API response for listing
|
|
type RegionsPagedResponse struct {
|
|
*PageOptions
|
|
Data []Region `json:"data"`
|
|
}
|
|
|
|
// endpoint gets the endpoint URL for Region
|
|
func (RegionsPagedResponse) endpoint(c *Client) string {
|
|
endpoint, err := c.Regions.Endpoint()
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return endpoint
|
|
}
|
|
|
|
// appendData appends Regions when processing paginated Region responses
|
|
func (resp *RegionsPagedResponse) appendData(r *RegionsPagedResponse) {
|
|
resp.Data = append(resp.Data, r.Data...)
|
|
}
|
|
|
|
// ListRegions lists Regions
|
|
func (c *Client) ListRegions(ctx context.Context, opts *ListOptions) ([]Region, error) {
|
|
response := RegionsPagedResponse{}
|
|
err := c.listHelper(ctx, &response, opts)
|
|
for i := range response.Data {
|
|
response.Data[i].fixDates()
|
|
}
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return response.Data, nil
|
|
}
|
|
|
|
// fixDates converts JSON timestamps to Go time.Time values
|
|
func (v *Region) fixDates() *Region {
|
|
return v
|
|
}
|
|
|
|
// GetRegion gets the template with the provided ID
|
|
func (c *Client) GetRegion(ctx context.Context, id string) (*Region, error) {
|
|
e, err := c.Regions.Endpoint()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
e = fmt.Sprintf("%s/%s", e, id)
|
|
r, err := coupleAPIErrors(c.R(ctx).SetResult(&Region{}).Get(e))
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return r.Result().(*Region).fixDates(), nil
|
|
}
|