Skip to content
Snippets Groups Projects
create.ts 998 B
Newer Older
syuilo's avatar
syuilo committed
import define from '../../../define.js';
import { Users } from '@/models/index.js';
import { signup } from '../../../common/signup.js';
syuilo's avatar
syuilo committed

export const meta = {
	tags: ['admin'],

	params: {
		username: {
			validator: Users.validateLocalUsername,
		},

		password: {
			validator: Users.validatePassword,
		}
	},

	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,
			}
		}
syuilo's avatar
syuilo committed
	}
};

syuilo's avatar
syuilo committed
export default define(meta, async (ps, _me) => {
	const me = _me ? await Users.findOneOrFail(_me.id) : null;
syuilo's avatar
syuilo committed
	const noUsers = (await Users.count({
		host: null,
	})) === 0;
	if (!noUsers && !me?.isAdmin) throw new Error('access denied');
syuilo's avatar
syuilo committed

	const { account, secret } = await signup(ps.username, ps.password);

	const res = await Users.pack(account, account, {
		detail: true,
		includeSecrets: true
	});

	(res as any).token = secret;

	return res;
});