60 lines
1.5 KiB
TypeScript
60 lines
1.5 KiB
TypeScript
import { i18n } from '../i18n'
|
|
import { sdk } from '../sdk'
|
|
import { dataDir, SPACED_CHAIN } from '../utils'
|
|
|
|
export const resetSpacedState = sdk.Action.withoutInput(
|
|
// id
|
|
'reset-spaced-state',
|
|
|
|
// metadata
|
|
async ({ effects }) => ({
|
|
name: i18n('Reset Spaced State'),
|
|
description: i18n(
|
|
"Wipe /data/mainnet/ so spaced resyncs its index from spaces' anchor.",
|
|
),
|
|
warning: i18n(
|
|
"This deletes spaced's on-disk index. The next start will resync from spaces' anchor and can take a while. store.json (passwords + RPC credentials) is preserved.",
|
|
),
|
|
allowedStatuses: 'any',
|
|
group: null,
|
|
visibility: 'enabled',
|
|
}),
|
|
|
|
// run
|
|
async ({ effects }) => {
|
|
const res = await sdk.SubContainer.withTemp(
|
|
effects,
|
|
{ imageId: 'spaces' },
|
|
sdk.Mounts.of().mountVolume({
|
|
volumeId: 'main',
|
|
subpath: null,
|
|
mountpoint: dataDir,
|
|
readonly: false,
|
|
}),
|
|
'spaces-reset-state',
|
|
(subc) =>
|
|
subc.exec(['rm', '-rf', `${dataDir}/${SPACED_CHAIN}`], { user: 'root' }),
|
|
)
|
|
|
|
if (res.exitCode !== 0) {
|
|
return {
|
|
version: '1',
|
|
title: i18n('Failure'),
|
|
message: i18n('Could not wipe spaced state: ${error}', {
|
|
error: (res.stderr ?? '').toString() || `exit ${res.exitCode}`,
|
|
}),
|
|
result: null,
|
|
}
|
|
}
|
|
|
|
return {
|
|
version: '1',
|
|
title: i18n('Success'),
|
|
message: i18n(
|
|
'Spaced state has been wiped. Start (or restart) the service to resync.',
|
|
),
|
|
result: null,
|
|
}
|
|
},
|
|
)
|