2012-05-15 14:54:20 -04:00
|
|
|
require 'fog/aws'
|
2011-08-31 16:52:53 -04:00
|
|
|
|
2011-01-14 03:55:33 -05:00
|
|
|
module Fog
|
|
|
|
module AWS
|
|
|
|
class SNS < Fog::Service
|
|
|
|
|
|
|
|
requires :aws_access_key_id, :aws_secret_access_key
|
2011-10-16 14:31:56 -04:00
|
|
|
recognizes :host, :path, :port, :scheme, :persistent, :region
|
2011-01-14 03:55:33 -05:00
|
|
|
|
|
|
|
request_path 'fog/aws/requests/sns'
|
2011-02-03 19:53:23 -05:00
|
|
|
request :add_permission
|
2011-02-03 20:34:46 -05:00
|
|
|
request :confirm_subscription
|
2011-02-03 02:26:28 -05:00
|
|
|
request :create_topic
|
|
|
|
request :delete_topic
|
2011-02-02 01:20:44 -05:00
|
|
|
request :get_topic_attributes
|
2011-02-02 03:40:13 -05:00
|
|
|
request :list_subscriptions
|
2011-02-02 03:49:04 -05:00
|
|
|
request :list_subscriptions_by_topic
|
2011-02-02 03:40:13 -05:00
|
|
|
request :list_topics
|
2011-02-03 19:10:39 -05:00
|
|
|
request :publish
|
2011-02-03 19:57:20 -05:00
|
|
|
request :remove_permission
|
2011-02-03 20:09:04 -05:00
|
|
|
request :set_topic_attributes
|
2011-02-03 20:29:42 -05:00
|
|
|
request :subscribe
|
2011-02-03 20:34:46 -05:00
|
|
|
request :unsubscribe
|
2011-01-14 03:55:33 -05:00
|
|
|
|
|
|
|
class Mock
|
|
|
|
|
|
|
|
def initialize(options={})
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
class Real
|
|
|
|
|
|
|
|
# Initialize connection to SNS
|
|
|
|
#
|
|
|
|
# ==== Notes
|
|
|
|
# options parameter must include values for :aws_access_key_id and
|
|
|
|
# :aws_secret_access_key in order to create a connection
|
|
|
|
#
|
|
|
|
# ==== Examples
|
|
|
|
# sns = SNS.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
|
|
|
|
# * SNS object with connection to AWS.
|
|
|
|
def initialize(options={})
|
|
|
|
@aws_access_key_id = options[:aws_access_key_id]
|
|
|
|
@aws_secret_access_key = options[:aws_secret_access_key]
|
2011-09-12 11:01:48 -04:00
|
|
|
@connection_options = options[:connection_options] || {}
|
2011-01-14 03:55:33 -05:00
|
|
|
@hmac = Fog::HMAC.new('sha256', @aws_secret_access_key)
|
2011-02-01 03:49:32 -05:00
|
|
|
|
|
|
|
options[:region] ||= 'us-east-1'
|
2012-02-02 18:27:54 -05:00
|
|
|
@host = options[:host] || "sns.#{options[:region]}.amazonaws.com"
|
2011-02-01 03:49:32 -05:00
|
|
|
|
2011-09-12 11:01:48 -04:00
|
|
|
@path = options[:path] || '/'
|
|
|
|
@persistent = options[:persistent] || false
|
|
|
|
@port = options[:port] || 443
|
|
|
|
@scheme = options[:scheme] || 'https'
|
|
|
|
@connection = Fog::Connection.new("#{@scheme}://#{@host}:#{@port}#{@path}", @persistent, @connection_options)
|
2011-01-14 03:55:33 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def reload
|
|
|
|
@connection.reset
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def request(params)
|
|
|
|
idempotent = params.delete(:idempotent)
|
|
|
|
parser = params.delete(:parser)
|
|
|
|
|
|
|
|
body = AWS.signed_params(
|
|
|
|
params,
|
|
|
|
{
|
|
|
|
:aws_access_key_id => @aws_access_key_id,
|
|
|
|
:hmac => @hmac,
|
|
|
|
:host => @host,
|
|
|
|
:path => @path,
|
2011-02-01 03:49:32 -05:00
|
|
|
:port => @port
|
2011-01-14 03:55:33 -05:00
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
response = @connection.request({
|
|
|
|
:body => body,
|
|
|
|
:expects => 200,
|
|
|
|
:idempotent => idempotent,
|
2011-02-01 03:49:32 -05:00
|
|
|
:headers => { 'Content-Type' => 'application/x-www-form-urlencoded' },
|
2011-01-14 03:55:33 -05:00
|
|
|
:host => @host,
|
|
|
|
:method => 'POST',
|
|
|
|
:parser => parser
|
|
|
|
})
|
|
|
|
|
|
|
|
response
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|