module Spree class Gateway::StripeGateway < Gateway preference :secret_key, :string preference :publishable_key, :string CARD_TYPE_MAPPING = { 'American Express' => 'american_express', 'Diners Club' => 'diners_club', 'Discover' => 'discover', 'JCB' => 'jcb', 'Laser' => 'laser', 'Maestro' => 'maestro', 'MasterCard' => 'master', 'Solo' => 'solo', 'Switch' => 'switch', 'Visa' => 'visa' } def method_type 'stripe' end def provider_class ActiveMerchant::Billing::StripeGateway end def payment_profiles_supported? true end def purchase(money, creditcard, gateway_options) provider.purchase(*options_for_purchase_or_auth(money, creditcard, gateway_options)) end def authorize(money, creditcard, gateway_options) provider.authorize(*options_for_purchase_or_auth(money, creditcard, gateway_options)) end def capture(money, response_code, gateway_options) provider.capture(money, response_code, gateway_options) end def credit(money, creditcard, response_code, gateway_options) provider.refund(money, response_code, {}) end def void(response_code, creditcard, gateway_options) provider.void(response_code, {}) end def cancel(response_code) provider.void(response_code, {}) end def create_profile(payment) return unless payment.source.gateway_customer_profile_id.nil? options = { email: payment.order.email, login: preferred_secret_key, }.merge! address_for(payment) source = update_source!(payment.source) if source.gateway_payment_profile_id.present? creditcard = source.gateway_payment_profile_id else creditcard = source end response = provider.store(creditcard, options) if response.success? cc_type=payment.source.cc_type response_cc_type = response.params['sources']['data'].first['brand'] cc_type = CARD_TYPE_MAPPING[response_cc_type] if CARD_TYPE_MAPPING.include?(response_cc_type) payment.source.update!({ cc_type: cc_type, # side-effect of update_source! gateway_customer_profile_id: response.params['id'], gateway_payment_profile_id: response.params['default_source'] || response.params['default_card'] }) else payment.send(:gateway_error, response.message) end end private # In this gateway, what we call 'secret_key' is the 'login' def options super.merge( login: preferred_secret_key, application: app_info ) end def options_for_purchase_or_auth(money, creditcard, gateway_options) options = {} options[:description] = "Spree Order ID: #{gateway_options[:order_id]}" options[:currency] = gateway_options[:currency] options[:application] = app_info if customer = creditcard.gateway_customer_profile_id options[:customer] = customer end if token_or_card_id = creditcard.gateway_payment_profile_id # The Stripe ActiveMerchant gateway supports passing the token directly as the creditcard parameter # The Stripe ActiveMerchant gateway supports passing the customer_id and credit_card id # https://github.com/Shopify/active_merchant/issues/770 creditcard = token_or_card_id end return money, creditcard, options end def address_for(payment) {}.tap do |options| if address = payment.order.bill_address options.merge!(address: { address1: address.address1, address2: address.address2, city: address.city, zip: address.zipcode }) if country = address.country options[:address].merge!(country: country.name) end if state = address.state options[:address].merge!(state: state.name) end end end end def update_source!(source) source.cc_type = CARD_TYPE_MAPPING[source.cc_type] if CARD_TYPE_MAPPING.include?(source.cc_type) source end def app_info name_with_version = "SpreeGateway/#{SpreeGateway.version}" url = 'https://spreecommerce.org' "#{name_with_version} #{url}" end end end