-
Notifications
You must be signed in to change notification settings - Fork 186
/
Copy pathverbs.rb
63 lines (53 loc) · 1.99 KB
/
verbs.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
module ZendeskAPI
# Creates put, post, delete class methods for custom resource methods.
module Verbs
class << self
private
# @macro [attach] container.create_verb
# @method $1(method)
# Executes a $1 using the passed in method as a path.
# Reloads the resource's attributes if any are in the response body.
#
# Created method takes an optional options hash. Valid options to be passed in to the created method: reload (for caching, default: false)
def create_verb(method_verb)
define_method method_verb do |method|
define_method "#{method}!" do |*method_args|
opts = method_args.last.is_a?(Hash) ? method_args.pop : {}
if method_verb == :any
verb = opts.delete(:verb)
raise(ArgumentError, ":verb required for method defined as :any") unless verb
else
verb = method_verb
end
@response = @client.connection.send(verb, "#{path}/#{method}") do |req|
req.body = opts
end
return false unless @response.success?
return false unless @response.body
resource = nil
if @response.body.is_a?(Hash)
resource = @response.body[self.class.singular_resource_name]
resource ||= @response.body.fetch(self.class.resource_name, []).detect { |res| res["id"] == id }
end
@attributes.replace @attributes.deep_merge(resource || {})
@attributes.clear_changes
clear_associations
true
end
define_method method do |*method_args|
send("#{method}!", *method_args)
rescue ZendeskAPI::Error::RecordInvalid => e
@errors = e.errors
false
rescue ZendeskAPI::Error::ClientError
false
end
end
end
end
create_verb :put
create_verb :post
create_verb :delete
create_verb :any
end
end