forked from ruby-grape/grape
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathformatter.rb
35 lines (31 loc) · 821 Bytes
/
formatter.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
# frozen_string_literal: true
module Grape
module Formatter
extend Util::Registrable
class << self
def builtin_formatters
@builtin_formatters ||= {
json: Grape::Formatter::Json,
jsonapi: Grape::Formatter::Json,
serializable_hash: Grape::Formatter::SerializableHash,
txt: Grape::Formatter::Txt,
xml: Grape::Formatter::Xml
}
end
def formatters(**options)
builtin_formatters.merge(default_elements).merge!(options[:formatters] || {})
end
def formatter_for(api_format, **options)
spec = formatters(**options)[api_format]
case spec
when nil
->(obj, _env) { obj }
when Symbol
method(spec)
else
spec
end
end
end
end
end