forked from emberjs/data
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjson-api.js
767 lines (624 loc) · 22.8 KB
/
json-api.js
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
/**
* @module @ember-data/serializer/json-api
*/
import { assert, warn } from '@ember/debug';
import { dasherize } from '@ember/string';
import { pluralize, singularize } from 'ember-inflector';
import { DEBUG } from '@ember-data/env';
import JSONSerializer from './json';
/**
* <blockquote style="margin: 1em; padding: .1em 1em .1em 1em; border-left: solid 1em #E34C32; background: #e0e0e0;">
<p>
⚠️ <strong>This is LEGACY documentation</strong> for a feature that is no longer encouraged to be used.
If starting a new app or thinking of implementing a new adapter, consider writing a
<a href="/ember-data/release/classes/%3CInterface%3E%20Handler">Handler</a> instead to be used with the <a href="https://github.com/emberjs/data/tree/main/packages/request#readme">RequestManager</a>
</p>
</blockquote>
In EmberData a Serializer is used to serialize and deserialize
records when they are transferred in and out of an external source.
This process involves normalizing property names, transforming
attribute values and serializing relationships.
`JSONAPISerializer` supports the http://jsonapi.org/ spec and is the
serializer recommended by Ember Data.
This serializer normalizes a JSON API payload that looks like:
```app/models/player.js
import Model, { attr, belongsTo } from '@ember-data/model';
export default class Player extends Model {
@attr('string') name;
@attr('string') skill;
@attr('number') gamesPlayed;
@belongsTo('club') club;
}
```
```app/models/club.js
import Model, { attr, hasMany } from '@ember-data/model';
export default class Club extends Model {
@attr('string') name;
@attr('string') location;
@hasMany('player') players;
}
```
```js
{
"data": [
{
"attributes": {
"name": "Benfica",
"location": "Portugal"
},
"id": "1",
"relationships": {
"players": {
"data": [
{
"id": "3",
"type": "players"
}
]
}
},
"type": "clubs"
}
],
"included": [
{
"attributes": {
"name": "Eusebio Silva Ferreira",
"skill": "Rocket shot",
"games-played": 431
},
"id": "3",
"relationships": {
"club": {
"data": {
"id": "1",
"type": "clubs"
}
}
},
"type": "players"
}
]
}
```
to the format that the Ember Data store expects.
### Customizing meta
Since a JSON API Document can have meta defined in multiple locations you can
use the specific serializer hooks if you need to customize the meta.
One scenario would be to camelCase the meta keys of your payload. The example
below shows how this could be done using `normalizeArrayResponse` and
`extractRelationship`.
```app/serializers/application.js
import JSONAPISerializer from '@ember-data/serializer/json-api';
export default class ApplicationSerializer extends JSONAPISerializer {
normalizeArrayResponse(store, primaryModelClass, payload, id, requestType) {
let normalizedDocument = super.normalizeArrayResponse(...arguments);
// Customize document meta
normalizedDocument.meta = camelCaseKeys(normalizedDocument.meta);
return normalizedDocument;
}
extractRelationship(relationshipHash) {
let normalizedRelationship = super.extractRelationship(...arguments);
// Customize relationship meta
normalizedRelationship.meta = camelCaseKeys(normalizedRelationship.meta);
return normalizedRelationship;
}
}
```
@main @ember-data/serializer/json-api
@since 1.13.0
@class JSONAPISerializer
@public
@extends JSONSerializer
*/
const JSONAPISerializer = JSONSerializer.extend({
/**
@method _normalizeDocumentHelper
@param {Object} documentHash
@return {Object}
@private
*/
_normalizeDocumentHelper(documentHash) {
if (Array.isArray(documentHash.data)) {
const ret = new Array(documentHash.data.length);
for (let i = 0; i < documentHash.data.length; i++) {
const data = documentHash.data[i];
ret[i] = this._normalizeResourceHelper(data);
}
documentHash.data = ret;
} else if (documentHash.data && typeof documentHash.data === 'object') {
documentHash.data = this._normalizeResourceHelper(documentHash.data);
}
if (Array.isArray(documentHash.included)) {
const ret = new Array();
for (let i = 0; i < documentHash.included.length; i++) {
const included = documentHash.included[i];
const normalized = this._normalizeResourceHelper(included);
if (normalized !== null) {
// can be null when unknown type is encountered
ret.push(normalized);
}
}
documentHash.included = ret;
}
return documentHash;
},
/**
@method _normalizeRelationshipDataHelper
@param {Object} relationshipDataHash
@return {Object}
@private
*/
_normalizeRelationshipDataHelper(relationshipDataHash) {
relationshipDataHash.type = this.modelNameFromPayloadKey(relationshipDataHash.type);
return relationshipDataHash;
},
/**
@method _normalizeResourceHelper
@param {Object} resourceHash
@return {Object}
@private
*/
_normalizeResourceHelper(resourceHash) {
assert(this.warnMessageForUndefinedType(), resourceHash.type);
const modelName = this.modelNameFromPayloadKey(resourceHash.type);
if (!this.store.getSchemaDefinitionService().doesTypeExist(modelName)) {
warn(this.warnMessageNoModelForType(modelName, resourceHash.type, 'modelNameFromPayloadKey'), false, {
id: 'ds.serializer.model-for-type-missing',
});
return null;
}
const modelClass = this.store.modelFor(modelName);
const serializer = this.store.serializerFor(modelName);
const { data } = serializer.normalize(modelClass, resourceHash);
return data;
},
/**
Normalize some data and push it into the store.
@method pushPayload
@public
@param {Store} store
@param {Object} payload
*/
pushPayload(store, payload) {
const normalizedPayload = this._normalizeDocumentHelper(payload);
store.push(normalizedPayload);
},
/**
@method _normalizeResponse
@param {Store} store
@param {Model} primaryModelClass
@param {Object} payload
@param {String|Number} id
@param {String} requestType
@param {Boolean} isSingle
@return {Object} JSON-API Document
@private
*/
_normalizeResponse(store, primaryModelClass, payload, id, requestType, isSingle) {
const normalizedPayload = this._normalizeDocumentHelper(payload);
return normalizedPayload;
},
normalizeQueryRecordResponse() {
const normalized = this._super(...arguments);
assert(
'Expected the primary data returned by the serializer for a `queryRecord` response to be a single object but instead it was an array.',
!Array.isArray(normalized.data)
);
return normalized;
},
extractAttributes(modelClass, resourceHash) {
const attributes = {};
if (resourceHash.attributes) {
modelClass.eachAttribute((key) => {
const attributeKey = this.keyForAttribute(key, 'deserialize');
if (resourceHash.attributes[attributeKey] !== undefined) {
attributes[key] = resourceHash.attributes[attributeKey];
}
if (DEBUG) {
if (resourceHash.attributes[attributeKey] === undefined && resourceHash.attributes[key] !== undefined) {
assert(
`Your payload for '${modelClass.modelName}' contains '${key}', but your serializer is setup to look for '${attributeKey}'. This is most likely because Ember Data's JSON API serializer dasherizes attribute keys by default. You should subclass JSONAPISerializer and implement 'keyForAttribute(key) { return key; }' to prevent Ember Data from customizing your attribute keys.`,
false
);
}
}
});
}
return attributes;
},
/**
Returns a relationship formatted as a JSON-API "relationship object".
http://jsonapi.org/format/#document-resource-object-relationships
@method extractRelationship
@public
@param {Object} relationshipHash
@return {Object}
*/
extractRelationship(relationshipHash) {
if (Array.isArray(relationshipHash.data)) {
const ret = new Array(relationshipHash.data.length);
for (let i = 0; i < relationshipHash.data.length; i++) {
const data = relationshipHash.data[i];
ret[i] = this._normalizeRelationshipDataHelper(data);
}
relationshipHash.data = ret;
} else if (relationshipHash.data && typeof relationshipHash.data === 'object') {
relationshipHash.data = this._normalizeRelationshipDataHelper(relationshipHash.data);
}
return relationshipHash;
},
/**
Returns the resource's relationships formatted as a JSON-API "relationships object".
http://jsonapi.org/format/#document-resource-object-relationships
@method extractRelationships
@public
@param {Object} modelClass
@param {Object} resourceHash
@return {Object}
*/
extractRelationships(modelClass, resourceHash) {
const relationships = {};
if (resourceHash.relationships) {
modelClass.eachRelationship((key, relationshipMeta) => {
const relationshipKey = this.keyForRelationship(key, relationshipMeta.kind, 'deserialize');
if (resourceHash.relationships[relationshipKey] !== undefined) {
const relationshipHash = resourceHash.relationships[relationshipKey];
relationships[key] = this.extractRelationship(relationshipHash);
}
if (DEBUG) {
if (
resourceHash.relationships[relationshipKey] === undefined &&
resourceHash.relationships[key] !== undefined
) {
assert(
`Your payload for '${modelClass.modelName}' contains '${key}', but your serializer is setup to look for '${relationshipKey}'. This is most likely because Ember Data's JSON API serializer dasherizes relationship keys by default. You should subclass JSONAPISerializer and implement 'keyForRelationship(key) { return key; }' to prevent Ember Data from customizing your relationship keys.`,
false
);
}
}
});
}
return relationships;
},
/**
@method _extractType
@param {Model} modelClass
@param {Object} resourceHash
@return {String}
@private
*/
_extractType(modelClass, resourceHash) {
return this.modelNameFromPayloadKey(resourceHash.type);
},
/**
Dasherizes and singularizes the model name in the payload to match
the format Ember Data uses internally for the model name.
For example the key `posts` would be converted to `post` and the
key `studentAssesments` would be converted to `student-assesment`.
@method modelNameFromPayloadKey
@public
@param {String} key
@return {String} the model's modelName
*/
modelNameFromPayloadKey(key) {
return dasherize(singularize(key));
},
/**
Converts the model name to a pluralized version of the model name.
For example `post` would be converted to `posts` and
`student-assesment` would be converted to `student-assesments`.
@method payloadKeyFromModelName
@public
@param {String} modelName
@return {String}
*/
payloadKeyFromModelName(modelName) {
return pluralize(modelName);
},
normalize(modelClass, resourceHash) {
if (resourceHash.attributes) {
this.normalizeUsingDeclaredMapping(modelClass, resourceHash.attributes);
}
if (resourceHash.relationships) {
this.normalizeUsingDeclaredMapping(modelClass, resourceHash.relationships);
}
const data = {
id: this.extractId(modelClass, resourceHash),
type: this._extractType(modelClass, resourceHash),
attributes: this.extractAttributes(modelClass, resourceHash),
relationships: this.extractRelationships(modelClass, resourceHash),
};
if (resourceHash.lid) {
data.lid = resourceHash.lid;
}
this.applyTransforms(modelClass, data.attributes);
return { data };
},
/**
`keyForAttribute` can be used to define rules for how to convert an
attribute name in your model to a key in your JSON.
By default `JSONAPISerializer` follows the format used on the examples of
http://jsonapi.org/format and uses dashes as the word separator in the JSON
attribute keys.
This behaviour can be easily customized by extending this method.
Example
```app/serializers/application.js
import JSONAPISerializer from '@ember-data/serializer/json-api';
import { dasherize } from '<app-name>/utils/string-utils';
export default class ApplicationSerializer extends JSONAPISerializer {
keyForAttribute(attr, method) {
return dasherize(attr).toUpperCase();
}
}
```
@method keyForAttribute
@public
@param {String} key
@param {String} method
@return {String} normalized key
*/
keyForAttribute(key, method) {
return dasherize(key);
},
/**
`keyForRelationship` can be used to define a custom key when
serializing and deserializing relationship properties.
By default `JSONAPISerializer` follows the format used on the examples of
http://jsonapi.org/format and uses dashes as word separators in
relationship properties.
This behaviour can be easily customized by extending this method.
Example
```app/serializers/post.js
import JSONAPISerializer from '@ember-data/serializer/json-api';
import { underscore } from '<app-name>/utils/string-utils';
export default class ApplicationSerializer extends JSONAPISerializer {
keyForRelationship(key, relationship, method) {
return underscore(key);
}
}
```
@method keyForRelationship
@public
@param {String} key
@param {String} typeClass
@param {String} method
@return {String} normalized key
*/
keyForRelationship(key, typeClass, method) {
return dasherize(key);
},
/**
Called when a record is saved in order to convert the
record into JSON.
For example, consider this model:
```app/models/comment.js
import Model, { attr, belongsTo } from '@ember-data/model';
export default class CommentModel extends Model {
@attr title;
@attr body;
@belongsTo('user', { async: false, inverse: null })
author;
}
```
The default serialization would create a JSON-API resource object like:
```javascript
{
"data": {
"type": "comments",
"attributes": {
"title": "Rails is unagi",
"body": "Rails? Omakase? O_O",
},
"relationships": {
"author": {
"data": {
"id": "12",
"type": "users"
}
}
}
}
}
```
By default, attributes are passed through as-is, unless
you specified an attribute type (`attr('date')`). If
you specify a transform, the JavaScript value will be
serialized when inserted into the attributes hash.
Belongs-to relationships are converted into JSON-API
resource identifier objects.
## IDs
`serialize` takes an options hash with a single option:
`includeId`. If this option is `true`, `serialize` will,
by default include the ID in the JSON object it builds.
The JSONAPIAdapter passes in `includeId: true` when serializing a record
for `createRecord` or `updateRecord`.
## Customization
Your server may expect data in a different format than the
built-in serialization format.
In that case, you can implement `serialize` yourself and
return data formatted to match your API's expectations, or override
the invoked adapter method and do the serialization in the adapter directly
by using the provided snapshot.
If your API's format differs greatly from the JSON:API spec, you should
consider authoring your own adapter and serializer instead of extending
this class.
```app/serializers/post.js
import JSONAPISerializer from '@ember-data/serializer/json-api';
export default class PostSerializer extends JSONAPISerializer {
serialize(snapshot, options) {
let json = {
POST_TTL: snapshot.attr('title'),
POST_BDY: snapshot.attr('body'),
POST_CMS: snapshot.hasMany('comments', { ids: true })
};
if (options.includeId) {
json.POST_ID_ = snapshot.id;
}
return json;
}
}
```
## Customizing an App-Wide Serializer
If you want to define a serializer for your entire
application, you'll probably want to use `eachAttribute`
and `eachRelationship` on the record.
```app/serializers/application.js
import JSONAPISerializer from '@ember-data/serializer/json-api';
import { underscore, singularize } from '<app-name>/utils/string-utils';
export default class ApplicationSerializer extends JSONAPISerializer {
serialize(snapshot, options) {
let json = {};
snapshot.eachAttribute((name) => {
json[serverAttributeName(name)] = snapshot.attr(name);
});
snapshot.eachRelationship((name, relationship) => {
if (relationship.kind === 'hasMany') {
json[serverHasManyName(name)] = snapshot.hasMany(name, { ids: true });
}
});
if (options.includeId) {
json.ID_ = snapshot.id;
}
return json;
}
}
function serverAttributeName(attribute) {
return underscore(attribute).toUpperCase();
}
function serverHasManyName(name) {
return serverAttributeName(singularize(name)) + '_IDS';
}
```
This serializer will generate JSON that looks like this:
```javascript
{
"TITLE": "Rails is omakase",
"BODY": "Yep. Omakase.",
"COMMENT_IDS": [ "1", "2", "3" ]
}
```
## Tweaking the Default Formatting
If you just want to do some small tweaks on the default JSON:API formatted response,
you can call `super.serialize` first and make the tweaks
on the returned object.
```app/serializers/post.js
import JSONAPISerializer from '@ember-data/serializer/json-api';
export default class PostSerializer extends JSONAPISerializer {
serialize(snapshot, options) {
let json = super.serialize(...arguments);
json.data.attributes.subject = json.data.attributes.title;
delete json.data.attributes.title;
return json;
}
}
```
@method serialize
@public
@param {Snapshot} snapshot
@param {Object} options
@return {Object} json
*/
serialize(snapshot, options) {
const data = this._super(...arguments);
data.type = this.payloadKeyFromModelName(snapshot.modelName);
return { data };
},
serializeAttribute(snapshot, json, key, attribute) {
const type = attribute.type;
if (this._canSerialize(key)) {
json.attributes = json.attributes || {};
let value = snapshot.attr(key);
if (type) {
const transform = this.transformFor(type);
value = transform.serialize(value, attribute.options);
}
const schema = this.store.modelFor(snapshot.modelName);
let payloadKey = this._getMappedKey(key, schema);
if (payloadKey === key) {
payloadKey = this.keyForAttribute(key, 'serialize');
}
json.attributes[payloadKey] = value;
}
},
serializeBelongsTo(snapshot, json, relationship) {
const name = relationship.name;
if (this._canSerialize(name)) {
const belongsTo = snapshot.belongsTo(name);
const belongsToIsNotNew = belongsTo && !belongsTo.isNew;
if (belongsTo === null || belongsToIsNotNew) {
json.relationships = json.relationships || {};
const schema = this.store.modelFor(snapshot.modelName);
let payloadKey = this._getMappedKey(name, schema);
if (payloadKey === name) {
payloadKey = this.keyForRelationship(name, 'belongsTo', 'serialize');
}
let data = null;
if (belongsTo) {
const payloadType = this.payloadKeyFromModelName(belongsTo.modelName);
data = {
type: payloadType,
id: belongsTo.id,
};
}
json.relationships[payloadKey] = { data };
}
}
},
serializeHasMany(snapshot, json, relationship) {
const name = relationship.name;
if (this.shouldSerializeHasMany(snapshot, name, relationship)) {
const hasMany = snapshot.hasMany(name);
if (hasMany !== undefined) {
json.relationships = json.relationships || {};
const schema = this.store.modelFor(snapshot.modelName);
let payloadKey = this._getMappedKey(name, schema);
if (payloadKey === name && this.keyForRelationship) {
payloadKey = this.keyForRelationship(name, 'hasMany', 'serialize');
}
// only serialize has many relationships that are not new
const nonNewHasMany = hasMany.filter((item) => !item.isNew);
const data = new Array(nonNewHasMany.length);
for (let i = 0; i < nonNewHasMany.length; i++) {
const item = hasMany[i];
const payloadType = this.payloadKeyFromModelName(item.modelName);
data[i] = {
type: payloadType,
id: item.id,
};
}
json.relationships[payloadKey] = { data };
}
}
},
});
if (DEBUG) {
JSONAPISerializer.reopen({
init(...args) {
this._super(...args);
assert(
`You've used the EmbeddedRecordsMixin in ${this.toString()} which is not fully compatible with the JSON:API specification. Please confirm that this works for your specific API and add \`this.isEmbeddedRecordsMixinCompatible = true\` to your serializer.`,
!this.isEmbeddedRecordsMixin || this.isEmbeddedRecordsMixinCompatible === true
);
const constructor = this.constructor;
warn(
`You've defined 'extractMeta' in ${constructor.toString()} which is not used for serializers extending JSONAPISerializer. Read more at https://api.emberjs.com/ember-data/release/classes/JSONAPISerializer on how to customize meta when using JSON API.`,
this.extractMeta === JSONSerializer.prototype.extractMeta,
{
id: 'ds.serializer.json-api.extractMeta',
}
);
},
warnMessageForUndefinedType() {
return (
'Encountered a resource object with an undefined type (resolved resource using ' +
this.constructor.toString() +
')'
);
},
warnMessageNoModelForType(modelName, originalType, usedLookup) {
return `Encountered a resource object with type "${originalType}", but no model was found for model name "${modelName}" (resolved model name using '${this.constructor.toString()}.${usedLookup}("${originalType}")').`;
},
});
}
export default JSONAPISerializer;