Class: Workarea::Payment::Capture::CreditCard

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

Instance Method Summary collapse

Methods included from Workarea::Payment::CreditCardOperation

#gateway, #handle_active_merchant_errors

Methods included from OperationImplementation

#initialize, #validate_reference!

Instance Method Details

#cancel!Object



19
20
21
# File 'app/models/workarea/payment/capture/credit_card.rb', line 19

def cancel!
  # noop, can't cancel a capture
end

#complete!Object



8
9
10
11
12
13
14
15
16
17
# File 'app/models/workarea/payment/capture/credit_card.rb', line 8

def complete!
  validate_reference!

  transaction.response = handle_active_merchant_errors do
    gateway.capture(
      transaction.amount.cents,
      transaction.reference.response.authorization
    )
  end
end