2019-05-17 03:19:49 +00:00
|
|
|
import { get } from '@ember/object';
|
2018-02-08 23:06:10 +00:00
|
|
|
import { assign } from '@ember/polyfills';
|
|
|
|
import { inject as service } from '@ember/service';
|
2020-03-25 12:51:26 +00:00
|
|
|
import { AbortError } from '@ember-data/adapter/error';
|
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';
|
2020-03-25 12:51:26 +00:00
|
|
|
import removeRecord from '../utils/remove-record';
|
2018-02-08 23:06:10 +00:00
|
|
|
|
2020-06-10 13:49:16 +00:00
|
|
|
export default class Watchable extends ApplicationAdapter {
|
|
|
|
@service watchList;
|
|
|
|
@service store;
|
2018-02-08 23:06:10 +00:00
|
|
|
|
2020-03-25 12:51:26 +00:00
|
|
|
// Overriding ajax is not advised, but this is a minimal modification
|
|
|
|
// that sets off a series of events that results in query params being
|
|
|
|
// available in handleResponse below. Unfortunately, this is the only
|
|
|
|
// place where what becomes requestData can be modified.
|
|
|
|
//
|
|
|
|
// It's either this weird side-effecting thing that also requires a change
|
|
|
|
// to ajaxOptions or overriding ajax completely.
|
|
|
|
ajax(url, type, options) {
|
|
|
|
const hasParams = hasNonBlockingQueryParams(options);
|
2020-06-10 13:49:16 +00:00
|
|
|
if (!hasParams || type !== 'GET') return super.ajax(url, type, options);
|
2020-03-25 12:51:26 +00:00
|
|
|
|
|
|
|
const params = { ...options.data };
|
|
|
|
delete params.index;
|
|
|
|
|
2020-05-21 00:46:07 +00:00
|
|
|
// Options data gets appended as query params as part of ajaxOptions.
|
|
|
|
// In order to prevent doubling params, data should only include index
|
|
|
|
// at this point since everything else is added to the URL in advance.
|
|
|
|
options.data = options.data.index ? { index: options.data.index } : {};
|
|
|
|
|
2020-06-10 13:49:16 +00:00
|
|
|
return super.ajax(`${url}?${queryString.stringify(params)}`, type, options);
|
|
|
|
}
|
2020-03-25 12:51:26 +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
|
|
|
}
|
|
|
|
|
2020-05-20 23:18:23 +00:00
|
|
|
const signal = get(snapshotRecordArray || {}, 'adapterOptions.abortController.signal');
|
2018-02-12 23:24:15 +00:00
|
|
|
return this.ajax(url, 'GET', {
|
2020-05-20 23:18:23 +00:00
|
|
|
signal,
|
2018-02-12 23:24:15 +00:00
|
|
|
data: params,
|
|
|
|
});
|
2020-06-10 13:49:16 +00:00
|
|
|
}
|
2018-02-12 23:24:15 +00:00
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2020-05-20 23:18:23 +00:00
|
|
|
const signal = get(snapshot || {}, 'adapterOptions.abortController.signal');
|
2018-02-08 23:06:10 +00:00
|
|
|
return this.ajax(url, 'GET', {
|
2020-05-20 23:18:23 +00:00
|
|
|
signal,
|
2018-02-08 23:06:10 +00:00
|
|
|
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
|
|
|
});
|
2020-06-10 13:49:16 +00:00
|
|
|
}
|
2018-02-08 23:06:10 +00:00
|
|
|
|
2020-03-25 12:51:26 +00:00
|
|
|
query(store, type, query, snapshotRecordArray, options, additionalParams = {}) {
|
|
|
|
const url = this.buildURL(type.modelName, null, null, 'query', query);
|
2020-05-21 00:46:07 +00:00
|
|
|
let [urlPath, params] = url.split('?');
|
2020-03-25 12:51:26 +00:00
|
|
|
params = assign(queryString.parse(params) || {}, this.buildQuery(), additionalParams, query);
|
|
|
|
|
|
|
|
if (get(options, 'adapterOptions.watch')) {
|
|
|
|
// The intended query without additional blocking query params is used
|
|
|
|
// to track the appropriate query index.
|
2020-05-21 00:46:07 +00:00
|
|
|
params.index = this.watchList.getIndexFor(`${urlPath}?${queryString.stringify(query)}`);
|
2020-03-25 12:51:26 +00:00
|
|
|
}
|
|
|
|
|
2020-05-20 23:18:23 +00:00
|
|
|
const signal = get(options, 'adapterOptions.abortController.signal');
|
2020-05-21 00:46:07 +00:00
|
|
|
return this.ajax(urlPath, 'GET', {
|
2020-05-20 23:18:23 +00:00
|
|
|
signal,
|
2020-03-25 12:51:26 +00:00
|
|
|
data: params,
|
|
|
|
}).then(payload => {
|
|
|
|
const adapter = store.adapterFor(type.modelName);
|
|
|
|
|
|
|
|
// Query params may not necessarily map one-to-one to attribute names.
|
|
|
|
// Adapters are responsible for declaring param mappings.
|
|
|
|
const queryParamsToAttrs = Object.keys(adapter.queryParamsToAttrs || {}).map(key => ({
|
|
|
|
queryParam: key,
|
|
|
|
attr: adapter.queryParamsToAttrs[key],
|
|
|
|
}));
|
|
|
|
|
|
|
|
// Remove existing records that match this query. This way if server-side
|
|
|
|
// deletes have occurred, the store won't have stale records.
|
|
|
|
store
|
|
|
|
.peekAll(type.modelName)
|
|
|
|
.filter(record =>
|
|
|
|
queryParamsToAttrs.some(
|
|
|
|
mapping => get(record, mapping.attr) === query[mapping.queryParam]
|
|
|
|
)
|
|
|
|
)
|
|
|
|
.forEach(record => {
|
|
|
|
removeRecord(store, record);
|
|
|
|
});
|
|
|
|
|
|
|
|
return payload;
|
|
|
|
});
|
2020-06-10 13:49:16 +00:00
|
|
|
}
|
2020-03-25 12:51:26 +00:00
|
|
|
|
2020-05-20 23:18:23 +00:00
|
|
|
reloadRelationship(model, relationshipName, options = { watch: false, abortController: null }) {
|
|
|
|
const { watch, abortController } = options;
|
2018-02-08 23:06:10 +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();
|
|
|
|
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', {
|
2020-05-20 23:18:23 +00:00
|
|
|
signal: abortController && abortController.signal,
|
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
|
|
|
}
|
2020-06-10 13:49:16 +00:00
|
|
|
}
|
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
|
|
|
|
2020-06-10 13:49:16 +00:00
|
|
|
return super.handleResponse(...arguments);
|
|
|
|
}
|
|
|
|
}
|
2020-03-25 12:51:26 +00:00
|
|
|
|
|
|
|
function hasNonBlockingQueryParams(options) {
|
|
|
|
if (!options || !options.data) return false;
|
|
|
|
const keys = Object.keys(options.data);
|
|
|
|
if (!keys.length) return false;
|
|
|
|
if (keys.length === 1 && keys[0] === 'index') return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|