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
|
# File 'lib/intercom/generic_handlers/count.rb', line 7
def generic_count(method_sym, *arguments, &block)
handler_class = Class.new(GenericHandlers::BaseHandler) do
def handle
match = method_string.match(GenericHandlers::Count.count_breakdown_matcher)
if match && match[1] && match[2] && match[3].nil?
do_broken_down_count(match[1], match[2])
elsif method_string.end_with? '_count'
return do_count
else
raise_no_method_missing_handler
end
end
private
def do_count
entity.fetch_for_app.send(appwide_entity_to_count)['count']
rescue Intercom::AttributeNotSetError
raise_no_method_missing_handler
end
def do_broken_down_count(entity_to_count, count_context)
result = entity.fetch_broken_down_count(entity_to_count, count_context)
result.send(entity_to_count)[count_context]
rescue Intercom::BadRequestError => ex
ex.application_error_code == 'parameter_invalid' ? raise_no_method_missing_handler : raise
end
def appwide_entity_to_count; method_string.gsub(/_count$/, ''); end
end
handler_class.new(method_sym, arguments, self).handle
end
|