bigbuffet-rw/app/soapbox/actions/accounts.js

920 lines
23 KiB
JavaScript
Raw Normal View History

2020-03-27 13:59:38 -07:00
import api, { getLinks } from '../api';
import {
importFetchedAccount,
importFetchedAccounts,
importErrorWhileFetchingAccountByUsername,
} from './importer';
2021-03-25 10:25:45 -07:00
import { isLoggedIn } from 'soapbox/utils/auth';
2020-03-27 13:59:38 -07:00
2021-03-26 13:29:15 -07:00
export const ACCOUNT_CREATE_REQUEST = 'ACCOUNT_CREATE_REQUEST';
export const ACCOUNT_CREATE_SUCCESS = 'ACCOUNT_CREATE_SUCCESS';
export const ACCOUNT_CREATE_FAIL = 'ACCOUNT_CREATE_FAIL';
2020-03-27 13:59:38 -07:00
export const ACCOUNT_FETCH_REQUEST = 'ACCOUNT_FETCH_REQUEST';
export const ACCOUNT_FETCH_SUCCESS = 'ACCOUNT_FETCH_SUCCESS';
export const ACCOUNT_FETCH_FAIL = 'ACCOUNT_FETCH_FAIL';
export const ACCOUNT_FOLLOW_REQUEST = 'ACCOUNT_FOLLOW_REQUEST';
export const ACCOUNT_FOLLOW_SUCCESS = 'ACCOUNT_FOLLOW_SUCCESS';
export const ACCOUNT_FOLLOW_FAIL = 'ACCOUNT_FOLLOW_FAIL';
export const ACCOUNT_UNFOLLOW_REQUEST = 'ACCOUNT_UNFOLLOW_REQUEST';
export const ACCOUNT_UNFOLLOW_SUCCESS = 'ACCOUNT_UNFOLLOW_SUCCESS';
export const ACCOUNT_UNFOLLOW_FAIL = 'ACCOUNT_UNFOLLOW_FAIL';
export const ACCOUNT_BLOCK_REQUEST = 'ACCOUNT_BLOCK_REQUEST';
export const ACCOUNT_BLOCK_SUCCESS = 'ACCOUNT_BLOCK_SUCCESS';
export const ACCOUNT_BLOCK_FAIL = 'ACCOUNT_BLOCK_FAIL';
export const ACCOUNT_UNBLOCK_REQUEST = 'ACCOUNT_UNBLOCK_REQUEST';
export const ACCOUNT_UNBLOCK_SUCCESS = 'ACCOUNT_UNBLOCK_SUCCESS';
export const ACCOUNT_UNBLOCK_FAIL = 'ACCOUNT_UNBLOCK_FAIL';
export const ACCOUNT_MUTE_REQUEST = 'ACCOUNT_MUTE_REQUEST';
export const ACCOUNT_MUTE_SUCCESS = 'ACCOUNT_MUTE_SUCCESS';
export const ACCOUNT_MUTE_FAIL = 'ACCOUNT_MUTE_FAIL';
export const ACCOUNT_UNMUTE_REQUEST = 'ACCOUNT_UNMUTE_REQUEST';
export const ACCOUNT_UNMUTE_SUCCESS = 'ACCOUNT_UNMUTE_SUCCESS';
export const ACCOUNT_UNMUTE_FAIL = 'ACCOUNT_UNMUTE_FAIL';
export const ACCOUNT_SUBSCRIBE_REQUEST = 'ACCOUNT_SUBSCRIBE_REQUEST';
export const ACCOUNT_SUBSCRIBE_SUCCESS = 'ACCOUNT_SUBSCRIBE_SUCCESS';
export const ACCOUNT_SUBSCRIBE_FAIL = 'ACCOUNT_SUBSCRIBE_FAIL';
export const ACCOUNT_UNSUBSCRIBE_REQUEST = 'ACCOUNT_UNSUBSCRIBE_REQUEST';
export const ACCOUNT_UNSUBSCRIBE_SUCCESS = 'ACCOUNT_UNSUBSCRIBE_SUCCESS';
export const ACCOUNT_UNSUBSCRIBE_FAIL = 'ACCOUNT_UNSUBSCRIBE_FAIL';
2020-03-27 13:59:38 -07:00
export const ACCOUNT_PIN_REQUEST = 'ACCOUNT_PIN_REQUEST';
export const ACCOUNT_PIN_SUCCESS = 'ACCOUNT_PIN_SUCCESS';
export const ACCOUNT_PIN_FAIL = 'ACCOUNT_PIN_FAIL';
export const ACCOUNT_UNPIN_REQUEST = 'ACCOUNT_UNPIN_REQUEST';
export const ACCOUNT_UNPIN_SUCCESS = 'ACCOUNT_UNPIN_SUCCESS';
export const ACCOUNT_UNPIN_FAIL = 'ACCOUNT_UNPIN_FAIL';
export const FOLLOWERS_FETCH_REQUEST = 'FOLLOWERS_FETCH_REQUEST';
export const FOLLOWERS_FETCH_SUCCESS = 'FOLLOWERS_FETCH_SUCCESS';
export const FOLLOWERS_FETCH_FAIL = 'FOLLOWERS_FETCH_FAIL';
export const FOLLOWERS_EXPAND_REQUEST = 'FOLLOWERS_EXPAND_REQUEST';
export const FOLLOWERS_EXPAND_SUCCESS = 'FOLLOWERS_EXPAND_SUCCESS';
export const FOLLOWERS_EXPAND_FAIL = 'FOLLOWERS_EXPAND_FAIL';
export const FOLLOWING_FETCH_REQUEST = 'FOLLOWING_FETCH_REQUEST';
export const FOLLOWING_FETCH_SUCCESS = 'FOLLOWING_FETCH_SUCCESS';
export const FOLLOWING_FETCH_FAIL = 'FOLLOWING_FETCH_FAIL';
export const FOLLOWING_EXPAND_REQUEST = 'FOLLOWING_EXPAND_REQUEST';
export const FOLLOWING_EXPAND_SUCCESS = 'FOLLOWING_EXPAND_SUCCESS';
export const FOLLOWING_EXPAND_FAIL = 'FOLLOWING_EXPAND_FAIL';
export const RELATIONSHIPS_FETCH_REQUEST = 'RELATIONSHIPS_FETCH_REQUEST';
export const RELATIONSHIPS_FETCH_SUCCESS = 'RELATIONSHIPS_FETCH_SUCCESS';
export const RELATIONSHIPS_FETCH_FAIL = 'RELATIONSHIPS_FETCH_FAIL';
export const FOLLOW_REQUESTS_FETCH_REQUEST = 'FOLLOW_REQUESTS_FETCH_REQUEST';
export const FOLLOW_REQUESTS_FETCH_SUCCESS = 'FOLLOW_REQUESTS_FETCH_SUCCESS';
export const FOLLOW_REQUESTS_FETCH_FAIL = 'FOLLOW_REQUESTS_FETCH_FAIL';
export const FOLLOW_REQUESTS_EXPAND_REQUEST = 'FOLLOW_REQUESTS_EXPAND_REQUEST';
export const FOLLOW_REQUESTS_EXPAND_SUCCESS = 'FOLLOW_REQUESTS_EXPAND_SUCCESS';
export const FOLLOW_REQUESTS_EXPAND_FAIL = 'FOLLOW_REQUESTS_EXPAND_FAIL';
export const FOLLOW_REQUEST_AUTHORIZE_REQUEST = 'FOLLOW_REQUEST_AUTHORIZE_REQUEST';
export const FOLLOW_REQUEST_AUTHORIZE_SUCCESS = 'FOLLOW_REQUEST_AUTHORIZE_SUCCESS';
export const FOLLOW_REQUEST_AUTHORIZE_FAIL = 'FOLLOW_REQUEST_AUTHORIZE_FAIL';
export const FOLLOW_REQUEST_REJECT_REQUEST = 'FOLLOW_REQUEST_REJECT_REQUEST';
export const FOLLOW_REQUEST_REJECT_SUCCESS = 'FOLLOW_REQUEST_REJECT_SUCCESS';
export const FOLLOW_REQUEST_REJECT_FAIL = 'FOLLOW_REQUEST_REJECT_FAIL';
export const NOTIFICATION_SETTINGS_REQUEST = 'NOTIFICATION_SETTINGS_REQUEST';
export const NOTIFICATION_SETTINGS_SUCCESS = 'NOTIFICATION_SETTINGS_SUCCESS';
export const NOTIFICATION_SETTINGS_FAIL = 'NOTIFICATION_SETTINGS_FAIL';
2021-03-26 13:29:15 -07:00
export function createAccount(params) {
return (dispatch, getState) => {
dispatch({ type: ACCOUNT_CREATE_REQUEST, params });
return api(getState, 'app').post('/api/v1/accounts', params).then(({ data: token }) => {
2021-03-26 13:45:46 -07:00
return dispatch({ type: ACCOUNT_CREATE_SUCCESS, params, token });
2021-03-26 13:29:15 -07:00
}).catch(error => {
dispatch({ type: ACCOUNT_CREATE_FAIL, error, params });
throw error;
});
};
}
2020-03-27 13:59:38 -07:00
export function fetchAccount(id) {
return (dispatch, getState) => {
dispatch(fetchRelationships([id]));
const account = getState().getIn(['accounts', id]);
2021-07-13 16:35:37 -07:00
if (account && !account.get('should_refetch')) {
2020-03-27 13:59:38 -07:00
return;
}
dispatch(fetchAccountRequest(id));
api(getState).get(`/api/v1/accounts/${id}`).then(response => {
2020-03-27 13:59:38 -07:00
dispatch(importFetchedAccount(response.data));
dispatch(fetchAccountSuccess(response.data));
2020-03-27 13:59:38 -07:00
}).catch(error => {
dispatch(fetchAccountFail(id, error));
});
};
2021-08-03 12:22:51 -07:00
}
2020-03-27 13:59:38 -07:00
export function fetchAccountByUsername(username) {
return (dispatch, getState) => {
const account = getState().get('accounts').find(account => account.get('acct') === username);
if (account) {
dispatch(fetchAccount(account.get('id')));
return;
}
api(getState).get(`/api/v1/accounts/${username}`).then(response => {
dispatch(fetchRelationships([response.data.id]));
2020-03-27 13:59:38 -07:00
dispatch(importFetchedAccount(response.data));
dispatch(fetchAccountSuccess(response.data));
2020-03-27 13:59:38 -07:00
}).catch(error => {
dispatch(fetchAccountFail(null, error));
dispatch(importErrorWhileFetchingAccountByUsername(username));
});
};
2021-08-03 12:22:51 -07:00
}
2020-03-27 13:59:38 -07:00
export function fetchAccountRequest(id) {
return {
type: ACCOUNT_FETCH_REQUEST,
id,
};
2021-08-03 12:22:51 -07:00
}
2020-03-27 13:59:38 -07:00
export function fetchAccountSuccess(account) {
2020-03-27 13:59:38 -07:00
return {
type: ACCOUNT_FETCH_SUCCESS,
account,
2020-03-27 13:59:38 -07:00
};
2021-08-03 12:22:51 -07:00
}
2020-03-27 13:59:38 -07:00
export function fetchAccountFail(id, error) {
return {
type: ACCOUNT_FETCH_FAIL,
id,
error,
skipAlert: true,
};
2021-08-03 12:22:51 -07:00
}
2020-03-27 13:59:38 -07:00
export function followAccount(id, reblogs = true) {
return (dispatch, getState) => {
2021-03-24 09:44:51 -07:00
if (!isLoggedIn(getState)) return;
2020-03-27 13:59:38 -07:00
const alreadyFollowing = getState().getIn(['relationships', id, 'following']);
const locked = getState().getIn(['accounts', id, 'locked'], false);
dispatch(followAccountRequest(id, locked));
api(getState).post(`/api/v1/accounts/${id}/follow`, { reblogs }).then(response => {
dispatch(followAccountSuccess(response.data, alreadyFollowing));
}).catch(error => {
dispatch(followAccountFail(error, locked));
});
};
2021-08-03 12:22:51 -07:00
}
2020-03-27 13:59:38 -07:00
export function unfollowAccount(id) {
return (dispatch, getState) => {
2021-03-24 09:44:51 -07:00
if (!isLoggedIn(getState)) return;
2020-03-27 13:59:38 -07:00
dispatch(unfollowAccountRequest(id));
api(getState).post(`/api/v1/accounts/${id}/unfollow`).then(response => {
dispatch(unfollowAccountSuccess(response.data, getState().get('statuses')));
}).catch(error => {
dispatch(unfollowAccountFail(error));
});
};
2021-08-03 12:22:51 -07:00
}
2020-03-27 13:59:38 -07:00
export function followAccountRequest(id, locked) {
return {
type: ACCOUNT_FOLLOW_REQUEST,
id,
locked,
skipLoading: true,
};
2021-08-03 12:22:51 -07:00
}
2020-03-27 13:59:38 -07:00
export function followAccountSuccess(relationship, alreadyFollowing) {
return {
type: ACCOUNT_FOLLOW_SUCCESS,
relationship,
alreadyFollowing,
skipLoading: true,
};
2021-08-03 12:22:51 -07:00
}
2020-03-27 13:59:38 -07:00
export function followAccountFail(error, locked) {
return {
type: ACCOUNT_FOLLOW_FAIL,
error,
locked,
skipLoading: true,
};
2021-08-03 12:22:51 -07:00
}
2020-03-27 13:59:38 -07:00
export function unfollowAccountRequest(id) {
return {
type: ACCOUNT_UNFOLLOW_REQUEST,
id,
skipLoading: true,
};
2021-08-03 12:22:51 -07:00
}
2020-03-27 13:59:38 -07:00
export function unfollowAccountSuccess(relationship, statuses) {
return {
type: ACCOUNT_UNFOLLOW_SUCCESS,
relationship,
statuses,
skipLoading: true,
};
2021-08-03 12:22:51 -07:00
}
2020-03-27 13:59:38 -07:00
export function unfollowAccountFail(error) {
return {
type: ACCOUNT_UNFOLLOW_FAIL,
error,
skipLoading: true,
};
2021-08-03 12:22:51 -07:00
}
2020-03-27 13:59:38 -07:00
export function blockAccount(id) {
return (dispatch, getState) => {
2021-03-24 09:44:51 -07:00
if (!isLoggedIn(getState)) return;
2020-03-27 13:59:38 -07:00
dispatch(blockAccountRequest(id));
api(getState).post(`/api/v1/accounts/${id}/block`).then(response => {
// Pass in entire statuses map so we can use it to filter stuff in different parts of the reducers
dispatch(blockAccountSuccess(response.data, getState().get('statuses')));
}).catch(error => {
dispatch(blockAccountFail(id, error));
});
};
2021-08-03 12:22:51 -07:00
}
2020-03-27 13:59:38 -07:00
export function unblockAccount(id) {
return (dispatch, getState) => {
2021-03-24 09:44:51 -07:00
if (!isLoggedIn(getState)) return;
2020-03-27 13:59:38 -07:00
dispatch(unblockAccountRequest(id));
api(getState).post(`/api/v1/accounts/${id}/unblock`).then(response => {
dispatch(unblockAccountSuccess(response.data));
}).catch(error => {
dispatch(unblockAccountFail(id, error));
});
};
2021-08-03 12:22:51 -07:00
}
2020-03-27 13:59:38 -07:00
export function blockAccountRequest(id) {
return {
type: ACCOUNT_BLOCK_REQUEST,
id,
};
2021-08-03 12:22:51 -07:00
}
2020-03-27 13:59:38 -07:00
export function blockAccountSuccess(relationship, statuses) {
return {
type: ACCOUNT_BLOCK_SUCCESS,
relationship,
statuses,
};
2021-08-03 12:22:51 -07:00
}
2020-03-27 13:59:38 -07:00
export function blockAccountFail(error) {
return {
type: ACCOUNT_BLOCK_FAIL,
error,
};
2021-08-03 12:22:51 -07:00
}
2020-03-27 13:59:38 -07:00
export function unblockAccountRequest(id) {
return {
type: ACCOUNT_UNBLOCK_REQUEST,
id,
};
2021-08-03 12:22:51 -07:00
}
2020-03-27 13:59:38 -07:00
export function unblockAccountSuccess(relationship) {
return {
type: ACCOUNT_UNBLOCK_SUCCESS,
relationship,
};
2021-08-03 12:22:51 -07:00
}
2020-03-27 13:59:38 -07:00
export function unblockAccountFail(error) {
return {
type: ACCOUNT_UNBLOCK_FAIL,
error,
};
2021-08-03 12:22:51 -07:00
}
2020-03-27 13:59:38 -07:00
export function muteAccount(id, notifications) {
return (dispatch, getState) => {
2021-03-24 09:44:51 -07:00
if (!isLoggedIn(getState)) return;
2020-03-27 13:59:38 -07:00
dispatch(muteAccountRequest(id));
api(getState).post(`/api/v1/accounts/${id}/mute`, { notifications }).then(response => {
// Pass in entire statuses map so we can use it to filter stuff in different parts of the reducers
dispatch(muteAccountSuccess(response.data, getState().get('statuses')));
}).catch(error => {
dispatch(muteAccountFail(id, error));
});
};
2021-08-03 12:22:51 -07:00
}
2020-03-27 13:59:38 -07:00
export function unmuteAccount(id) {
return (dispatch, getState) => {
2021-03-24 09:44:51 -07:00
if (!isLoggedIn(getState)) return;
2020-03-27 13:59:38 -07:00
dispatch(unmuteAccountRequest(id));
api(getState).post(`/api/v1/accounts/${id}/unmute`).then(response => {
dispatch(unmuteAccountSuccess(response.data));
}).catch(error => {
dispatch(unmuteAccountFail(id, error));
});
};
2021-08-03 12:22:51 -07:00
}
2020-03-27 13:59:38 -07:00
export function muteAccountRequest(id) {
return {
type: ACCOUNT_MUTE_REQUEST,
id,
};
2021-08-03 12:22:51 -07:00
}
2020-03-27 13:59:38 -07:00
export function muteAccountSuccess(relationship, statuses) {
return {
type: ACCOUNT_MUTE_SUCCESS,
relationship,
statuses,
};
2021-08-03 12:22:51 -07:00
}
2020-03-27 13:59:38 -07:00
export function muteAccountFail(error) {
return {
type: ACCOUNT_MUTE_FAIL,
error,
};
2021-08-03 12:22:51 -07:00
}
2020-03-27 13:59:38 -07:00
export function unmuteAccountRequest(id) {
return {
type: ACCOUNT_UNMUTE_REQUEST,
id,
};
2021-08-03 12:22:51 -07:00
}
2020-03-27 13:59:38 -07:00
export function unmuteAccountSuccess(relationship) {
return {
type: ACCOUNT_UNMUTE_SUCCESS,
relationship,
};
2021-08-03 12:22:51 -07:00
}
2020-03-27 13:59:38 -07:00
export function unmuteAccountFail(error) {
return {
type: ACCOUNT_UNMUTE_FAIL,
error,
};
2021-08-03 12:22:51 -07:00
}
2020-03-27 13:59:38 -07:00
export function subscribeAccount(id, notifications) {
return (dispatch, getState) => {
if (!isLoggedIn(getState)) return;
dispatch(subscribeAccountRequest(id));
api(getState).post(`/api/v1/pleroma/accounts/${id}/subscribe`, { notifications }).then(response => {
dispatch(subscribeAccountSuccess(response.data));
}).catch(error => {
dispatch(subscribeAccountFail(id, error));
});
};
2021-08-03 12:22:51 -07:00
}
export function unsubscribeAccount(id) {
return (dispatch, getState) => {
if (!isLoggedIn(getState)) return;
dispatch(unsubscribeAccountRequest(id));
api(getState).post(`/api/v1/pleroma/accounts/${id}/unsubscribe`).then(response => {
dispatch(unsubscribeAccountSuccess(response.data));
}).catch(error => {
dispatch(unsubscribeAccountFail(id, error));
});
};
2021-08-03 12:22:51 -07:00
}
export function subscribeAccountRequest(id) {
return {
type: ACCOUNT_SUBSCRIBE_REQUEST,
id,
};
2021-08-03 12:22:51 -07:00
}
export function subscribeAccountSuccess(relationship) {
return {
type: ACCOUNT_SUBSCRIBE_SUCCESS,
relationship,
};
2021-08-03 12:22:51 -07:00
}
export function subscribeAccountFail(error) {
return {
type: ACCOUNT_SUBSCRIBE_FAIL,
error,
};
2021-08-03 12:22:51 -07:00
}
export function unsubscribeAccountRequest(id) {
return {
type: ACCOUNT_UNSUBSCRIBE_REQUEST,
id,
};
2021-08-03 12:22:51 -07:00
}
export function unsubscribeAccountSuccess(relationship) {
return {
type: ACCOUNT_UNSUBSCRIBE_SUCCESS,
relationship,
};
2021-08-03 12:22:51 -07:00
}
export function unsubscribeAccountFail(error) {
return {
type: ACCOUNT_UNSUBSCRIBE_FAIL,
error,
};
2021-08-03 12:22:51 -07:00
}
2020-03-27 13:59:38 -07:00
export function fetchFollowers(id) {
return (dispatch, getState) => {
dispatch(fetchFollowersRequest(id));
api(getState).get(`/api/v1/accounts/${id}/followers`).then(response => {
const next = getLinks(response).refs.find(link => link.rel === 'next');
dispatch(importFetchedAccounts(response.data));
dispatch(fetchFollowersSuccess(id, response.data, next ? next.uri : null));
dispatch(fetchRelationships(response.data.map(item => item.id)));
}).catch(error => {
dispatch(fetchFollowersFail(id, error));
});
};
2021-08-03 12:22:51 -07:00
}
2020-03-27 13:59:38 -07:00
export function fetchFollowersRequest(id) {
return {
type: FOLLOWERS_FETCH_REQUEST,
id,
};
2021-08-03 12:22:51 -07:00
}
2020-03-27 13:59:38 -07:00
export function fetchFollowersSuccess(id, accounts, next) {
return {
type: FOLLOWERS_FETCH_SUCCESS,
id,
accounts,
next,
};
2021-08-03 12:22:51 -07:00
}
2020-03-27 13:59:38 -07:00
export function fetchFollowersFail(id, error) {
return {
type: FOLLOWERS_FETCH_FAIL,
id,
error,
};
2021-08-03 12:22:51 -07:00
}
2020-03-27 13:59:38 -07:00
export function expandFollowers(id) {
return (dispatch, getState) => {
2021-03-24 09:44:51 -07:00
if (!isLoggedIn(getState)) return;
2020-03-27 13:59:38 -07:00
const url = getState().getIn(['user_lists', 'followers', id, 'next']);
if (url === null) {
return;
}
dispatch(expandFollowersRequest(id));
api(getState).get(url).then(response => {
const next = getLinks(response).refs.find(link => link.rel === 'next');
dispatch(importFetchedAccounts(response.data));
dispatch(expandFollowersSuccess(id, response.data, next ? next.uri : null));
dispatch(fetchRelationships(response.data.map(item => item.id)));
}).catch(error => {
dispatch(expandFollowersFail(id, error));
});
};
2021-08-03 12:22:51 -07:00
}
2020-03-27 13:59:38 -07:00
export function expandFollowersRequest(id) {
return {
type: FOLLOWERS_EXPAND_REQUEST,
id,
};
2021-08-03 12:22:51 -07:00
}
2020-03-27 13:59:38 -07:00
export function expandFollowersSuccess(id, accounts, next) {
return {
type: FOLLOWERS_EXPAND_SUCCESS,
id,
accounts,
next,
};
2021-08-03 12:22:51 -07:00
}
2020-03-27 13:59:38 -07:00
export function expandFollowersFail(id, error) {
return {
type: FOLLOWERS_EXPAND_FAIL,
id,
error,
};
2021-08-03 12:22:51 -07:00
}
2020-03-27 13:59:38 -07:00
export function fetchFollowing(id) {
return (dispatch, getState) => {
dispatch(fetchFollowingRequest(id));
api(getState).get(`/api/v1/accounts/${id}/following`).then(response => {
const next = getLinks(response).refs.find(link => link.rel === 'next');
dispatch(importFetchedAccounts(response.data));
dispatch(fetchFollowingSuccess(id, response.data, next ? next.uri : null));
dispatch(fetchRelationships(response.data.map(item => item.id)));
}).catch(error => {
dispatch(fetchFollowingFail(id, error));
});
};
2021-08-03 12:22:51 -07:00
}
2020-03-27 13:59:38 -07:00
export function fetchFollowingRequest(id) {
return {
type: FOLLOWING_FETCH_REQUEST,
id,
};
2021-08-03 12:22:51 -07:00
}
2020-03-27 13:59:38 -07:00
export function fetchFollowingSuccess(id, accounts, next) {
return {
type: FOLLOWING_FETCH_SUCCESS,
id,
accounts,
next,
};
2021-08-03 12:22:51 -07:00
}
2020-03-27 13:59:38 -07:00
export function fetchFollowingFail(id, error) {
return {
type: FOLLOWING_FETCH_FAIL,
id,
error,
};
2021-08-03 12:22:51 -07:00
}
2020-03-27 13:59:38 -07:00
export function expandFollowing(id) {
return (dispatch, getState) => {
2021-03-24 09:44:51 -07:00
if (!isLoggedIn(getState)) return;
2020-03-27 13:59:38 -07:00
const url = getState().getIn(['user_lists', 'following', id, 'next']);
if (url === null) {
return;
}
dispatch(expandFollowingRequest(id));
api(getState).get(url).then(response => {
const next = getLinks(response).refs.find(link => link.rel === 'next');
dispatch(importFetchedAccounts(response.data));
dispatch(expandFollowingSuccess(id, response.data, next ? next.uri : null));
dispatch(fetchRelationships(response.data.map(item => item.id)));
}).catch(error => {
dispatch(expandFollowingFail(id, error));
});
};
2021-08-03 12:22:51 -07:00
}
2020-03-27 13:59:38 -07:00
export function expandFollowingRequest(id) {
return {
type: FOLLOWING_EXPAND_REQUEST,
id,
};
2021-08-03 12:22:51 -07:00
}
2020-03-27 13:59:38 -07:00
export function expandFollowingSuccess(id, accounts, next) {
return {
type: FOLLOWING_EXPAND_SUCCESS,
id,
accounts,
next,
};
2021-08-03 12:22:51 -07:00
}
2020-03-27 13:59:38 -07:00
export function expandFollowingFail(id, error) {
return {
type: FOLLOWING_EXPAND_FAIL,
id,
error,
};
2021-08-03 12:22:51 -07:00
}
2020-03-27 13:59:38 -07:00
export function fetchRelationships(accountIds) {
return (dispatch, getState) => {
2021-03-24 09:44:51 -07:00
if (!isLoggedIn(getState)) return;
2020-03-27 13:59:38 -07:00
const loadedRelationships = getState().get('relationships');
const newAccountIds = accountIds.filter(id => loadedRelationships.get(id, null) === null);
if (newAccountIds.length === 0) {
return;
}
dispatch(fetchRelationshipsRequest(newAccountIds));
api(getState).get(`/api/v1/accounts/relationships?${newAccountIds.map(id => `id[]=${id}`).join('&')}`).then(response => {
dispatch(fetchRelationshipsSuccess(response.data));
}).catch(error => {
dispatch(fetchRelationshipsFail(error));
});
};
2021-08-03 12:22:51 -07:00
}
2020-03-27 13:59:38 -07:00
export function fetchRelationshipsRequest(ids) {
return {
type: RELATIONSHIPS_FETCH_REQUEST,
ids,
skipLoading: true,
};
2021-08-03 12:22:51 -07:00
}
2020-03-27 13:59:38 -07:00
export function fetchRelationshipsSuccess(relationships) {
return {
type: RELATIONSHIPS_FETCH_SUCCESS,
relationships,
skipLoading: true,
};
2021-08-03 12:22:51 -07:00
}
2020-03-27 13:59:38 -07:00
export function fetchRelationshipsFail(error) {
return {
type: RELATIONSHIPS_FETCH_FAIL,
error,
skipLoading: true,
};
2021-08-03 12:22:51 -07:00
}
2020-03-27 13:59:38 -07:00
export function fetchFollowRequests() {
return (dispatch, getState) => {
2021-03-24 09:44:51 -07:00
if (!isLoggedIn(getState)) return;
2020-03-27 13:59:38 -07:00
dispatch(fetchFollowRequestsRequest());
api(getState).get('/api/v1/follow_requests').then(response => {
const next = getLinks(response).refs.find(link => link.rel === 'next');
dispatch(importFetchedAccounts(response.data));
dispatch(fetchFollowRequestsSuccess(response.data, next ? next.uri : null));
}).catch(error => dispatch(fetchFollowRequestsFail(error)));
};
2021-08-03 12:22:51 -07:00
}
2020-03-27 13:59:38 -07:00
export function fetchFollowRequestsRequest() {
return {
type: FOLLOW_REQUESTS_FETCH_REQUEST,
};
2021-08-03 12:22:51 -07:00
}
2020-03-27 13:59:38 -07:00
export function fetchFollowRequestsSuccess(accounts, next) {
return {
type: FOLLOW_REQUESTS_FETCH_SUCCESS,
accounts,
next,
};
2021-08-03 12:22:51 -07:00
}
2020-03-27 13:59:38 -07:00
export function fetchFollowRequestsFail(error) {
return {
type: FOLLOW_REQUESTS_FETCH_FAIL,
error,
};
2021-08-03 12:22:51 -07:00
}
2020-03-27 13:59:38 -07:00
export function expandFollowRequests() {
return (dispatch, getState) => {
2021-03-24 09:44:51 -07:00
if (!isLoggedIn(getState)) return;
2020-03-27 13:59:38 -07:00
const url = getState().getIn(['user_lists', 'follow_requests', 'next']);
if (url === null) {
return;
}
dispatch(expandFollowRequestsRequest());
api(getState).get(url).then(response => {
const next = getLinks(response).refs.find(link => link.rel === 'next');
dispatch(importFetchedAccounts(response.data));
dispatch(expandFollowRequestsSuccess(response.data, next ? next.uri : null));
}).catch(error => dispatch(expandFollowRequestsFail(error)));
};
2021-08-03 12:22:51 -07:00
}
2020-03-27 13:59:38 -07:00
export function expandFollowRequestsRequest() {
return {
type: FOLLOW_REQUESTS_EXPAND_REQUEST,
};
2021-08-03 12:22:51 -07:00
}
2020-03-27 13:59:38 -07:00
export function expandFollowRequestsSuccess(accounts, next) {
return {
type: FOLLOW_REQUESTS_EXPAND_SUCCESS,
accounts,
next,
};
2021-08-03 12:22:51 -07:00
}
2020-03-27 13:59:38 -07:00
export function expandFollowRequestsFail(error) {
return {
type: FOLLOW_REQUESTS_EXPAND_FAIL,
error,
};
2021-08-03 12:22:51 -07:00
}
2020-03-27 13:59:38 -07:00
export function authorizeFollowRequest(id) {
return (dispatch, getState) => {
2021-03-24 09:44:51 -07:00
if (!isLoggedIn(getState)) return;
2020-03-27 13:59:38 -07:00
dispatch(authorizeFollowRequestRequest(id));
api(getState)
.post(`/api/v1/follow_requests/${id}/authorize`)
.then(() => dispatch(authorizeFollowRequestSuccess(id)))
.catch(error => dispatch(authorizeFollowRequestFail(id, error)));
};
2021-08-03 12:22:51 -07:00
}
2020-03-27 13:59:38 -07:00
export function authorizeFollowRequestRequest(id) {
return {
type: FOLLOW_REQUEST_AUTHORIZE_REQUEST,
id,
};
2021-08-03 12:22:51 -07:00
}
2020-03-27 13:59:38 -07:00
export function authorizeFollowRequestSuccess(id) {
return {
type: FOLLOW_REQUEST_AUTHORIZE_SUCCESS,
id,
};
2021-08-03 12:22:51 -07:00
}
2020-03-27 13:59:38 -07:00
export function authorizeFollowRequestFail(id, error) {
return {
type: FOLLOW_REQUEST_AUTHORIZE_FAIL,
id,
error,
};
2021-08-03 12:22:51 -07:00
}
2020-03-27 13:59:38 -07:00
export function rejectFollowRequest(id) {
return (dispatch, getState) => {
2021-03-24 09:44:51 -07:00
if (!isLoggedIn(getState)) return;
2020-03-27 13:59:38 -07:00
dispatch(rejectFollowRequestRequest(id));
api(getState)
.post(`/api/v1/follow_requests/${id}/reject`)
.then(() => dispatch(rejectFollowRequestSuccess(id)))
.catch(error => dispatch(rejectFollowRequestFail(id, error)));
};
2021-08-03 12:22:51 -07:00
}
2020-03-27 13:59:38 -07:00
export function rejectFollowRequestRequest(id) {
return {
type: FOLLOW_REQUEST_REJECT_REQUEST,
id,
};
2021-08-03 12:22:51 -07:00
}
2020-03-27 13:59:38 -07:00
export function rejectFollowRequestSuccess(id) {
return {
type: FOLLOW_REQUEST_REJECT_SUCCESS,
id,
};
2021-08-03 12:22:51 -07:00
}
2020-03-27 13:59:38 -07:00
export function rejectFollowRequestFail(id, error) {
return {
type: FOLLOW_REQUEST_REJECT_FAIL,
id,
error,
};
2021-08-03 12:22:51 -07:00
}
2020-03-27 13:59:38 -07:00
export function pinAccount(id) {
return (dispatch, getState) => {
2021-03-24 09:44:51 -07:00
if (!isLoggedIn(getState)) return;
2020-03-27 13:59:38 -07:00
dispatch(pinAccountRequest(id));
api(getState).post(`/api/v1/accounts/${id}/pin`).then(response => {
dispatch(pinAccountSuccess(response.data));
}).catch(error => {
dispatch(pinAccountFail(error));
});
};
2021-08-03 12:22:51 -07:00
}
2020-03-27 13:59:38 -07:00
export function unpinAccount(id) {
return (dispatch, getState) => {
2021-03-24 09:44:51 -07:00
if (!isLoggedIn(getState)) return;
2020-03-27 13:59:38 -07:00
dispatch(unpinAccountRequest(id));
api(getState).post(`/api/v1/accounts/${id}/unpin`).then(response => {
dispatch(unpinAccountSuccess(response.data));
}).catch(error => {
dispatch(unpinAccountFail(error));
});
};
2021-08-03 12:22:51 -07:00
}
2020-03-27 13:59:38 -07:00
export function updateNotificationSettings(params) {
return (dispatch, getState) => {
dispatch({ type: NOTIFICATION_SETTINGS_REQUEST, params });
return api(getState).put('/api/pleroma/notification_settings', params).then(({ data }) => {
dispatch({ type: NOTIFICATION_SETTINGS_SUCCESS, params, data });
}).catch(error => {
dispatch({ type: NOTIFICATION_SETTINGS_FAIL, params, error });
});
};
2021-08-03 12:22:51 -07:00
}
2020-03-27 13:59:38 -07:00
export function pinAccountRequest(id) {
return {
type: ACCOUNT_PIN_REQUEST,
id,
};
2021-08-03 12:22:51 -07:00
}
2020-03-27 13:59:38 -07:00
export function pinAccountSuccess(relationship) {
return {
type: ACCOUNT_PIN_SUCCESS,
relationship,
};
2021-08-03 12:22:51 -07:00
}
2020-03-27 13:59:38 -07:00
export function pinAccountFail(error) {
return {
type: ACCOUNT_PIN_FAIL,
error,
};
2021-08-03 12:22:51 -07:00
}
2020-03-27 13:59:38 -07:00
export function unpinAccountRequest(id) {
return {
type: ACCOUNT_UNPIN_REQUEST,
id,
};
2021-08-03 12:22:51 -07:00
}
2020-03-27 13:59:38 -07:00
export function unpinAccountSuccess(relationship) {
return {
type: ACCOUNT_UNPIN_SUCCESS,
relationship,
};
2021-08-03 12:22:51 -07:00
}
2020-03-27 13:59:38 -07:00
export function unpinAccountFail(error) {
return {
type: ACCOUNT_UNPIN_FAIL,
error,
};
2021-08-03 12:22:51 -07:00
}