Class: Io::Flow::V0::Clients::Authorizations
- Inherits:
-
Object
- Object
- Io::Flow::V0::Clients::Authorizations
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Instance Method Summary collapse
-
#delete_by_key(organization, key) ⇒ Object
Deprecated.
- #get(organization, incoming = {}) ⇒ Object
-
#get_by_key(organization, key, incoming = {}) ⇒ Object
Returns information about a specific authorization.
-
#get_versions(organization, incoming = {}) ⇒ Object
Provides visibility into recent changes of each object, including deletion.
-
#initialize(client) ⇒ Authorizations
constructor
A new instance of Authorizations.
-
#post(organization, authorization_form, incoming = {}) ⇒ Object
Create a new authorization.
-
#post_details_by_key(organization, key, value) ⇒ Object
Accepts the data from the underlying processor to, for example, record the 3DSecure results.
-
#put_by_key(organization, key, authorization_form, incoming = {}) ⇒ Object
Attempts to create an authorization identified by the provided key.
Constructor Details
#initialize(client) ⇒ Authorizations
Returns a new instance of Authorizations.
3267 3268 3269 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 3267 def initialize(client) @client = HttpClient::Preconditions.assert_class('client', client, ::Io::Flow::V0::Client) end |
Instance Method Details
#delete_by_key(organization, key) ⇒ Object
Deprecated. This end point no longer deletes an authorization and is implemented by creating a reversal for the remaining balance on the auth.
3342 3343 3344 3345 3346 3347 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 3342 def delete_by_key(organization, key) HttpClient::Preconditions.assert_class('organization', organization, String) HttpClient::Preconditions.assert_class('key', key, String) r = @client.request("/#{CGI.escape(organization)}/authorizations/#{CGI.escape(key)}").delete nil end |
#get(organization, incoming = {}) ⇒ Object
3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 3271 def get(organization, incoming={}) HttpClient::Preconditions.assert_class('organization', organization, String) opts = HttpClient::Helper.symbolize_keys(incoming) query = { :id => (x = opts.delete(:id); x.nil? ? nil : HttpClient::Preconditions.assert_class('id', x, Array).map { |v| HttpClient::Preconditions.assert_class('id', v, String) }), :key => (x = opts.delete(:key); x.nil? ? nil : HttpClient::Preconditions.assert_class('key', x, Array).map { |v| HttpClient::Preconditions.assert_class('key', v, String) }), :order_number => (x = opts.delete(:order_number); x.nil? ? nil : HttpClient::Preconditions.assert_class('order_number', x, String)), :limit => HttpClient::Preconditions.assert_class('limit', (x = opts.delete(:limit); x.nil? ? 25 : x), Integer), :offset => HttpClient::Preconditions.assert_class('offset', (x = opts.delete(:offset); x.nil? ? 0 : x), Integer), :sort => HttpClient::Preconditions.assert_class('sort', (x = opts.delete(:sort); x.nil? ? "-created_at" : x), String), :expand => (x = opts.delete(:expand); x.nil? ? nil : HttpClient::Preconditions.assert_class('expand', x, Array).map { |v| HttpClient::Preconditions.assert_class('expand', v, String) }) }.delete_if { |k, v| v.nil? } r = @client.request("/#{CGI.escape(organization)}/authorizations").with_query(query).get r.map { |x| ::Io::Flow::V0::Models::Authorization.from_json(x) } end |
#get_by_key(organization, key, incoming = {}) ⇒ Object
Returns information about a specific authorization.
3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 3315 def get_by_key(organization, key, incoming={}) HttpClient::Preconditions.assert_class('organization', organization, String) HttpClient::Preconditions.assert_class('key', key, String) opts = HttpClient::Helper.symbolize_keys(incoming) query = { :expand => (x = opts.delete(:expand); x.nil? ? nil : HttpClient::Preconditions.assert_class('expand', x, Array).map { |v| HttpClient::Preconditions.assert_class('expand', v, String) }) }.delete_if { |k, v| v.nil? } r = @client.request("/#{CGI.escape(organization)}/authorizations/#{CGI.escape(key)}").with_query(query).get ::Io::Flow::V0::Models::Authorization.from_json(r) end |
#get_versions(organization, incoming = {}) ⇒ Object
Provides visibility into recent changes of each object, including deletion
3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 3300 def get_versions(organization, incoming={}) HttpClient::Preconditions.assert_class('organization', organization, String) opts = HttpClient::Helper.symbolize_keys(incoming) query = { :id => (x = opts.delete(:id); x.nil? ? nil : HttpClient::Preconditions.assert_class('id', x, Array).map { |v| HttpClient::Preconditions.assert_class('id', v, Integer) }), :authorization_id => (x = opts.delete(:authorization_id); x.nil? ? nil : HttpClient::Preconditions.assert_class('authorization_id', x, Array).map { |v| HttpClient::Preconditions.assert_class('authorization_id', v, String) }), :limit => HttpClient::Preconditions.assert_class('limit', (x = opts.delete(:limit); x.nil? ? 25 : x), Integer), :offset => HttpClient::Preconditions.assert_class('offset', (x = opts.delete(:offset); x.nil? ? 0 : x), Integer), :sort => HttpClient::Preconditions.assert_class('sort', (x = opts.delete(:sort); x.nil? ? "journal_timestamp" : x), String) }.delete_if { |k, v| v.nil? } r = @client.request("/#{CGI.escape(organization)}/authorizations/versions").with_query(query).get r.map { |x| ::Io::Flow::V0::Models::AuthorizationVersion.new(x) } end |
#post(organization, authorization_form, incoming = {}) ⇒ Object
Create a new authorization.
3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 3288 def post(organization, , incoming={}) HttpClient::Preconditions.assert_class('organization', organization, String) opts = HttpClient::Helper.symbolize_keys(incoming) query = { :expand => (x = opts.delete(:expand); x.nil? ? nil : HttpClient::Preconditions.assert_class('expand', x, Array).map { |v| HttpClient::Preconditions.assert_class('expand', v, String) }) }.delete_if { |k, v| v.nil? } (x = ; x.is_a?(::Io::Flow::V0::Models::AuthorizationForm) ? x : ::Io::Flow::V0::Models::AuthorizationForm.from_json(x)) r = @client.request("/#{CGI.escape(organization)}/authorizations").with_query(query).with_json(.to_json).post ::Io::Flow::V0::Models::Authorization.from_json(r) end |
#post_details_by_key(organization, key, value) ⇒ Object
Accepts the data from the underlying processor to, for example, record the 3DSecure results
3351 3352 3353 3354 3355 3356 3357 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 3351 def post_details_by_key(organization, key, value) HttpClient::Preconditions.assert_class('organization', organization, String) HttpClient::Preconditions.assert_class('key', key, String) HttpClient::Preconditions.assert_class('value', value, BasicObject) r = @client.request("/#{CGI.escape(organization)}/authorizations/#{CGI.escape(key)}/details").with_body(value).post ::Io::Flow::V0::Models::Authorization.from_json(r) end |
#put_by_key(organization, key, authorization_form, incoming = {}) ⇒ Object
Attempts to create an authorization identified by the provided key. Multiple requests using the same key are idempotent.
3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 3328 def put_by_key(organization, key, , incoming={}) HttpClient::Preconditions.assert_class('organization', organization, String) HttpClient::Preconditions.assert_class('key', key, String) opts = HttpClient::Helper.symbolize_keys(incoming) query = { :expand => (x = opts.delete(:expand); x.nil? ? nil : HttpClient::Preconditions.assert_class('expand', x, Array).map { |v| HttpClient::Preconditions.assert_class('expand', v, String) }) }.delete_if { |k, v| v.nil? } (x = ; x.is_a?(::Io::Flow::V0::Models::AuthorizationForm) ? x : ::Io::Flow::V0::Models::AuthorizationForm.from_json(x)) r = @client.request("/#{CGI.escape(organization)}/authorizations/#{CGI.escape(key)}").with_query(query).with_json(.to_json).put ::Io::Flow::V0::Models::Authorization.from_json(r) end |