2020-09-14 20:07:33 -07:00
|
|
|
import api from '../api';
|
|
|
|
|
|
|
|
export const IMPORT_FOLLOWS_REQUEST = 'IMPORT_FOLLOWS_REQUEST';
|
|
|
|
export const IMPORT_FOLLOWS_SUCCESS = 'IMPORT_FOLLOWS_SUCCESS';
|
|
|
|
export const IMPORT_FOLLOWS_FAIL = 'IMPORT_FOLLOWS_FAIL';
|
|
|
|
|
2020-09-19 14:22:14 -07:00
|
|
|
function getData(path) {
|
|
|
|
var request = new XMLHttpRequest();
|
|
|
|
request.open('GET', path, false); // `false` makes the request synchronous
|
|
|
|
request.send(null);
|
2020-09-17 15:33:18 -07:00
|
|
|
|
2020-09-19 14:22:14 -07:00
|
|
|
if (request.status === 200) {
|
|
|
|
return request.responseText;
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
export function importFollows(path) {
|
2020-09-14 20:07:33 -07:00
|
|
|
return (dispatch, getState) => {
|
|
|
|
dispatch({ type: IMPORT_FOLLOWS_REQUEST });
|
|
|
|
return api(getState)
|
2020-09-19 14:22:14 -07:00
|
|
|
.post('/api/pleroma/follow_import', {
|
|
|
|
list: getData(path),
|
|
|
|
})
|
2020-09-14 20:07:33 -07:00
|
|
|
.then(response => {
|
|
|
|
dispatch({ type: IMPORT_FOLLOWS_SUCCESS, config: response.data });
|
|
|
|
}).catch(error => {
|
|
|
|
dispatch({ type: IMPORT_FOLLOWS_FAIL, error });
|
|
|
|
});
|
|
|
|
};
|
|
|
|
}
|