mirror of
https://github.com/stripe/stripe-ruby.git
synced 2025-12-01 00:01:13 -05:00
Merge branch 'refactor'
Conflicts: lib/stripe.rb
This commit is contained in:
commit
6b044e90ca
273
lib/stripe.rb
273
lib/stripe.rb
@ -43,188 +43,179 @@ require 'stripe/errors/invalid_request_error'
|
|||||||
require 'stripe/errors/authentication_error'
|
require 'stripe/errors/authentication_error'
|
||||||
|
|
||||||
module Stripe
|
module Stripe
|
||||||
@@ssl_bundle_path = File.join(File.dirname(__FILE__), 'data/ca-certificates.crt')
|
@api_base = 'https://api.stripe.com'
|
||||||
@@api_key = nil
|
|
||||||
@@api_base = 'https://api.stripe.com'
|
@ssl_bundle_path = File.dirname(__FILE__) + '/data/ca-certificates.crt'
|
||||||
@@verify_ssl_certs = true
|
@verify_ssl_certs = true
|
||||||
@@api_version = nil
|
|
||||||
|
class << self
|
||||||
|
attr_accessor :api_key, :api_base, :verify_ssl_certs, :api_version
|
||||||
|
end
|
||||||
|
|
||||||
def self.api_url(url='')
|
def self.api_url(url='')
|
||||||
@@api_base + url
|
@api_base + url
|
||||||
end
|
|
||||||
|
|
||||||
def self.api_key=(api_key)
|
|
||||||
@@api_key = api_key
|
|
||||||
end
|
|
||||||
|
|
||||||
def self.api_key
|
|
||||||
@@api_key
|
|
||||||
end
|
|
||||||
|
|
||||||
def self.api_base=(api_base)
|
|
||||||
@@api_base = api_base
|
|
||||||
end
|
|
||||||
|
|
||||||
def self.api_base
|
|
||||||
@@api_base
|
|
||||||
end
|
|
||||||
|
|
||||||
def self.verify_ssl_certs=(verify)
|
|
||||||
@@verify_ssl_certs = verify
|
|
||||||
end
|
|
||||||
|
|
||||||
def self.verify_ssl_certs
|
|
||||||
@@verify_ssl_certs
|
|
||||||
end
|
|
||||||
|
|
||||||
def self.api_version=(version)
|
|
||||||
@@api_version = version
|
|
||||||
end
|
|
||||||
|
|
||||||
def self.api_version
|
|
||||||
@@api_version
|
|
||||||
end
|
end
|
||||||
|
|
||||||
def self.request(method, url, api_key, params={}, headers={})
|
def self.request(method, url, api_key, params={}, headers={})
|
||||||
api_key ||= @@api_key
|
unless api_key ||= @api_key
|
||||||
raise AuthenticationError.new('No API key provided. (HINT: set your API key using "Stripe.api_key = <API-KEY>". You can generate API keys from the Stripe web interface. See https://stripe.com/api for details, or email support@stripe.com if you have any questions.)') unless api_key
|
raise AuthenticationError.new('No API key provided.' +
|
||||||
|
'Set your API key using "Stripe.api_key = <API-KEY>". ' +
|
||||||
if !verify_ssl_certs
|
'You can generate API keys from the Stripe web interface. ' +
|
||||||
unless @no_verify
|
'See https://stripe.com/api for details, or email support@stripe.com ' +
|
||||||
$stderr.puts "WARNING: Running without SSL cert verification. Execute 'Stripe.verify_ssl_certs = true' to enable verification."
|
'if you have any questions.')
|
||||||
@no_verify = true
|
end
|
||||||
end
|
|
||||||
ssl_opts = { :verify_ssl => false }
|
request_opts = { :verify_ssl => false }
|
||||||
elsif !Util.file_readable(@@ssl_bundle_path)
|
|
||||||
unless @no_bundle
|
if ssl_preflight_passed?
|
||||||
$stderr.puts "WARNING: Running without SSL cert verification because #{@@ssl_bundle_path} isn't readable"
|
request_opts.update(:verify_ssl => OpenSSL::SSL::VERIFY_PEER,
|
||||||
@no_bundle = true
|
:ssl_ca_file => @ssl_bundle_path)
|
||||||
end
|
|
||||||
ssl_opts = { :verify_ssl => false }
|
|
||||||
else
|
|
||||||
ssl_opts = {
|
|
||||||
:verify_ssl => OpenSSL::SSL::VERIFY_PEER,
|
|
||||||
:ssl_ca_file => @@ssl_bundle_path
|
|
||||||
}
|
|
||||||
end
|
end
|
||||||
uname = (@@uname ||= RUBY_PLATFORM =~ /linux|darwin/i ? `uname -a 2>/dev/null`.strip : nil)
|
|
||||||
lang_version = "#{RUBY_VERSION} p#{RUBY_PATCHLEVEL} (#{RUBY_RELEASE_DATE})"
|
|
||||||
ua = {
|
|
||||||
:bindings_version => Stripe::VERSION,
|
|
||||||
:lang => 'ruby',
|
|
||||||
:lang_version => lang_version,
|
|
||||||
:platform => RUBY_PLATFORM,
|
|
||||||
:publisher => 'stripe',
|
|
||||||
:uname => uname
|
|
||||||
}
|
|
||||||
|
|
||||||
params = Util.objects_to_ids(params)
|
params = Util.objects_to_ids(params)
|
||||||
url = self.api_url(url)
|
url = api_url(url)
|
||||||
|
|
||||||
case method.to_s.downcase.to_sym
|
case method.to_s.downcase.to_sym
|
||||||
when :get, :head, :delete
|
when :get, :head, :delete
|
||||||
# Make params into GET parameters
|
# Make params into GET parameters
|
||||||
if params && params.count > 0
|
url += "#{URI.parse(url).query ? '&' : '?'}#{uri_encode(params)}" if params && params.any?
|
||||||
query_string = Util.flatten_params(params).collect{|key, value| "#{key}=#{Util.url_encode(value)}"}.join('&')
|
|
||||||
url += "#{URI.parse(url).query ? '&' : '?'}#{query_string}"
|
|
||||||
end
|
|
||||||
payload = nil
|
payload = nil
|
||||||
else
|
else
|
||||||
payload = Util.flatten_params(params).collect{|(key, value)| "#{key}=#{Util.url_encode(value)}"}.join('&')
|
payload = uri_encode(params)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
request_opts.update(:headers => request_headers.update(headers),
|
||||||
|
:method => method, :open_timeout => 30,
|
||||||
|
:payload => payload, :url => url, :timeout => 80)
|
||||||
|
|
||||||
begin
|
begin
|
||||||
headers = { :x_stripe_client_user_agent => Stripe::JSON.dump(ua) }.merge(headers)
|
response = execute_request(request_opts)
|
||||||
rescue => e
|
|
||||||
headers = {
|
|
||||||
:x_stripe_client_raw_user_agent => ua.inspect,
|
|
||||||
:error => "#{e} (#{e.class})"
|
|
||||||
}.merge(headers)
|
|
||||||
end
|
|
||||||
|
|
||||||
headers = {
|
|
||||||
:user_agent => "Stripe/v1 RubyBindings/#{Stripe::VERSION}",
|
|
||||||
:authorization => "Bearer #{api_key}",
|
|
||||||
:content_type => 'application/x-www-form-urlencoded'
|
|
||||||
}.merge(headers)
|
|
||||||
|
|
||||||
if self.api_version
|
|
||||||
headers[:stripe_version] = self.api_version
|
|
||||||
end
|
|
||||||
|
|
||||||
opts = {
|
|
||||||
:method => method,
|
|
||||||
:url => url,
|
|
||||||
:headers => headers,
|
|
||||||
:open_timeout => 30,
|
|
||||||
:payload => payload,
|
|
||||||
:timeout => 80
|
|
||||||
}.merge(ssl_opts)
|
|
||||||
|
|
||||||
begin
|
|
||||||
response = execute_request(opts)
|
|
||||||
rescue SocketError => e
|
rescue SocketError => e
|
||||||
self.handle_restclient_error(e)
|
handle_restclient_error(e)
|
||||||
rescue NoMethodError => e
|
rescue NoMethodError => e
|
||||||
# Work around RestClient bug
|
# Work around RestClient bug
|
||||||
if e.message =~ /\WRequestFailed\W/
|
if e.message =~ /\WRequestFailed\W/
|
||||||
e = APIConnectionError.new('Unexpected HTTP response code')
|
e = APIConnectionError.new('Unexpected HTTP response code')
|
||||||
self.handle_restclient_error(e)
|
handle_restclient_error(e)
|
||||||
else
|
else
|
||||||
raise
|
raise
|
||||||
end
|
end
|
||||||
rescue RestClient::ExceptionWithResponse => e
|
rescue RestClient::ExceptionWithResponse => e
|
||||||
if rcode = e.http_code and rbody = e.http_body
|
if rcode = e.http_code and rbody = e.http_body
|
||||||
self.handle_api_error(rcode, rbody)
|
handle_api_error(rcode, rbody)
|
||||||
else
|
else
|
||||||
self.handle_restclient_error(e)
|
handle_restclient_error(e)
|
||||||
end
|
end
|
||||||
rescue RestClient::Exception, Errno::ECONNREFUSED => e
|
rescue RestClient::Exception, Errno::ECONNREFUSED => e
|
||||||
self.handle_restclient_error(e)
|
handle_restclient_error(e)
|
||||||
end
|
end
|
||||||
|
|
||||||
rbody = response.body
|
parse(response)
|
||||||
rcode = response.code
|
|
||||||
begin
|
|
||||||
# Would use :symbolize_names => true, but apparently there is
|
|
||||||
# some library out there that makes symbolize_names not work.
|
|
||||||
resp = Stripe::JSON.load(rbody)
|
|
||||||
rescue MultiJson::DecodeError
|
|
||||||
raise APIError.new("Invalid response object from API: #{rbody.inspect} (HTTP response code was #{rcode})", rcode, rbody)
|
|
||||||
end
|
|
||||||
|
|
||||||
resp = Util.symbolize_names(resp)
|
|
||||||
[resp, api_key]
|
|
||||||
end
|
end
|
||||||
|
|
||||||
private
|
private
|
||||||
|
|
||||||
|
def self.ssl_preflight_passed?
|
||||||
|
if !verify_ssl_certs && !@no_verify
|
||||||
|
$stderr.puts "WARNING: Running without SSL cert verification. " +
|
||||||
|
"Execute 'Stripe.verify_ssl_certs = true' to enable verification."
|
||||||
|
|
||||||
|
@no_verify = true
|
||||||
|
|
||||||
|
elsif !Util.file_readable(@ssl_bundle_path) && !@no_bundle
|
||||||
|
$stderr.puts "WARNING: Running without SSL cert verification " +
|
||||||
|
"because #{@ssl_bundle_path} isn't readable"
|
||||||
|
|
||||||
|
@no_bundle = true
|
||||||
|
end
|
||||||
|
|
||||||
|
!(@no_verify || @no_nobundle)
|
||||||
|
end
|
||||||
|
|
||||||
|
def self.user_agent
|
||||||
|
@uname ||= `uname -a 2>/dev/null`.strip if RUBY_PLATFORM =~ /linux|darwin/i
|
||||||
|
lang_version = "#{RUBY_VERSION} p#{RUBY_PATCHLEVEL} (#{RUBY_RELEASE_DATE})"
|
||||||
|
|
||||||
|
{
|
||||||
|
:bindings_version => Stripe::VERSION,
|
||||||
|
:lang => 'ruby',
|
||||||
|
:lang_version => lang_version,
|
||||||
|
:platform => RUBY_PLATFORM,
|
||||||
|
:publisher => 'stripe',
|
||||||
|
:uname => @uname
|
||||||
|
}
|
||||||
|
|
||||||
|
end
|
||||||
|
|
||||||
|
def self.uri_encode(params)
|
||||||
|
Util.flatten_params(params).
|
||||||
|
map { |k,v| "#{k}=#{Util.url_encode(v)}" }.join('&')
|
||||||
|
end
|
||||||
|
|
||||||
|
def self.request_headers
|
||||||
|
headers = {
|
||||||
|
:user_agent => "Stripe/v1 RubyBindings/#{Stripe::VERSION}",
|
||||||
|
:authorization => "Bearer #{api_key}",
|
||||||
|
:content_type => 'application/x-www-form-urlencoded'
|
||||||
|
}
|
||||||
|
|
||||||
|
headers[:stripe_version] = api_version if api_version
|
||||||
|
|
||||||
|
begin
|
||||||
|
headers.update(:x_stripe_client_user_agent => Stripe::JSON.dump(user_agent))
|
||||||
|
rescue => e
|
||||||
|
headers.update(:x_stripe_client_raw_user_agent => user_agent.inspect,
|
||||||
|
:error => "#{e} (#{e.class})")
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
def self.execute_request(opts)
|
def self.execute_request(opts)
|
||||||
RestClient::Request.execute(opts)
|
RestClient::Request.execute(opts)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def self.parse(response)
|
||||||
|
begin
|
||||||
|
# Would use :symbolize_names => true, but apparently there is
|
||||||
|
# some library out there that makes symbolize_names not work.
|
||||||
|
response = Stripe::JSON.load(response.body)
|
||||||
|
rescue MultiJson::DecodeError
|
||||||
|
raise general_api_error(response.code, response.body)
|
||||||
|
end
|
||||||
|
|
||||||
|
[Util.symbolize_names(response), api_key]
|
||||||
|
end
|
||||||
|
|
||||||
|
def self.general_api_error(rcode, rbody)
|
||||||
|
APIError.new("Invalid response object from API: #{rbody.inspect} " +
|
||||||
|
"(HTTP response code was #{rcode})", rcode, rbody)
|
||||||
|
end
|
||||||
|
|
||||||
def self.handle_api_error(rcode, rbody)
|
def self.handle_api_error(rcode, rbody)
|
||||||
begin
|
begin
|
||||||
error_obj = Stripe::JSON.load(rbody)
|
error_obj = Stripe::JSON.load(rbody)
|
||||||
error_obj = Util.symbolize_names(error_obj)
|
error_obj = Util.symbolize_names(error_obj)
|
||||||
error = error_obj[:error] or raise StripeError.new # escape from parsing
|
error = error_obj[:error] or raise StripeError.new # escape from parsing
|
||||||
|
|
||||||
rescue MultiJson::DecodeError, StripeError
|
rescue MultiJson::DecodeError, StripeError
|
||||||
raise APIError.new("Invalid response object from API: #{rbody.inspect} (HTTP response code was #{rcode})", rcode, rbody)
|
raise general_api_error(rcode, rbody)
|
||||||
end
|
end
|
||||||
|
|
||||||
case rcode
|
case rcode
|
||||||
when 400, 404 then
|
when 400, 404
|
||||||
raise invalid_request_error(error, rcode, rbody, error_obj)
|
raise invalid_request_error error, rcode, rbody, error_obj
|
||||||
when 401
|
when 401
|
||||||
raise authentication_error(error, rcode, rbody, error_obj)
|
raise authentication_error error, rcode, rbody, error_obj
|
||||||
when 402
|
when 402
|
||||||
raise card_error(error, rcode, rbody, error_obj)
|
raise card_error error, rcode, rbody, error_obj
|
||||||
else
|
else
|
||||||
raise api_error(error, rcode, rbody, error_obj)
|
raise api_error error, rcode, rbody, error_obj
|
||||||
end
|
end
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
||||||
def self.invalid_request_error(error, rcode, rbody, error_obj)
|
def self.invalid_request_error(error, rcode, rbody, error_obj)
|
||||||
InvalidRequestError.new(error[:message], error[:param], rcode, rbody, error_obj)
|
InvalidRequestError.new(error[:message], error[:param], rcode,
|
||||||
|
rbody, error_obj)
|
||||||
end
|
end
|
||||||
|
|
||||||
def self.authentication_error(error, rcode, rbody, error_obj)
|
def self.authentication_error(error, rcode, rbody, error_obj)
|
||||||
@ -232,7 +223,8 @@ module Stripe
|
|||||||
end
|
end
|
||||||
|
|
||||||
def self.card_error(error, rcode, rbody, error_obj)
|
def self.card_error(error, rcode, rbody, error_obj)
|
||||||
CardError.new(error[:message], error[:param], error[:code], rcode, rbody, error_obj)
|
CardError.new(error[:message], error[:param], error[:code],
|
||||||
|
rcode, rbody, error_obj)
|
||||||
end
|
end
|
||||||
|
|
||||||
def self.api_error(error, rcode, rbody, error_obj)
|
def self.api_error(error, rcode, rbody, error_obj)
|
||||||
@ -242,15 +234,28 @@ module Stripe
|
|||||||
def self.handle_restclient_error(e)
|
def self.handle_restclient_error(e)
|
||||||
case e
|
case e
|
||||||
when RestClient::ServerBrokeConnection, RestClient::RequestTimeout
|
when RestClient::ServerBrokeConnection, RestClient::RequestTimeout
|
||||||
message = "Could not connect to Stripe (#{@@api_base}). Please check your internet connection and try again. If this problem persists, you should check Stripe's service status at https://twitter.com/stripestatus, or let us know at support@stripe.com."
|
message = "Could not connect to Stripe (#{@api_base}). " +
|
||||||
|
"Please check your internet connection and try again. " +
|
||||||
|
"If this problem persists, you should check Stripe's service status at " +
|
||||||
|
"https://twitter.com/stripestatus, or let us know at support@stripe.com."
|
||||||
|
|
||||||
when RestClient::SSLCertificateNotVerified
|
when RestClient::SSLCertificateNotVerified
|
||||||
message = "Could not verify Stripe's SSL certificate. Please make sure that your network is not intercepting certificates. (Try going to https://api.stripe.com/v1 in your browser.) If this problem persists, let us know at support@stripe.com."
|
message = "Could not verify Stripe's SSL certificate. " +
|
||||||
|
"Please make sure that your network is not intercepting certificates. " +
|
||||||
|
"(Try going to https://api.stripe.com/v1 in your browser.) " +
|
||||||
|
"If this problem persists, let us know at support@stripe.com."
|
||||||
|
|
||||||
when SocketError
|
when SocketError
|
||||||
message = "Unexpected error communicating when trying to connect to Stripe. HINT: You may be seeing this message because your DNS is not working. To check, try running 'host stripe.com' from the command line."
|
message = "Unexpected error communicating when trying to connect to Stripe. " +
|
||||||
|
"You may be seeing this message because your DNS is not working. " +
|
||||||
|
"To check, try running 'host stripe.com' from the command line."
|
||||||
|
|
||||||
else
|
else
|
||||||
message = "Unexpected error communicating with Stripe. If this problem persists, let us know at support@stripe.com."
|
message = "Unexpected error communicating with Stripe. " +
|
||||||
|
"If this problem persists, let us know at support@stripe.com."
|
||||||
|
|
||||||
end
|
end
|
||||||
message += "\n\n(Network error: #{e.message})"
|
|
||||||
raise APIConnectionError.new(message)
|
raise APIConnectionError.new(message + "\n\n(Network error: #{e.message})")
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user