2016-06-24 00:29:55 +02:00
|
|
|
import * as ActionTypes from '../../constants';
|
|
|
|
import { browserHistory } from 'react-router';
|
|
|
|
import axios from 'axios';
|
2016-06-09 22:28:21 +02:00
|
|
|
|
|
|
|
|
2016-06-20 19:29:32 +02:00
|
|
|
const ROOT_URL = location.href.indexOf('localhost') > 0 ? 'http://localhost:8000/api' : '/api';
|
2016-06-09 22:28:21 +02:00
|
|
|
|
2016-06-24 00:29:55 +02:00
|
|
|
export function authError(error) {
|
|
|
|
return {
|
|
|
|
type: ActionTypes.AUTH_ERROR,
|
|
|
|
payload: error
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2016-06-09 22:28:21 +02:00
|
|
|
export function signUpUser(formValues) {
|
2016-06-24 00:29:55 +02:00
|
|
|
return (dispatch) => {
|
|
|
|
axios.post(`${ROOT_URL}/signup`, formValues, { withCredentials: true })
|
2016-06-09 22:28:21 +02:00
|
|
|
.then(response => {
|
2016-06-14 20:46:40 +02:00
|
|
|
dispatch({ type: ActionTypes.AUTH_USER,
|
|
|
|
user: response.data
|
|
|
|
});
|
2016-06-09 22:28:21 +02:00
|
|
|
browserHistory.push('/');
|
|
|
|
})
|
|
|
|
.catch(response => dispatch(authError(response.data.error)));
|
2016-06-24 00:29:55 +02:00
|
|
|
};
|
2016-06-10 00:41:40 +02:00
|
|
|
}
|
|
|
|
|
2016-06-14 22:48:16 +02:00
|
|
|
export function loginUser(formValues) {
|
2016-06-24 00:29:55 +02:00
|
|
|
return (dispatch) => {
|
|
|
|
axios.post(`${ROOT_URL}/login`, formValues, { withCredentials: true })
|
2016-06-14 22:48:16 +02:00
|
|
|
.then(response => {
|
|
|
|
dispatch({ type: ActionTypes.AUTH_USER,
|
|
|
|
user: response.data
|
|
|
|
});
|
|
|
|
browserHistory.push('/');
|
|
|
|
})
|
|
|
|
.catch(response => dispatch(authError(response.data.error)));
|
2016-06-24 00:29:55 +02:00
|
|
|
};
|
2016-06-14 22:48:16 +02:00
|
|
|
}
|
2016-06-10 00:41:40 +02:00
|
|
|
|
2016-06-15 01:11:42 +02:00
|
|
|
export function getUser() {
|
2016-06-24 00:29:55 +02:00
|
|
|
return (dispatch) => {
|
|
|
|
axios.get(`${ROOT_URL}/session`, { withCredentials: true })
|
2016-06-15 01:11:42 +02:00
|
|
|
.then(response => {
|
2016-06-24 00:29:55 +02:00
|
|
|
dispatch({
|
|
|
|
type: ActionTypes.AUTH_USER,
|
2016-06-15 01:11:42 +02:00
|
|
|
user: response.data
|
|
|
|
});
|
2016-08-09 23:50:45 +02:00
|
|
|
dispatch({
|
|
|
|
type: ActionTypes.SET_PREFERENCES,
|
|
|
|
preferences: response.data.preferences
|
|
|
|
});
|
2016-06-15 01:11:42 +02:00
|
|
|
})
|
2016-08-10 00:45:59 +02:00
|
|
|
.catch(response => {
|
|
|
|
dispatch(authError(response.data.error));
|
|
|
|
});
|
2016-06-10 00:41:40 +02:00
|
|
|
};
|
2016-06-24 00:29:55 +02:00
|
|
|
}
|
2016-08-28 02:46:20 +02:00
|
|
|
|
|
|
|
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)));
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|