2018-12-19 13:20:25 +01:00
|
|
|
import parseAcct from '../misc/acct/parse';
|
2018-10-30 18:16:13 +01:00
|
|
|
import resolveUser from '../remote/resolve-user';
|
|
|
|
|
|
|
|
async function main(acct: string): Promise<any> {
|
|
|
|
const { username, host } = parseAcct(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 `Invalied acct format. Valied format are user@host`;
|
|
|
|
}
|
|
|
|
|
|
|
|
console.log(`resync ${acct}`);
|
|
|
|
|
|
|
|
main(acct).then(() => {
|
2019-01-26 08:56:05 +01:00
|
|
|
console.log('Done');
|
2018-10-30 18:16:13 +01:00
|
|
|
}).catch(e => {
|
|
|
|
console.warn(e);
|
|
|
|
});
|