2021-08-19 15:55:45 +03:00
|
|
|
import { initDb } from '@/db/postgre';
|
2021-11-11 19:02:25 +02:00
|
|
|
import * as Acct from 'misskey-js/built/acct';
|
2018-10-30 19:16:13 +02:00
|
|
|
|
|
|
|
async function main(acct: string): Promise<any> {
|
2021-06-05 08:55:41 +03:00
|
|
|
await initDb();
|
2021-08-19 12:33:41 +03:00
|
|
|
const { resolveUser } = await import('@/remote/resolve-user');
|
2021-06-05 08:55:41 +03:00
|
|
|
|
2021-11-11 19:02:25 +02:00
|
|
|
const { username, host } = Acct.parse(acct);
|
2018-10-30 19:16:13 +02:00
|
|
|
await resolveUser(username, host, {}, true);
|
|
|
|
}
|
|
|
|
|
2020-04-03 17:35:14 +03:00
|
|
|
// get args
|
|
|
|
const args = process.argv.slice(2);
|
|
|
|
let acct = args[0];
|
2020-04-03 11:17:46 +03:00
|
|
|
|
2020-04-03 17:35:14 +03:00
|
|
|
// normalize args
|
|
|
|
acct = acct.replace(/^@/, '');
|
2020-04-03 11:17:46 +03:00
|
|
|
|
2020-04-03 17:35:14 +03:00
|
|
|
// check args
|
|
|
|
if (!acct.match(/^\w+@\w/)) {
|
|
|
|
throw `Invalid acct format. Valid format are user@host`;
|
|
|
|
}
|
2020-04-03 11:17:46 +03:00
|
|
|
|
2020-04-03 17:35:14 +03:00
|
|
|
console.log(`resync ${acct}`);
|
2020-04-03 11:17:46 +03:00
|
|
|
|
2020-04-03 17:35:14 +03:00
|
|
|
main(acct).then(() => {
|
|
|
|
console.log('Done');
|
|
|
|
}).catch(e => {
|
|
|
|
console.warn(e);
|
|
|
|
});
|