Class: Workarea::Payment::Capture::Afterpay

Inherits:
Object
  • Object
show all
Includes:
CreditCardOperation, OperationImplementation, AfterpayPaymentGateway
Defined in:
app/models/workarea/payment/capture/afterpay.rb

Instance Method Summary collapse

Methods included from AfterpayPaymentGateway

#gateway

Instance Method Details

#cancel!Object



29
30
31
# File 'app/models/workarea/payment/capture/afterpay.rb', line 29

def cancel!
  # No op - no cancel functionality available.
end

#complete!Object



9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# File 'app/models/workarea/payment/capture/afterpay.rb', line 9

def complete!
  response = capture
  if response.success? && response.body['status'] == 'APPROVED'
    transaction.response = ActiveMerchant::Billing::Response.new(
      true,
      I18n.t(
        'workarea.afterpay.capture',
        amount: transaction.amount
      ),
      response.body
    )
  else
     transaction.response = ActiveMerchant::Billing::Response.new(
       false,
      I18n.t('workarea.afterpay.capture_failure'),
      response.body
    )
  end
end