mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-30 01:42:29 +03:00
91dfd0cbf7
no issue - drop `jshint`, `jscs`, and `ember-suave` dependencies - remove `grunt` related linting dependencies and tasks - remove linting build from Travis so that linting can be performed as part of the normal test suite (refs TryGhost/Ghost#7427) - add `ember-cli-eslint` and `eslint-plugin-ember-suave` dependencies - configure `eslint` to match our previous coding style - update config to run eslint tests as part of the normal test run - add `npm run lint` command to only run linter tests
40 lines
1.6 KiB
JavaScript
40 lines
1.6 KiB
JavaScript
import Oauth2Authenticator from './oauth2';
|
|
import RSVP from 'rsvp';
|
|
import run from 'ember-runloop';
|
|
import {assign} from 'ember-platform';
|
|
import {isEmpty} from 'ember-utils';
|
|
import {wrap} from 'ember-array/utils';
|
|
|
|
export default Oauth2Authenticator.extend({
|
|
// TODO: all this is doing is changing the `data` structure, we should
|
|
// probably create our own token auth, maybe look at
|
|
// https://github.com/jpadilla/ember-simple-auth-token
|
|
authenticate(identification, password, scope = []) {
|
|
return new RSVP.Promise((resolve, reject) => {
|
|
// const data = { 'grant_type': 'password', username: identification, password };
|
|
let data = identification;
|
|
let serverTokenEndpoint = this.get('serverTokenEndpoint');
|
|
let scopesString = wrap(scope).join(' ');
|
|
|
|
data.grant_type = 'authorization_code';
|
|
|
|
if (!isEmpty(scopesString)) {
|
|
data.scope = scopesString;
|
|
}
|
|
|
|
this.makeRequest(serverTokenEndpoint, data).then((response) => {
|
|
run(() => {
|
|
let expiresAt = this._absolutizeExpirationTime(response.expires_in);
|
|
this._scheduleAccessTokenRefresh(response.expires_in, expiresAt, response.refresh_token);
|
|
if (!isEmpty(expiresAt)) {
|
|
response = assign(response, {'expires_at': expiresAt});
|
|
}
|
|
resolve(response);
|
|
});
|
|
}, (xhr) => {
|
|
run(null, reject, xhr.responseJSON || xhr.responseText);
|
|
});
|
|
});
|
|
}
|
|
});
|