2017-12-15 21:39:18 +00:00
|
|
|
import { inject as service } from '@ember/service';
|
|
|
|
import { computed, get } from '@ember/object';
|
2017-09-19 14:47:10 +00:00
|
|
|
import RESTAdapter from 'ember-data/adapters/rest';
|
2017-10-13 00:40:49 +00:00
|
|
|
import codesForError from '../utils/codes-for-error';
|
2017-09-19 14:47:10 +00:00
|
|
|
|
|
|
|
export const namespace = 'v1';
|
|
|
|
|
|
|
|
export default RESTAdapter.extend({
|
|
|
|
namespace,
|
|
|
|
|
2017-12-15 21:39:18 +00:00
|
|
|
token: service(),
|
2017-09-19 14:47:10 +00:00
|
|
|
|
|
|
|
headers: computed('token.secret', function() {
|
|
|
|
const token = this.get('token.secret');
|
2017-10-19 17:10:01 +00:00
|
|
|
if (token) {
|
|
|
|
return {
|
2017-09-19 14:47:10 +00:00
|
|
|
'X-Nomad-Token': token,
|
2017-10-19 17:10:01 +00:00
|
|
|
};
|
|
|
|
}
|
2017-09-19 14:47:10 +00:00
|
|
|
}),
|
|
|
|
|
2017-10-10 18:23:10 +00:00
|
|
|
findAll() {
|
|
|
|
return this._super(...arguments).catch(error => {
|
2017-10-13 00:40:49 +00:00
|
|
|
const errorCodes = codesForError(error);
|
|
|
|
|
|
|
|
const isNotImplemented = errorCodes.includes('501');
|
|
|
|
|
2017-10-24 23:06:10 +00:00
|
|
|
if (isNotImplemented) {
|
2017-10-10 18:23:10 +00:00
|
|
|
return [];
|
|
|
|
}
|
|
|
|
|
|
|
|
// Rethrow to be handled downstream
|
|
|
|
throw error;
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2018-02-14 23:31:27 +00:00
|
|
|
// In order to remove stale records from the store, findHasMany has to unload
|
|
|
|
// all records related to the request in question.
|
|
|
|
findHasMany(store, snapshot, link, relationship) {
|
|
|
|
return this._super(...arguments).then(payload => {
|
|
|
|
const ownerType = snapshot.modelName;
|
|
|
|
const relationshipType = relationship.type;
|
|
|
|
// Naively assume that the inverse relationship is named the same as the
|
|
|
|
// owner type. In the event it isn't, findHasMany should be overridden.
|
|
|
|
store
|
|
|
|
.peekAll(relationshipType)
|
2018-02-16 02:55:59 +00:00
|
|
|
.filter(record => record.get(`${ownerType}.id`) === snapshot.id)
|
2018-02-14 23:31:27 +00:00
|
|
|
.forEach(record => {
|
|
|
|
store.unloadRecord(record);
|
|
|
|
});
|
|
|
|
return payload;
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2017-09-19 14:47:10 +00:00
|
|
|
// Single record requests deviate from REST practice by using
|
|
|
|
// the singular form of the resource name.
|
|
|
|
//
|
|
|
|
// REST: /some-resources/:id
|
|
|
|
// Nomad: /some-resource/:id
|
|
|
|
//
|
|
|
|
// This is the original implementation of _buildURL
|
|
|
|
// without the pluralization of modelName
|
|
|
|
urlForFindRecord(id, modelName) {
|
|
|
|
let path;
|
|
|
|
let url = [];
|
|
|
|
let host = get(this, 'host');
|
|
|
|
let prefix = this.urlPrefix();
|
|
|
|
|
|
|
|
if (modelName) {
|
|
|
|
path = modelName.camelize();
|
|
|
|
if (path) {
|
|
|
|
url.push(path);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (id) {
|
|
|
|
url.push(encodeURIComponent(id));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (prefix) {
|
|
|
|
url.unshift(prefix);
|
|
|
|
}
|
|
|
|
|
|
|
|
url = url.join('/');
|
|
|
|
if (!host && url && url.charAt(0) !== '/') {
|
|
|
|
url = '/' + url;
|
|
|
|
}
|
|
|
|
|
|
|
|
return url;
|
|
|
|
},
|
|
|
|
});
|