Class: AliyunSDKCore::ROAClient

Inherits:
Object
  • Object
show all
Defined in:
lib/aliyunsdkcore/roa_client.rb

Defined Under Namespace

Classes: ACSError

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(config) ⇒ ROAClient

Returns a new instance of ROAClient.



12
13
14
15
16
17
18
19
20
# File 'lib/aliyunsdkcore/roa_client.rb', line 12

def initialize(config)
  validate config

  self.endpoint          = config[:endpoint]
  self.api_version       = config[:api_version]
  self.access_key_id     = config[:access_key_id]
  self.access_key_secret = config[:access_key_secret]
  self.security_token    = config[:security_token]
end

Instance Attribute Details

#access_key_idObject

Returns the value of attribute access_key_id.



9
10
11
# File 'lib/aliyunsdkcore/roa_client.rb', line 9

def access_key_id
  @access_key_id
end

#access_key_secretObject

Returns the value of attribute access_key_secret.



9
10
11
# File 'lib/aliyunsdkcore/roa_client.rb', line 9

def access_key_secret
  @access_key_secret
end

#api_versionObject

Returns the value of attribute api_version.



9
10
11
# File 'lib/aliyunsdkcore/roa_client.rb', line 9

def api_version
  @api_version
end

#endpointObject

Returns the value of attribute endpoint.



9
10
11
# File 'lib/aliyunsdkcore/roa_client.rb', line 9

def endpoint
  @endpoint
end

#hostnameObject

Returns the value of attribute hostname.



9
10
11
# File 'lib/aliyunsdkcore/roa_client.rb', line 9

def hostname
  @hostname
end

#optsObject

Returns the value of attribute opts.



9
10
11
# File 'lib/aliyunsdkcore/roa_client.rb', line 9

def opts
  @opts
end

#security_tokenObject

Returns the value of attribute security_token.



9
10
11
# File 'lib/aliyunsdkcore/roa_client.rb', line 9

def security_token
  @security_token
end

Instance Method Details

#connection(adapter = Faraday.default_adapter) ⇒ Object



57
58
59
# File 'lib/aliyunsdkcore/roa_client.rb', line 57

def connection(adapter = Faraday.default_adapter)
  Faraday.new(:url => self.endpoint) { |faraday| faraday.adapter adapter }
end

#default_headersObject



77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
# File 'lib/aliyunsdkcore/roa_client.rb', line 77

def default_headers
  default_headers = {
    'accept' =>                  'application/json',
    'date' =>                    Time.now.httpdate,
    'host' =>                    URI(self.endpoint).host,
    'x-acs-signature-nonce' =>   SecureRandom.hex(16),
    'x-acs-signature-method' =>  'HMAC-SHA1',
    'x-acs-signature-version' => '1.0',
    'x-acs-version' =>           self.api_version,
    'x-sdk-client' =>            "RUBY(#{RUBY_VERSION})", # FIXME: 如何获取Gem的名称和版本号
    'user-agent' =>              DEFAULT_UA
  }
  if self.security_token
    default_headers.merge!(
      'x-acs-accesskey-id'   => self.access_key_id,
      'x-acs-security-token' => self.security_token
    )
  end
  default_headers
end

#delete(uri: '', headers: {}, params: {}, options: {}) ⇒ Object



73
74
75
# File 'lib/aliyunsdkcore/roa_client.rb', line 73

def delete(uri: '', headers: {}, params: {}, options: {})
  request(method: :get, uri: uri, params: params, body: {}, headers: headers, options: options)
end

#get(uri: '', headers: {}, params: {}, options: {}) ⇒ Object



61
62
63
# File 'lib/aliyunsdkcore/roa_client.rb', line 61

def get(uri: '', headers: {}, params: {}, options: {})
  request(method: :get, uri: uri, params: params, body: {}, headers: headers, options: options)
end

#post(uri: '', headers: {}, params: {}, body: {}, options: {}) ⇒ Object



65
66
67
# File 'lib/aliyunsdkcore/roa_client.rb', line 65

def post(uri: '', headers: {}, params: {}, body: {}, options: {})
  request(method: :get, uri: uri, params: params, body: body, headers: headers, options: options)
end

#put(uri: '', headers: {}, params: {}, body: {}, options: {}) ⇒ Object



69
70
71
# File 'lib/aliyunsdkcore/roa_client.rb', line 69

def put(uri: '', headers: {}, params: {}, body: {}, options: {})
  request(method: :get, uri: uri, params: params, body: body, headers: headers, options: options)
end

#request(method:, uri:, params: {}, body: {}, headers: {}, options: {}) ⇒ Object



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
# File 'lib/aliyunsdkcore/roa_client.rb', line 22

def request(method:, uri:, params: {}, body: {}, headers: {}, options: {})

  mix_headers = default_headers.merge(headers)

  response = connection.send(method.downcase) do |request|
    request.url uri, params
    if body.try(:any?) || body
      request_body                  = body.to_json
      request.body                  = request_body
      mix_headers['content-md5']    = Digest::MD5.base64digest request_body
      mix_headers['content-length'] = request_body.length.to_s
    end
    string2sign = string_to_sign(method, uri, mix_headers, params)
    mix_headers.merge!(authorization: authorization(string2sign))
    mix_headers.each { |key, value| request.headers[key] = value }
  end

  return response if options.has_key? :raw_body

  response_content_type = response.headers['Content-Type'] || ''
  if response_content_type.start_with?('application/json')
    if response.status >= 400
      result = JSON.parse(response.body)
      raise StandardError, "code: #{response.status}, #{result['Message']} requestid: #{result['RequestId']}"
    end
  end

  if response_content_type.start_with?('text/xml')
    result = Hash.from_xml(response.body)
    raise ACSError, result['Error'] if result['Error']
  end

  response
end