43bf325800
closes #7014 - uses the `AjaxServiceSupport` mixin from `ember-ajax` to replace Ember Data's internal `ajax` method with our own ajax service - normalizes all error handling to use `ember-ajax` style errors - default to the `application/vnd.api+json` content-type so that we don't have a mix of urlencoded and plain JSON content - fix `normalizeErrorResponse` in our `ajax` service so that it doesn't add an empty `errors` array to payloads
41 lines
1022 B
JavaScript
41 lines
1022 B
JavaScript
import injectService from 'ember-service/inject';
|
|
import RESTAdapter from 'ember-data/adapters/rest';
|
|
import ghostPaths from 'ghost-admin/utils/ghost-paths';
|
|
import DataAdapterMixin from 'ember-simple-auth/mixins/data-adapter-mixin';
|
|
import AjaxServiceSupport from 'ember-ajax/mixins/ajax-support';
|
|
|
|
export default RESTAdapter.extend(DataAdapterMixin, AjaxServiceSupport, {
|
|
authorizer: 'authorizer:oauth2',
|
|
|
|
host: window.location.origin,
|
|
namespace: ghostPaths().apiRoot.slice(1),
|
|
|
|
session: injectService(),
|
|
|
|
shouldBackgroundReloadRecord() {
|
|
return false;
|
|
},
|
|
|
|
query(store, type, query) {
|
|
let id;
|
|
|
|
if (query.id) {
|
|
id = query.id;
|
|
delete query.id;
|
|
}
|
|
|
|
return this.ajax(this.buildURL(type.modelName, id), 'GET', {data: query});
|
|
},
|
|
|
|
buildURL() {
|
|
// Ensure trailing slashes
|
|
let url = this._super(...arguments);
|
|
|
|
if (url.slice(-1) !== '/') {
|
|
url += '/';
|
|
}
|
|
|
|
return url;
|
|
}
|
|
});
|