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.
68 lines
1.8 KiB
Go
68 lines
1.8 KiB
Go
package linodego
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
)
|
|
|
|
// LongviewClient represents a LongviewClient object
|
|
type LongviewClient struct {
|
|
ID int `json:"id"`
|
|
// UpdatedStr string `json:"updated"`
|
|
// Updated *time.Time `json:"-"`
|
|
}
|
|
|
|
// LongviewClientsPagedResponse represents a paginated LongviewClient API response
|
|
type LongviewClientsPagedResponse struct {
|
|
*PageOptions
|
|
Data []LongviewClient `json:"data"`
|
|
}
|
|
|
|
// endpoint gets the endpoint URL for LongviewClient
|
|
func (LongviewClientsPagedResponse) endpoint(c *Client) string {
|
|
endpoint, err := c.LongviewClients.Endpoint()
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return endpoint
|
|
}
|
|
|
|
// appendData appends LongviewClients when processing paginated LongviewClient responses
|
|
func (resp *LongviewClientsPagedResponse) appendData(r *LongviewClientsPagedResponse) {
|
|
resp.Data = append(resp.Data, r.Data...)
|
|
}
|
|
|
|
// ListLongviewClients lists LongviewClients
|
|
func (c *Client) ListLongviewClients(ctx context.Context, opts *ListOptions) ([]LongviewClient, error) {
|
|
response := LongviewClientsPagedResponse{}
|
|
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 *LongviewClient) fixDates() *LongviewClient {
|
|
// v.Created, _ = parseDates(v.CreatedStr)
|
|
// v.Updated, _ = parseDates(v.UpdatedStr)
|
|
return v
|
|
}
|
|
|
|
// GetLongviewClient gets the template with the provided ID
|
|
func (c *Client) GetLongviewClient(ctx context.Context, id string) (*LongviewClient, error) {
|
|
e, err := c.LongviewClients.Endpoint()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
e = fmt.Sprintf("%s/%s", e, id)
|
|
r, err := c.R(ctx).SetResult(&LongviewClient{}).Get(e)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return r.Result().(*LongviewClient).fixDates(), nil
|
|
}
|