| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395 |
- /*
- * 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
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- package sdk
- import (
- "fmt"
- "net/http"
- "strconv"
- "strings"
- "sync"
- "github.com/aliyun/alibaba-cloud-sdk-go/sdk/auth"
- "github.com/aliyun/alibaba-cloud-sdk-go/sdk/auth/credentials"
- "github.com/aliyun/alibaba-cloud-sdk-go/sdk/endpoints"
- "github.com/aliyun/alibaba-cloud-sdk-go/sdk/errors"
- "github.com/aliyun/alibaba-cloud-sdk-go/sdk/requests"
- "github.com/aliyun/alibaba-cloud-sdk-go/sdk/responses"
- "github.com/aliyun/alibaba-cloud-sdk-go/sdk/utils"
- )
- var debug utils.Debug
- func init() {
- debug = utils.Init("sdk")
- }
- // Version this value will be replaced while build: -ldflags="-X sdk.version=x.x.x"
- var Version = "0.0.1"
- var hookDo = func(fn func(req *http.Request) (*http.Response, error)) func(req *http.Request) (*http.Response, error) {
- return fn
- }
- // Client the type Client
- type Client struct {
- regionId string
- config *Config
- signer auth.Signer
- httpClient *http.Client
- asyncTaskQueue chan func()
- debug bool
- isRunning bool
- // void "panic(write to close channel)" cause of addAsync() after Shutdown()
- asyncChanLock *sync.RWMutex
- }
- func (client *Client) Init() (err error) {
- panic("not support yet")
- }
- func (client *Client) InitWithOptions(regionId string, config *Config, credential auth.Credential) (err error) {
- client.isRunning = true
- client.asyncChanLock = new(sync.RWMutex)
- client.regionId = regionId
- client.config = config
- client.httpClient = &http.Client{}
- if config.HttpTransport != nil {
- client.httpClient.Transport = config.HttpTransport
- }
- if config.Timeout > 0 {
- client.httpClient.Timeout = config.Timeout
- }
- if config.EnableAsync {
- client.EnableAsync(config.GoRoutinePoolSize, config.MaxTaskQueueSize)
- }
- client.signer, err = auth.NewSignerWithCredential(credential, client.ProcessCommonRequestWithSigner)
- return
- }
- // EnableAsync enable the async task queue
- func (client *Client) EnableAsync(routinePoolSize, maxTaskQueueSize int) {
- client.asyncTaskQueue = make(chan func(), maxTaskQueueSize)
- for i := 0; i < routinePoolSize; i++ {
- go func() {
- for client.isRunning {
- select {
- case task, notClosed := <-client.asyncTaskQueue:
- if notClosed {
- task()
- }
- }
- }
- }()
- }
- }
- func (client *Client) InitWithAccessKey(regionId, accessKeyId, accessKeySecret string) (err error) {
- config := client.InitClientConfig()
- credential := &credentials.BaseCredential{
- AccessKeyId: accessKeyId,
- AccessKeySecret: accessKeySecret,
- }
- return client.InitWithOptions(regionId, config, credential)
- }
- func (client *Client) InitWithStsToken(regionId, accessKeyId, accessKeySecret, securityToken string) (err error) {
- config := client.InitClientConfig()
- credential := &credentials.StsTokenCredential{
- AccessKeyId: accessKeyId,
- AccessKeySecret: accessKeySecret,
- AccessKeyStsToken: securityToken,
- }
- return client.InitWithOptions(regionId, config, credential)
- }
- func (client *Client) InitWithRamRoleArn(regionId, accessKeyId, accessKeySecret, roleArn, roleSessionName string) (err error) {
- config := client.InitClientConfig()
- credential := &credentials.RamRoleArnCredential{
- AccessKeyId: accessKeyId,
- AccessKeySecret: accessKeySecret,
- RoleArn: roleArn,
- RoleSessionName: roleSessionName,
- }
- return client.InitWithOptions(regionId, config, credential)
- }
- func (client *Client) InitWithRsaKeyPair(regionId, publicKeyId, privateKey string, sessionExpiration int) (err error) {
- config := client.InitClientConfig()
- credential := &credentials.RsaKeyPairCredential{
- PrivateKey: privateKey,
- PublicKeyId: publicKeyId,
- SessionExpiration: sessionExpiration,
- }
- return client.InitWithOptions(regionId, config, credential)
- }
- func (client *Client) InitWithEcsRamRole(regionId, roleName string) (err error) {
- config := client.InitClientConfig()
- credential := &credentials.EcsRamRoleCredential{
- RoleName: roleName,
- }
- return client.InitWithOptions(regionId, config, credential)
- }
- func (client *Client) InitClientConfig() (config *Config) {
- if client.config != nil {
- return client.config
- } else {
- return NewConfig()
- }
- }
- func (client *Client) DoAction(request requests.AcsRequest, response responses.AcsResponse) (err error) {
- return client.DoActionWithSigner(request, response, nil)
- }
- func (client *Client) buildRequestWithSigner(request requests.AcsRequest, signer auth.Signer) (httpRequest *http.Request, err error) {
- // add clientVersion
- request.GetHeaders()["x-sdk-core-version"] = Version
- regionId := client.regionId
- if len(request.GetRegionId()) > 0 {
- regionId = request.GetRegionId()
- }
- // resolve endpoint
- resolveParam := &endpoints.ResolveParam{
- Domain: request.GetDomain(),
- Product: request.GetProduct(),
- RegionId: regionId,
- LocationProduct: request.GetLocationServiceCode(),
- LocationEndpointType: request.GetLocationEndpointType(),
- CommonApi: client.ProcessCommonRequest,
- }
- endpoint, err := endpoints.Resolve(resolveParam)
- if err != nil {
- return
- }
- request.SetDomain(endpoint)
- if request.GetScheme() == "" {
- request.SetScheme(client.config.Scheme)
- }
- // init request params
- err = requests.InitParams(request)
- if err != nil {
- return
- }
- // signature
- var finalSigner auth.Signer
- if signer != nil {
- finalSigner = signer
- } else {
- finalSigner = client.signer
- }
- httpRequest, err = buildHttpRequest(request, finalSigner, regionId)
- if client.config.UserAgent != "" {
- httpRequest.Header.Set("User-Agent", client.config.UserAgent)
- }
- return
- }
- func (client *Client) BuildRequestWithSigner(request requests.AcsRequest, signer auth.Signer) (err error) {
- _, err = client.buildRequestWithSigner(request, signer)
- return
- }
- func (client *Client) DoActionWithSigner(request requests.AcsRequest, response responses.AcsResponse, signer auth.Signer) (err error) {
- httpRequest, err := client.buildRequestWithSigner(request, signer)
- if err != nil {
- return
- }
- var httpResponse *http.Response
- for retryTimes := 0; retryTimes <= client.config.MaxRetryTime; retryTimes++ {
- debug("> %s %s %s", httpRequest.Method, httpRequest.URL.RequestURI(), httpRequest.Proto)
- debug("> Host: %s", httpRequest.Host)
- for key, value := range httpRequest.Header {
- debug("> %s: %v", key, strings.Join(value, ""))
- }
- debug(">")
- httpResponse, err = hookDo(client.httpClient.Do)(httpRequest)
- if err == nil {
- debug("< %s %s", httpResponse.Proto, httpResponse.Status)
- for key, value := range httpResponse.Header {
- debug("< %s: %v", key, strings.Join(value, ""))
- }
- }
- debug("<")
- // receive error
- if err != nil {
- if !client.config.AutoRetry {
- return
- } else if retryTimes >= client.config.MaxRetryTime {
- // timeout but reached the max retry times, return
- timeoutErrorMsg := fmt.Sprintf(errors.TimeoutErrorMessage, strconv.Itoa(retryTimes+1), strconv.Itoa(retryTimes+1))
- err = errors.NewClientError(errors.TimeoutErrorCode, timeoutErrorMsg, err)
- return
- }
- }
- // if status code >= 500 or timeout, will trigger retry
- if client.config.AutoRetry && (err != nil || isServerError(httpResponse)) {
- // rewrite signatureNonce and signature
- httpRequest, err = client.buildRequestWithSigner(request, signer)
- // buildHttpRequest(request, finalSigner, regionId)
- if err != nil {
- return
- }
- continue
- }
- break
- }
- err = responses.Unmarshal(response, httpResponse, request.GetAcceptFormat())
- // wrap server errors
- if serverErr, ok := err.(*errors.ServerError); ok {
- var wrapInfo = map[string]string{}
- wrapInfo["StringToSign"] = request.GetStringToSign()
- err = errors.WrapServerError(serverErr, wrapInfo)
- }
- return
- }
- func buildHttpRequest(request requests.AcsRequest, singer auth.Signer, regionId string) (httpRequest *http.Request, err error) {
- err = auth.Sign(request, singer, regionId)
- if err != nil {
- return
- }
- requestMethod := request.GetMethod()
- requestUrl := request.BuildUrl()
- body := request.GetBodyReader()
- httpRequest, err = http.NewRequest(requestMethod, requestUrl, body)
- if err != nil {
- return
- }
- for key, value := range request.GetHeaders() {
- httpRequest.Header[key] = []string{value}
- }
- // host is a special case
- if host, containsHost := request.GetHeaders()["Host"]; containsHost {
- httpRequest.Host = host
- }
- return
- }
- func isServerError(httpResponse *http.Response) bool {
- return httpResponse.StatusCode >= http.StatusInternalServerError
- }
- /**
- only block when any one of the following occurs:
- 1. the asyncTaskQueue is full, increase the queue size to avoid this
- 2. Shutdown() in progressing, the client is being closed
- **/
- func (client *Client) AddAsyncTask(task func()) (err error) {
- if client.asyncTaskQueue != nil {
- client.asyncChanLock.RLock()
- defer client.asyncChanLock.RUnlock()
- if client.isRunning {
- client.asyncTaskQueue <- task
- }
- } else {
- err = errors.NewClientError(errors.AsyncFunctionNotEnabledCode, errors.AsyncFunctionNotEnabledMessage, nil)
- }
- return
- }
- func (client *Client) GetConfig() *Config {
- return client.config
- }
- func NewClient() (client *Client, err error) {
- client = &Client{}
- err = client.Init()
- return
- }
- func NewClientWithOptions(regionId string, config *Config, credential auth.Credential) (client *Client, err error) {
- client = &Client{}
- err = client.InitWithOptions(regionId, config, credential)
- return
- }
- func NewClientWithAccessKey(regionId, accessKeyId, accessKeySecret string) (client *Client, err error) {
- client = &Client{}
- err = client.InitWithAccessKey(regionId, accessKeyId, accessKeySecret)
- return
- }
- func NewClientWithStsToken(regionId, stsAccessKeyId, stsAccessKeySecret, stsToken string) (client *Client, err error) {
- client = &Client{}
- err = client.InitWithStsToken(regionId, stsAccessKeyId, stsAccessKeySecret, stsToken)
- return
- }
- func NewClientWithRamRoleArn(regionId string, accessKeyId, accessKeySecret, roleArn, roleSessionName string) (client *Client, err error) {
- client = &Client{}
- err = client.InitWithRamRoleArn(regionId, accessKeyId, accessKeySecret, roleArn, roleSessionName)
- return
- }
- func NewClientWithEcsRamRole(regionId string, roleName string) (client *Client, err error) {
- client = &Client{}
- err = client.InitWithEcsRamRole(regionId, roleName)
- return
- }
- func NewClientWithRsaKeyPair(regionId string, publicKeyId, privateKey string, sessionExpiration int) (client *Client, err error) {
- client = &Client{}
- err = client.InitWithRsaKeyPair(regionId, publicKeyId, privateKey, sessionExpiration)
- return
- }
- // Deprecated: Use NewClientWithRamRoleArn in this package instead.
- func NewClientWithStsRoleArn(regionId string, accessKeyId, accessKeySecret, roleArn, roleSessionName string) (client *Client, err error) {
- return NewClientWithRamRoleArn(regionId, accessKeyId, accessKeySecret, roleArn, roleSessionName)
- }
- // Deprecated: Use NewClientWithEcsRamRole in this package instead.
- func NewClientWithStsRoleNameOnEcs(regionId string, roleName string) (client *Client, err error) {
- return NewClientWithEcsRamRole(regionId, roleName)
- }
- func (client *Client) ProcessCommonRequest(request *requests.CommonRequest) (response *responses.CommonResponse, err error) {
- request.TransToAcsRequest()
- response = responses.NewCommonResponse()
- err = client.DoAction(request, response)
- return
- }
- func (client *Client) ProcessCommonRequestWithSigner(request *requests.CommonRequest, signerInterface interface{}) (response *responses.CommonResponse, err error) {
- if signer, isSigner := signerInterface.(auth.Signer); isSigner {
- request.TransToAcsRequest()
- response = responses.NewCommonResponse()
- err = client.DoActionWithSigner(request, response, signer)
- return
- }
- panic("should not be here")
- }
- func (client *Client) Shutdown() {
- // lock the addAsync()
- client.asyncChanLock.Lock()
- defer client.asyncChanLock.Unlock()
- if client.asyncTaskQueue != nil {
- close(client.asyncTaskQueue)
- }
- client.isRunning = false
- }
|