mizzkey/packages/backend/src/tools/resync-remote-user.ts
syuilo d071d18dd7
refactor: Use ESM (#8358)
* wip

* wip

* fix

* clean up

* Update tsconfig.json

* Update activitypub.ts

* wip
2022-02-27 11:07:39 +09:00

31 lines
650 B
TypeScript

import { initDb } from '@/db/postgre.js';
import * as Acct from '@/misc/acct.js';
async function main(acct: string): Promise<any> {
await initDb();
const { resolveUser } = await import('@/remote/resolve-user');
const { username, host } = Acct.parse(acct);
await resolveUser(username, host, {}, true);
}
// get args
const args = process.argv.slice(2);
let acct = args[0];
// normalize args
acct = acct.replace(/^@/, '');
// check args
if (!acct.match(/^\w+@\w/)) {
throw `Invalid acct format. Valid format are user@host`;
}
console.log(`resync ${acct}`);
main(acct).then(() => {
console.log('Done');
}).catch(e => {
console.warn(e);
});