soapbox/app/soapbox/actions/importer/index.ts

172 wiersze
4.6 KiB
TypeScript
Czysty Zwykły widok Historia

2022-02-20 17:44:10 +00:00
import { getSettings } from '../settings';
import type { AppDispatch, RootState } from 'soapbox/store';
import type { APIEntity } from 'soapbox/types/entities';
const ACCOUNT_IMPORT = 'ACCOUNT_IMPORT';
const ACCOUNTS_IMPORT = 'ACCOUNTS_IMPORT';
const STATUS_IMPORT = 'STATUS_IMPORT';
const STATUSES_IMPORT = 'STATUSES_IMPORT';
const POLLS_IMPORT = 'POLLS_IMPORT';
const ACCOUNT_FETCH_FAIL_FOR_USERNAME_LOOKUP = 'ACCOUNT_FETCH_FAIL_FOR_USERNAME_LOOKUP';
export function importAccount(account: APIEntity) {
2020-03-27 20:59:38 +00:00
return { type: ACCOUNT_IMPORT, account };
}
export function importAccounts(accounts: APIEntity[]) {
2020-03-27 20:59:38 +00:00
return { type: ACCOUNTS_IMPORT, accounts };
}
export function importStatus(status: APIEntity, idempotencyKey?: string) {
return (dispatch: AppDispatch, getState: () => RootState) => {
2022-02-20 17:44:10 +00:00
const expandSpoilers = getSettings(getState()).get('expandSpoilers');
return dispatch({ type: STATUS_IMPORT, status, idempotencyKey, expandSpoilers });
};
2020-03-27 20:59:38 +00:00
}
export function importStatuses(statuses: APIEntity[]) {
return (dispatch: AppDispatch, getState: () => RootState) => {
2022-02-20 17:44:10 +00:00
const expandSpoilers = getSettings(getState()).get('expandSpoilers');
return dispatch({ type: STATUSES_IMPORT, statuses, expandSpoilers });
};
2020-03-27 20:59:38 +00:00
}
export function importPolls(polls: APIEntity[]) {
2020-03-27 20:59:38 +00:00
return { type: POLLS_IMPORT, polls };
}
export function importFetchedAccount(account: APIEntity) {
2020-03-27 20:59:38 +00:00
return importFetchedAccounts([account]);
}
export function importFetchedAccounts(accounts: APIEntity[]) {
const normalAccounts: APIEntity[] = [];
2020-03-27 20:59:38 +00:00
const processAccount = (account: APIEntity) => {
if (!account.id) return;
2022-03-12 02:48:00 +00:00
normalAccounts.push(account);
2020-03-27 20:59:38 +00:00
if (account.moved) {
processAccount(account.moved);
}
};
2020-03-27 20:59:38 +00:00
accounts.forEach(processAccount);
return importAccounts(normalAccounts);
}
export function importFetchedStatus(status: APIEntity, idempotencyKey?: string) {
return (dispatch: AppDispatch) => {
// 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));
}
2022-06-09 19:29:01 +00:00
// Pleroma quotes
if (status.pleroma?.quote?.id) {
dispatch(importFetchedStatus(status.pleroma.quote));
}
2022-06-09 19:29:01 +00:00
// Fedibird quote from reblog
if (status.reblog?.quote?.id) {
dispatch(importFetchedStatus(status.reblog.quote));
}
// Pleroma quote from reblog
if (status.reblog?.pleroma?.quote?.id) {
dispatch(importFetchedStatus(status.reblog.pleroma.quote));
}
if (status.poll?.id) {
dispatch(importFetchedPoll(status.poll));
}
dispatch(importFetchedAccount(status.account));
2022-02-20 07:27:29 +00:00
dispatch(importStatus(status, idempotencyKey));
};
2020-03-27 20:59:38 +00:00
}
// Sometimes Pleroma can return an empty account,
// or a repost can appear of a deleted account. Skip these statuses.
const isBroken = (status: APIEntity) => {
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;
}
};
export function importFetchedStatuses(statuses: APIEntity[]) {
return (dispatch: AppDispatch, getState: () => RootState) => {
const accounts: APIEntity[] = [];
const normalStatuses: APIEntity[] = [];
const polls: APIEntity[] = [];
2020-03-27 20:59:38 +00:00
function processStatus(status: APIEntity) {
// Skip broken statuses
if (isBroken(status)) return;
2022-02-20 17:16:53 +00:00
normalStatuses.push(status);
accounts.push(status.account);
2020-03-27 20:59:38 +00:00
if (status.reblog?.id) {
2020-03-27 20:59:38 +00: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-11 01:55:14 +00:00
polls.push(status.poll);
2020-03-27 20:59:38 +00:00
}
}
statuses.forEach(processStatus);
dispatch(importPolls(polls));
dispatch(importFetchedAccounts(accounts));
2022-02-20 17:16:53 +00:00
dispatch(importStatuses(normalStatuses));
2020-03-27 20:59:38 +00:00
};
}
export function importFetchedPoll(poll: APIEntity) {
return (dispatch: AppDispatch) => {
2022-03-11 01:55:14 +00:00
dispatch(importPolls([poll]));
2020-03-27 20:59:38 +00:00
};
}
export function importErrorWhileFetchingAccountByUsername(username: string) {
2020-03-27 20:59:38 +00:00
return { type: ACCOUNT_FETCH_FAIL_FOR_USERNAME_LOOKUP, username };
2021-08-03 19:22:51 +00:00
}
export {
ACCOUNT_IMPORT,
ACCOUNTS_IMPORT,
STATUS_IMPORT,
STATUSES_IMPORT,
POLLS_IMPORT,
ACCOUNT_FETCH_FAIL_FOR_USERNAME_LOOKUP,
};