Class: Grape::Entity
- Inherits:
-
Object
- Object
- Grape::Entity
- Defined in:
- lib/grape_entity/entity.rb
Overview
An Entity is a lightweight structure that allows you to easily represent data from your application in a consistent and abstracted way in your API. Entities can also provide documentation for the fields exposed.
Entities are not independent structures, rather, they create representations of other Ruby objects using a number of methods that are convenient for use in an API. Once you've defined an Entity, you can use it in your API like this:
Defined Under Namespace
Modules: DSL
Instance Attribute Summary collapse
-
#object ⇒ Object
readonly
Returns the value of attribute object.
-
#options ⇒ Object
readonly
Returns the value of attribute options.
Class Method Summary collapse
-
.documentation ⇒ Object
Returns a hash, the keys are symbolized references to fields in the entity, the values are document keys in the entity's documentation key.
-
.expose(*args, &block) ⇒ Object
This method is the primary means by which you will declare what attributes should be exposed by the entity.
-
.exposures ⇒ Object
Returns a hash of exposures that have been declared for this Entity or ancestors.
-
.format_with(name, &block) ⇒ Object
This allows you to declare a Proc in which exposures can be formatted with.
-
.formatters ⇒ Object
Returns a hash of all formatters that are registered for this and it's ancestors.
-
.represent(objects, options = {}) ⇒ Object
This convenience method allows you to instantiate one or more entities by passing either a singular or collection of objects.
-
.root(plural, singular = nil) ⇒ Object
This allows you to set a root element name for your representation.
-
.with_options(options) ⇒ Object
Set options that will be applied to any exposures declared inside the block.
Instance Method Summary collapse
- #documentation ⇒ Object
- #exposures ⇒ Object
- #formatters ⇒ Object
-
#initialize(object, options = {}) ⇒ Entity
constructor
A new instance of Entity.
-
#serializable_hash(runtime_options = {}) ⇒ Object
(also: #as_json)
The serializable hash is the Entity's primary output.
- #to_json(options = {}) ⇒ Object
- #to_xml(options = {}) ⇒ Object
- #valid_exposures ⇒ Object
Constructor Details
#initialize(object, options = {}) ⇒ Entity
Returns a new instance of Entity.
318 319 320 |
# File 'lib/grape_entity/entity.rb', line 318 def initialize(object, = {}) @object, @options = object, end |
Instance Attribute Details
#object ⇒ Object (readonly)
Returns the value of attribute object.
45 46 47 |
# File 'lib/grape_entity/entity.rb', line 45 def object @object end |
#options ⇒ Object (readonly)
Returns the value of attribute options.
45 46 47 |
# File 'lib/grape_entity/entity.rb', line 45 def @options end |
Class Method Details
.documentation ⇒ Object
Returns a hash, the keys are symbolized references to fields in the entity, the values are document keys in the entity's documentation key. When calling
docmentation, any exposure without a documentation key will be ignored.
186 187 188 189 190 191 192 193 194 195 196 197 198 199 |
# File 'lib/grape_entity/entity.rb', line 186 def self.documentation @documentation ||= exposures.inject({}) do |memo, (attribute, )| unless [:documentation].nil? || [:documentation].empty? memo[key_for(attribute)] = [:documentation] end memo end if superclass.respond_to? :documentation @documentation = superclass.documentation.merge(@documentation) end @documentation end |
.expose(*args, &block) ⇒ Object
This method is the primary means by which you will declare what attributes should be exposed by the entity.
126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 |
# File 'lib/grape_entity/entity.rb', line 126 def self.expose(*args, &block) = (args.last.is_a?(Hash) ? args.pop : {}) if args.size > 1 raise ArgumentError, "You may not use the :as option on multi-attribute exposures." if [:as] raise ArgumentError, "You may not use block-setting on multi-attribute exposures." if block_given? end raise ArgumentError, "You may not use block-setting when also using format_with" if block_given? && [:format_with].respond_to?(:call) [:proc] = block if block_given? && block.parameters.any? @nested_attributes ||= [] args.each do |attribute| unless @nested_attributes.empty? attribute = "#{@nested_attributes.last}__#{attribute}" end exposures[attribute.to_sym] = # Nested exposures are given in a block with no parameters. if block_given? && block.parameters.empty? @nested_attributes << attribute block.call @nested_attributes.pop end end end |
.exposures ⇒ Object
Returns a hash of exposures that have been declared for this Entity or ancestors. The keys are symbolized references to methods on the containing object, the values are the options that were passed into expose.
173 174 175 176 177 178 179 180 181 |
# File 'lib/grape_entity/entity.rb', line 173 def self.exposures @exposures ||= {} if superclass.respond_to? :exposures @exposures = superclass.exposures.merge(@exposures) end @exposures end |
.format_with(name, &block) ⇒ Object
This allows you to declare a Proc in which exposures can be formatted with. It take a block with an arity of 1 which is passed as the value of the exposed attribute.
227 228 229 230 |
# File 'lib/grape_entity/entity.rb', line 227 def self.format_with(name, &block) raise ArgumentError, "You must pass a block for formatters" unless block_given? formatters[name.to_sym] = block end |
.formatters ⇒ Object
Returns a hash of all formatters that are registered for this and it's ancestors.
233 234 235 236 237 238 239 240 241 |
# File 'lib/grape_entity/entity.rb', line 233 def self.formatters @formatters ||= {} if superclass.respond_to? :formatters @formatters = superclass.formatters.merge(@formatters) end @formatters end |
.represent(objects, options = {}) ⇒ Object
This convenience method allows you to instantiate one or more entities by passing either a singular or collection of objects. Each object will be initialized with the same options. If an array of objects is passed in, an array of entities will be returned. If a single object is passed in, a single entity will be returned.
300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 |
# File 'lib/grape_entity/entity.rb', line 300 def self.represent(objects, = {}) if objects.respond_to?(:to_ary) inner = objects.to_ary.map { |object| new(object, { collection: true }.merge()) } inner = inner.map(&:serializable_hash) if [:serializable] else inner = new(objects, ) inner = inner.serializable_hash if [:serializable] end root_element = if .has_key?(:root) [:root] else objects.respond_to?(:to_ary) ? @collection_root : @root end root_element ? { root_element => inner } : inner end |
.root(plural, singular = nil) ⇒ Object
This allows you to set a root element name for your representation.
282 283 284 285 |
# File 'lib/grape_entity/entity.rb', line 282 def self.root(plural, singular = nil) @collection_root = plural @root = singular end |
.with_options(options) ⇒ Object
Set options that will be applied to any exposures declared inside the block.
164 165 166 167 168 |
# File 'lib/grape_entity/entity.rb', line 164 def self.() (@block_options ||= []).push(()) yield @block_options.pop end |
Instance Method Details
#documentation ⇒ Object
332 333 334 |
# File 'lib/grape_entity/entity.rb', line 332 def documentation self.class.documentation end |
#exposures ⇒ Object
322 323 324 |
# File 'lib/grape_entity/entity.rb', line 322 def exposures self.class.exposures end |
#formatters ⇒ Object
336 337 338 |
# File 'lib/grape_entity/entity.rb', line 336 def formatters self.class.formatters end |
#serializable_hash(runtime_options = {}) ⇒ Object Also known as: as_json
The serializable hash is the Entity's primary output. It is the transformed hash for the given data model and is used as the basis for serialization to JSON and other formats.
347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 |
# File 'lib/grape_entity/entity.rb', line 347 def serializable_hash( = {}) return nil if object.nil? opts = .merge( || {}) valid_exposures.inject({}) do |output, (attribute, )| if conditions_met?(, opts) partial_output = value_for(attribute, opts) output[self.class.key_for(attribute)] = if partial_output.respond_to? :serializable_hash partial_output.serializable_hash() elsif partial_output.kind_of?(Array) && !partial_output.map { |o| o.respond_to? :serializable_hash }.include?(false) partial_output.map { |o| o.serializable_hash } elsif partial_output.kind_of?(Hash) partial_output.each do |key, value| partial_output[key] = value.serializable_hash if value.respond_to? :serializable_hash end else partial_output end end output end end |
#to_json(options = {}) ⇒ Object
372 373 374 375 |
# File 'lib/grape_entity/entity.rb', line 372 def to_json( = {}) = .to_h if && .respond_to?(:to_h) MultiJson.dump(serializable_hash()) end |
#to_xml(options = {}) ⇒ Object
377 378 379 380 |
# File 'lib/grape_entity/entity.rb', line 377 def to_xml( = {}) = .to_h if && .respond_to?(:to_h) serializable_hash().to_xml() end |
#valid_exposures ⇒ Object
326 327 328 329 330 |
# File 'lib/grape_entity/entity.rb', line 326 def valid_exposures exposures.select do |attribute, | valid_exposure?(attribute, ) end end |