Class: IyziPay::Model::ThreedsPayment
Constant Summary
IyziPayResource::AUTHORIZATION_HEADER_NAME, IyziPayResource::AUTHORIZATION_HEADER_STRING, IyziPayResource::RANDOM_CHARS, IyziPayResource::RANDOM_HEADER_NAME, IyziPayResource::RANDOM_STRING_SIZE
Instance Method Summary
collapse
#calculate_hash, #format_header_string, #get_http_header, #get_plain_http_header, #json_decode, #prepare_authorization_string, #random_string, #to_pki_string
Instance Method Details
#create(request = {}, options) ⇒ Object
5
6
7
8
|
# File 'lib/iyzipay/model/threeds_payment.rb', line 5
def create(request = {}, options)
pki_string = to_pki_string_create(request)
HttpClient.post("#{options.base_url}/payment/iyzipos/auth3ds/ecom", (pki_string, options), request.to_json)
end
|
#retrieve(request = {}, options) ⇒ Object
10
11
12
13
|
# File 'lib/iyzipay/model/threeds_payment.rb', line 10
def retrieve(request = {}, options)
pki_string = to_pki_string_retrieve(request)
HttpClient.post("#{options.base_url}/payment/detail", (pki_string, options), request.to_json)
end
|
#to_pki_string_create(request) ⇒ Object
15
16
17
18
19
20
21
22
|
# File 'lib/iyzipay/model/threeds_payment.rb', line 15
def to_pki_string_create(request)
PkiBuilder.new.
append(:locale, request[:locale]).
append(:conversationId, request[:conversationId]).
append(:paymentId, request[:paymentId]).
append(:conversationData, request[:conversationData]).
get_request_string
end
|
#to_pki_string_retrieve(request) ⇒ Object
24
25
26
27
28
29
30
31
|
# File 'lib/iyzipay/model/threeds_payment.rb', line 24
def to_pki_string_retrieve(request)
PkiBuilder.new.
append(:locale, request[:locale]).
append(:conversationId, request[:conversationId]).
append(:paymentId, request[:paymentId]).
append(:paymentConversationId, request[:paymentConversationId]).
get_request_string
end
|