iceshrimp-legacy/packages/backend/src/server/api/endpoints/admin/accounts/create.ts

53 lines
1.1 KiB
TypeScript
Raw Normal View History

import define from '../../../define';
import { Users } from '@/models/index';
import { signup } from '../../../common/signup';
export const meta = {
tags: ['admin'],
params: {
username: {
validator: Users.validateLocalUsername,
},
password: {
validator: Users.validatePassword,
2021-12-09 15:58:30 +01:00
},
},
res: {
type: 'object' as const,
optional: false as const, nullable: false as const,
ref: 'User',
properties: {
token: {
type: 'string' as const,
optional: false as const, nullable: false as const,
2021-12-09 15:58:30 +01:00
},
},
},
};
2022-01-02 18:12:50 +01:00
// eslint-disable-next-line import/no-default-export
export default define(meta, async (ps, _me) => {
const me = _me ? await Users.findOneOrFail(_me.id) : null;
2020-03-31 01:07:10 +02:00
const noUsers = (await Users.count({
host: null,
})) === 0;
if (!noUsers && !me?.isAdmin) throw new Error('access denied');
const { account, secret } = await signup({
username: ps.username,
password: ps.password,
});
const res = await Users.pack(account, account, {
detail: true,
2021-12-09 15:58:30 +01:00
includeSecrets: true,
});
(res as any).token = secret;
return res;
});