2015-02-13 07:22:32 +03:00
|
|
|
import DS from 'ember-data';
|
2014-12-26 03:01:02 +03:00
|
|
|
import ghostPaths from 'ghost/utils/ghost-paths';
|
|
|
|
|
2015-08-19 14:55:40 +03:00
|
|
|
export default DS.RESTAdapter.extend({
|
2014-12-26 03:01:02 +03:00
|
|
|
host: window.location.origin,
|
|
|
|
namespace: ghostPaths().apiRoot.slice(1),
|
|
|
|
|
2015-10-19 18:35:17 +03:00
|
|
|
shouldBackgroundReloadRecord: function () {
|
|
|
|
return false;
|
|
|
|
},
|
|
|
|
|
2015-09-03 14:06:50 +03:00
|
|
|
query: function (store, type, query) {
|
2014-12-26 03:01:02 +03:00
|
|
|
var id;
|
|
|
|
|
|
|
|
if (query.id) {
|
|
|
|
id = query.id;
|
|
|
|
delete query.id;
|
|
|
|
}
|
|
|
|
|
2015-06-03 05:56:42 +03:00
|
|
|
return this.ajax(this.buildURL(type.modelName, id), 'GET', {data: query});
|
2014-12-26 03:01:02 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
buildURL: function (type, id) {
|
|
|
|
// Ensure trailing slashes
|
|
|
|
var url = this._super(type, id);
|
|
|
|
|
|
|
|
if (url.slice(-1) !== '/') {
|
|
|
|
url += '/';
|
|
|
|
}
|
|
|
|
|
|
|
|
return url;
|
|
|
|
},
|
|
|
|
|
|
|
|
// Override deleteRecord to disregard the response body on 2xx responses.
|
|
|
|
// This is currently needed because the API is returning status 200 along
|
|
|
|
// with the JSON object for the deleted entity and Ember expects an empty
|
|
|
|
// response body for successful DELETEs.
|
|
|
|
// Non-2xx (failure) responses will still work correctly as Ember will turn
|
|
|
|
// them into rejected promises.
|
|
|
|
deleteRecord: function () {
|
|
|
|
var response = this._super.apply(this, arguments);
|
|
|
|
|
|
|
|
return response.then(function () {
|
|
|
|
return null;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|