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.
37 lines
767 B
Go
37 lines
767 B
Go
package api
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
"net/http"
|
|
"net/url"
|
|
)
|
|
|
|
// Quota represents a map of quota (name, value)
|
|
type Quotas map[string]int
|
|
|
|
// GetQuotas represents the response of GET /organizations/{orga_id}/quotas
|
|
type GetQuotas struct {
|
|
Quotas Quotas `json:"quotas"`
|
|
}
|
|
|
|
// GetQuotas returns a GetQuotas
|
|
func (s *API) GetQuotas() (Quotas, error) {
|
|
resp, err := s.GetResponsePaginate(AccountAPI, fmt.Sprintf("organizations/%s/quotas", s.Organization), url.Values{})
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
defer resp.Body.Close()
|
|
|
|
body, err := s.handleHTTPError([]int{http.StatusOK}, resp)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
var quotas GetQuotas
|
|
|
|
if err = json.Unmarshal(body, "as); err != nil {
|
|
return nil, err
|
|
}
|
|
return quotas.Quotas, nil
|
|
}
|