active_model_serializers 0.10.6 → 0.10.13

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.
Files changed (215) hide show
  1. checksums.yaml +5 -5
  2. data/CHANGELOG.md +114 -1
  3. data/README.md +21 -24
  4. data/lib/action_controller/serialization.rb +11 -1
  5. data/lib/active_model/serializable_resource.rb +2 -0
  6. data/lib/active_model/serializer/adapter/attributes.rb +2 -0
  7. data/lib/active_model/serializer/adapter/base.rb +2 -0
  8. data/lib/active_model/serializer/adapter/json.rb +2 -0
  9. data/lib/active_model/serializer/adapter/json_api.rb +2 -0
  10. data/lib/active_model/serializer/adapter/null.rb +2 -0
  11. data/lib/active_model/serializer/adapter.rb +2 -0
  12. data/lib/active_model/serializer/array_serializer.rb +2 -0
  13. data/lib/active_model/serializer/association.rb +2 -0
  14. data/lib/active_model/serializer/attribute.rb +2 -0
  15. data/lib/active_model/serializer/belongs_to_reflection.rb +2 -0
  16. data/lib/active_model/serializer/collection_serializer.rb +17 -5
  17. data/lib/active_model/serializer/concerns/caching.rb +7 -2
  18. data/lib/active_model/serializer/error_serializer.rb +2 -0
  19. data/lib/active_model/serializer/errors_serializer.rb +2 -0
  20. data/lib/active_model/serializer/field.rb +2 -0
  21. data/lib/active_model/serializer/fieldset.rb +3 -1
  22. data/lib/active_model/serializer/has_many_reflection.rb +2 -0
  23. data/lib/active_model/serializer/has_one_reflection.rb +2 -0
  24. data/lib/active_model/serializer/lazy_association.rb +6 -2
  25. data/lib/active_model/serializer/link.rb +23 -0
  26. data/lib/active_model/serializer/lint.rb +2 -0
  27. data/lib/active_model/serializer/null.rb +2 -0
  28. data/lib/active_model/serializer/reflection.rb +10 -5
  29. data/lib/active_model/serializer/version.rb +3 -1
  30. data/lib/active_model/serializer.rb +37 -19
  31. data/lib/active_model_serializers/adapter/attributes.rb +23 -0
  32. data/lib/active_model_serializers/adapter/base.rb +2 -0
  33. data/lib/active_model_serializers/adapter/json.rb +2 -0
  34. data/lib/active_model_serializers/adapter/json_api/deserialization.rb +3 -1
  35. data/lib/active_model_serializers/adapter/json_api/error.rb +2 -0
  36. data/lib/active_model_serializers/adapter/json_api/jsonapi.rb +2 -0
  37. data/lib/active_model_serializers/adapter/json_api/link.rb +2 -0
  38. data/lib/active_model_serializers/adapter/json_api/meta.rb +2 -0
  39. data/lib/active_model_serializers/adapter/json_api/pagination_links.rb +45 -20
  40. data/lib/active_model_serializers/adapter/json_api/relationship.rb +18 -4
  41. data/lib/active_model_serializers/adapter/json_api/resource_identifier.rb +33 -25
  42. data/lib/active_model_serializers/adapter/json_api.rb +14 -9
  43. data/lib/active_model_serializers/adapter/null.rb +2 -0
  44. data/lib/active_model_serializers/adapter.rb +3 -1
  45. data/lib/active_model_serializers/callbacks.rb +2 -0
  46. data/lib/active_model_serializers/deprecate.rb +2 -0
  47. data/lib/active_model_serializers/deserialization.rb +2 -0
  48. data/lib/active_model_serializers/json_pointer.rb +2 -0
  49. data/lib/active_model_serializers/logging.rb +2 -0
  50. data/lib/active_model_serializers/lookup_chain.rb +2 -0
  51. data/lib/active_model_serializers/model/caching.rb +26 -0
  52. data/lib/active_model_serializers/model.rb +2 -0
  53. data/lib/active_model_serializers/railtie.rb +4 -0
  54. data/lib/active_model_serializers/register_jsonapi_renderer.rb +2 -0
  55. data/lib/active_model_serializers/serializable_resource.rb +4 -2
  56. data/lib/active_model_serializers/serialization_context.rb +2 -0
  57. data/lib/active_model_serializers/test/schema.rb +2 -0
  58. data/lib/active_model_serializers/test/serializer.rb +2 -0
  59. data/lib/active_model_serializers/test.rb +2 -0
  60. data/lib/active_model_serializers.rb +21 -11
  61. data/lib/generators/rails/resource_override.rb +2 -0
  62. data/lib/generators/rails/serializer_generator.rb +2 -0
  63. data/lib/grape/active_model_serializers.rb +2 -0
  64. data/lib/grape/formatters/active_model_serializers.rb +2 -0
  65. data/lib/grape/helpers/active_model_serializers.rb +2 -0
  66. data/lib/tasks/rubocop.rake +2 -0
  67. metadata +43 -298
  68. data/.github/ISSUE_TEMPLATE.md +0 -29
  69. data/.github/PULL_REQUEST_TEMPLATE.md +0 -15
  70. data/.gitignore +0 -35
  71. data/.rubocop.yml +0 -105
  72. data/.simplecov +0 -110
  73. data/.travis.yml +0 -55
  74. data/CODE_OF_CONDUCT.md +0 -74
  75. data/CONTRIBUTING.md +0 -105
  76. data/Gemfile +0 -56
  77. data/Rakefile +0 -74
  78. data/active_model_serializers.gemspec +0 -63
  79. data/appveyor.yml +0 -30
  80. data/bin/bench +0 -171
  81. data/bin/bench_regression +0 -316
  82. data/bin/rubocop +0 -38
  83. data/bin/serve_benchmark +0 -39
  84. data/docs/README.md +0 -41
  85. data/docs/STYLE.md +0 -58
  86. data/docs/general/adapters.md +0 -263
  87. data/docs/general/caching.md +0 -58
  88. data/docs/general/configuration_options.md +0 -169
  89. data/docs/general/deserialization.md +0 -100
  90. data/docs/general/fields.md +0 -31
  91. data/docs/general/getting_started.md +0 -133
  92. data/docs/general/instrumentation.md +0 -40
  93. data/docs/general/key_transforms.md +0 -40
  94. data/docs/general/logging.md +0 -21
  95. data/docs/general/rendering.md +0 -293
  96. data/docs/general/serializers.md +0 -480
  97. data/docs/how-open-source-maintained.jpg +0 -0
  98. data/docs/howto/add_pagination_links.md +0 -138
  99. data/docs/howto/add_relationship_links.md +0 -140
  100. data/docs/howto/add_root_key.md +0 -55
  101. data/docs/howto/grape_integration.md +0 -42
  102. data/docs/howto/outside_controller_use.md +0 -66
  103. data/docs/howto/passing_arbitrary_options.md +0 -27
  104. data/docs/howto/serialize_poro.md +0 -73
  105. data/docs/howto/test.md +0 -154
  106. data/docs/howto/upgrade_from_0_8_to_0_10.md +0 -265
  107. data/docs/integrations/ember-and-json-api.md +0 -147
  108. data/docs/integrations/grape.md +0 -19
  109. data/docs/jsonapi/errors.md +0 -56
  110. data/docs/jsonapi/schema/schema.json +0 -366
  111. data/docs/jsonapi/schema.md +0 -151
  112. data/docs/rfcs/0000-namespace.md +0 -106
  113. data/docs/rfcs/template.md +0 -15
  114. data/test/action_controller/adapter_selector_test.rb +0 -62
  115. data/test/action_controller/explicit_serializer_test.rb +0 -135
  116. data/test/action_controller/json/include_test.rb +0 -246
  117. data/test/action_controller/json_api/deserialization_test.rb +0 -112
  118. data/test/action_controller/json_api/errors_test.rb +0 -40
  119. data/test/action_controller/json_api/fields_test.rb +0 -66
  120. data/test/action_controller/json_api/linked_test.rb +0 -202
  121. data/test/action_controller/json_api/pagination_test.rb +0 -116
  122. data/test/action_controller/json_api/transform_test.rb +0 -189
  123. data/test/action_controller/lookup_proc_test.rb +0 -49
  124. data/test/action_controller/namespace_lookup_test.rb +0 -232
  125. data/test/action_controller/serialization_scope_name_test.rb +0 -235
  126. data/test/action_controller/serialization_test.rb +0 -472
  127. data/test/active_model_serializers/adapter_for_test.rb +0 -208
  128. data/test/active_model_serializers/json_pointer_test.rb +0 -22
  129. data/test/active_model_serializers/logging_test.rb +0 -77
  130. data/test/active_model_serializers/model_test.rb +0 -142
  131. data/test/active_model_serializers/railtie_test_isolated.rb +0 -68
  132. data/test/active_model_serializers/register_jsonapi_renderer_test_isolated.rb +0 -161
  133. data/test/active_model_serializers/serialization_context_test_isolated.rb +0 -71
  134. data/test/active_model_serializers/test/schema_test.rb +0 -131
  135. data/test/active_model_serializers/test/serializer_test.rb +0 -62
  136. data/test/active_record_test.rb +0 -9
  137. data/test/adapter/attributes_test.rb +0 -40
  138. data/test/adapter/deprecation_test.rb +0 -100
  139. data/test/adapter/json/belongs_to_test.rb +0 -45
  140. data/test/adapter/json/collection_test.rb +0 -104
  141. data/test/adapter/json/has_many_test.rb +0 -53
  142. data/test/adapter/json/transform_test.rb +0 -93
  143. data/test/adapter/json_api/belongs_to_test.rb +0 -155
  144. data/test/adapter/json_api/collection_test.rb +0 -96
  145. data/test/adapter/json_api/errors_test.rb +0 -76
  146. data/test/adapter/json_api/fields_test.rb +0 -96
  147. data/test/adapter/json_api/has_many_embed_ids_test.rb +0 -43
  148. data/test/adapter/json_api/has_many_explicit_serializer_test.rb +0 -96
  149. data/test/adapter/json_api/has_many_test.rb +0 -173
  150. data/test/adapter/json_api/has_one_test.rb +0 -80
  151. data/test/adapter/json_api/include_data_if_sideloaded_test.rb +0 -183
  152. data/test/adapter/json_api/json_api_test.rb +0 -33
  153. data/test/adapter/json_api/linked_test.rb +0 -413
  154. data/test/adapter/json_api/links_test.rb +0 -95
  155. data/test/adapter/json_api/pagination_links_test.rb +0 -193
  156. data/test/adapter/json_api/parse_test.rb +0 -137
  157. data/test/adapter/json_api/relationship_test.rb +0 -397
  158. data/test/adapter/json_api/resource_identifier_test.rb +0 -110
  159. data/test/adapter/json_api/resource_meta_test.rb +0 -100
  160. data/test/adapter/json_api/toplevel_jsonapi_test.rb +0 -82
  161. data/test/adapter/json_api/transform_test.rb +0 -512
  162. data/test/adapter/json_api/type_test.rb +0 -61
  163. data/test/adapter/json_test.rb +0 -46
  164. data/test/adapter/null_test.rb +0 -22
  165. data/test/adapter/polymorphic_test.rb +0 -171
  166. data/test/adapter_test.rb +0 -67
  167. data/test/array_serializer_test.rb +0 -22
  168. data/test/benchmark/app.rb +0 -65
  169. data/test/benchmark/benchmarking_support.rb +0 -67
  170. data/test/benchmark/bm_active_record.rb +0 -81
  171. data/test/benchmark/bm_adapter.rb +0 -38
  172. data/test/benchmark/bm_caching.rb +0 -119
  173. data/test/benchmark/bm_lookup_chain.rb +0 -83
  174. data/test/benchmark/bm_transform.rb +0 -45
  175. data/test/benchmark/config.ru +0 -3
  176. data/test/benchmark/controllers.rb +0 -83
  177. data/test/benchmark/fixtures.rb +0 -219
  178. data/test/cache_test.rb +0 -651
  179. data/test/collection_serializer_test.rb +0 -123
  180. data/test/fixtures/active_record.rb +0 -113
  181. data/test/fixtures/poro.rb +0 -225
  182. data/test/generators/scaffold_controller_generator_test.rb +0 -24
  183. data/test/generators/serializer_generator_test.rb +0 -75
  184. data/test/grape_test.rb +0 -196
  185. data/test/lint_test.rb +0 -49
  186. data/test/logger_test.rb +0 -20
  187. data/test/poro_test.rb +0 -9
  188. data/test/serializable_resource_test.rb +0 -79
  189. data/test/serializers/association_macros_test.rb +0 -37
  190. data/test/serializers/associations_test.rb +0 -424
  191. data/test/serializers/attribute_test.rb +0 -153
  192. data/test/serializers/attributes_test.rb +0 -52
  193. data/test/serializers/caching_configuration_test_isolated.rb +0 -170
  194. data/test/serializers/configuration_test.rb +0 -32
  195. data/test/serializers/fieldset_test.rb +0 -14
  196. data/test/serializers/meta_test.rb +0 -202
  197. data/test/serializers/options_test.rb +0 -32
  198. data/test/serializers/read_attribute_for_serialization_test.rb +0 -79
  199. data/test/serializers/reflection_test.rb +0 -427
  200. data/test/serializers/root_test.rb +0 -21
  201. data/test/serializers/serialization_test.rb +0 -55
  202. data/test/serializers/serializer_for_test.rb +0 -136
  203. data/test/serializers/serializer_for_with_namespace_test.rb +0 -88
  204. data/test/support/custom_schemas/active_model_serializers/test/schema_test/my/index.json +0 -6
  205. data/test/support/isolated_unit.rb +0 -82
  206. data/test/support/rails5_shims.rb +0 -53
  207. data/test/support/rails_app.rb +0 -38
  208. data/test/support/schemas/active_model_serializers/test/schema_test/my/index.json +0 -6
  209. data/test/support/schemas/active_model_serializers/test/schema_test/my/show.json +0 -6
  210. data/test/support/schemas/custom/show.json +0 -7
  211. data/test/support/schemas/hyper_schema.json +0 -93
  212. data/test/support/schemas/render_using_json_api.json +0 -43
  213. data/test/support/schemas/simple_json_pointers.json +0 -10
  214. data/test/support/serialization_testing.rb +0 -71
  215. data/test/test_helper.rb +0 -70
