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
|
// Copyright (C) MongoDB, Inc. 2022-present.
//
// Licensed under the Apache License, Version 2.0 (the "License"); you may
// not use this file except in compliance with the License. You may obtain
// a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
package creds
import (
"context"
"net/http"
"time"
"go.mongodb.org/mongo-driver/internal/aws/credentials"
"go.mongodb.org/mongo-driver/internal/credproviders"
"go.mongodb.org/mongo-driver/x/bsonx/bsoncore"
)
const (
// expiryWindow will allow the credentials to trigger refreshing prior to the credentials actually expiring.
// This is beneficial so expiring credentials do not cause request to fail unexpectedly due to exceptions.
//
// Set an early expiration of 5 minutes before the credentials are actually expired.
expiryWindow = 5 * time.Minute
)
// AWSCredentialProvider wraps AWS credentials.
type AWSCredentialProvider struct {
Cred *credentials.Credentials
}
// NewAWSCredentialProvider generates new AWSCredentialProvider
func NewAWSCredentialProvider(httpClient *http.Client, providers ...credentials.Provider) AWSCredentialProvider {
providers = append(
providers,
credproviders.NewEnvProvider(),
credproviders.NewAssumeRoleProvider(httpClient, expiryWindow),
credproviders.NewECSProvider(httpClient, expiryWindow),
credproviders.NewEC2Provider(httpClient, expiryWindow),
)
return AWSCredentialProvider{credentials.NewChainCredentials(providers)}
}
// GetCredentialsDoc generates AWS credentials.
func (p AWSCredentialProvider) GetCredentialsDoc(ctx context.Context) (bsoncore.Document, error) {
creds, err := p.Cred.GetWithContext(ctx)
if err != nil {
return nil, err
}
builder := bsoncore.NewDocumentBuilder().
AppendString("accessKeyId", creds.AccessKeyID).
AppendString("secretAccessKey", creds.SecretAccessKey)
if token := creds.SessionToken; len(token) > 0 {
builder.AppendString("sessionToken", token)
}
return builder.Build(), nil
}
|