Class: OffsitePayments::Integrations::MollieMistercash::Helper
- Defined in:
- lib/offsite_payments/integrations/mollie_mistercash.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
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.
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
# File 'lib/offsite_payments/integrations/mollie_mistercash.rb', line 35 def initialize(order, account, = {}) @token = account @redirect_parameters = { :amount => [:amount], :description => [:description], :redirectUrl => [:return_url], :method => 'mistercash', :metadata => { :order => order } } @redirect_parameters[:webhookUrl] = [:notify_url] if [:notify_url] super 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.
33 34 35 |
# File 'lib/offsite_payments/integrations/mollie_mistercash.rb', line 33 def redirect_parameters @redirect_parameters end |
#token ⇒ Object (readonly)
Returns the value of attribute token.
33 34 35 |
# File 'lib/offsite_payments/integrations/mollie_mistercash.rb', line 33 def token @token end |
#transaction_id ⇒ Object (readonly)
Returns the value of attribute transaction_id.
33 34 35 |
# File 'lib/offsite_payments/integrations/mollie_mistercash.rb', line 33 def transaction_id @transaction_id end |
Instance Method Details
#credential_based_url ⇒ Object
53 54 55 56 57 |
# File 'lib/offsite_payments/integrations/mollie_mistercash.rb', line 53 def credential_based_url response = request_redirect uri = URI.parse(response['links']['paymentUrl']) uri.to_s end |
#form_method ⇒ Object
59 60 61 |
# File 'lib/offsite_payments/integrations/mollie_mistercash.rb', line 59 def form_method "GET" end |
#request_redirect ⇒ Object
63 64 65 66 67 68 69 70 71 72 73 74 75 |
# File 'lib/offsite_payments/integrations/mollie_mistercash.rb', line 63 def request_redirect MollieMistercash.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 |