Class: Braintree::CreditCardVerificationGateway

Inherits:
Object
  • Object
show all
Defined in:
lib/braintree/credit_card_verification_gateway.rb

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(gateway) ⇒ CreditCardVerificationGateway

Returns a new instance of CreditCardVerificationGateway.



3
4
5
6
7
# File 'lib/braintree/credit_card_verification_gateway.rb', line 3

def initialize(gateway)
  @gateway = gateway
  @config = gateway.config
  @config.assert_has_access_token_or_keys
end

Class Method Details

._create_signatureObject



49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
# File 'lib/braintree/credit_card_verification_gateway.rb', line 49

def self._create_signature
  [
    {:credit_card => [
      {:billing_address => AddressGateway._shared_signature},
      :cardholder_name,
      :cvv,
      :expiration_date,
      :expiration_month,
      :expiration_year,
      :number,
    ]},
    {:external_vault => [
      :previous_network_transaction_id,
      :status,
    ]},
    :intended_transaction_source,
    {:options => [
      :account_information_inquiry,
      :account_type,
      :amount,
      :merchant_account_id,
    ]},
    :payment_method_nonce,
    {:risk_data => [
      :customer_browser,
      :customer_ip,
    ]},
    :three_d_secure_authentication_id,
    {:three_d_secure_pass_thru => [
      :authentication_response,
      :cavv,
      :cavv_algorithm,
      :directory_response,
      :ds_transaction_id,
      :eci_flag,
      :three_d_secure_version,
      :xid,
    ]},
  ]
end

Instance Method Details

#_fetch_verifications(search, ids) ⇒ Object



41
42
43
44
45
46
47
# File 'lib/braintree/credit_card_verification_gateway.rb', line 41

def _fetch_verifications(search, ids)
  search.ids.in ids
  search_params = search.to_hash.merge({:verification_type => ["credit_card"]})
  response = @config.http.post("#{@config.base_merchant_path}/verifications/advanced_search", {:search => search_params})
  attributes = response[:credit_card_verifications]
  Util.extract_attribute_as_array(attributes, :verification).map { |attrs| CreditCardVerification._new(attrs) }
end

#_handle_verification_create_response(response) ⇒ Object



31
32
33
34
35
36
37
38
39
# File 'lib/braintree/credit_card_verification_gateway.rb', line 31

def _handle_verification_create_response(response)
  if response[:verification]
    SuccessfulResult.new(:verification => CreditCardVerification._new(response[:verification]))
  elsif response[:api_error_response]
    ErrorResult.new(@gateway, response[:api_error_response])
  else
    raise UnexpectedError, "expected :verification or :api_error_response"
  end
end

#create(params) ⇒ Object



26
27
28
29
# File 'lib/braintree/credit_card_verification_gateway.rb', line 26

def create(params)
  response = @config.http.post("#{@config.base_merchant_path}/verifications", :verification => params)
  _handle_verification_create_response(response)
end

#find(id) ⇒ Object



9
10
11
12
13
14
15
# File 'lib/braintree/credit_card_verification_gateway.rb', line 9

def find(id)
  raise ArgumentError if id.nil? || id.to_s.strip == ""
  response = @config.http.get("#{@config.base_merchant_path}/verifications/#{id}")
  CreditCardVerification._new(response[:verification])
rescue NotFoundError
  raise NotFoundError, "verification with id #{id.inspect} not found"
end

#search(&block) ⇒ Object



17
18
19
20
21
22
23
24
# File 'lib/braintree/credit_card_verification_gateway.rb', line 17

def search(&block)
  search = CreditCardVerificationSearch.new
  block.call(search) if block

  search_params = search.to_hash.merge({:verification_type => ["credit_card"]})
  response = @config.http.post("#{@config.base_merchant_path}/verifications/advanced_search_ids", {:search => search_params})
  ResourceCollection.new(response) { |ids| _fetch_verifications(search, ids) }
end