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';
|
2018-07-06 20:38:57 +00:00
|
|
|
import queryString from 'query-string';
|
2018-02-08 23:06:10 +00:00
|
|
|
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() {
|
2018-03-29 18:44:26 +00:00
|
|
|
return {
|
|
|
|
list: {},
|
|
|
|
track(key, xhr) {
|
|
|
|
if (this.list[key]) {
|
|
|
|
this.list[key].push(xhr);
|
|
|
|
} else {
|
|
|
|
this.list[key] = [xhr];
|
|
|
|
}
|
|
|
|
},
|
|
|
|
cancel(key) {
|
|
|
|
while (this.list[key] && this.list[key].length) {
|
|
|
|
this.remove(key, this.list[key][0]);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
remove(key, xhr) {
|
|
|
|
if (this.list[key]) {
|
|
|
|
xhr.abort();
|
|
|
|
this.list[key].removeObject(xhr);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
};
|
2018-02-14 23:37:51 +00:00
|
|
|
}),
|
|
|
|
|
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);
|
|
|
|
}
|
2019-03-26 07:46:44 +00:00
|
|
|
this.xhrs.track(key, jqXHR);
|
2018-02-14 23:37:51 +00:00
|
|
|
jqXHR.always(() => {
|
2019-03-26 07:46:44 +00:00
|
|
|
this.xhrs.remove(key, jqXHR);
|
2018-02-14 23:37:51 +00:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
return ajaxOptions;
|
|
|
|
},
|
|
|
|
|
2018-05-22 21:48:27 +00:00
|
|
|
xhrKey(url, method /* options */) {
|
|
|
|
return `${method} ${url}`;
|
2018-03-23 01:57:20 +00:00
|
|
|
},
|
|
|
|
|
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')) {
|
2019-03-26 07:46:44 +00:00
|
|
|
params.index = this.watchList.getIndexFor(url);
|
2018-02-12 23:24:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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')) {
|
2019-03-26 07:46:44 +00:00
|
|
|
params.index = this.watchList.getIndexFor(url);
|
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) {
|
2018-04-05 23:50:37 +00:00
|
|
|
return;
|
2018-02-17 02:59:40 +00:00
|
|
|
}
|
|
|
|
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) {
|
2019-03-26 07:46:44 +00:00
|
|
|
params.index = this.watchList.getIndexFor(url);
|
2018-02-08 23:06:10 +00:00
|
|
|
}
|
|
|
|
|
2018-03-23 01:58:45 +00:00
|
|
|
// Avoid duplicating existing query params by passing them to ajax
|
|
|
|
// in the URL and in options.data
|
2018-02-08 23:06:10 +00:00
|
|
|
if (url.includes('?')) {
|
2018-03-23 01:58:45 +00:00
|
|
|
const paramsInUrl = queryString.parse(url.split('?')[1]);
|
|
|
|
Object.keys(paramsInUrl).forEach(key => {
|
|
|
|
delete params[key];
|
|
|
|
});
|
2018-02-08 23:06:10 +00:00
|
|
|
}
|
|
|
|
|
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 => {
|
2019-03-26 07:46:44 +00:00
|
|
|
const store = this.store;
|
2018-02-27 22:56:44 +00:00
|
|
|
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-03-28 23:10:09 +00:00
|
|
|
// Some browsers lowercase all headers. Others keep them
|
|
|
|
// case sensitive.
|
|
|
|
const newIndex = headers['x-nomad-index'] || headers['X-Nomad-Index'];
|
2018-02-08 23:06:10 +00:00
|
|
|
if (newIndex) {
|
2019-03-26 07:46:44 +00:00
|
|
|
this.watchList.setIndexFor(requestData.url, newIndex);
|
2018-02-08 23:06:10 +00:00
|
|
|
}
|
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);
|
2019-03-26 07:46:44 +00:00
|
|
|
this.xhrs.cancel(`GET ${url}`);
|
2018-02-14 23:37:51 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
cancelFindAll(modelName) {
|
2018-03-20 20:40:29 +00:00
|
|
|
if (!modelName) {
|
|
|
|
return;
|
|
|
|
}
|
2018-03-23 01:58:45 +00:00
|
|
|
let url = this.urlForFindAll(modelName);
|
|
|
|
const params = queryString.stringify(this.buildQuery());
|
|
|
|
if (params) {
|
|
|
|
url = `${url}?${params}`;
|
|
|
|
}
|
2019-03-26 07:46:44 +00:00
|
|
|
this.xhrs.cancel(`GET ${url}`);
|
2018-02-14 23:37:51 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
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();
|
2019-03-26 07:46:44 +00:00
|
|
|
this.xhrs.cancel(`GET ${url}`);
|
2018-02-14 23:37:51 +00:00
|
|
|
}
|
|
|
|
},
|
2018-02-08 23:06:10 +00:00
|
|
|
});
|