iceshrimp-legacy/src/tools/resync-remote-user.ts

28 lines
582 B
TypeScript
Raw Normal View History

2021-03-23 09:43:07 +01:00
import parseAcct from '@/misc/acct/parse';
2019-04-07 16:06:07 +02:00
import { resolveUser } from '../remote/resolve-user';
async function main(acct: string): Promise<any> {
const { username, host } = parseAcct(acct);
await resolveUser(username, host, {}, true);
}
2020-04-03 16:35:14 +02:00
// get args
const args = process.argv.slice(2);
let acct = args[0];
2020-04-03 10:17:46 +02:00
2020-04-03 16:35:14 +02:00
// normalize args
acct = acct.replace(/^@/, '');
2020-04-03 10:17:46 +02:00
2020-04-03 16:35:14 +02:00
// check args
if (!acct.match(/^\w+@\w/)) {
throw `Invalid acct format. Valid format are user@host`;
}
2020-04-03 10:17:46 +02:00
2020-04-03 16:35:14 +02:00
console.log(`resync ${acct}`);
2020-04-03 10:17:46 +02:00
2020-04-03 16:35:14 +02:00
main(acct).then(() => {
console.log('Done');
}).catch(e => {
console.warn(e);
});