105 lines
2.4 KiB
JavaScript
105 lines
2.4 KiB
JavaScript
import api from '../api';
|
|
import { importFetchedAccount } from './importer';
|
|
import { verifyCredentials } from './auth';
|
|
import { getAuthUserId, getAuthUserUrl } from 'soapbox/utils/auth';
|
|
|
|
export const ME_FETCH_REQUEST = 'ME_FETCH_REQUEST';
|
|
export const ME_FETCH_SUCCESS = 'ME_FETCH_SUCCESS';
|
|
export const ME_FETCH_FAIL = 'ME_FETCH_FAIL';
|
|
export const ME_FETCH_SKIP = 'ME_FETCH_SKIP';
|
|
|
|
export const ME_PATCH_REQUEST = 'ME_PATCH_REQUEST';
|
|
export const ME_PATCH_SUCCESS = 'ME_PATCH_SUCCESS';
|
|
export const ME_PATCH_FAIL = 'ME_PATCH_FAIL';
|
|
|
|
const noOp = () => new Promise(f => f());
|
|
|
|
const getMeId = state => state.get('me') || getAuthUserId(state);
|
|
|
|
const getMeUrl = state => {
|
|
const accountId = getMeId(state);
|
|
return state.getIn(['accounts', accountId, 'url']) || getAuthUserUrl(state);
|
|
};
|
|
|
|
const getMeToken = state => {
|
|
// Fallback for upgrading IDs to URLs
|
|
const accountUrl = getMeUrl(state) || state.getIn(['auth', 'me']);
|
|
return state.getIn(['auth', 'users', accountUrl, 'access_token']);
|
|
};
|
|
|
|
export function fetchMe() {
|
|
return (dispatch, getState) => {
|
|
const state = getState();
|
|
const token = getMeToken(state);
|
|
const accountUrl = getMeUrl(state);
|
|
|
|
if (!token) {
|
|
dispatch({ type: ME_FETCH_SKIP }); return noOp();
|
|
}
|
|
|
|
dispatch(fetchMeRequest());
|
|
return dispatch(verifyCredentials(token, accountUrl)).catch(error => {
|
|
dispatch(fetchMeFail(error));
|
|
});
|
|
};
|
|
}
|
|
|
|
export function patchMe(params) {
|
|
return (dispatch, getState) => {
|
|
dispatch(patchMeRequest());
|
|
return api(getState)
|
|
.patch('/api/v1/accounts/update_credentials', params)
|
|
.then(response => {
|
|
dispatch(patchMeSuccess(response.data));
|
|
}).catch(error => {
|
|
dispatch(patchMeFail(error));
|
|
});
|
|
};
|
|
}
|
|
|
|
export function fetchMeRequest() {
|
|
return {
|
|
type: ME_FETCH_REQUEST,
|
|
};
|
|
}
|
|
|
|
export function fetchMeSuccess(me) {
|
|
return (dispatch, getState) => {
|
|
dispatch(importFetchedAccount(me));
|
|
dispatch({
|
|
type: ME_FETCH_SUCCESS,
|
|
me,
|
|
});
|
|
};
|
|
}
|
|
|
|
export function fetchMeFail(error) {
|
|
return {
|
|
type: ME_FETCH_FAIL,
|
|
error,
|
|
skipAlert: true,
|
|
};
|
|
}
|
|
|
|
export function patchMeRequest() {
|
|
return {
|
|
type: ME_PATCH_REQUEST,
|
|
};
|
|
}
|
|
|
|
export function patchMeSuccess(me) {
|
|
return (dispatch, getState) => {
|
|
dispatch(importFetchedAccount(me));
|
|
dispatch({
|
|
type: ME_PATCH_SUCCESS,
|
|
me,
|
|
});
|
|
};
|
|
}
|
|
|
|
export function patchMeFail(error) {
|
|
return {
|
|
type: ME_PATCH_FAIL,
|
|
error,
|
|
};
|
|
}
|