107 lines
2.9 KiB
Go
107 lines
2.9 KiB
Go
package chef
|
|
|
|
import "fmt"
|
|
|
|
type RoleService struct {
|
|
client *Client
|
|
}
|
|
|
|
type RoleListResult map[string]string
|
|
type RoleCreateResult map[string]string
|
|
|
|
// Role represents the native Go version of the deserialized Role type
|
|
type Role struct {
|
|
Name string `json:"name"`
|
|
ChefType string `json:"chef_type"`
|
|
Description string `json:"description"`
|
|
RunList RunList `json:"run_list"`
|
|
DefaultAttributes interface{} `json:"default_attributes,omitempty"`
|
|
OverrideAttributes interface{} `json:"override_attributes,omitempty"`
|
|
JsonClass string `json:"json_class,omitempty"`
|
|
}
|
|
|
|
// String makes RoleListResult implement the string result
|
|
func (e RoleListResult) String() (out string) {
|
|
return strMapToStr(e)
|
|
}
|
|
|
|
// String makes RoleCreateResult implement the string result
|
|
func (e RoleCreateResult) String() (out string) {
|
|
return strMapToStr(e)
|
|
}
|
|
|
|
// List lists the roles in the Chef server.
|
|
//
|
|
// Chef API docs: http://docs.getchef.com/api_chef_server.html#id31
|
|
func (e *RoleService) List() (data *RoleListResult, err error) {
|
|
err = e.client.magicRequestDecoder("GET", "roles", nil, &data)
|
|
return
|
|
}
|
|
|
|
// Create a new role in the Chef server.
|
|
//
|
|
// Chef API docs: http://docs.getchef.com/api_chef_server.html#id32
|
|
func (e *RoleService) Create(role *Role) (data *RoleCreateResult, err error) {
|
|
// err = e.client.magicRequestDecoder("POST", "roles", role, &data)
|
|
body, err := JSONReader(role)
|
|
if err != nil {
|
|
return
|
|
}
|
|
|
|
// BUG(fujiN): This is now both a *response* decoder and handles upload.. gettin smelly
|
|
err = e.client.magicRequestDecoder(
|
|
"POST",
|
|
"roles",
|
|
body,
|
|
&data,
|
|
)
|
|
|
|
return
|
|
}
|
|
|
|
// Delete a role from the Chef server.
|
|
//
|
|
// Chef API docs: http://docs.getchef.com/api_chef_server.html#id33
|
|
func (e *RoleService) Delete(name string) (err error) {
|
|
path := fmt.Sprintf("roles/%s", name)
|
|
err = e.client.magicRequestDecoder("DELETE", path, nil, nil)
|
|
return
|
|
}
|
|
|
|
// Get gets a role from the Chef server.
|
|
//
|
|
// Chef API docs: http://docs.getchef.com/api_chef_server.html#id34
|
|
func (e *RoleService) Get(name string) (data *Role, err error) {
|
|
path := fmt.Sprintf("roles/%s", name)
|
|
err = e.client.magicRequestDecoder("GET", path, nil, &data)
|
|
return
|
|
}
|
|
|
|
// Update a role in the Chef server.
|
|
//
|
|
// Chef API docs: http://docs.getchef.com/api_chef_server.html#id35
|
|
func (e *RoleService) Put(role *Role) (data *Role, err error) {
|
|
path := fmt.Sprintf("roles/%s", role.Name)
|
|
// err = e.client.magicRequestDecoder("PUT", path, role, nil)
|
|
body, err := JSONReader(role)
|
|
if err != nil {
|
|
return
|
|
}
|
|
|
|
err = e.client.magicRequestDecoder(
|
|
"PUT",
|
|
path,
|
|
body,
|
|
&data,
|
|
)
|
|
return
|
|
}
|
|
|
|
// Get a list of environments have have environment specific run-lists for the given role
|
|
//
|
|
// Chef API docs: http://docs.getchef.com/api_chef_server.html#id36
|
|
|
|
// Get the environment-specific run-list for a role
|
|
//
|
|
// Chef API docs: http://docs.getchef.com/api_chef_server.html#id37
|