Class: OffsitePayments::Integrations::MollieIdeal::Helper
- Defined in:
- lib/offsite_payments/integrations/mollie_ideal.rb
Instance Attribute Summary collapse
-
#redirect_parameters ⇒ Object
readonly
Returns the value of attribute redirect_parameters.
-
#token ⇒ Object
readonly
Returns the value of attribute token.
-
#transaction_id ⇒ Object
readonly
Returns the value of attribute transaction_id.
Attributes inherited from Helper
Instance Method Summary collapse
- #credential_based_url ⇒ Object
- #form_method ⇒ Object
-
#initialize(order, account, options = {}) ⇒ Helper
constructor
A new instance of Helper.
- #request_redirect ⇒ Object
- #set_form_fields_for_redirect(uri) ⇒ Object
Methods inherited from Helper
#add_field, #add_fields, #add_raw_html_field, #billing_address, #form_fields, inherited, mapping, #raw_html_fields, #shipping_address, #test?
Constructor Details
#initialize(order, account, options = {}) ⇒ Helper
Returns a new instance of Helper.
72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 |
# File 'lib/offsite_payments/integrations/mollie_ideal.rb', line 72 def initialize(order, account, = {}) @token = account @redirect_parameters = { :amount => [:amount], :description => [:description], :issuer => [:redirect_param], :redirectUrl => [:return_url], :method => 'ideal', :metadata => { :order => order } } @redirect_parameters[:webhookUrl] = [:notify_url] if [:notify_url] super raise ArgumentError, "The redirect_param option needs to be set to the bank_id the customer selected." if [:redirect_param].blank? raise ArgumentError, "The return_url option needs to be set." if [:return_url].blank? raise ArgumentError, "The description option needs to be set." if [:description].blank? end |
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class OffsitePayments::Helper
Instance Attribute Details
#redirect_parameters ⇒ Object (readonly)
Returns the value of attribute redirect_parameters.
70 71 72 |
# File 'lib/offsite_payments/integrations/mollie_ideal.rb', line 70 def redirect_parameters @redirect_parameters end |
#token ⇒ Object (readonly)
Returns the value of attribute token.
70 71 72 |
# File 'lib/offsite_payments/integrations/mollie_ideal.rb', line 70 def token @token end |
#transaction_id ⇒ Object (readonly)
Returns the value of attribute transaction_id.
70 71 72 |
# File 'lib/offsite_payments/integrations/mollie_ideal.rb', line 70 def transaction_id @transaction_id end |
Instance Method Details
#credential_based_url ⇒ Object
92 93 94 95 96 97 98 99 100 |
# File 'lib/offsite_payments/integrations/mollie_ideal.rb', line 92 def credential_based_url response = request_redirect @transaction_id = response['id'] uri = URI.parse(response['links']['paymentUrl']) set_form_fields_for_redirect(uri) uri.query = '' uri.to_s.sub(/\?\z/, '') end |
#form_method ⇒ Object
102 103 104 |
# File 'lib/offsite_payments/integrations/mollie_ideal.rb', line 102 def form_method "GET" end |
#request_redirect ⇒ Object
116 117 118 119 120 121 122 123 124 125 126 127 128 |
# File 'lib/offsite_payments/integrations/mollie_ideal.rb', line 116 def request_redirect MollieIdeal.create_payment(token, redirect_parameters) rescue ActiveUtils::ResponseError => e case e.response.code when '401', '403', '422' error = JSON.parse(e.response.body)['error']['message'] raise ActionViewHelperError, error when '503' raise ActionViewHelperError, 'Service temporarily unavailable. Please try again.' else raise end end |
#set_form_fields_for_redirect(uri) ⇒ Object
106 107 108 109 110 111 112 113 114 |
# File 'lib/offsite_payments/integrations/mollie_ideal.rb', line 106 def set_form_fields_for_redirect(uri) CGI.parse(uri.query).each do |key, value| if value.is_a?(Array) && value.length == 1 add_field(key, value.first) else add_field(key, value) end end end |