97 lines
3.6 KiB
JavaScript
Raw Normal View History

2016-03-01 22:36:14 +02:00
import AbstractState from './AbstractState';
import LoginState from './LoginState';
import PermissionsState from './PermissionsState';
2016-11-13 16:47:56 +02:00
import ChooseAccountState from './ChooseAccountState';
2016-03-01 22:36:14 +02:00
import ActivationState from './ActivationState';
2016-08-02 21:59:29 +03:00
import AcceptRulesState from './AcceptRulesState';
import FinishState from './FinishState';
2016-03-01 22:36:14 +02:00
const PROMPT_ACCOUNT_CHOOSE = 'select_account';
const PROMPT_PERMISSIONS = 'consent';
2016-03-01 22:36:14 +02:00
export default class CompleteState extends AbstractState {
constructor(options = {}) {
super(options);
this.isPermissionsAccepted = options.accept;
}
2016-03-01 22:36:14 +02:00
enter(context) {
const {auth = {}, user} = context.getState();
2016-03-01 22:36:14 +02:00
if (user.isGuest) {
context.setState(new LoginState());
} else if (!user.isActive) {
context.setState(new ActivationState());
2016-08-02 21:59:29 +03:00
} else if (user.shouldAcceptRules) {
context.setState(new AcceptRulesState());
} else if (auth.oauth && auth.oauth.clientId) {
return this.processOAuth(context);
} else {
context.navigate('/');
}
}
processOAuth(context) {
const {auth = {}, accounts} = context.getState();
let isSwitcherEnabled = auth.isSwitcherEnabled;
const loginHint = auth.oauth.loginHint;
if (loginHint) {
const account = accounts.available.filter((account) =>
account.id === loginHint * 1
|| account.email === loginHint
|| account.username === loginHint
)[0];
if (account) {
// disable switching, because we are know the account, user must be authorized with
context.run('setAccountSwitcher', false);
isSwitcherEnabled = false;
if (account.id !== accounts.active.id) {
// lets switch user to an account, that is needed for auth
return context.run('authenticate', account)
.then(() => context.setState(new CompleteState()));
}
}
}
if (isSwitcherEnabled
&& (accounts.available.length > 1
|| auth.oauth.prompt.includes(PROMPT_ACCOUNT_CHOOSE)
)
) {
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 || auth.oauth.prompt.includes(PROMPT_PERMISSIONS)) {
context.setState(new PermissionsState());
return;
}
// 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 {
return context.run('redirect', resp.redirectUri);
}
}, (resp) => {
if (resp.unauthorized) {
context.setState(new LoginState());
} else if (resp.acceptRequired) {
context.setState(new PermissionsState());
2016-03-01 22:36:14 +02:00
}
});
2016-03-01 22:36:14 +02:00
}
}
}