2015-02-13 05:22:32 +01:00
|
|
|
import DS from 'ember-data';
|
2014-12-26 01:01:02 +01:00
|
|
|
import ghostPaths from 'ghost/utils/ghost-paths';
|
|
|
|
|
2015-08-19 13:55:40 +02:00
|
|
|
export default DS.RESTAdapter.extend({
|
2014-12-26 01:01:02 +01:00
|
|
|
host: window.location.origin,
|
|
|
|
namespace: ghostPaths().apiRoot.slice(1),
|
|
|
|
|
2015-09-03 13:06:50 +02:00
|
|
|
query: function (store, type, query) {
|
2014-12-26 01:01:02 +01:00
|
|
|
var id;
|
|
|
|
|
|
|
|
if (query.id) {
|
|
|
|
id = query.id;
|
|
|
|
delete query.id;
|
|
|
|
}
|
|
|
|
|
2015-06-03 04:56:42 +02:00
|
|
|
return this.ajax(this.buildURL(type.modelName, id), 'GET', {data: query});
|
2014-12-26 01:01:02 +01: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;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|