mirror of
https://github.com/stripe/stripe-ruby.git
synced 2025-11-22 00:05:58 -05:00
As seen in #928, the `refresh` method doesn't work for an event class. This is because event has a field called `request`, and it ends up replacing the `request` method that it inherited from being an API resource, so when `refresh` tries to make a request, it fails because it tries to invoke it on the accessor added for the event's property. Here we give `request` a much more unique name so that it will never conflict with a property field again, and update all internal references to use the new name. We use `alias` to make the old name available for backwards compatibility reasons because its been around for so long that people are probably calling it. Fixes #928.
74 lines
3.1 KiB
Ruby
74 lines
3.1 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
module Stripe
|
|
module APIOperations
|
|
# Adds methods to help manipulate a subresource from its parent resource so
|
|
# that it's possible to do so from a static context (i.e. without a
|
|
# pre-existing collection of subresources on the parent).
|
|
#
|
|
# For example, a transfer gains the static methods for reversals so that the
|
|
# methods `.create_reversal`, `.retrieve_reversal`, `.update_reversal`,
|
|
# etc. all become available.
|
|
module NestedResource
|
|
def nested_resource_class_methods(resource, path: nil, operations: nil,
|
|
resource_plural: nil)
|
|
resource_plural ||= "#{resource}s"
|
|
path ||= resource_plural
|
|
|
|
raise ArgumentError, "operations array required" if operations.nil?
|
|
|
|
resource_url_method = :"#{resource}s_url"
|
|
|
|
define_singleton_method(resource_url_method) do |id, nested_id = nil|
|
|
url = "#{resource_url}/#{CGI.escape(id)}/#{CGI.escape(path)}"
|
|
url += "/#{CGI.escape(nested_id)}" unless nested_id.nil?
|
|
url
|
|
end
|
|
|
|
operations.each do |operation|
|
|
case operation
|
|
when :create
|
|
define_singleton_method(:"create_#{resource}") \
|
|
do |id, params = {}, opts = {}|
|
|
url = send(resource_url_method, id)
|
|
resp, opts = execute_resource_request(:post, url, params, opts)
|
|
Util.convert_to_stripe_object(resp.data, opts)
|
|
end
|
|
when :retrieve
|
|
define_singleton_method(:"retrieve_#{resource}") \
|
|
do |id, nested_id, opts = {}|
|
|
url = send(resource_url_method, id, nested_id)
|
|
resp, opts = execute_resource_request(:get, url, {}, opts)
|
|
Util.convert_to_stripe_object(resp.data, opts)
|
|
end
|
|
when :update
|
|
define_singleton_method(:"update_#{resource}") \
|
|
do |id, nested_id, params = {}, opts = {}|
|
|
url = send(resource_url_method, id, nested_id)
|
|
resp, opts = execute_resource_request(:post, url, params, opts)
|
|
Util.convert_to_stripe_object(resp.data, opts)
|
|
end
|
|
when :delete
|
|
define_singleton_method(:"delete_#{resource}") \
|
|
do |id, nested_id, params = {}, opts = {}|
|
|
url = send(resource_url_method, id, nested_id)
|
|
resp, opts = execute_resource_request(:delete, url, params,
|
|
opts)
|
|
Util.convert_to_stripe_object(resp.data, opts)
|
|
end
|
|
when :list
|
|
define_singleton_method(:"list_#{resource_plural}") \
|
|
do |id, params = {}, opts = {}|
|
|
url = send(resource_url_method, id)
|
|
resp, opts = execute_resource_request(:get, url, params, opts)
|
|
Util.convert_to_stripe_object(resp.data, opts)
|
|
end
|
|
else
|
|
raise ArgumentError, "Unknown operation: #{operation.inspect}"
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|