1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441
|
// The iam package provides types and functions for interaction with the AWS
// Identity and Access Management (IAM) service.
package iam
import (
"encoding/xml"
"github.com/docker/goamz/aws"
"net/http"
"net/url"
"strconv"
"strings"
"time"
)
// The IAM type encapsulates operations operations with the IAM endpoint.
type IAM struct {
aws.Auth
aws.Region
}
// New creates a new IAM instance.
func New(auth aws.Auth, region aws.Region) *IAM {
return &IAM{auth, region}
}
func (iam *IAM) query(params map[string]string, resp interface{}) error {
params["Version"] = "2010-05-08"
params["Timestamp"] = time.Now().In(time.UTC).Format(time.RFC3339)
endpoint, err := url.Parse(iam.IAMEndpoint)
if err != nil {
return err
}
signer, err := aws.NewV2Signer(iam.Auth, aws.ServiceInfo{Endpoint: iam.Region.IAMEndpoint, Signer: aws.V2Signature})
if err != nil {
return err
}
signer.Sign("GET", "/", params)
endpoint.RawQuery = multimap(params).Encode()
r, err := http.Get(endpoint.String())
if err != nil {
return err
}
defer r.Body.Close()
if r.StatusCode > 200 {
return buildError(r)
}
return xml.NewDecoder(r.Body).Decode(resp)
}
func (iam *IAM) postQuery(params map[string]string, resp interface{}) error {
endpoint, err := url.Parse(iam.IAMEndpoint)
if err != nil {
return err
}
params["Version"] = "2010-05-08"
params["Timestamp"] = time.Now().In(time.UTC).Format(time.RFC3339)
signer, err := aws.NewV2Signer(iam.Auth, aws.ServiceInfo{Endpoint: iam.Region.IAMEndpoint, Signer: aws.V2Signature})
if err != nil {
return err
}
signer.Sign("POST", "/", params)
encoded := multimap(params).Encode()
body := strings.NewReader(encoded)
req, err := http.NewRequest("POST", endpoint.String(), body)
if err != nil {
return err
}
req.Header.Set("Host", endpoint.Host)
req.Header.Set("Content-Type", "application/x-www-form-urlencoded")
req.Header.Set("Content-Length", strconv.Itoa(len(encoded)))
r, err := http.DefaultClient.Do(req)
if err != nil {
return err
}
defer r.Body.Close()
if r.StatusCode > 200 {
return buildError(r)
}
return xml.NewDecoder(r.Body).Decode(resp)
}
func buildError(r *http.Response) error {
var (
err Error
errors xmlErrors
)
xml.NewDecoder(r.Body).Decode(&errors)
if len(errors.Errors) > 0 {
err = errors.Errors[0]
}
err.StatusCode = r.StatusCode
if err.Message == "" {
err.Message = r.Status
}
return &err
}
func multimap(p map[string]string) url.Values {
q := make(url.Values, len(p))
for k, v := range p {
q[k] = []string{v}
}
return q
}
// Response to a CreateUser request.
//
// See http://goo.gl/JS9Gz for more details.
type CreateUserResp struct {
RequestId string `xml:"ResponseMetadata>RequestId"`
User User `xml:"CreateUserResult>User"`
}
// User encapsulates a user managed by IAM.
//
// See http://goo.gl/BwIQ3 for more details.
type User struct {
Arn string
Path string
Id string `xml:"UserId"`
Name string `xml:"UserName"`
}
// CreateUser creates a new user in IAM.
//
// See http://goo.gl/JS9Gz for more details.
func (iam *IAM) CreateUser(name, path string) (*CreateUserResp, error) {
params := map[string]string{
"Action": "CreateUser",
"Path": path,
"UserName": name,
}
resp := new(CreateUserResp)
if err := iam.query(params, resp); err != nil {
return nil, err
}
return resp, nil
}
// Response for GetUser requests.
//
// See http://goo.gl/ZnzRN for more details.
type GetUserResp struct {
RequestId string `xml:"ResponseMetadata>RequestId"`
User User `xml:"GetUserResult>User"`
}
// GetUser gets a user from IAM.
//
// See http://goo.gl/ZnzRN for more details.
func (iam *IAM) GetUser(name string) (*GetUserResp, error) {
params := map[string]string{
"Action": "GetUser",
}
if name != "" {
params["UserName"] = name
}
resp := new(GetUserResp)
if err := iam.query(params, resp); err != nil {
return nil, err
}
return resp, nil
}
// DeleteUser deletes a user from IAM.
//
// See http://goo.gl/jBuCG for more details.
func (iam *IAM) DeleteUser(name string) (*SimpleResp, error) {
params := map[string]string{
"Action": "DeleteUser",
"UserName": name,
}
resp := new(SimpleResp)
if err := iam.query(params, resp); err != nil {
return nil, err
}
return resp, nil
}
// Response to a CreateGroup request.
//
// See http://goo.gl/n7NNQ for more details.
type CreateGroupResp struct {
Group Group `xml:"CreateGroupResult>Group"`
RequestId string `xml:"ResponseMetadata>RequestId"`
}
// Group encapsulates a group managed by IAM.
//
// See http://goo.gl/ae7Vs for more details.
type Group struct {
Arn string
Id string `xml:"GroupId"`
Name string `xml:"GroupName"`
Path string
}
// CreateGroup creates a new group in IAM.
//
// The path parameter can be used to identify which division or part of the
// organization the user belongs to.
//
// If path is unset ("") it defaults to "/".
//
// See http://goo.gl/n7NNQ for more details.
func (iam *IAM) CreateGroup(name string, path string) (*CreateGroupResp, error) {
params := map[string]string{
"Action": "CreateGroup",
"GroupName": name,
}
if path != "" {
params["Path"] = path
}
resp := new(CreateGroupResp)
if err := iam.query(params, resp); err != nil {
return nil, err
}
return resp, nil
}
// Response to a ListGroups request.
//
// See http://goo.gl/W2TRj for more details.
type GroupsResp struct {
Groups []Group `xml:"ListGroupsResult>Groups>member"`
RequestId string `xml:"ResponseMetadata>RequestId"`
}
// Groups list the groups that have the specified path prefix.
//
// The parameter pathPrefix is optional. If pathPrefix is "", all groups are
// returned.
//
// See http://goo.gl/W2TRj for more details.
func (iam *IAM) Groups(pathPrefix string) (*GroupsResp, error) {
params := map[string]string{
"Action": "ListGroups",
}
if pathPrefix != "" {
params["PathPrefix"] = pathPrefix
}
resp := new(GroupsResp)
if err := iam.query(params, resp); err != nil {
return nil, err
}
return resp, nil
}
// DeleteGroup deletes a group from IAM.
//
// See http://goo.gl/d5i2i for more details.
func (iam *IAM) DeleteGroup(name string) (*SimpleResp, error) {
params := map[string]string{
"Action": "DeleteGroup",
"GroupName": name,
}
resp := new(SimpleResp)
if err := iam.query(params, resp); err != nil {
return nil, err
}
return resp, nil
}
// Response to a CreateAccessKey request.
//
// See http://goo.gl/L46Py for more details.
type CreateAccessKeyResp struct {
RequestId string `xml:"ResponseMetadata>RequestId"`
AccessKey AccessKey `xml:"CreateAccessKeyResult>AccessKey"`
}
// AccessKey encapsulates an access key generated for a user.
//
// See http://goo.gl/LHgZR for more details.
type AccessKey struct {
UserName string
Id string `xml:"AccessKeyId"`
Secret string `xml:"SecretAccessKey,omitempty"`
Status string
}
// CreateAccessKey creates a new access key in IAM.
//
// See http://goo.gl/L46Py for more details.
func (iam *IAM) CreateAccessKey(userName string) (*CreateAccessKeyResp, error) {
params := map[string]string{
"Action": "CreateAccessKey",
"UserName": userName,
}
resp := new(CreateAccessKeyResp)
if err := iam.query(params, resp); err != nil {
return nil, err
}
return resp, nil
}
// Response to AccessKeys request.
//
// See http://goo.gl/Vjozx for more details.
type AccessKeysResp struct {
RequestId string `xml:"ResponseMetadata>RequestId"`
AccessKeys []AccessKey `xml:"ListAccessKeysResult>AccessKeyMetadata>member"`
}
// AccessKeys lists all acccess keys associated with a user.
//
// The userName parameter is optional. If set to "", the userName is determined
// implicitly based on the AWS Access Key ID used to sign the request.
//
// See http://goo.gl/Vjozx for more details.
func (iam *IAM) AccessKeys(userName string) (*AccessKeysResp, error) {
params := map[string]string{
"Action": "ListAccessKeys",
}
if userName != "" {
params["UserName"] = userName
}
resp := new(AccessKeysResp)
if err := iam.query(params, resp); err != nil {
return nil, err
}
return resp, nil
}
// DeleteAccessKey deletes an access key from IAM.
//
// The userName parameter is optional. If set to "", the userName is determined
// implicitly based on the AWS Access Key ID used to sign the request.
//
// See http://goo.gl/hPGhw for more details.
func (iam *IAM) DeleteAccessKey(id, userName string) (*SimpleResp, error) {
params := map[string]string{
"Action": "DeleteAccessKey",
"AccessKeyId": id,
}
if userName != "" {
params["UserName"] = userName
}
resp := new(SimpleResp)
if err := iam.query(params, resp); err != nil {
return nil, err
}
return resp, nil
}
// Response to a GetUserPolicy request.
//
// See http://goo.gl/BH04O for more details.
type GetUserPolicyResp struct {
Policy UserPolicy `xml:"GetUserPolicyResult"`
RequestId string `xml:"ResponseMetadata>RequestId"`
}
// UserPolicy encapsulates an IAM group policy.
//
// See http://goo.gl/C7hgS for more details.
type UserPolicy struct {
Name string `xml:"PolicyName"`
UserName string `xml:"UserName"`
Document string `xml:"PolicyDocument"`
}
// GetUserPolicy gets a user policy in IAM.
//
// See http://goo.gl/BH04O for more details.
func (iam *IAM) GetUserPolicy(userName, policyName string) (*GetUserPolicyResp, error) {
params := map[string]string{
"Action": "GetUserPolicy",
"UserName": userName,
"PolicyName": policyName,
}
resp := new(GetUserPolicyResp)
if err := iam.query(params, resp); err != nil {
return nil, err
}
return resp, nil
}
// PutUserPolicy creates a user policy in IAM.
//
// See http://goo.gl/ldCO8 for more details.
func (iam *IAM) PutUserPolicy(userName, policyName, policyDocument string) (*SimpleResp, error) {
params := map[string]string{
"Action": "PutUserPolicy",
"UserName": userName,
"PolicyName": policyName,
"PolicyDocument": policyDocument,
}
resp := new(SimpleResp)
if err := iam.postQuery(params, resp); err != nil {
return nil, err
}
return resp, nil
}
// DeleteUserPolicy deletes a user policy from IAM.
//
// See http://goo.gl/7Jncn for more details.
func (iam *IAM) DeleteUserPolicy(userName, policyName string) (*SimpleResp, error) {
params := map[string]string{
"Action": "DeleteUserPolicy",
"PolicyName": policyName,
"UserName": userName,
}
resp := new(SimpleResp)
if err := iam.query(params, resp); err != nil {
return nil, err
}
return resp, nil
}
type SimpleResp struct {
RequestId string `xml:"ResponseMetadata>RequestId"`
}
type xmlErrors struct {
Errors []Error `xml:"Error"`
}
// Error encapsulates an IAM error.
type Error struct {
// HTTP status code of the error.
StatusCode int
// AWS code of the error.
Code string
// Message explaining the error.
Message string
}
func (e *Error) Error() string {
var prefix string
if e.Code != "" {
prefix = e.Code + ": "
}
if prefix == "" && e.StatusCode > 0 {
prefix = strconv.Itoa(e.StatusCode) + ": "
}
return prefix + e.Message
}
|