travis-web/app/adapters/application.coffee
2015-12-08 10:18:06 +01:00

31 lines
807 B
CoffeeScript

`import DS from 'ember-data'`
`import config from 'travis/config/environment'`
Adapter = DS.ActiveModelAdapter.extend
auth: Ember.inject.service()
host: config.apiEndpoint
coalesceFindRequests: true
ajaxOptions: (url, type, options) ->
hash = @_super(url, type, options)
hash.headers ||= {}
hash.headers['accept'] = 'application/json; version=2'
if token = @get('auth').token()
hash.headers['Authorization'] ||= "token #{token}"
hash
findMany: (store, type, ids) ->
@ajax(@buildURL(type.modelName), 'GET', data: { ids: ids })
handleResponse: (status, headers, payload) ->
if status > 299
console.log "[ERROR] API responded with an error (#{status}): #{JSON.stringify(payload)}"
return @_super.apply(this, arguments)
`export default Adapter`