accounts-frontend/src/services/authFlow/CompleteState.js

61 lines
2.5 KiB
JavaScript
Raw Normal View History

2016-03-02 02:06:14 +05:30
import AbstractState from './AbstractState';
import LoginState from './LoginState';
import PermissionsState from './PermissionsState';
2016-11-13 20:17:56 +05:30
import ChooseAccountState from './ChooseAccountState';
2016-03-02 02:06:14 +05:30
import ActivationState from './ActivationState';
2016-08-03 00:29:29 +05:30
import AcceptRulesState from './AcceptRulesState';
import FinishState from './FinishState';
2016-03-02 02:06:14 +05:30
export default class CompleteState extends AbstractState {
constructor(options = {}) {
super(options);
this.isPermissionsAccepted = options.accept;
}
2016-03-02 02:06:14 +05:30
enter(context) {
const {auth = {}, user, accounts} = context.getState();
2016-03-02 02:06:14 +05:30
if (user.isGuest) {
context.setState(new LoginState());
} else if (!user.isActive) {
context.setState(new ActivationState());
2016-08-03 00:29:29 +05:30
} else if (user.shouldAcceptRules) {
context.setState(new AcceptRulesState());
} else if (auth.oauth && auth.oauth.clientId) {
if (auth.isSwitcherEnabled && accounts.available.length > 1) {
2016-11-13 20:17:56 +05:30
context.setState(new ChooseAccountState());
} else if (auth.oauth.code) {
context.setState(new FinishState());
} else {
const data = {};
if (typeof this.isPermissionsAccepted !== 'undefined') {
data.accept = this.isPermissionsAccepted;
} else if (auth.oauth.acceptRequired) {
context.setState(new PermissionsState());
return;
2016-03-02 02:06:14 +05:30
}
// TODO: it seams that oAuthComplete may be a separate state
return context.run('oAuthComplete', data).then((resp) => {
// TODO: пусть в стейт попадает флаг или тип авторизации
// вместо волшебства над редирект урлой
if (resp.redirectUri.indexOf('static_page') === 0) {
context.setState(new FinishState());
} else {
context.run('redirect', resp.redirectUri);
return Promise.reject(); // do not allow loader to be hidden and app to be rendered
}
}, (resp) => {
if (resp.unauthorized) {
context.setState(new LoginState());
} else if (resp.acceptRequired) {
context.setState(new PermissionsState());
}
});
}
2016-03-02 02:06:14 +05:30
} else {
context.navigate('/');
}
}
}