bigbuffet-rw/app/soapbox/actions/importer/index.js

149 lines
3.7 KiB
JavaScript
Raw Normal View History

2022-02-20 09:44:10 -08:00
import { getSettings } from '../settings';
2020-03-27 13:59:38 -07:00
export const ACCOUNT_IMPORT = 'ACCOUNT_IMPORT';
export const ACCOUNTS_IMPORT = 'ACCOUNTS_IMPORT';
export const STATUS_IMPORT = 'STATUS_IMPORT';
export const STATUSES_IMPORT = 'STATUSES_IMPORT';
export const POLLS_IMPORT = 'POLLS_IMPORT';
export const ACCOUNT_FETCH_FAIL_FOR_USERNAME_LOOKUP = 'ACCOUNT_FETCH_FAIL_FOR_USERNAME_LOOKUP';
export function importAccount(account) {
return { type: ACCOUNT_IMPORT, account };
}
export function importAccounts(accounts) {
return { type: ACCOUNTS_IMPORT, accounts };
}
export function importStatus(status, idempotencyKey) {
2022-02-20 09:44:10 -08:00
return (dispatch, getState) => {
const expandSpoilers = getSettings(getState()).get('expandSpoilers');
return dispatch({ type: STATUS_IMPORT, status, idempotencyKey, expandSpoilers });
};
2020-03-27 13:59:38 -07:00
}
export function importStatuses(statuses) {
2022-02-20 09:44:10 -08:00
return (dispatch, getState) => {
const expandSpoilers = getSettings(getState()).get('expandSpoilers');
return dispatch({ type: STATUSES_IMPORT, statuses, expandSpoilers });
};
2020-03-27 13:59:38 -07:00
}
export function importPolls(polls) {
return { type: POLLS_IMPORT, polls };
}
export function importFetchedAccount(account) {
return importFetchedAccounts([account]);
}
export function importFetchedAccounts(accounts) {
const normalAccounts = [];
function processAccount(account) {
if (!account.id) return;
2022-03-11 18:48:00 -08:00
normalAccounts.push(account);
2020-03-27 13:59:38 -07:00
if (account.moved) {
processAccount(account.moved);
}
}
accounts.forEach(processAccount);
return importAccounts(normalAccounts);
}
export function importFetchedStatus(status, idempotencyKey) {
return (dispatch, getState) => {
// Skip broken statuses
if (isBroken(status)) return;
if (status.reblog?.id) {
dispatch(importFetchedStatus(status.reblog));
}
// Fedibird quotes
if (status.quote?.id) {
dispatch(importFetchedStatus(status.quote));
}
if (status.pleroma?.quote?.id) {
dispatch(importFetchedStatus(status.pleroma.quote));
}
if (status.poll?.id) {
dispatch(importFetchedPoll(status.poll));
}
dispatch(importFetchedAccount(status.account));
2022-02-19 23:27:29 -08:00
dispatch(importStatus(status, idempotencyKey));
};
2020-03-27 13:59:38 -07:00
}
// Sometimes Pleroma can return an empty account,
// or a repost can appear of a deleted account. Skip these statuses.
const isBroken = status => {
try {
// Skip empty accounts
// https://gitlab.com/soapbox-pub/soapbox-fe/-/issues/424
if (!status.account.id) return true;
// Skip broken reposts
// https://gitlab.com/soapbox-pub/soapbox/-/issues/28
if (status.reblog && !status.reblog.account.id) return true;
return false;
} catch(e) {
return true;
}
};
2020-03-27 13:59:38 -07:00
export function importFetchedStatuses(statuses) {
return (dispatch, getState) => {
const accounts = [];
2022-02-20 09:16:53 -08:00
const normalStatuses = [];
2020-03-27 13:59:38 -07:00
const polls = [];
function processStatus(status) {
// Skip broken statuses
if (isBroken(status)) return;
2022-02-20 09:16:53 -08:00
normalStatuses.push(status);
accounts.push(status.account);
2020-03-27 13:59:38 -07:00
if (status.reblog?.id) {
2020-03-27 13:59:38 -07:00
processStatus(status.reblog);
}
// Fedibird quotes
if (status.quote?.id) {
processStatus(status.quote);
}
if (status.pleroma?.quote?.id) {
processStatus(status.pleroma.quote);
}
if (status.poll?.id) {
2022-03-10 17:55:14 -08:00
polls.push(status.poll);
2020-03-27 13:59:38 -07:00
}
}
statuses.forEach(processStatus);
dispatch(importPolls(polls));
dispatch(importFetchedAccounts(accounts));
2022-02-20 09:16:53 -08:00
dispatch(importStatuses(normalStatuses));
2020-03-27 13:59:38 -07:00
};
}
export function importFetchedPoll(poll) {
return dispatch => {
2022-03-10 17:55:14 -08:00
dispatch(importPolls([poll]));
2020-03-27 13:59:38 -07:00
};
}
export function importErrorWhileFetchingAccountByUsername(username) {
return { type: ACCOUNT_FETCH_FAIL_FOR_USERNAME_LOOKUP, username };
2021-08-03 12:22:51 -07:00
}