2021-08-19 14:55:45 +02:00
|
|
|
import { initDb } from '../db/postgre';
|
2020-10-30 16:21:02 +01:00
|
|
|
|
|
|
|
async function main(username: string) {
|
|
|
|
if (!username) throw `username required`;
|
|
|
|
username = username.replace(/^@/, '');
|
|
|
|
|
|
|
|
await initDb();
|
2021-11-26 05:41:49 +01:00
|
|
|
const { Users } = await import('@/models/index');
|
2020-10-30 16:21:02 +01:00
|
|
|
|
|
|
|
const res = await Users.update({
|
|
|
|
usernameLower: username.toLowerCase(),
|
2021-12-09 15:58:30 +01:00
|
|
|
host: null,
|
2020-10-30 16:21:02 +01:00
|
|
|
}, {
|
2021-12-09 15:58:30 +01:00
|
|
|
isAdmin: false,
|
2020-10-30 16:21:02 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
if (res.affected !== 1) {
|
|
|
|
throw 'Failed';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const args = process.argv.slice(2);
|
|
|
|
|
|
|
|
main(args[0]).then(() => {
|
|
|
|
console.log('Success');
|
|
|
|
process.exit(0);
|
|
|
|
}).catch(e => {
|
|
|
|
console.error(`Error: ${e.message || e}`);
|
|
|
|
process.exit(1);
|
|
|
|
});
|