@@ -1,263 +0,0 @@
1
- [Back to Guides](../README.md)
2
-
3
- # Adapters
4
-
5
- ActiveModelSerializers offers the ability to configure which adapter
6
- to use both globally and/or when serializing (usually when rendering).
7
-
8
- The global adapter configuration is set on [`ActiveModelSerializers.config`](configuration_options.md).
9
- It should be set only once, preferably at initialization.
10
-
11
- For example:
12
-
13
- ```ruby
14
- ActiveModelSerializers.config.adapter = ActiveModelSerializers::Adapter::JsonApi
15
- ```
16
-
17
- or
18
-
19
- ```ruby
20
- ActiveModelSerializers.config.adapter = :json_api
21
- ```
22
-
23
- or
24
-
25
- ```ruby
26
- ActiveModelSerializers.config.adapter = :json
27
- ```
28
-
29
- The local adapter option is in the format `adapter: adapter`, where `adapter` is
30
- any of the same values as set globally.
31
-
32
- The configured adapter can be set as a symbol, class, or class name, as described in
33
- [Advanced adapter configuration](adapters.md#advanced-adapter-configuration).
34
-
35
- The `Attributes` adapter does not include a root key. It is just the serialized attributes.
36
-
37
- Use either the `JSON` or `JSON API` adapters if you want the response document to have a root key.
38
-
39
- ## Built in Adapters
40
-
41
- ### Attributes - Default
42
-
43
- It's the default adapter, it generates a json response without a root key.
44
- Doesn't follow any specific convention.
45
-
46
- ##### Example output
47
-
48
- ```json
49
- {
50
- "title": "Title 1",
51
- "body": "Body 1",
52
- "publish_at": "2020-03-16T03:55:25.291Z",
53
- "author": {
54
- "first_name": "Bob",
55
- "last_name": "Jones"
56
- },
57
- "comments": [
58
- {
59
- "body": "cool"
60
- },
61
- {
62
- "body": "awesome"
63
- }
64
- ]
65
- }
66
- ```
67
-
68
- ### JSON
69
-
70
- The json response is always rendered with a root key.
71
-
72
- The root key can be overridden by:
73
- * passing the `root` option in the render call. See details in the [Rendering Guides](rendering.md#overriding-the-root-key).
74
- * setting the `type` of the serializer. See details in the [Serializers Guide](serializers.md#type).
75
-
76
- Doesn't follow any specific convention.
77
-
78
- ##### Example output
79
-
80
- ```json
81
- {
82
- "post": {
83
- "title": "Title 1",
84
- "body": "Body 1",
85
- "publish_at": "2020-03-16T03:55:25.291Z",
86
- "author": {
87
- "first_name": "Bob",
88
- "last_name": "Jones"
89
- },
90
- "comments": [{
91
- "body": "cool"
92
- }, {
93
- "body": "awesome"
94
- }]
95
- }
96
- }
97
- ```
98
-
99
- ### JSON API
100
-
101
- This adapter follows **version 1.0** of the [format specified](../jsonapi/schema.md) in
102
- [jsonapi.org/format](http://jsonapi.org/format).
103
-
104
- ##### Example output
105
-
106
- ```json
107
- {
108
- "data": {
109
- "id": "1337",
110
- "type": "posts",
111
- "attributes": {
112
- "title": "Title 1",
113
- "body": "Body 1",
114
- "publish-at": "2020-03-16T03:55:25.291Z"
115
- },
116
- "relationships": {
117
- "author": {
118
- "data": {
119
- "id": "1",
120
- "type": "authors"
121
- }
122
- },
123
- "comments": {
124
- "data": [{
125
- "id": "7",
126
- "type": "comments"
127
- }, {
128
- "id": "12",
129
- "type": "comments"
130
- }]
131
- }
132
- },
133
- "links": {
134
- "post-authors": "https://example.com/post_authors"
135
- },
136
- "meta": {
137
- "rating": 5,
138
- "favorite-count": 10
139
- }
140
- }
141
- }
142
- ```
143
-
144
- ### Include option
145
-
146
- Which [serializer associations](https://github.com/rails-api/active_model_serializers/blob/master/docs/general/serializers.md#associations) are rendered can be specified using the `include` option. The option usage is consistent with [the include option in the JSON API spec](http://jsonapi.org/format/#fetching-includes), and is available in all adapters.
147
-
148
- Example of the usage:
149
- ```ruby
150
- render json: @posts, include: ['author', 'comments', 'comments.author']
151
- # or
152
- render json: @posts, include: 'author,comments,comments.author'
153
- ```
154
-
155
- The format of the `include` option can be either:
156
-
157
- - a String composed of a comma-separated list of [relationship paths](http://jsonapi.org/format/#fetching-includes).
158
- - an Array of Symbols and Hashes.
159
- - a mix of both.
160
-
161
- An empty string or an empty array will prevent rendering of any associations.
162
-
163
- In addition, two types of wildcards may be used:
164
-
165
- - `*` includes one level of associations.
166
- - `**` includes all recursively.
167
-
168
- These can be combined with other paths.
169
-
170
- ```ruby
171
- render json: @posts, include: '**' # or '*' for a single layer
172
- ```
173
-
174
-
175
- The following would render posts and include:
176
-
177
- - the author
178
- - the author's comments, and
179
- - every resource referenced by the author's comments (recursively).
180
-
181
- It could be combined, like above, with other paths in any combination desired.
182
-
183
- ```ruby
184
- render json: @posts, include: 'author.comments.**'
185
- ```
186
-
187
- **Note:** Wildcards are ActiveModelSerializers-specific, they are not part of the JSON API spec.
188
-
189
- The default include for the JSON API adapter is no associations. The default for the JSON and Attributes adapters is all associations.
190
-
191
- For the JSON API adapter associated resources will be gathered in the `"included"` member. For the JSON and Attributes
192
- adapters associated resources will be rendered among the other attributes.
193
-
194
- Only for the JSON API adapter you can specify, which attributes of associated resources will be rendered. This feature
195
- is called [sparse fieldset](http://jsonapi.org/format/#fetching-sparse-fieldsets):
196
-
197
- ```ruby
198
- render json: @posts, include: 'comments', fields: { comments: ['content', 'created_at'] }
199
- ```
200
-
201
- ##### Security Considerations
202
-
203
- Since the included options may come from the query params (i.e. user-controller):
204
-
205
- ```ruby
206
- render json: @posts, include: params[:include]
207
- ```
208
-
209
- The user could pass in `include=**`.
210
-
211
- We recommend filtering any user-supplied includes appropriately.
212
-
213
- ## Advanced adapter configuration
214
-
215
- ### Registering an adapter
216
-
217
- The default adapter can be configured, as above, to use any class given to it.
218
-
219
- An adapter may also be specified, e.g. when rendering, as a class or as a symbol.
220
- If a symbol, then the adapter must be, e.g. `:great_example`,
221
- `ActiveModelSerializers::Adapter::GreatExample`, or registered.
222
-
223
- There are two ways to register an adapter:
224
-
225
- 1) The simplest, is to subclass `ActiveModelSerializers::Adapter::Base`, e.g. the below will
226
- register the `Example::UsefulAdapter` as `"example/useful_adapter"`.
227
-
228
- ```ruby
229
- module Example
230
- class UsefulAdapter < ActiveModelSerializers::Adapter::Base
231
- end
232
- end
233
- ```
234
-
235
- You'll notice that the name it registers is the underscored namespace and class.
236
-
237
- Under the covers, when the `ActiveModelSerializers::Adapter::Base` is subclassed, it registers
238
- the subclass as `register("example/useful_adapter", Example::UsefulAdapter)`
239
-
240
- 2) Any class can be registered as an adapter by calling `register` directly on the
241
- `ActiveModelSerializers::Adapter` class. e.g., the below registers `MyAdapter` as
242
- `:special_adapter`.
243
-
244
- ```ruby
245
- class MyAdapter; end
246
- ActiveModelSerializers::Adapter.register(:special_adapter, MyAdapter)
247
- ```
248
-
249
- ### Looking up an adapter
250
-
251
- | Method | Return value |
252
- | :------------ |:---------------|
253
- | `ActiveModelSerializers::Adapter.adapter_map` | A Hash of all known adapters `{ adapter_name => adapter_class }` |
254
- | `ActiveModelSerializers::Adapter.adapters` | A (sorted) Array of all known `adapter_names` |
255
- | `ActiveModelSerializers::Adapter.lookup(name_or_klass)` | The `adapter_class`, else raises an `ActiveModelSerializers::Adapter::UnknownAdapter` error |
256
- | `ActiveModelSerializers::Adapter.adapter_class(adapter)` | Delegates to `ActiveModelSerializers::Adapter.lookup(adapter)` |
257
- | `ActiveModelSerializers::Adapter.configured_adapter` | A convenience method for `ActiveModelSerializers::Adapter.lookup(config.adapter)` |
258
-
259
- The registered adapter name is always a String, but may be looked up as a Symbol or String.
260
- Helpfully, the Symbol or String is underscored, so that `get(:my_adapter)` and `get("MyAdapter")`
261
- may both be used.
262
-
263
- For more information, see [the Adapter class on GitHub](https://github.com/rails-api/active_model_serializers/blob/master/lib/active_model_serializers/adapter.rb)
@@ -1,58 +0,0 @@
1
- [Back to Guides](../README.md)
2
-
3
- # Caching
4
-
5
- ## Warning
6
-
7
- There is currently a problem with caching in AMS [Caching doesn't improve performance](https://github.com/rails-api/active_model_serializers/issues/1586). Adding caching _may_ slow down your application, rather than speeding it up. We suggest you benchmark any caching you implement before using in a production enviroment
8
-
9
- ___
10
-
11
- To cache a serializer, call ```cache``` and pass its options.
12
- The options are the same options of ```ActiveSupport::Cache::Store```, plus
13
- a ```key``` option that will be the prefix of the object cache
14
- on a pattern ```"#{key}/#{object.id}-#{object.updated_at}"```.
15
-
16
- The cache support is optimized to use the cached object in multiple request. An object cached on a ```show``` request will be reused at the ```index```. If there is a relationship with another cached serializer it will also be created and reused automatically.
17
-
18
- **[NOTE] Every object is individually cached.**
19
-
20
- **[NOTE] The cache is automatically expired after an object is updated, but it's not deleted.**
21
-
22
- ```ruby
23
- cache(options = nil) # options: ```{key, expires_in, compress, force, race_condition_ttl}```
24
- ```
25
-
26
- Take the example below:
27
-
28
- ```ruby
29
- class PostSerializer < ActiveModel::Serializer
30
- cache key: 'post', expires_in: 3.hours
31
- attributes :title, :body
32
-
33
- has_many :comments
34
- end
35
- ```
36
-
37
- On this example every ```Post``` object will be cached with
38
- the key ```"post/#{post.id}-#{post.updated_at}"```. You can use this key to expire it as you want,
39
- but in this case it will be automatically expired after 3 hours.
40
-
41
- ## Fragment Caching
42
-
43
- If there is some API endpoint that shouldn't be fully cached, you can still optimise it, using Fragment Cache on the attributes and relationships that you want to cache.
44
-
45
- You can define the attribute by using ```only``` or ```except``` option on cache method.
46
-
47
- **[NOTE] Cache serializers will be used at their relationships**
48
-
49
- Example:
50
-
51
- ```ruby
52
- class PostSerializer < ActiveModel::Serializer
53
- cache key: 'post', expires_in: 3.hours, only: [:title]
54
- attributes :title, :body
55
-
56
- has_many :comments
57
- end
58
- ```
@@ -1,169 +0,0 @@
1
- [Back to Guides](../README.md)
2
-
3
- # Configuration Options
4
-
5
- The following configuration options can be set on
6
- `ActiveModelSerializers.config`, preferably inside an initializer.
7
-
8
- ## General
9
-
10
- ##### adapter
11
-
12
- The [adapter](adapters.md) to use.
13
-
14
- Possible values:
15
-
16
- - `:attributes` (default)
17
- - `:json`
18
- - `:json_api`
19
-
20
- ##### serializer_lookup_enabled
21
-
22
- Enable automatic serializer lookup.
23
-
24
- Possible values:
25
-
26
- - `true` (default)
27
- - `false`
28
-
29
- When `false`, serializers must be explicitly specified.
30
-
31
- ##### key_transform
32
-
33
- The [key transform](key_transforms.md) to use.
34
-
35
-
36
- | Option | Result |
37
- |----|----|
38
- | `:camel` | ExampleKey |
39
- | `:camel_lower` | exampleKey |
40
- | `:dash` | example-key |
41
- | `:unaltered` | the original, unaltered key |
42
- | `:underscore` | example_key |
43
- | `nil` | use the adapter default |
44
-
45
- Each adapter has a default key transform configured:
46
-
47
- | Adapter | Default Key Transform |
48
- |----|----|
49
- | `Attributes` | `:unaltered` |
50
- | `Json` | `:unaltered` |
51
- | `JsonApi` | `:dash` |
52
-
53
- `config.key_transform` is a global override of the adapter default. Adapters
54
- still prefer the render option `:key_transform` over this setting.
55
-
56
- *NOTE: Key transforms can be expensive operations. If key transforms are unnecessary for the
57
- application, setting `config.key_transform` to `:unaltered` will provide a performance boost.*
58
-
59
- ##### default_includes
60
- What relationships to serialize by default. Default: `'*'`, which includes one level of related
61
- objects. See [includes](adapters.md#included) for more info.
62
-
63
-
64
- ##### serializer_lookup_chain
65
-
66
- Configures how serializers are searched for. By default, the lookup chain is
67
-
68
- ```ruby
69
- ActiveModelSerializers::LookupChain::DEFAULT
70
- ```
71
-
72
- which is shorthand for
73
-
74
- ```ruby
75
- [
76
- ActiveModelSerializers::LookupChain::BY_PARENT_SERIALIZER,
77
- ActiveModelSerializers::LookupChain::BY_NAMESPACE,
78
- ActiveModelSerializers::LookupChain::BY_RESOURCE_NAMESPACE,
79
- ActiveModelSerializers::LookupChain::BY_RESOURCE
80
- ]
81
- ```
82
-
83
- Each of the array entries represent a proc. A serializer lookup proc will be yielded 3 arguments. `resource_class`, `serializer_class`, and `namespace`.
84
-
85
- Note that:
86
- - `resource_class` is the class of the resource being rendered
87
- - by default `serializer_class` is `ActiveModel::Serializer`
88
- - for association lookup it's the "parent" serializer
89
- - `namespace` correspond to either the controller namespace or the [optionally] specified [namespace render option](./rendering.md#namespace)
90
-
91
- An example config could be:
92
-
93
- ```ruby
94
- ActiveModelSerializers.config.serializer_lookup_chain = [
95
- lambda do |resource_class, serializer_class, namespace|
96
- "API::#{namespace}::#{resource_class}"
97
- end
98
- ]
99
- ```
100
-
101
- If you simply want to add to the existing lookup_chain. Use `unshift`.
102
-
103
- ```ruby
104
- ActiveModelSerializers.config.serializer_lookup_chain.unshift(
105
- lambda do |resource_class, serializer_class, namespace|
106
- # ...
107
- end
108
- )
109
- ```
110
-
111
- See [lookup_chain.rb](https://github.com/rails-api/active_model_serializers/blob/master/lib/active_model_serializers/lookup_chain.rb) for further explanations and examples.
112
-
113
- ## JSON API
114
-
115
- ##### jsonapi_resource_type
116
-
117
- Sets whether the [type](http://jsonapi.org/format/#document-resource-identifier-objects)
118
- of the resource should be `singularized` or `pluralized` when it is not
119
- [explicitly specified by the serializer](https://github.com/rails-api/active_model_serializers/blob/master/docs/general/serializers.md#type)
120
-
121
- Possible values:
122
-
123
- - `:singular`
124
- - `:plural` (default)
125
-
126
- ##### jsonapi_namespace_separator
127
-
128
- Sets separator string for namespaced models to render `type` attribute.
129
-
130
-
131
- | Separator | Example: Admin::User |
132
- |----|----|
133
- | `'-'` (default) | 'admin-users'
134
- | `'--'` (recommended) | 'admin--users'
135
-
136
- See [Recommendation for dasherizing (kebab-case-ing) namespaced object, such as `Admin::User`](https://github.com/json-api/json-api/issues/850)
137
- for more discussion.
138
-
139
- ##### jsonapi_include_toplevel_object
140
-
141
- Include a [top level jsonapi member](http://jsonapi.org/format/#document-jsonapi-object)
142
- in the response document.
143
-
144
- Possible values:
145
-
146
- - `true`
147
- - `false` (default)
148
-
149
- ##### jsonapi_version
150
-
151
- The latest version of the spec to which the API conforms.
152
-
153
- Default: `'1.0'`.
154
-
155
- *Used when `jsonapi_include_toplevel_object` is `true`*
156
-
157
- ##### jsonapi_toplevel_meta
158
-
159
- Optional top-level metadata. Not included if empty.
160
-
161
- Default: `{}`.
162
-
163
- *Used when `jsonapi_include_toplevel_object` is `true`*
164
-
165
-
166
- ## Hooks
167
-
168
- To run a hook when ActiveModelSerializers is loaded, use
169
- `ActiveSupport.on_load(:action_controller) do end`
@@ -1,100 +0,0 @@
1
- [Back to Guides](../README.md)
2
-
3
- # Deserialization
4
-
5
- This is currently an *experimental* feature. The interface may change.
6
-
7
- ## JSON API
8
-
9
- The `ActiveModelSerializers::Deserialization` defines two methods (namely `jsonapi_parse` and `jsonapi_parse!`), which take a `Hash` or an instance of `ActionController::Parameters` representing a JSON API payload, and return a hash that can directly be used to create/update models. The bang version throws an `InvalidDocument` exception when parsing fails, whereas the "safe" version simply returns an empty hash.
10
-
11
- - Parameters
12
- - document: `Hash` or `ActionController::Parameters` instance
13
- - options:
14
- - only: `Array` of whitelisted fields
15
- - except: `Array` of blacklisted fields
16
- - keys: `Hash` of fields the name of which needs to be modified (e.g. `{ :author => :user, :date => :created_at }`)
17
-
18
- Examples:
19
-
20
- ```ruby
21
- class PostsController < ActionController::Base
22
- def create
23
- Post.create(create_params)
24
- end
25
-
26
- def create_params
27
- ActiveModelSerializers::Deserialization.jsonapi_parse(params, only: [:title, :content, :author])
28
- end
29
- end
30
- ```
31
-
32
-
33
-
34
- Given a JSON API document,
35
-
36
- ```
37
- document = {
38
- 'data' => {
39
- 'id' => 1,
40
- 'type' => 'post',
41
- 'attributes' => {
42
- 'title' => 'Title 1',
43
- 'date' => '2015-12-20'
44
- },
45
- 'relationships' => {
46
- 'author' => {
47
- 'data' => {
48
- 'type' => 'user',
49
- 'id' => '2'
50
- }
51
- },
52
- 'second_author' => {
53
- 'data' => nil
54
- },
55
- 'comments' => {
56
- 'data' => [{
57
- 'type' => 'comment',
58
- 'id' => '3'
59
- },{
60
- 'type' => 'comment',
61
- 'id' => '4'
62
- }]
63
- }
64
- }
65
- }
66
- }
67
- ```
68
-
69
- The entire document can be parsed without specifying any options:
70
- ```ruby
71
- ActiveModelSerializers::Deserialization.jsonapi_parse(document)
72
- #=>
73
- # {
74
- # title: 'Title 1',
75
- # date: '2015-12-20',
76
- # author_id: 2,
77
- # second_author_id: nil
78
- # comment_ids: [3, 4]
79
- # }
80
- ```
81
-
82
- and fields, relationships, and polymorphic relationships can be specified via the options:
83
-
84
- ```ruby
85
- ActiveModelSerializers::Deserialization
86
- .jsonapi_parse(document, only: [:title, :date, :author],
87
- keys: { date: :published_at },
88
- polymorphic: [:author])
89
- #=>
90
- # {
91
- # title: 'Title 1',
92
- # published_at: '2015-12-20',
93
- # author_id: '2',
94
- # author_type: 'user'
95
- # }
96
- ```
97
-
98
- ## Attributes/Json
99
-
100
- There is currently no deserialization for those adapters.
@@ -1,31 +0,0 @@
1
- [Back to Guides](../README.md)
2
-
3
- # Fields
4
-
5
- If for any reason, you need to restrict the fields returned, you should use `fields` option.
6
-
7
- For example, if you have a serializer like this
8
-
9
- ```ruby
10
- class UserSerializer < ActiveModel::Serializer
11
- attributes :access_token, :first_name, :last_name
12
- end
13
- ```
14
-
15
- and in a specific controller, you want to return `access_token` only, `fields` will help you:
16
-
17
- ```ruby
18
- class AnonymousController < ApplicationController
19
- def create
20
- render json: User.create(activation_state: 'anonymous'), fields: [:access_token], status: 201
21
- end
22
- end
23
- ```
24
-
25
- Note that this is only valid for the `json` and `attributes` adapter. For the `json_api` adapter, you would use
26
-
27
- ```ruby
28
- render json: @user, fields: { users: [:access_token] }
29
- ```
30
-
31
- Where `users` is the JSONAPI type.