e6ca173cf0
* Translations for Share and AddCollection Overlays called from IDEView * Translation in Project for settings saved. Co-authored-by: Andrew Nicolaou <me@andrewnicolaou.co.uk>
272 lines
6.7 KiB
JavaScript
272 lines
6.7 KiB
JavaScript
import { browserHistory } from 'react-router';
|
|
import * as ActionTypes from '../../constants';
|
|
import apiClient from '../../utils/apiClient';
|
|
import { showErrorModal, justOpenedProject } from '../IDE/actions/ide';
|
|
import { setLanguage } from '../IDE/actions/preferences';
|
|
import { showToast, setToastText } from '../IDE/actions/toast';
|
|
|
|
export function authError(error) {
|
|
return {
|
|
type: ActionTypes.AUTH_ERROR,
|
|
payload: error
|
|
};
|
|
}
|
|
|
|
export function signUpUser(previousPath, formValues) {
|
|
return (dispatch) => {
|
|
apiClient.post('/signup', formValues)
|
|
.then((response) => {
|
|
dispatch({
|
|
type: ActionTypes.AUTH_USER,
|
|
user: response.data
|
|
});
|
|
dispatch(justOpenedProject());
|
|
browserHistory.push(previousPath);
|
|
})
|
|
.catch((error) => {
|
|
const { response } = error;
|
|
dispatch(authError(response.data.error));
|
|
});
|
|
};
|
|
}
|
|
|
|
export function loginUser(formValues) {
|
|
return apiClient.post('/login', formValues);
|
|
}
|
|
|
|
export function loginUserSuccess(user) {
|
|
return {
|
|
type: ActionTypes.AUTH_USER,
|
|
user
|
|
};
|
|
}
|
|
|
|
export function loginUserFailure(error) {
|
|
return {
|
|
type: ActionTypes.AUTH_ERROR,
|
|
error
|
|
};
|
|
}
|
|
|
|
export function validateAndLoginUser(previousPath, formProps, dispatch) {
|
|
return new Promise((resolve, reject) => {
|
|
loginUser(formProps)
|
|
.then((response) => {
|
|
dispatch({
|
|
type: ActionTypes.AUTH_USER,
|
|
user: response.data
|
|
});
|
|
dispatch({
|
|
type: ActionTypes.SET_PREFERENCES,
|
|
preferences: response.data.preferences
|
|
});
|
|
setLanguage(response.data.preferences.language, { persistPreference: false });
|
|
dispatch(justOpenedProject());
|
|
browserHistory.push(previousPath);
|
|
resolve();
|
|
})
|
|
.catch(error =>
|
|
reject({ password: error.response.data.message, _error: 'Login failed!' })); // eslint-disable-line
|
|
});
|
|
}
|
|
|
|
export function getUser() {
|
|
return (dispatch) => {
|
|
apiClient.get('/session')
|
|
.then((response) => {
|
|
dispatch({
|
|
type: ActionTypes.AUTH_USER,
|
|
user: response.data
|
|
});
|
|
dispatch({
|
|
type: ActionTypes.SET_PREFERENCES,
|
|
preferences: response.data.preferences
|
|
});
|
|
setLanguage(response.data.preferences.language, { persistPreference: false });
|
|
}).catch((error) => {
|
|
const { response } = error;
|
|
const message = response.message || response.data.error;
|
|
dispatch(authError(message));
|
|
});
|
|
};
|
|
}
|
|
|
|
export function validateSession() {
|
|
return (dispatch, getState) => {
|
|
apiClient.get('/session')
|
|
.then((response) => {
|
|
const state = getState();
|
|
if (state.user.username !== response.data.username) {
|
|
dispatch(showErrorModal('staleSession'));
|
|
}
|
|
})
|
|
.catch((error) => {
|
|
const { response } = error;
|
|
if (response.status === 404) {
|
|
dispatch(showErrorModal('staleSession'));
|
|
}
|
|
});
|
|
};
|
|
}
|
|
|
|
export function logoutUser() {
|
|
return (dispatch) => {
|
|
apiClient.get('/logout')
|
|
.then(() => {
|
|
dispatch({
|
|
type: ActionTypes.UNAUTH_USER
|
|
});
|
|
})
|
|
.catch((error) => {
|
|
const { response } = error;
|
|
dispatch(authError(response.data.error));
|
|
});
|
|
};
|
|
}
|
|
|
|
export function initiateResetPassword(formValues) {
|
|
return (dispatch) => {
|
|
dispatch({
|
|
type: ActionTypes.RESET_PASSWORD_INITIATE
|
|
});
|
|
apiClient.post('/reset-password', formValues)
|
|
.then(() => {
|
|
// do nothing
|
|
})
|
|
.catch((error) => {
|
|
const { response } = error;
|
|
dispatch({
|
|
type: ActionTypes.ERROR,
|
|
message: response.data
|
|
});
|
|
});
|
|
};
|
|
}
|
|
|
|
export function initiateVerification() {
|
|
return (dispatch) => {
|
|
dispatch({
|
|
type: ActionTypes.EMAIL_VERIFICATION_INITIATE
|
|
});
|
|
apiClient.post('/verify/send', {})
|
|
.then(() => {
|
|
// do nothing
|
|
})
|
|
.catch((error) => {
|
|
const { response } = error;
|
|
dispatch({
|
|
type: ActionTypes.ERROR,
|
|
message: response.data
|
|
});
|
|
});
|
|
};
|
|
}
|
|
|
|
export function verifyEmailConfirmation(token) {
|
|
return (dispatch) => {
|
|
dispatch({
|
|
type: ActionTypes.EMAIL_VERIFICATION_VERIFY,
|
|
state: 'checking',
|
|
});
|
|
return apiClient.get(`/verify?t=${token}`, {})
|
|
.then(response => dispatch({
|
|
type: ActionTypes.EMAIL_VERIFICATION_VERIFIED,
|
|
message: response.data,
|
|
}))
|
|
.catch((error) => {
|
|
const { response } = error;
|
|
dispatch({
|
|
type: ActionTypes.EMAIL_VERIFICATION_INVALID,
|
|
message: response.data
|
|
});
|
|
});
|
|
};
|
|
}
|
|
|
|
|
|
export function resetPasswordReset() {
|
|
return {
|
|
type: ActionTypes.RESET_PASSWORD_RESET
|
|
};
|
|
}
|
|
|
|
export function validateResetPasswordToken(token) {
|
|
return (dispatch) => {
|
|
apiClient.get(`/reset-password/${token}`)
|
|
.then(() => {
|
|
// do nothing if the token is valid
|
|
})
|
|
.catch(() => dispatch({
|
|
type: ActionTypes.INVALID_RESET_PASSWORD_TOKEN
|
|
}));
|
|
};
|
|
}
|
|
|
|
export function updatePassword(token, formValues) {
|
|
return (dispatch) => {
|
|
apiClient.post(`/reset-password/${token}`, formValues)
|
|
.then((response) => {
|
|
dispatch(loginUserSuccess(response.data));
|
|
browserHistory.push('/');
|
|
})
|
|
.catch(() => dispatch({
|
|
type: ActionTypes.INVALID_RESET_PASSWORD_TOKEN
|
|
}));
|
|
};
|
|
}
|
|
|
|
export function updateSettingsSuccess(user) {
|
|
return {
|
|
type: ActionTypes.SETTINGS_UPDATED,
|
|
user
|
|
};
|
|
}
|
|
|
|
export function updateSettings(formValues) {
|
|
return dispatch =>
|
|
apiClient.put('/account', formValues)
|
|
.then((response) => {
|
|
dispatch(updateSettingsSuccess(response.data));
|
|
browserHistory.push('/');
|
|
dispatch(showToast(5500));
|
|
dispatch(setToastText('Toast.SettingsSaved'));
|
|
})
|
|
.catch((error) => {
|
|
const { response } = error;
|
|
Promise.reject(new Error(response.data.error));
|
|
});
|
|
}
|
|
|
|
export function createApiKeySuccess(user) {
|
|
return {
|
|
type: ActionTypes.API_KEY_CREATED,
|
|
user
|
|
};
|
|
}
|
|
|
|
export function createApiKey(label) {
|
|
return dispatch =>
|
|
apiClient.post('/account/api-keys', { label })
|
|
.then((response) => {
|
|
dispatch(createApiKeySuccess(response.data));
|
|
})
|
|
.catch((error) => {
|
|
const { response } = error;
|
|
Promise.reject(new Error(response.data.error));
|
|
});
|
|
}
|
|
|
|
export function removeApiKey(keyId) {
|
|
return dispatch =>
|
|
apiClient.delete(`/account/api-keys/${keyId}`)
|
|
.then((response) => {
|
|
dispatch({
|
|
type: ActionTypes.API_KEY_REMOVED,
|
|
user: response.data
|
|
});
|
|
})
|
|
.catch((error) => {
|
|
const { response } = error;
|
|
Promise.reject(new Error(response.data.error));
|
|
});
|
|
}
|