Add mark-admin command (#5705)

* mark-admin command

* no cli
This commit is contained in:
MeiMei 2020-01-20 01:50:12 +09:00 committed by syuilo
parent 85971d3d88
commit 10f237be95
8 changed files with 41 additions and 22 deletions

32
src/tools/mark-admin.ts Normal file
View file

@ -0,0 +1,32 @@
import { initDb } from '../db/postgre';
import { getRepository } from 'typeorm';
import { User } from '../models/entities/user';
async function main(username: string) {
if (!username) throw `username required`;
username = username.replace(/^@/, '');
await initDb();
const Users = getRepository(User);
const res = await Users.update({
usernameLower: username.toLowerCase(),
host: null
}, {
isAdmin: true
});
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);
});