2018-02-14 23:37:51 +00:00
|
|
|
import { get, computed } from '@ember/object';
|
2018-02-08 23:06:10 +00:00
|
|
|
import { assign } from '@ember/polyfills';
|
|
|
|
import { inject as service } from '@ember/service';
|
|
|
|
import queryString from 'npm:query-string';
|
|
|
|
import ApplicationAdapter from './application';
|
2018-02-17 02:59:40 +00:00
|
|
|
import { AbortError } from 'ember-data/adapters/errors';
|
2018-02-08 23:06:10 +00:00
|
|
|
|
|
|
|
export default ApplicationAdapter.extend({
|
|
|
|
watchList: service(),
|
|
|
|
store: service(),
|
|
|
|
|
2018-02-14 23:37:51 +00:00
|
|
|
xhrs: computed(function() {
|
|
|
|
return {};
|
|
|
|
}),
|
|
|
|
|
2018-03-23 01:57:20 +00:00
|
|
|
ajaxOptions() {
|
2018-02-14 23:37:51 +00:00
|
|
|
const ajaxOptions = this._super(...arguments);
|
2018-03-23 01:57:20 +00:00
|
|
|
const key = this.xhrKey(...arguments);
|
2018-02-14 23:37:51 +00:00
|
|
|
|
|
|
|
const previousBeforeSend = ajaxOptions.beforeSend;
|
|
|
|
ajaxOptions.beforeSend = function(jqXHR) {
|
|
|
|
if (previousBeforeSend) {
|
|
|
|
previousBeforeSend(...arguments);
|
|
|
|
}
|
2018-03-23 01:57:20 +00:00
|
|
|
this.get('xhrs')[key] = jqXHR;
|
2018-02-14 23:37:51 +00:00
|
|
|
jqXHR.always(() => {
|
2018-03-23 01:57:20 +00:00
|
|
|
delete this.get('xhrs')[key];
|
2018-02-14 23:37:51 +00:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
return ajaxOptions;
|
|
|
|
},
|
|
|
|
|
2018-03-23 01:57:20 +00:00
|
|
|
xhrKey(url /* method, options */) {
|
|
|
|
return url;
|
|
|
|
},
|
|
|
|
|
2018-02-12 23:24:15 +00:00
|
|
|
findAll(store, type, sinceToken, snapshotRecordArray, additionalParams = {}) {
|
2018-02-16 02:55:59 +00:00
|
|
|
const params = assign(this.buildQuery(), additionalParams);
|
2018-02-12 23:24:15 +00:00
|
|
|
const url = this.urlForFindAll(type.modelName);
|
|
|
|
|
2018-02-16 02:55:59 +00:00
|
|
|
if (get(snapshotRecordArray || {}, 'adapterOptions.watch')) {
|
2018-02-12 23:24:15 +00:00
|
|
|
params.index = this.get('watchList').getIndexFor(url);
|
|
|
|
}
|
|
|
|
|
|
|
|
return this.ajax(url, 'GET', {
|
|
|
|
data: params,
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2018-02-08 23:06:10 +00:00
|
|
|
findRecord(store, type, id, snapshot, additionalParams = {}) {
|
2018-02-16 02:55:59 +00:00
|
|
|
let [url, params] = this.buildURL(type.modelName, id, snapshot, 'findRecord').split('?');
|
|
|
|
params = assign(queryString.parse(params) || {}, this.buildQuery(), additionalParams);
|
2018-02-08 23:06:10 +00:00
|
|
|
|
2018-02-16 02:55:59 +00:00
|
|
|
if (get(snapshot || {}, 'adapterOptions.watch')) {
|
2018-02-08 23:06:10 +00:00
|
|
|
params.index = this.get('watchList').getIndexFor(url);
|
2018-02-28 02:57:55 +00:00
|
|
|
this.cancelFindRecord(type.modelName, id);
|
2018-02-08 23:06:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return this.ajax(url, 'GET', {
|
|
|
|
data: params,
|
2018-02-17 02:59:40 +00:00
|
|
|
}).catch(error => {
|
|
|
|
if (error instanceof AbortError) {
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
throw error;
|
2018-02-08 23:06:10 +00:00
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
reloadRelationship(model, relationshipName, watch = false) {
|
|
|
|
const relationship = model.relationshipFor(relationshipName);
|
|
|
|
if (relationship.kind !== 'belongsTo' && relationship.kind !== 'hasMany') {
|
|
|
|
throw new Error(
|
|
|
|
`${relationship.key} must be a belongsTo or hasMany, instead it was ${relationship.kind}`
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
const url = model[relationship.kind](relationship.key).link();
|
|
|
|
let params = {};
|
|
|
|
|
|
|
|
if (watch) {
|
|
|
|
params.index = this.get('watchList').getIndexFor(url);
|
2018-02-28 02:57:55 +00:00
|
|
|
this.cancelReloadRelationship(model, relationshipName);
|
2018-02-08 23:06:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (url.includes('?')) {
|
|
|
|
params = assign(queryString.parse(url.split('?')[1]), params);
|
|
|
|
}
|
|
|
|
|
2018-02-12 23:24:15 +00:00
|
|
|
return this.ajax(url, 'GET', {
|
2018-02-08 23:06:10 +00:00
|
|
|
data: params,
|
2018-02-17 02:59:40 +00:00
|
|
|
}).then(
|
|
|
|
json => {
|
2018-02-27 22:56:44 +00:00
|
|
|
const store = this.get('store');
|
|
|
|
const normalizeMethod =
|
|
|
|
relationship.kind === 'belongsTo'
|
|
|
|
? 'normalizeFindBelongsToResponse'
|
|
|
|
: 'normalizeFindHasManyResponse';
|
|
|
|
const serializer = store.serializerFor(relationship.type);
|
|
|
|
const modelClass = store.modelFor(relationship.type);
|
|
|
|
const normalizedData = serializer[normalizeMethod](store, modelClass, json);
|
|
|
|
store.push(normalizedData);
|
2018-02-17 02:59:40 +00:00
|
|
|
},
|
|
|
|
error => {
|
|
|
|
if (error instanceof AbortError) {
|
|
|
|
return relationship.kind === 'belongsTo' ? {} : [];
|
|
|
|
}
|
|
|
|
throw error;
|
|
|
|
}
|
|
|
|
);
|
2018-02-08 23:06:10 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
handleResponse(status, headers, payload, requestData) {
|
2018-02-22 21:21:32 +00:00
|
|
|
const newIndex = headers['x-nomad-index'];
|
2018-02-08 23:06:10 +00:00
|
|
|
if (newIndex) {
|
|
|
|
this.get('watchList').setIndexFor(requestData.url, newIndex);
|
|
|
|
}
|
2018-02-22 21:21:32 +00:00
|
|
|
|
2018-02-08 23:06:10 +00:00
|
|
|
return this._super(...arguments);
|
|
|
|
},
|
2018-02-14 23:37:51 +00:00
|
|
|
|
|
|
|
cancelFindRecord(modelName, id) {
|
2018-03-20 20:40:29 +00:00
|
|
|
if (!modelName || id == null) {
|
|
|
|
return;
|
|
|
|
}
|
2018-02-14 23:37:51 +00:00
|
|
|
const url = this.urlForFindRecord(id, modelName);
|
|
|
|
const xhr = this.get('xhrs')[url];
|
|
|
|
if (xhr) {
|
|
|
|
xhr.abort();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
cancelFindAll(modelName) {
|
2018-03-20 20:40:29 +00:00
|
|
|
if (!modelName) {
|
|
|
|
return;
|
|
|
|
}
|
2018-02-14 23:37:51 +00:00
|
|
|
const xhr = this.get('xhrs')[this.urlForFindAll(modelName)];
|
|
|
|
if (xhr) {
|
|
|
|
xhr.abort();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
cancelReloadRelationship(model, relationshipName) {
|
2018-03-20 20:40:29 +00:00
|
|
|
if (!model || !relationshipName) {
|
|
|
|
return;
|
|
|
|
}
|
2018-02-14 23:37:51 +00:00
|
|
|
const relationship = model.relationshipFor(relationshipName);
|
|
|
|
if (relationship.kind !== 'belongsTo' && relationship.kind !== 'hasMany') {
|
|
|
|
throw new Error(
|
|
|
|
`${relationship.key} must be a belongsTo or hasMany, instead it was ${relationship.kind}`
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
const url = model[relationship.kind](relationship.key).link();
|
|
|
|
const xhr = this.get('xhrs')[url];
|
|
|
|
if (xhr) {
|
|
|
|
xhr.abort();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2018-02-08 23:06:10 +00:00
|
|
|
});
|