Class: Spree::Wallet::DefaultPaymentBuilder
- Inherits:
-
Object
- Object
- Spree::Wallet::DefaultPaymentBuilder
- Defined in:
- app/models/spree/wallet/default_payment_builder.rb
Overview
This class is responsible for building a default payment on an order, using a payment source that is already in the user’s “wallet” and is marked as being the default payment source.
Instance Method Summary collapse
-
#build ⇒ Payment
Build a payment to be added to an order prior to moving into the “payment” state.
-
#initialize(order) ⇒ DefaultPaymentBuilder
constructor
A new instance of DefaultPaymentBuilder.
Constructor Details
#initialize(order) ⇒ DefaultPaymentBuilder
Returns a new instance of DefaultPaymentBuilder.
7 8 9 |
# File 'app/models/spree/wallet/default_payment_builder.rb', line 7 def initialize(order) @order = order end |
Instance Method Details
#build ⇒ Payment
Build a payment to be added to an order prior to moving into the “payment” state.
15 16 17 18 19 20 21 22 23 |
# File 'app/models/spree/wallet/default_payment_builder.rb', line 15 def build default = order.user.try!(:wallet).try!(:default_wallet_payment_source) if default && order.payments.where(source_type: default.payment_source_type).none? Spree::Payment.new( payment_method: default.payment_source.payment_method, source: default.payment_source, ) end end |