active_model_serializers 0.8.3 → 0.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/ISSUE_TEMPLATE.md +29 -0
- data/.github/PULL_REQUEST_TEMPLATE.md +15 -0
- data/.gitignore +17 -0
- data/.rubocop.yml +104 -0
- data/.rubocop_todo.yml +167 -0
- data/.simplecov +110 -0
- data/.travis.yml +39 -24
- data/CHANGELOG.md +465 -6
- data/CONTRIBUTING.md +105 -0
- data/Gemfile +50 -1
- data/{MIT-LICENSE.txt → MIT-LICENSE} +3 -2
- data/README.md +102 -590
- data/Rakefile +93 -8
- data/active_model_serializers.gemspec +65 -23
- data/appveyor.yml +24 -0
- data/bin/bench +171 -0
- data/bin/bench_regression +316 -0
- data/bin/serve_benchmark +39 -0
- data/docs/ARCHITECTURE.md +126 -0
- data/docs/README.md +40 -0
- data/docs/STYLE.md +58 -0
- data/docs/general/adapters.md +245 -0
- data/docs/general/caching.md +52 -0
- data/docs/general/configuration_options.md +100 -0
- data/docs/general/deserialization.md +100 -0
- data/docs/general/getting_started.md +133 -0
- data/docs/general/instrumentation.md +40 -0
- data/docs/general/key_transforms.md +40 -0
- data/docs/general/logging.md +14 -0
- data/docs/general/rendering.md +255 -0
- data/docs/general/serializers.md +372 -0
- data/docs/how-open-source-maintained.jpg +0 -0
- data/docs/howto/add_pagination_links.md +139 -0
- data/docs/howto/add_root_key.md +51 -0
- data/docs/howto/outside_controller_use.md +58 -0
- data/docs/howto/passing_arbitrary_options.md +27 -0
- data/docs/howto/serialize_poro.md +32 -0
- data/docs/howto/test.md +152 -0
- data/docs/integrations/ember-and-json-api.md +112 -0
- data/docs/integrations/grape.md +19 -0
- data/docs/jsonapi/errors.md +56 -0
- data/docs/jsonapi/schema/schema.json +366 -0
- data/docs/jsonapi/schema.md +151 -0
- data/docs/rfcs/0000-namespace.md +106 -0
- data/docs/rfcs/template.md +15 -0
- data/lib/action_controller/serialization.rb +31 -36
- data/lib/active_model/serializable_resource.rb +11 -0
- data/lib/active_model/serializer/adapter/attributes.rb +15 -0
- data/lib/active_model/serializer/adapter/base.rb +16 -0
- data/lib/active_model/serializer/adapter/json.rb +15 -0
- data/lib/active_model/serializer/adapter/json_api.rb +15 -0
- data/lib/active_model/serializer/adapter/null.rb +15 -0
- data/lib/active_model/serializer/adapter.rb +24 -0
- data/lib/active_model/serializer/array_serializer.rb +9 -0
- data/lib/active_model/serializer/association.rb +19 -0
- data/lib/active_model/serializer/associations.rb +87 -220
- data/lib/active_model/serializer/attribute.rb +25 -0
- data/lib/active_model/serializer/attributes.rb +82 -0
- data/lib/active_model/serializer/belongs_to_reflection.rb +10 -0
- data/lib/active_model/serializer/caching.rb +333 -0
- data/lib/active_model/serializer/collection_reflection.rb +7 -0
- data/lib/active_model/serializer/collection_serializer.rb +64 -0
- data/lib/active_model/serializer/configuration.rb +35 -0
- data/lib/active_model/serializer/error_serializer.rb +10 -0
- data/lib/active_model/serializer/errors_serializer.rb +27 -0
- data/lib/active_model/serializer/field.rb +90 -0
- data/lib/active_model/serializer/fieldset.rb +31 -0
- data/lib/active_model/serializer/has_many_reflection.rb +10 -0
- data/lib/active_model/serializer/has_one_reflection.rb +10 -0
- data/lib/active_model/serializer/include_tree.rb +111 -0
- data/lib/active_model/serializer/links.rb +35 -0
- data/lib/active_model/serializer/lint.rb +146 -0
- data/lib/active_model/serializer/meta.rb +29 -0
- data/lib/active_model/serializer/null.rb +17 -0
- data/lib/active_model/serializer/reflection.rb +147 -0
- data/lib/active_model/serializer/singular_reflection.rb +7 -0
- data/lib/active_model/serializer/type.rb +25 -0
- data/lib/active_model/{serializers → serializer}/version.rb +1 -1
- data/lib/active_model/serializer.rb +158 -481
- data/lib/active_model_serializers/adapter/attributes.rb +76 -0
- data/lib/active_model_serializers/adapter/base.rb +83 -0
- data/lib/active_model_serializers/adapter/json.rb +21 -0
- data/lib/active_model_serializers/adapter/json_api/deserialization.rb +213 -0
- data/lib/active_model_serializers/adapter/json_api/error.rb +96 -0
- data/lib/active_model_serializers/adapter/json_api/jsonapi.rb +49 -0
- data/lib/active_model_serializers/adapter/json_api/link.rb +83 -0
- data/lib/active_model_serializers/adapter/json_api/meta.rb +37 -0
- data/lib/active_model_serializers/adapter/json_api/pagination_links.rb +62 -0
- data/lib/active_model_serializers/adapter/json_api/relationship.rb +52 -0
- data/lib/active_model_serializers/adapter/json_api/resource_identifier.rb +37 -0
- data/lib/active_model_serializers/adapter/json_api.rb +516 -0
- data/lib/active_model_serializers/adapter/null.rb +9 -0
- data/lib/active_model_serializers/adapter.rb +92 -0
- data/lib/active_model_serializers/callbacks.rb +55 -0
- data/lib/active_model_serializers/deprecate.rb +55 -0
- data/lib/active_model_serializers/deserialization.rb +13 -0
- data/lib/active_model_serializers/json_pointer.rb +14 -0
- data/lib/active_model_serializers/key_transform.rb +70 -0
- data/lib/active_model_serializers/logging.rb +122 -0
- data/lib/active_model_serializers/model.rb +49 -0
- data/lib/active_model_serializers/railtie.rb +46 -0
- data/lib/active_model_serializers/register_jsonapi_renderer.rb +65 -0
- data/lib/active_model_serializers/serializable_resource.rb +81 -0
- data/lib/active_model_serializers/serialization_context.rb +32 -0
- data/lib/active_model_serializers/test/schema.rb +138 -0
- data/lib/active_model_serializers/test/serializer.rb +125 -0
- data/lib/active_model_serializers/test.rb +7 -0
- data/lib/active_model_serializers.rb +32 -89
- data/lib/generators/rails/USAGE +6 -0
- data/lib/generators/rails/resource_override.rb +10 -0
- data/lib/generators/rails/serializer_generator.rb +36 -0
- data/lib/generators/rails/templates/serializer.rb.erb +8 -0
- data/lib/grape/active_model_serializers.rb +14 -0
- data/lib/grape/formatters/active_model_serializers.rb +15 -0
- data/lib/grape/helpers/active_model_serializers.rb +16 -0
- data/test/action_controller/adapter_selector_test.rb +53 -0
- data/test/action_controller/explicit_serializer_test.rb +134 -0
- data/test/action_controller/json/include_test.rb +167 -0
- data/test/action_controller/json_api/deserialization_test.rb +112 -0
- data/test/action_controller/json_api/errors_test.rb +41 -0
- data/test/action_controller/json_api/linked_test.rb +197 -0
- data/test/action_controller/json_api/pagination_test.rb +116 -0
- data/test/action_controller/json_api/transform_test.rb +181 -0
- data/test/action_controller/serialization_scope_name_test.rb +229 -0
- data/test/action_controller/serialization_test.rb +469 -0
- data/test/active_model_serializers/adapter_for_test.rb +208 -0
- data/test/active_model_serializers/json_pointer_test.rb +20 -0
- data/test/active_model_serializers/key_transform_test.rb +263 -0
- data/test/active_model_serializers/logging_test.rb +77 -0
- data/test/active_model_serializers/model_test.rb +9 -0
- data/test/active_model_serializers/railtie_test_isolated.rb +63 -0
- data/test/active_model_serializers/serialization_context_test_isolated.rb +58 -0
- data/test/active_model_serializers/test/schema_test.rb +130 -0
- data/test/active_model_serializers/test/serializer_test.rb +62 -0
- data/test/active_record_test.rb +9 -0
- data/test/adapter/deprecation_test.rb +100 -0
- data/test/adapter/json/belongs_to_test.rb +45 -0
- data/test/adapter/json/collection_test.rb +90 -0
- data/test/adapter/json/has_many_test.rb +45 -0
- data/test/adapter/json/transform_test.rb +93 -0
- data/test/adapter/json_api/belongs_to_test.rb +155 -0
- data/test/adapter/json_api/collection_test.rb +95 -0
- data/test/adapter/json_api/errors_test.rb +78 -0
- data/test/adapter/json_api/fields_test.rb +87 -0
- data/test/adapter/json_api/has_many_embed_ids_test.rb +43 -0
- data/test/adapter/json_api/has_many_explicit_serializer_test.rb +96 -0
- data/test/adapter/json_api/has_many_test.rb +144 -0
- data/test/adapter/json_api/has_one_test.rb +80 -0
- data/test/adapter/json_api/json_api_test.rb +35 -0
- data/test/adapter/json_api/linked_test.rb +392 -0
- data/test/adapter/json_api/links_test.rb +93 -0
- data/test/adapter/json_api/pagination_links_test.rb +166 -0
- data/test/adapter/json_api/parse_test.rb +137 -0
- data/test/adapter/json_api/relationship_test.rb +161 -0
- data/test/adapter/json_api/relationships_test.rb +199 -0
- data/test/adapter/json_api/resource_identifier_test.rb +85 -0
- data/test/adapter/json_api/resource_meta_test.rb +100 -0
- data/test/adapter/json_api/toplevel_jsonapi_test.rb +82 -0
- data/test/adapter/json_api/transform_test.rb +502 -0
- data/test/adapter/json_api/type_test.rb +61 -0
- data/test/adapter/json_test.rb +45 -0
- data/test/adapter/null_test.rb +23 -0
- data/test/adapter/polymorphic_test.rb +171 -0
- data/test/adapter_test.rb +67 -0
- data/test/array_serializer_test.rb +20 -73
- data/test/benchmark/app.rb +65 -0
- data/test/benchmark/benchmarking_support.rb +67 -0
- data/test/benchmark/bm_caching.rb +119 -0
- data/test/benchmark/bm_transform.rb +34 -0
- data/test/benchmark/config.ru +3 -0
- data/test/benchmark/controllers.rb +84 -0
- data/test/benchmark/fixtures.rb +219 -0
- data/test/cache_test.rb +485 -0
- data/test/collection_serializer_test.rb +110 -0
- data/test/fixtures/active_record.rb +78 -0
- data/test/fixtures/poro.rb +282 -0
- data/test/generators/scaffold_controller_generator_test.rb +24 -0
- data/test/generators/serializer_generator_test.rb +57 -0
- data/test/grape_test.rb +82 -0
- data/test/include_tree/from_include_args_test.rb +26 -0
- data/test/include_tree/from_string_test.rb +94 -0
- data/test/include_tree/include_args_to_hash_test.rb +64 -0
- data/test/lint_test.rb +49 -0
- data/test/logger_test.rb +18 -0
- data/test/poro_test.rb +9 -0
- data/test/serializable_resource_test.rb +83 -0
- data/test/serializers/association_macros_test.rb +36 -0
- data/test/serializers/associations_test.rb +295 -0
- data/test/serializers/attribute_test.rb +151 -0
- data/test/serializers/attributes_test.rb +52 -0
- data/test/serializers/caching_configuration_test_isolated.rb +170 -0
- data/test/serializers/configuration_test.rb +32 -0
- data/test/serializers/fieldset_test.rb +14 -0
- data/test/serializers/meta_test.rb +196 -0
- data/test/serializers/options_test.rb +21 -0
- data/test/serializers/read_attribute_for_serialization_test.rb +79 -0
- data/test/serializers/root_test.rb +21 -0
- data/test/serializers/serialization_test.rb +55 -0
- data/test/serializers/serializer_for_test.rb +134 -0
- data/test/support/custom_schemas/active_model_serializers/test/schema_test/my/index.json +6 -0
- data/test/support/isolated_unit.rb +79 -0
- data/test/support/rails5_shims.rb +47 -0
- data/test/support/rails_app.rb +45 -0
- data/test/support/schemas/active_model_serializers/test/schema_test/my/index.json +6 -0
- data/test/support/schemas/active_model_serializers/test/schema_test/my/show.json +6 -0
- data/test/support/schemas/custom/show.json +7 -0
- data/test/support/schemas/hyper_schema.json +93 -0
- data/test/support/schemas/render_using_json_api.json +43 -0
- data/test/support/schemas/simple_json_pointers.json +10 -0
- data/test/support/serialization_testing.rb +53 -0
- data/test/test_helper.rb +48 -23
- metadata +449 -43
- data/DESIGN.textile +0 -586
- data/Gemfile.edge +0 -9
- data/bench/perf.rb +0 -43
- data/cruft.md +0 -19
- data/lib/active_model/array_serializer.rb +0 -104
- data/lib/active_record/serializer_override.rb +0 -16
- data/lib/generators/resource_override.rb +0 -13
- data/lib/generators/serializer/USAGE +0 -9
- data/lib/generators/serializer/serializer_generator.rb +0 -42
- data/lib/generators/serializer/templates/serializer.rb +0 -19
- data/test/association_test.rb +0 -592
- data/test/caching_test.rb +0 -96
- data/test/generators_test.rb +0 -85
- data/test/no_serialization_scope_test.rb +0 -34
- data/test/serialization_scope_name_test.rb +0 -67
- data/test/serialization_test.rb +0 -392
- data/test/serializer_support_test.rb +0 -51
- data/test/serializer_test.rb +0 -1465
- data/test/test_fakes.rb +0 -217
|
@@ -1,515 +1,192 @@
|
|
|
1
|
-
require
|
|
2
|
-
require
|
|
3
|
-
require '
|
|
4
|
-
require '
|
|
5
|
-
|
|
1
|
+
require 'thread_safe'
|
|
2
|
+
require 'active_model/serializer/collection_serializer'
|
|
3
|
+
require 'active_model/serializer/array_serializer'
|
|
4
|
+
require 'active_model/serializer/error_serializer'
|
|
5
|
+
require 'active_model/serializer/errors_serializer'
|
|
6
|
+
require 'active_model/serializer/include_tree'
|
|
7
|
+
require 'active_model/serializer/associations'
|
|
8
|
+
require 'active_model/serializer/attributes'
|
|
9
|
+
require 'active_model/serializer/caching'
|
|
10
|
+
require 'active_model/serializer/configuration'
|
|
11
|
+
require 'active_model/serializer/fieldset'
|
|
12
|
+
require 'active_model/serializer/lint'
|
|
13
|
+
require 'active_model/serializer/links'
|
|
14
|
+
require 'active_model/serializer/meta'
|
|
15
|
+
require 'active_model/serializer/type'
|
|
16
|
+
|
|
17
|
+
# ActiveModel::Serializer is an abstract class that is
|
|
18
|
+
# reified when subclassed to decorate a resource.
|
|
6
19
|
module ActiveModel
|
|
7
|
-
# Active Model Serializer
|
|
8
|
-
#
|
|
9
|
-
# Provides a basic serializer implementation that allows you to easily
|
|
10
|
-
# control how a given object is going to be serialized. On initialization,
|
|
11
|
-
# it expects two objects as arguments, a resource and options. For example,
|
|
12
|
-
# one may do in a controller:
|
|
13
|
-
#
|
|
14
|
-
# PostSerializer.new(@post, :scope => current_user).to_json
|
|
15
|
-
#
|
|
16
|
-
# The object to be serialized is the +@post+ and the current user is passed
|
|
17
|
-
# in for authorization purposes.
|
|
18
|
-
#
|
|
19
|
-
# We use the scope to check if a given attribute should be serialized or not.
|
|
20
|
-
# For example, some attributes may only be returned if +current_user+ is the
|
|
21
|
-
# author of the post:
|
|
22
|
-
#
|
|
23
|
-
# class PostSerializer < ActiveModel::Serializer
|
|
24
|
-
# attributes :title, :body
|
|
25
|
-
# has_many :comments
|
|
26
|
-
#
|
|
27
|
-
# private
|
|
28
|
-
#
|
|
29
|
-
# def attributes
|
|
30
|
-
# hash = super
|
|
31
|
-
# hash.merge!(:email => post.email) if author?
|
|
32
|
-
# hash
|
|
33
|
-
# end
|
|
34
|
-
#
|
|
35
|
-
# def author?
|
|
36
|
-
# post.author == scope
|
|
37
|
-
# end
|
|
38
|
-
# end
|
|
39
|
-
#
|
|
40
20
|
class Serializer
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
21
|
+
# @see #serializable_hash for more details on these valid keys.
|
|
22
|
+
SERIALIZABLE_HASH_VALID_KEYS = [:only, :except, :methods, :include, :root].freeze
|
|
23
|
+
extend ActiveSupport::Autoload
|
|
24
|
+
autoload :Adapter
|
|
25
|
+
autoload :Null
|
|
26
|
+
include Configuration
|
|
27
|
+
include Associations
|
|
28
|
+
include Attributes
|
|
29
|
+
include Caching
|
|
30
|
+
include Links
|
|
31
|
+
include Meta
|
|
32
|
+
include Type
|
|
33
|
+
|
|
34
|
+
# @param resource [ActiveRecord::Base, ActiveModelSerializers::Model]
|
|
35
|
+
# @return [ActiveModel::Serializer]
|
|
36
|
+
# Preferentially returns
|
|
37
|
+
# 1. resource.serializer
|
|
38
|
+
# 2. ArraySerializer when resource is a collection
|
|
39
|
+
# 3. options[:serializer]
|
|
40
|
+
# 4. lookup serializer when resource is a Class
|
|
41
|
+
def self.serializer_for(resource, options = {})
|
|
42
|
+
if resource.respond_to?(:serializer_class)
|
|
43
|
+
resource.serializer_class
|
|
44
|
+
elsif resource.respond_to?(:to_ary)
|
|
45
|
+
config.collection_serializer
|
|
46
|
+
else
|
|
47
|
+
options.fetch(:serializer) { get_serializer_for(resource.class) }
|
|
55
48
|
end
|
|
56
49
|
end
|
|
57
50
|
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
self._associations = {}
|
|
63
|
-
|
|
64
|
-
class_attribute :_root
|
|
65
|
-
class_attribute :_embed
|
|
66
|
-
self._embed = :objects
|
|
67
|
-
class_attribute :_root_embed
|
|
68
|
-
|
|
69
|
-
class_attribute :cache
|
|
70
|
-
class_attribute :perform_caching
|
|
71
|
-
|
|
72
|
-
class << self
|
|
73
|
-
# set perform caching like root
|
|
74
|
-
def cached(value = true)
|
|
75
|
-
self.perform_caching = value
|
|
76
|
-
end
|
|
77
|
-
|
|
78
|
-
# Define attributes to be used in the serialization.
|
|
79
|
-
def attributes(*attrs)
|
|
80
|
-
|
|
81
|
-
self._attributes = _attributes.dup
|
|
82
|
-
|
|
83
|
-
attrs.each do |attr|
|
|
84
|
-
if Hash === attr
|
|
85
|
-
attr.each {|attr_real, key| attribute attr_real, :key => key }
|
|
86
|
-
else
|
|
87
|
-
attribute attr
|
|
88
|
-
end
|
|
89
|
-
end
|
|
90
|
-
end
|
|
91
|
-
|
|
92
|
-
def attribute(attr, options={})
|
|
93
|
-
self._attributes = _attributes.merge(attr.is_a?(Hash) ? attr : {attr => options[:key] || attr.to_s.gsub(/\?$/, '').to_sym})
|
|
94
|
-
|
|
95
|
-
attr = attr.keys[0] if attr.is_a? Hash
|
|
96
|
-
|
|
97
|
-
unless method_defined?(attr)
|
|
98
|
-
define_method attr do
|
|
99
|
-
object.read_attribute_for_serialization(attr.to_sym)
|
|
100
|
-
end
|
|
101
|
-
end
|
|
102
|
-
|
|
103
|
-
define_include_method attr
|
|
104
|
-
|
|
105
|
-
# protect inheritance chains and open classes
|
|
106
|
-
# if a serializer inherits from another OR
|
|
107
|
-
# attributes are added later in a classes lifecycle
|
|
108
|
-
# poison the cache
|
|
109
|
-
define_method :_fast_attributes do
|
|
110
|
-
raise NameError
|
|
111
|
-
end
|
|
112
|
-
|
|
113
|
-
end
|
|
114
|
-
|
|
115
|
-
def associate(klass, attrs) #:nodoc:
|
|
116
|
-
options = attrs.extract_options!
|
|
117
|
-
self._associations = _associations.dup
|
|
118
|
-
|
|
119
|
-
attrs.each do |attr|
|
|
120
|
-
unless method_defined?(attr)
|
|
121
|
-
define_method attr do
|
|
122
|
-
object.send attr
|
|
123
|
-
end
|
|
124
|
-
end
|
|
125
|
-
|
|
126
|
-
define_include_method attr
|
|
127
|
-
|
|
128
|
-
self._associations[attr] = klass.refine(attr, options)
|
|
129
|
-
end
|
|
130
|
-
end
|
|
131
|
-
|
|
132
|
-
def define_include_method(name)
|
|
133
|
-
method = "include_#{name}?".to_sym
|
|
134
|
-
|
|
135
|
-
INCLUDE_METHODS[name] = method
|
|
136
|
-
|
|
137
|
-
unless method_defined?(method)
|
|
138
|
-
define_method method do
|
|
139
|
-
true
|
|
140
|
-
end
|
|
141
|
-
end
|
|
142
|
-
end
|
|
143
|
-
|
|
144
|
-
# Defines an association in the object should be rendered.
|
|
145
|
-
#
|
|
146
|
-
# The serializer object should implement the association name
|
|
147
|
-
# as a method which should return an array when invoked. If a method
|
|
148
|
-
# with the association name does not exist, the association name is
|
|
149
|
-
# dispatched to the serialized object.
|
|
150
|
-
def has_many(*attrs)
|
|
151
|
-
associate(Associations::HasMany, attrs)
|
|
152
|
-
end
|
|
153
|
-
|
|
154
|
-
# Defines an association in the object should be rendered.
|
|
155
|
-
#
|
|
156
|
-
# The serializer object should implement the association name
|
|
157
|
-
# as a method which should return an object when invoked. If a method
|
|
158
|
-
# with the association name does not exist, the association name is
|
|
159
|
-
# dispatched to the serialized object.
|
|
160
|
-
def has_one(*attrs)
|
|
161
|
-
associate(Associations::HasOne, attrs)
|
|
162
|
-
end
|
|
163
|
-
|
|
164
|
-
# Return a schema hash for the current serializer. This information
|
|
165
|
-
# can be used to generate clients for the serialized output.
|
|
166
|
-
#
|
|
167
|
-
# The schema hash has two keys: +attributes+ and +associations+.
|
|
168
|
-
#
|
|
169
|
-
# The +attributes+ hash looks like this:
|
|
170
|
-
#
|
|
171
|
-
# { :name => :string, :age => :integer }
|
|
172
|
-
#
|
|
173
|
-
# The +associations+ hash looks like this:
|
|
174
|
-
# { :posts => { :has_many => :posts } }
|
|
175
|
-
#
|
|
176
|
-
# If :key is used:
|
|
177
|
-
#
|
|
178
|
-
# class PostsSerializer < ActiveModel::Serializer
|
|
179
|
-
# has_many :posts, :key => :my_posts
|
|
180
|
-
# end
|
|
181
|
-
#
|
|
182
|
-
# the hash looks like this:
|
|
183
|
-
#
|
|
184
|
-
# { :my_posts => { :has_many => :posts }
|
|
185
|
-
#
|
|
186
|
-
# This information is extracted from the serializer's model class,
|
|
187
|
-
# which is provided by +SerializerClass.model_class+.
|
|
188
|
-
#
|
|
189
|
-
# The schema method uses the +columns_hash+ and +reflect_on_association+
|
|
190
|
-
# methods, provided by default by ActiveRecord. You can implement these
|
|
191
|
-
# methods on your custom models if you want the serializer's schema method
|
|
192
|
-
# to work.
|
|
193
|
-
#
|
|
194
|
-
# TODO: This is currently coupled to Active Record. We need to
|
|
195
|
-
# figure out a way to decouple those two.
|
|
196
|
-
def schema
|
|
197
|
-
klass = model_class
|
|
198
|
-
columns = klass.columns_hash
|
|
199
|
-
|
|
200
|
-
attrs = {}
|
|
201
|
-
_attributes.each do |name, key|
|
|
202
|
-
if column = columns[name.to_s]
|
|
203
|
-
attrs[key] = column.type
|
|
204
|
-
else
|
|
205
|
-
# Computed attribute (method on serializer or model). We cannot
|
|
206
|
-
# infer the type, so we put nil, unless specified in the attribute declaration
|
|
207
|
-
if name != key
|
|
208
|
-
attrs[name] = key
|
|
209
|
-
else
|
|
210
|
-
attrs[key] = nil
|
|
211
|
-
end
|
|
212
|
-
end
|
|
213
|
-
end
|
|
214
|
-
|
|
215
|
-
associations = {}
|
|
216
|
-
_associations.each do |attr, association_class|
|
|
217
|
-
association = association_class.new(attr, self)
|
|
218
|
-
|
|
219
|
-
if model_association = klass.reflect_on_association(association.name)
|
|
220
|
-
# Real association.
|
|
221
|
-
associations[association.key] = { model_association.macro => model_association.name }
|
|
222
|
-
else
|
|
223
|
-
# Computed association. We could infer has_many vs. has_one from
|
|
224
|
-
# the association class, but that would make it different from
|
|
225
|
-
# real associations, which read has_one vs. belongs_to from the
|
|
226
|
-
# model.
|
|
227
|
-
associations[association.key] = nil
|
|
228
|
-
end
|
|
229
|
-
end
|
|
230
|
-
|
|
231
|
-
{ :attributes => attrs, :associations => associations }
|
|
232
|
-
end
|
|
233
|
-
|
|
234
|
-
# The model class associated with this serializer.
|
|
235
|
-
def model_class
|
|
236
|
-
name.sub(/Serializer$/, '').constantize
|
|
237
|
-
end
|
|
238
|
-
|
|
239
|
-
# Define how associations should be embedded.
|
|
240
|
-
#
|
|
241
|
-
# embed :objects # Embed associations as full objects
|
|
242
|
-
# embed :ids # Embed only the association ids
|
|
243
|
-
# embed :ids, :include => true # Embed the association ids and include objects in the root
|
|
244
|
-
#
|
|
245
|
-
def embed(type, options={})
|
|
246
|
-
self._embed = type
|
|
247
|
-
self._root_embed = true if options[:include]
|
|
248
|
-
end
|
|
249
|
-
|
|
250
|
-
# Defines the root used on serialization. If false, disables the root.
|
|
251
|
-
def root(name)
|
|
252
|
-
self._root = name
|
|
253
|
-
end
|
|
254
|
-
alias_method :root=, :root
|
|
255
|
-
|
|
256
|
-
# Used internally to create a new serializer object based on controller
|
|
257
|
-
# settings and options for a given resource. These settings are typically
|
|
258
|
-
# set during the request lifecycle or by the controller class, and should
|
|
259
|
-
# not be manually defined for this method.
|
|
260
|
-
def build_json(controller, resource, options)
|
|
261
|
-
default_options = controller.send(:default_serializer_options) || {}
|
|
262
|
-
options = default_options.merge(options || {})
|
|
263
|
-
|
|
264
|
-
serializer = options.delete(:serializer) ||
|
|
265
|
-
(resource.respond_to?(:active_model_serializer) &&
|
|
266
|
-
resource.active_model_serializer)
|
|
267
|
-
|
|
268
|
-
return serializer unless serializer
|
|
269
|
-
|
|
270
|
-
if resource.respond_to?(:to_ary)
|
|
271
|
-
unless serializer <= ActiveModel::ArraySerializer
|
|
272
|
-
raise ArgumentError.new("#{serializer.name} is not an ArraySerializer. " +
|
|
273
|
-
"You may want to use the :each_serializer option instead.")
|
|
274
|
-
end
|
|
275
|
-
|
|
276
|
-
if options[:root] != false && serializer.root != false
|
|
277
|
-
# the serializer for an Array is ActiveModel::ArraySerializer
|
|
278
|
-
options[:root] ||= serializer.root || controller.controller_name
|
|
279
|
-
end
|
|
280
|
-
end
|
|
281
|
-
|
|
282
|
-
options[:scope] = controller.serialization_scope unless options.has_key?(:scope)
|
|
283
|
-
options[:scope_name] = controller._serialization_scope
|
|
284
|
-
options[:url_options] = controller.url_options
|
|
285
|
-
|
|
286
|
-
serializer.new(resource, options)
|
|
287
|
-
end
|
|
51
|
+
# @see ActiveModelSerializers::Adapter.lookup
|
|
52
|
+
# Deprecated
|
|
53
|
+
def self.adapter
|
|
54
|
+
ActiveModelSerializers::Adapter.lookup(config.adapter)
|
|
288
55
|
end
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
def initialize(object, options={})
|
|
293
|
-
@object, @options = object, options
|
|
294
|
-
|
|
295
|
-
scope_name = @options[:scope_name]
|
|
296
|
-
if scope_name && !respond_to?(scope_name)
|
|
297
|
-
self.class.class_eval do
|
|
298
|
-
define_method scope_name, lambda { scope }
|
|
299
|
-
end
|
|
300
|
-
end
|
|
56
|
+
class << self
|
|
57
|
+
extend ActiveModelSerializers::Deprecate
|
|
58
|
+
deprecate :adapter, 'ActiveModelSerializers::Adapter.configured_adapter'
|
|
301
59
|
end
|
|
302
60
|
|
|
303
|
-
|
|
304
|
-
|
|
61
|
+
# @api private
|
|
62
|
+
def self.serializer_lookup_chain_for(klass)
|
|
63
|
+
chain = []
|
|
305
64
|
|
|
306
|
-
|
|
65
|
+
resource_class_name = klass.name.demodulize
|
|
66
|
+
resource_namespace = klass.name.deconstantize
|
|
67
|
+
serializer_class_name = "#{resource_class_name}Serializer"
|
|
307
68
|
|
|
308
|
-
if self
|
|
309
|
-
|
|
310
|
-
else
|
|
311
|
-
self._root || class_name
|
|
312
|
-
end
|
|
313
|
-
end
|
|
69
|
+
chain.push("#{name}::#{serializer_class_name}") if self != ActiveModel::Serializer
|
|
70
|
+
chain.push("#{resource_namespace}::#{serializer_class_name}")
|
|
314
71
|
|
|
315
|
-
|
|
316
|
-
@options[:url_options] || {}
|
|
72
|
+
chain
|
|
317
73
|
end
|
|
318
74
|
|
|
319
|
-
|
|
320
|
-
|
|
75
|
+
# Used to cache serializer name => serializer class
|
|
76
|
+
# when looked up by Serializer.get_serializer_for.
|
|
77
|
+
def self.serializers_cache
|
|
78
|
+
@serializers_cache ||= ThreadSafe::Cache.new
|
|
321
79
|
end
|
|
322
80
|
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
81
|
+
# @api private
|
|
82
|
+
# Find a serializer from a class and caches the lookup.
|
|
83
|
+
# Preferentially returns:
|
|
84
|
+
# 1. class name appended with "Serializer"
|
|
85
|
+
# 2. try again with superclass, if present
|
|
86
|
+
# 3. nil
|
|
87
|
+
def self.get_serializer_for(klass)
|
|
88
|
+
return nil unless config.serializer_lookup_enabled
|
|
89
|
+
serializers_cache.fetch_or_store(klass) do
|
|
90
|
+
# NOTE(beauby): When we drop 1.9.3 support we can lazify the map for perfs.
|
|
91
|
+
serializer_class = serializer_lookup_chain_for(klass).map(&:safe_constantize).find { |x| x && x < ActiveModel::Serializer }
|
|
326
92
|
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
93
|
+
if serializer_class
|
|
94
|
+
serializer_class
|
|
95
|
+
elsif klass.superclass
|
|
96
|
+
get_serializer_for(klass.superclass)
|
|
331
97
|
end
|
|
332
|
-
else
|
|
333
|
-
super
|
|
334
98
|
end
|
|
335
99
|
end
|
|
336
100
|
|
|
337
|
-
|
|
338
|
-
# object including the root.
|
|
339
|
-
def as_json(options={})
|
|
340
|
-
options ||= {}
|
|
341
|
-
if root = options.fetch(:root, @options.fetch(:root, root_name))
|
|
342
|
-
@options[:hash] = hash = {}
|
|
343
|
-
@options[:unique_values] = {}
|
|
344
|
-
|
|
345
|
-
hash.merge!(root => serializable_hash)
|
|
346
|
-
include_meta hash
|
|
347
|
-
hash
|
|
348
|
-
else
|
|
349
|
-
serializable_hash
|
|
350
|
-
end
|
|
351
|
-
end
|
|
101
|
+
attr_accessor :object, :root, :scope
|
|
352
102
|
|
|
353
|
-
#
|
|
354
|
-
#
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
_serializable_hash
|
|
362
|
-
end
|
|
363
|
-
end
|
|
103
|
+
# `scope_name` is set as :current_user by default in the controller.
|
|
104
|
+
# If the instance does not have a method named `scope_name`, it
|
|
105
|
+
# defines the method so that it calls the +scope+.
|
|
106
|
+
def initialize(object, options = {})
|
|
107
|
+
self.object = object
|
|
108
|
+
self.instance_options = options
|
|
109
|
+
self.root = instance_options[:root]
|
|
110
|
+
self.scope = instance_options[:scope]
|
|
364
111
|
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
112
|
+
scope_name = instance_options[:scope_name]
|
|
113
|
+
if scope_name && !respond_to?(scope_name)
|
|
114
|
+
define_singleton_method scope_name, lambda { scope }
|
|
368
115
|
end
|
|
369
116
|
end
|
|
370
117
|
|
|
371
|
-
def
|
|
372
|
-
|
|
373
|
-
return false if @options.key?(:except) && Array(@options[:except]).include?(name)
|
|
374
|
-
send INCLUDE_METHODS[name]
|
|
375
|
-
end
|
|
376
|
-
|
|
377
|
-
def include!(name, options={})
|
|
378
|
-
# Make sure that if a special options[:hash] was passed in, we generate
|
|
379
|
-
# a new unique values hash and don't clobber the original. If the hash
|
|
380
|
-
# passed in is the same as the current options hash, use the current
|
|
381
|
-
# unique values.
|
|
382
|
-
#
|
|
383
|
-
# TODO: Should passing in a Hash even be public API here?
|
|
384
|
-
unique_values =
|
|
385
|
-
if hash = options[:hash]
|
|
386
|
-
if @options[:hash] == hash
|
|
387
|
-
@options[:unique_values] ||= {}
|
|
388
|
-
else
|
|
389
|
-
{}
|
|
390
|
-
end
|
|
391
|
-
else
|
|
392
|
-
hash = @options[:hash]
|
|
393
|
-
@options[:unique_values] ||= {}
|
|
394
|
-
end
|
|
395
|
-
|
|
396
|
-
node = options[:node] ||= @node
|
|
397
|
-
value = options[:value]
|
|
398
|
-
|
|
399
|
-
if options[:include] == nil
|
|
400
|
-
if @options.key?(:include)
|
|
401
|
-
options[:include] = @options[:include].include?(name)
|
|
402
|
-
elsif @options.include?(:exclude)
|
|
403
|
-
options[:include] = !@options[:exclude].include?(name)
|
|
404
|
-
end
|
|
405
|
-
end
|
|
406
|
-
|
|
407
|
-
association_class =
|
|
408
|
-
if klass = _associations[name]
|
|
409
|
-
klass
|
|
410
|
-
elsif value.respond_to?(:to_ary)
|
|
411
|
-
Associations::HasMany
|
|
412
|
-
else
|
|
413
|
-
Associations::HasOne
|
|
414
|
-
end
|
|
415
|
-
|
|
416
|
-
association = association_class.new(name, self, options)
|
|
417
|
-
|
|
418
|
-
if association.embed_ids?
|
|
419
|
-
node[association.key] = association.serialize_ids
|
|
420
|
-
|
|
421
|
-
if association.embed_in_root? && hash.nil?
|
|
422
|
-
raise IncludeError.new(self.class, association.name)
|
|
423
|
-
elsif association.embed_in_root? && association.embeddable?
|
|
424
|
-
merge_association hash, association.root, association.serializables, unique_values
|
|
425
|
-
end
|
|
426
|
-
elsif association.embed_objects?
|
|
427
|
-
node[association.key] = association.serialize
|
|
428
|
-
end
|
|
118
|
+
def success?
|
|
119
|
+
true
|
|
429
120
|
end
|
|
430
121
|
|
|
431
|
-
#
|
|
432
|
-
#
|
|
433
|
-
#
|
|
434
|
-
# of all tags for all comments of the post.
|
|
122
|
+
# @return [Hash] containing the attributes and first level
|
|
123
|
+
# associations, similar to how ActiveModel::Serializers::JSON is used
|
|
124
|
+
# in ActiveRecord::Base.
|
|
435
125
|
#
|
|
436
|
-
#
|
|
437
|
-
#
|
|
438
|
-
#
|
|
439
|
-
#
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
126
|
+
# TODO: Move to here the Attributes adapter logic for
|
|
127
|
+
# +serializable_hash_for_single_resource(options)+
|
|
128
|
+
# and include <tt>ActiveModel::Serializers::JSON</tt>.
|
|
129
|
+
# So that the below is true:
|
|
130
|
+
# @param options [nil, Hash] The same valid options passed to `serializable_hash`
|
|
131
|
+
# (:only, :except, :methods, and :include).
|
|
132
|
+
#
|
|
133
|
+
# See
|
|
134
|
+
# https://github.com/rails/rails/blob/v5.0.0.beta2/activemodel/lib/active_model/serializers/json.rb#L17-L101
|
|
135
|
+
# https://github.com/rails/rails/blob/v5.0.0.beta2/activemodel/lib/active_model/serialization.rb#L85-L123
|
|
136
|
+
# https://github.com/rails/rails/blob/v5.0.0.beta2/activerecord/lib/active_record/serialization.rb#L11-L17
|
|
137
|
+
# https://github.com/rails/rails/blob/v5.0.0.beta2/activesupport/lib/active_support/core_ext/object/json.rb#L147-L162
|
|
138
|
+
#
|
|
139
|
+
# @example
|
|
140
|
+
# # The :only and :except options can be used to limit the attributes included, and work
|
|
141
|
+
# # similar to the attributes method.
|
|
142
|
+
# serializer.as_json(only: [:id, :name])
|
|
143
|
+
# serializer.as_json(except: [:id, :created_at, :age])
|
|
144
|
+
#
|
|
145
|
+
# # To include the result of some method calls on the model use :methods:
|
|
146
|
+
# serializer.as_json(methods: :permalink)
|
|
147
|
+
#
|
|
148
|
+
# # To include associations use :include:
|
|
149
|
+
# serializer.as_json(include: :posts)
|
|
150
|
+
# # Second level and higher order associations work as well:
|
|
151
|
+
# serializer.as_json(include: { posts: { include: { comments: { only: :body } }, only: :title } })
|
|
152
|
+
def serializable_hash(adapter_opts = nil)
|
|
153
|
+
adapter_opts ||= {}
|
|
154
|
+
adapter_opts = { include: '*', adapter: :attributes }.merge!(adapter_opts)
|
|
155
|
+
adapter = ActiveModelSerializers::Adapter.create(self, adapter_opts)
|
|
156
|
+
adapter.serializable_hash(adapter_opts)
|
|
157
|
+
end
|
|
158
|
+
alias to_hash serializable_hash
|
|
159
|
+
alias to_h serializable_hash
|
|
160
|
+
|
|
161
|
+
# @see #serializable_hash
|
|
162
|
+
# TODO: When moving attributes adapter logic here, @see #serializable_hash
|
|
163
|
+
# So that the below is true:
|
|
164
|
+
# @param options [nil, Hash] The same valid options passed to `as_json`
|
|
165
|
+
# (:root, :only, :except, :methods, and :include).
|
|
166
|
+
# The default for `root` is nil.
|
|
167
|
+
# The default value for include_root is false. You can change it to true if the given
|
|
168
|
+
# JSON string includes a single root node.
|
|
169
|
+
def as_json(adapter_opts = nil)
|
|
170
|
+
serializable_hash(adapter_opts)
|
|
171
|
+
end
|
|
172
|
+
|
|
173
|
+
# Used by adapter as resource root.
|
|
174
|
+
def json_key
|
|
175
|
+
root || _type || object.class.model_name.to_s.underscore
|
|
176
|
+
end
|
|
177
|
+
|
|
178
|
+
def read_attribute_for_serialization(attr)
|
|
179
|
+
if respond_to?(attr)
|
|
180
|
+
send(attr)
|
|
181
|
+
elsif self.class._fragmented
|
|
182
|
+
self.class._fragmented.read_attribute_for_serialization(attr)
|
|
183
|
+
else
|
|
184
|
+
object.read_attribute_for_serialization(attr)
|
|
449
185
|
end
|
|
450
186
|
end
|
|
451
187
|
|
|
452
|
-
|
|
453
|
-
# object attributes.
|
|
454
|
-
def attributes
|
|
455
|
-
_fast_attributes
|
|
456
|
-
rescue NameError
|
|
457
|
-
method = "def _fast_attributes\n"
|
|
458
|
-
|
|
459
|
-
method << " h = {}\n"
|
|
460
|
-
|
|
461
|
-
_attributes.each do |name,key|
|
|
462
|
-
method << " h[:\"#{key}\"] = read_attribute_for_serialization(:\"#{name}\") if include?(:\"#{name}\")\n"
|
|
463
|
-
end
|
|
464
|
-
method << " h\nend"
|
|
465
|
-
|
|
466
|
-
self.class.class_eval method
|
|
467
|
-
_fast_attributes
|
|
468
|
-
end
|
|
469
|
-
|
|
470
|
-
# Returns options[:scope]
|
|
471
|
-
def scope
|
|
472
|
-
@options[:scope]
|
|
473
|
-
end
|
|
474
|
-
|
|
475
|
-
alias :read_attribute_for_serialization :send
|
|
476
|
-
|
|
477
|
-
def _serializable_hash
|
|
478
|
-
return nil if @object.nil?
|
|
479
|
-
@node = attributes
|
|
480
|
-
include_associations! if _embed
|
|
481
|
-
@node
|
|
482
|
-
end
|
|
483
|
-
|
|
484
|
-
def perform_caching?
|
|
485
|
-
perform_caching && cache && respond_to?(:cache_key)
|
|
486
|
-
end
|
|
487
|
-
|
|
488
|
-
def expand_cache_key(*args)
|
|
489
|
-
ActiveSupport::Cache.expand_cache_key(args)
|
|
490
|
-
end
|
|
491
|
-
|
|
492
|
-
# Use ActiveSupport::Notifications to send events to external systems.
|
|
493
|
-
# The event name is: name.class_name.serializer
|
|
494
|
-
def instrument(name, payload = {}, &block)
|
|
495
|
-
event_name = INSTRUMENT[name]
|
|
496
|
-
ActiveSupport::Notifications.instrument(event_name, payload, &block)
|
|
497
|
-
end
|
|
498
|
-
end
|
|
188
|
+
protected
|
|
499
189
|
|
|
500
|
-
|
|
501
|
-
#
|
|
502
|
-
# Provides a constant interface for all items, particularly
|
|
503
|
-
# for ArraySerializer.
|
|
504
|
-
class DefaultSerializer
|
|
505
|
-
attr_reader :object, :options
|
|
506
|
-
|
|
507
|
-
def initialize(object, options={})
|
|
508
|
-
@object, @options = object, options
|
|
509
|
-
end
|
|
510
|
-
|
|
511
|
-
def serializable_hash
|
|
512
|
-
@object.as_json(@options)
|
|
513
|
-
end
|
|
190
|
+
attr_accessor :instance_options
|
|
514
191
|
end
|
|
515
192
|
end
|