accounts-frontend/src/components/auth/actions.js

315 lines
8.7 KiB
JavaScript
Raw Normal View History

import { routeActions } from 'react-router-redux';
2016-08-03 00:43:11 +05:30
import { updateUser, logout as logoutUser, acceptRules as userAcceptRules, authenticate } from 'components/user/actions';
import authentication from 'services/api/authentication';
import oauth from 'services/api/oauth';
2016-07-28 10:33:30 +05:30
import signup from 'services/api/signup';
2016-08-07 20:20:00 +05:30
import dispatchBsod from 'components/ui/bsod/dispatchBsod';
export function login({login = '', password = '', rememberMe = false}) {
const PASSWORD_REQUIRED = 'error.password_required';
const LOGIN_REQUIRED = 'error.login_required';
const ACTIVATION_REQUIRED = 'error.account_not_activated';
return wrapInLoader((dispatch) =>
authentication.login(
{login, password, rememberMe}
)
.then(authHandler(dispatch))
.catch((resp) => {
if (resp.errors) {
if (resp.errors.password === PASSWORD_REQUIRED) {
return dispatch(updateUser({
username: login,
email: login
}));
} else if (resp.errors.login === ACTIVATION_REQUIRED) {
return dispatch(needActivation());
} else if (resp.errors.login === LOGIN_REQUIRED && password) {
// return to the first step
dispatch(logout());
}
}
return validationErrorsHandler(dispatch)(resp);
})
);
}
2016-08-03 00:29:29 +05:30
export function acceptRules() {
return wrapInLoader((dispatch) =>
dispatch(userAcceptRules())
.catch(validationErrorsHandler(dispatch))
);
}
export function forgotPassword({
login = ''
}) {
return wrapInLoader((dispatch, getState) =>
2016-07-28 10:33:30 +05:30
authentication.forgotPassword({login})
.then(({data = {}}) => dispatch(updateUser({
maskedEmail: data.emailMask || getState().user.email
})))
.catch(validationErrorsHandler(dispatch))
);
}
export function recoverPassword({
key = '',
newPassword = '',
newRePassword = ''
}) {
return wrapInLoader((dispatch) =>
2016-07-28 10:33:30 +05:30
authentication.recoverPassword({key, newPassword, newRePassword})
.then(authHandler(dispatch))
.catch(validationErrorsHandler(dispatch, '/forgot-password'))
);
}
export function register({
email = '',
username = '',
password = '',
rePassword = '',
2016-08-05 11:13:46 +05:30
captcha = '',
rulesAgreement = false
}) {
return wrapInLoader((dispatch, getState) =>
2016-07-28 10:33:30 +05:30
signup.register({
email, username,
password, rePassword,
2016-08-05 11:13:46 +05:30
rulesAgreement, lang: getState().user.lang,
captcha
2016-07-28 10:33:30 +05:30
})
.then(() => {
dispatch(updateUser({
username,
email
}));
dispatch(needActivation());
dispatch(routeActions.push('/activation'));
})
.catch(validationErrorsHandler(dispatch))
);
}
export function activate({key = ''}) {
return wrapInLoader((dispatch) =>
2016-07-28 10:33:30 +05:30
signup.activate({key})
.then(authHandler(dispatch))
.catch(validationErrorsHandler(dispatch, '/resend-activation'))
);
}
export function resendActivation({email = '', captcha}) {
return wrapInLoader((dispatch) =>
signup.resendActivation({email, captcha})
2016-07-28 10:33:30 +05:30
.then((resp) => {
dispatch(updateUser({
email
}));
2016-07-28 10:33:30 +05:30
return resp;
})
.catch(validationErrorsHandler(dispatch))
);
}
export const ERROR = 'error';
export function setErrors(errors) {
return {
type: ERROR,
payload: errors,
error: true
};
}
export function clearErrors() {
return setErrors(null);
}
export function logout() {
2016-03-02 02:06:14 +05:30
return logoutUser();
}
2016-02-23 11:27:16 +05:30
// TODO: move to oAuth actions?
// test request: /oauth?client_id=ely&redirect_uri=http%3A%2F%2Fely.by&response_type=code&scope=minecraft_server_session
export function oAuthValidate(oauthData) {
return wrapInLoader((dispatch) =>
oauth.validate(oauthData)
.then((resp) => {
dispatch(setClient(resp.client));
dispatch(setOAuthRequest(resp.oAuth));
dispatch(setScopes(resp.session.scopes));
localStorage.setItem('oauthData', JSON.stringify({ // @see services/authFlow/AuthFlow
timestamp: Date.now(),
payload: oauthData
}));
})
.catch(handleOauthParamsValidation)
);
2016-02-27 16:23:58 +05:30
}
export function oAuthComplete(params = {}) {
localStorage.removeItem('oauthData');
return wrapInLoader((dispatch, getState) =>
oauth.complete(getState().auth.oauth, params)
.then((resp) => {
if (resp.redirectUri.startsWith('static_page')) {
resp.code = resp.redirectUri.match(/code=(.+)&/)[1];
resp.redirectUri = resp.redirectUri.match(/^(.+)\?/)[1];
resp.displayCode = resp.redirectUri === 'static_page_with_code';
dispatch(setOAuthCode({
success: resp.success,
code: resp.code,
displayCode: resp.displayCode
}));
}
return resp;
}, (resp) => {
if (resp.acceptRequired) {
dispatch(requirePermissionsAccept());
2016-02-27 16:23:58 +05:30
2016-08-07 20:20:00 +05:30
return Promise.reject(resp);
} else {
return handleOauthParamsValidation(resp);
}
})
);
2016-02-27 16:23:58 +05:30
}
function handleOauthParamsValidation(resp = {}) {
2016-08-07 20:20:00 +05:30
dispatchBsod();
// eslint-disable-next-line no-alert
resp.userMessage && setTimeout(() => alert(resp.userMessage), 500); // 500 ms to allow re-render
return Promise.reject(resp);
2016-02-23 11:27:16 +05:30
}
export const SET_CLIENT = 'set_client';
export function setClient({id, name, description}) {
return {
type: SET_CLIENT,
payload: {id, name, description}
};
}
2016-02-27 16:23:58 +05:30
export const SET_OAUTH = 'set_oauth';
export function setOAuthRequest(oauth) {
return {
type: SET_OAUTH,
payload: {
clientId: oauth.client_id,
redirectUrl: oauth.redirect_uri,
responseType: oauth.response_type,
scope: oauth.scope,
state: oauth.state
}
};
}
export const SET_OAUTH_RESULT = 'set_oauth_result';
export function setOAuthCode(oauth) {
return {
type: SET_OAUTH_RESULT,
payload: {
success: oauth.success,
code: oauth.code,
displayCode: oauth.displayCode
}
};
}
export const REQUIRE_PERMISSIONS_ACCEPT = 'require_permissions_accept';
export function requirePermissionsAccept() {
return {
type: REQUIRE_PERMISSIONS_ACCEPT
};
}
export const SET_SCOPES = 'set_scopes';
export function setScopes(scopes) {
if (!(scopes instanceof Array)) {
throw new Error('Scopes must be array');
}
return {
type: SET_SCOPES,
payload: scopes
};
}
export const SET_LOADING_STATE = 'set_loading_state';
export function setLoadingState(isLoading) {
return {
type: SET_LOADING_STATE,
payload: isLoading
};
}
function wrapInLoader(fn) {
return (dispatch, getState) => {
dispatch(setLoadingState(true));
const endLoading = () => dispatch(setLoadingState(false));
return Reflect.apply(fn, null, [dispatch, getState]).then((resp) => {
endLoading();
return resp;
}, (resp) => {
endLoading();
return Promise.reject(resp);
});
};
}
function needActivation() {
return updateUser({
isActive: false,
isGuest: false
});
}
function authHandler(dispatch) {
return (resp) => dispatch(authenticate(resp.access_token, resp.refresh_token));
}
function validationErrorsHandler(dispatch, repeatUrl) {
return (resp) => {
if (resp.errors) {
const firstError = Object.keys(resp.errors)[0];
const error = {
type: resp.errors[firstError],
payload: {
isGuest: true
}
};
if (resp.data) {
// TODO: this should be formatted on backend
Object.assign(error.payload, resp.data);
}
if (['error.key_not_exists', 'error.key_expire'].includes(error.type) && repeatUrl) {
// TODO: this should be formatted on backend
Object.assign(error.payload, {
repeatUrl
});
}
resp.errors[firstError] = error;
dispatch(setErrors(resp.errors));
}
return Promise.reject(resp);
};
}