Class: ActiveMerchant::Billing::PaypalGateway
- Includes:
- PaypalCommonAPI, PaypalRecurringApi
- Defined in:
- lib/active_merchant/billing/gateways/paypal.rb
Direct Known Subclasses
Constant Summary
Constants included from PaypalRecurringApi
ActiveMerchant::Billing::PaypalRecurringApi::API_VERSION, ActiveMerchant::Billing::PaypalRecurringApi::EBAY_NAMESPACE, ActiveMerchant::Billing::PaypalRecurringApi::PAYPAL_NAMESPACE
Constants included from PaypalCommonAPI
ActiveMerchant::Billing::PaypalCommonAPI::API_VERSION, ActiveMerchant::Billing::PaypalCommonAPI::API_VERSION_3DS2, ActiveMerchant::Billing::PaypalCommonAPI::AUSTRALIAN_STATES, ActiveMerchant::Billing::PaypalCommonAPI::CREDENTIALS_NAMESPACES, ActiveMerchant::Billing::PaypalCommonAPI::EBAY_NAMESPACE, ActiveMerchant::Billing::PaypalCommonAPI::ENVELOPE_NAMESPACES, ActiveMerchant::Billing::PaypalCommonAPI::FRAUD_REVIEW_CODE, ActiveMerchant::Billing::PaypalCommonAPI::PAYPAL_NAMESPACE, ActiveMerchant::Billing::PaypalCommonAPI::STANDARD_ERROR_CODE_MAPPING, ActiveMerchant::Billing::PaypalCommonAPI::SUCCESS_CODES, ActiveMerchant::Billing::PaypalCommonAPI::URLS
Constants inherited from Gateway
Gateway::CREDIT_DEPRECATION_MESSAGE, Gateway::RECURRING_DEPRECATION_MESSAGE, Gateway::STANDARD_ERROR_CODE
Instance Attribute Summary
Attributes inherited from Gateway
Instance Method Summary collapse
- #authorize(money, credit_card_or_referenced_id, options = {}) ⇒ Object
- #express ⇒ Object
- #purchase(money, credit_card_or_referenced_id, options = {}) ⇒ Object
- #verify(credit_card, options = {}) ⇒ Object
Methods included from PaypalRecurringApi
#bill_outstanding_amount, #cancel_recurring, #reactivate_recurring, #recurring, #status_recurring, #suspend_recurring, #update_recurring
Methods included from PaypalCommonAPI
#authorize_transaction, #balance, #capture, #credit, included, #initialize, #manage_pending_transaction, #reauthorize, #reference_transaction, #refund, #scrub, #supports_scrubbing?, #transaction_details, #transaction_search, #transfer, #void
Methods inherited from Gateway
#add_field_to_post_if_present, #add_fields_to_post_if_present, #card_brand, card_brand, #generate_unique_id, inherited, #initialize, #scrub, #supported_countries, supported_countries, supported_countries=, supports?, #supports_network_tokenization?, #supports_scrubbing?, #test?
Methods included from CreditCardFormatting
Methods included from PostsData
included, #raw_ssl_request, #ssl_get, #ssl_post, #ssl_request
Instance Method Details
#authorize(money, credit_card_or_referenced_id, options = {}) ⇒ Object
16 17 18 19 |
# File 'lib/active_merchant/billing/gateways/paypal.rb', line 16 def (money, credit_card_or_referenced_id, = {}) requires!(, :ip) commit define_transaction_type(credit_card_or_referenced_id), ('Authorization', money, credit_card_or_referenced_id, ) end |
#express ⇒ Object
37 38 39 |
# File 'lib/active_merchant/billing/gateways/paypal.rb', line 37 def express @express ||= PaypalExpressGateway.new(@options) end |
#purchase(money, credit_card_or_referenced_id, options = {}) ⇒ Object
21 22 23 24 |
# File 'lib/active_merchant/billing/gateways/paypal.rb', line 21 def purchase(money, credit_card_or_referenced_id, = {}) requires!(, :ip) commit define_transaction_type(credit_card_or_referenced_id), ('Sale', money, credit_card_or_referenced_id, ) end |
#verify(credit_card, options = {}) ⇒ Object
26 27 28 29 30 31 32 33 34 35 |
# File 'lib/active_merchant/billing/gateways/paypal.rb', line 26 def verify(credit_card, = {}) if %w(visa master).include?(credit_card.brand) (0, credit_card, ) else MultiResponse.run(:use_first_response) do |r| r.process { (100, credit_card, ) } r.process(:ignore_result) { void(r., ) } end end end |