Class: SagePay::Server::Authorise
- Defined in:
- lib/sage_pay/server/authorise.rb
Instance Attribute Summary collapse
-
#apply_avs_cv2 ⇒ Object
Returns the value of attribute apply_avs_cv2.
-
#description ⇒ Object
Returns the value of attribute description.
-
#related_transaction ⇒ Object
Returns the value of attribute related_transaction.
Attributes inherited from Command
#mode, #vendor, #vendor_tx_code
Instance Method Summary collapse
- #live_service ⇒ Object
- #post_params ⇒ Object
- #response_from_response_body(response_body) ⇒ Object
- #simulator_service ⇒ Object
Methods inherited from Command
decimal_accessor, #initialize, #run!, #url
Constructor Details
This class inherits a constructor from SagePay::Server::Command
Instance Attribute Details
#apply_avs_cv2 ⇒ Object
Returns the value of attribute apply_avs_cv2.
6 7 8 |
# File 'lib/sage_pay/server/authorise.rb', line 6 def apply_avs_cv2 @apply_avs_cv2 end |
#description ⇒ Object
Returns the value of attribute description.
6 7 8 |
# File 'lib/sage_pay/server/authorise.rb', line 6 def description @description end |
#related_transaction ⇒ Object
Returns the value of attribute related_transaction.
6 7 8 |
# File 'lib/sage_pay/server/authorise.rb', line 6 def @related_transaction end |
Instance Method Details
#live_service ⇒ Object
35 36 37 |
# File 'lib/sage_pay/server/authorise.rb', line 35 def live_service "authorise" end |
#post_params ⇒ Object
18 19 20 21 22 23 24 25 26 27 |
# File 'lib/sage_pay/server/authorise.rb', line 18 def post_params params = super.merge({ "Amount" => ("%.2f" % amount), "Description" => description }).merge(.post_params) params['ApplyAVSCV2'] = apply_avs_cv2.to_s if apply_avs_cv2.present? params end |
#response_from_response_body(response_body) ⇒ Object
29 30 31 32 33 |
# File 'lib/sage_pay/server/authorise.rb', line 29 def response_from_response_body(response_body) # FIXME: Since RepeatResponse is being shared for repeats and # authorisations, it should probably be renamed. RepeatResponse.from_response_body(response_body) end |
#simulator_service ⇒ Object
39 40 41 |
# File 'lib/sage_pay/server/authorise.rb', line 39 def simulator_service "VendorAuthoriseTx" end |