1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/aws/dynamodb.rb

177 lines
5.5 KiB
Ruby
Raw Normal View History

2012-05-15 14:54:20 -04:00
require 'fog/aws'
2012-01-21 21:31:36 -05:00
module Fog
module AWS
class DynamoDB < Fog::Service
extend Fog::AWS::CredentialFetcher::ServiceMethods
2012-01-21 21:31:36 -05:00
requires :aws_access_key_id, :aws_secret_access_key
recognizes :aws_session_token, :host, :path, :port, :scheme, :persistent, :region, :use_iam_profile, :aws_credentials_expire_at
2012-01-21 21:31:36 -05:00
request_path 'fog/aws/requests/dynamodb'
2012-01-22 18:12:07 -05:00
request :batch_get_item
request :batch_write_item
2012-01-21 21:31:36 -05:00
request :create_table
2012-01-22 18:12:07 -05:00
request :delete_item
2012-01-21 21:31:36 -05:00
request :delete_table
request :describe_table
2012-01-22 18:12:07 -05:00
request :get_item
2012-01-21 21:31:36 -05:00
request :list_tables
2012-01-22 18:12:07 -05:00
request :put_item
request :query
request :scan
2012-01-22 18:12:07 -05:00
request :update_item
2012-01-21 21:31:36 -05:00
request :update_table
class Mock
def self.data
@data ||= Hash.new do |hash, key|
hash[key] = {
:domains => {}
}
end
end
def self.reset
@data = nil
end
def initialize(options={})
@use_iam_profile = options[:use_iam_profile]
setup_credentials(options)
2012-01-21 21:31:36 -05:00
end
def data
self.class.data[@aws_access_key_id]
end
def reset_data
self.class.data.delete(@aws_access_key_id)
end
def setup_credientials(options)
@aws_access_key_id = options[:aws_access_key_id]
end
2012-01-21 21:31:36 -05:00
end
class Real
include Fog::AWS::CredentialFetcher::ConnectionMethods
2012-01-21 21:31:36 -05:00
# Initialize connection to DynamoDB
#
# ==== Notes
# options parameter must include values for :aws_access_key_id and
# :aws_secret_access_key in order to create a connection
#
# ==== Examples
# ddb = DynamoDB.new(
# :aws_access_key_id => your_aws_access_key_id,
# :aws_secret_access_key => your_aws_secret_access_key
# )
#
# ==== Parameters
# * options<~Hash> - config arguments for connection. Defaults to {}.
#
# ==== Returns
# * DynamoDB object with connection to aws
def initialize(options={})
@use_iam_profile = options[:use_iam_profile]
#TODO check dynamodb stuff
setup_credentials(options)
@connection_options = options[:connection_options] || {}
options[:region] ||= 'us-east-1'
@host = options[:host] || "dynamodb.#{options[:region]}.amazonaws.com"
@path = options[:path] || '/'
@persistent = options[:persistent] || false
@port = options[:port] || '80' #443
@scheme = options[:scheme] || 'http' #'https'
@connection = Fog::Connection.new("#{@scheme}://#{@host}:#{@port}#{@path}", @persistent, @connection_options)
end
private
def setup_credentials(options)
2012-01-21 21:31:36 -05:00
if options[:aws_session_token]
@aws_access_key_id = options[:aws_access_key_id]
@aws_secret_access_key = options[:aws_secret_access_key]
@aws_session_token = options[:aws_session_token]
@aws_credentials_expire_at = options[:aws_credentials_expire_at]
2012-01-21 21:31:36 -05:00
else
sts = Fog::AWS::STS.new(
:aws_access_key_id => options[:aws_access_key_id],
:aws_secret_access_key => options[:aws_secret_access_key]
)
session_data = sts.get_session_token.body
@aws_access_key_id = session_data['AccessKeyId']
@aws_secret_access_key = session_data['SecretAccessKey']
@aws_session_token = session_data['SessionToken']
end
@hmac = Fog::HMAC.new('sha256', @aws_secret_access_key)
end
def reload
@connection.reset
end
def request(params)
refresh_credentials_if_expired
2012-01-21 21:31:36 -05:00
idempotent = params.delete(:idempotent)
headers = {
'Content-Type' => 'application/x-amz-json-1.0',
'x-amz-date' => Fog::Time.now.to_date_header,
'x-amz-security-token' => @aws_session_token
}.merge(params[:headers])
2012-05-14 15:26:02 -04:00
2012-01-21 21:31:36 -05:00
headers['x-amzn-authorization'] = signed_authorization_header(params, headers)
response = @connection.request({
:body => params[:body],
:expects => 200,
:headers => headers,
:host => @host,
:idempotent => idempotent,
:method => 'POST',
})
unless response.body.empty?
2012-04-25 10:31:28 -04:00
response.body = Fog::JSON.decode(response.body)
2012-01-21 21:31:36 -05:00
end
response
end
def signed_authorization_header(params, headers)
string_to_sign = "POST\n/\n\nhost:#{@host}:#{@port}\n"
amz_headers, canonical_amz_headers = {}, ''
for key, value in headers
if key[0..5] == 'x-amz-'
amz_headers[key] = value
end
end
amz_headers = amz_headers.sort {|x, y| x[0] <=> y[0]}
for key, value in amz_headers
canonical_amz_headers << "#{key}:#{value}\n"
end
string_to_sign << canonical_amz_headers
string_to_sign << "\n"
string_to_sign << (params[:body] || '')
string_to_sign = OpenSSL::Digest::SHA256.digest(string_to_sign)
signed_string = @hmac.sign(string_to_sign)
signature = Base64.encode64(signed_string).chomp!
"AWS3 AWSAccessKeyId=#{@aws_access_key_id},Algorithm=HmacSHA256,Signature=#{signature}"
end
end
end
end
end