rudeshark.net/src/tools/resync-remote-user.ts

32 lines
661 B
TypeScript
Raw Normal View History

2018-12-19 13:20:25 +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);
}
export default () => {
// get args
const args = process.argv.slice(3);
let acct = args[0];
2020-04-03 10:17:46 +02:00
// normalize args
acct = acct.replace(/^@/, '');
2020-04-03 10:17:46 +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
console.log(`resync ${acct}`);
2020-04-03 10:17:46 +02:00
main(acct).then(() => {
console.log('Done');
process.exit(0);
}).catch(e => {
console.warn(e);
process.exit(1);
});
}