e87390adb9
* update eslint and dependencies, fix linting errors that can be fixed with --fix * fix lots of linting errors * update eslintrc, fix some linting errors * fix all server side linting errors, untested * fix errors that fixing linting errors had caused * fix client side eslint errors * fix client side linting errors * fix refs lint errors * fix more linting errors * update eslint and dependencies, fix linting errors that can be fixed with --fix * fix lots of linting errors * update eslintrc, fix some linting errors * fix all server side linting errors, untested * fix errors that fixing linting errors had caused * fix client side eslint errors * fix client side linting errors * fix refs lint errors * fix more linting errors * fix some accessibility linting errors * fix a lot of linting errors * fix a billion more linting errors * hopefully fix all linting errors, still need to test * fix bugs that fixing linting had caused
162 lines
4.1 KiB
JavaScript
162 lines
4.1 KiB
JavaScript
import { browserHistory } from 'react-router';
|
|
import axios from 'axios';
|
|
import * as ActionTypes from '../../constants';
|
|
import { showErrorModal, justOpenedProject } from '../IDE/actions/ide';
|
|
|
|
|
|
const ROOT_URL = location.href.indexOf('localhost') > 0 ? 'http://localhost:8000/api' : '/api';
|
|
|
|
export function authError(error) {
|
|
return {
|
|
type: ActionTypes.AUTH_ERROR,
|
|
payload: error
|
|
};
|
|
}
|
|
|
|
export function signUpUser(previousPath, formValues) {
|
|
return (dispatch) => {
|
|
axios.post(`${ROOT_URL}/signup`, formValues, { withCredentials: true })
|
|
.then((response) => {
|
|
dispatch({ type: ActionTypes.AUTH_USER,
|
|
user: response.data
|
|
});
|
|
dispatch(justOpenedProject());
|
|
browserHistory.push(previousPath);
|
|
})
|
|
.catch(response => dispatch(authError(response.data.error)));
|
|
};
|
|
}
|
|
|
|
export function loginUser(formValues) {
|
|
return axios.post(`${ROOT_URL}/login`, formValues, { withCredentials: true });
|
|
}
|
|
|
|
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
|
|
});
|
|
dispatch(justOpenedProject());
|
|
browserHistory.push(previousPath);
|
|
resolve();
|
|
})
|
|
.catch((response) => {
|
|
reject({ password: response.data.message, _error: 'Login failed!' });
|
|
});
|
|
});
|
|
}
|
|
|
|
export function getUser() {
|
|
return (dispatch) => {
|
|
axios.get(`${ROOT_URL}/session`, { withCredentials: true })
|
|
.then((response) => {
|
|
dispatch({
|
|
type: ActionTypes.AUTH_USER,
|
|
user: response.data
|
|
});
|
|
dispatch({
|
|
type: ActionTypes.SET_PREFERENCES,
|
|
preferences: response.data.preferences
|
|
});
|
|
})
|
|
.catch((response) => {
|
|
dispatch(authError(response.data.error));
|
|
});
|
|
};
|
|
}
|
|
|
|
export function validateSession() {
|
|
return (dispatch, getState) => {
|
|
axios.get(`${ROOT_URL}/session`, { withCredentials: true })
|
|
.then((response) => {
|
|
const state = getState();
|
|
if (state.user.username !== response.data.username) {
|
|
dispatch(showErrorModal('staleSession'));
|
|
}
|
|
})
|
|
.catch((response) => {
|
|
if (response.status === 404) {
|
|
dispatch(showErrorModal('staleSession'));
|
|
}
|
|
});
|
|
};
|
|
}
|
|
|
|
export function logoutUser() {
|
|
return (dispatch) => {
|
|
axios.get(`${ROOT_URL}/logout`, { withCredentials: true })
|
|
.then(() => {
|
|
dispatch({
|
|
type: ActionTypes.UNAUTH_USER
|
|
});
|
|
})
|
|
.catch(response => dispatch(authError(response.data.error)));
|
|
};
|
|
}
|
|
|
|
export function initiateResetPassword(formValues) {
|
|
return (dispatch) => {
|
|
dispatch({
|
|
type: ActionTypes.RESET_PASSWORD_INITIATE
|
|
});
|
|
axios.post(`${ROOT_URL}/reset-password`, formValues, { withCredentials: true })
|
|
.then(() => {
|
|
// do nothing
|
|
})
|
|
.catch(response => dispatch({
|
|
type: ActionTypes.ERROR,
|
|
message: response.data
|
|
}));
|
|
};
|
|
}
|
|
|
|
export function resetPasswordReset() {
|
|
return {
|
|
type: ActionTypes.RESET_PASSWORD_RESET
|
|
};
|
|
}
|
|
|
|
export function validateResetPasswordToken(token) {
|
|
return (dispatch) => {
|
|
axios.get(`${ROOT_URL}/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) => {
|
|
axios.post(`${ROOT_URL}/reset-password/${token}`, formValues)
|
|
.then((response) => {
|
|
dispatch(loginUserSuccess(response.data));
|
|
browserHistory.push('/');
|
|
})
|
|
.catch(() => dispatch({
|
|
type: ActionTypes.INVALID_RESET_PASSWORD_TOKEN
|
|
}));
|
|
};
|
|
}
|