import { useTransaction } from 'soapbox/entity-store/hooks'; import { EntityCallbacks } from 'soapbox/entity-store/hooks/types'; import { useApi, useGetState } from 'soapbox/hooks'; import { accountIdsToAccts } from 'soapbox/selectors'; import type { Account } from 'soapbox/schemas'; function useVerify() { const api = useApi(); const getState = useGetState(); const { transaction } = useTransaction(); function verifyEffect(accountIds: string[], verified: boolean) { const updater = (account: Account): Account => { if (account.pleroma) { const tags = account.pleroma.tags.filter((tag) => tag !== 'verified'); if (verified) { tags.push('verified'); } account.pleroma.tags = tags; } account.verified = verified; return account; }; transaction({ Accounts: accountIds.reduce Account>>( (result, id) => ({ ...result, [id]: updater }), {}), }); } async function verify(accountIds: string[], callbacks?: EntityCallbacks) { const accts = accountIdsToAccts(getState(), accountIds); verifyEffect(accountIds, true); try { await api.put('/api/v1/pleroma/admin/users/tag', { nicknames: accts, tags: ['verified'] }); callbacks?.onSuccess?.(); } catch (e) { callbacks?.onError?.(e); verifyEffect(accountIds, false); } } async function unverify(accountIds: string[], callbacks?: EntityCallbacks) { const accts = accountIdsToAccts(getState(), accountIds); verifyEffect(accountIds, false); try { await api.delete('/api/v1/pleroma/admin/users/tag', { data: { nicknames: accts, tags: ['verified'] } }); callbacks?.onSuccess?.(); } catch (e) { callbacks?.onError?.(e); verifyEffect(accountIds, true); } } return { verify, unverify, }; } export { useVerify };