d071d18dd7
* wip * wip * fix * clean up * Update tsconfig.json * Update activitypub.ts * wip
43 lines
851 B
TypeScript
43 lines
851 B
TypeScript
import define from '../../define.js';
|
|
import { Users, UsedUsernames } from '@/models/index.js';
|
|
|
|
export const meta = {
|
|
tags: ['users'],
|
|
|
|
requireCredential: false,
|
|
|
|
res: {
|
|
type: 'object',
|
|
optional: false, nullable: false,
|
|
properties: {
|
|
available: {
|
|
type: 'boolean',
|
|
optional: false, nullable: false,
|
|
},
|
|
},
|
|
},
|
|
} as const;
|
|
|
|
export const paramDef = {
|
|
type: 'object',
|
|
properties: {
|
|
username: Users.localUsernameSchema,
|
|
},
|
|
required: ['username'],
|
|
} as const;
|
|
|
|
// eslint-disable-next-line import/no-default-export
|
|
export default define(meta, paramDef, async (ps) => {
|
|
// Get exist
|
|
const exist = await Users.count({
|
|
host: null,
|
|
usernameLower: ps.username.toLowerCase(),
|
|
});
|
|
|
|
const exist2 = await UsedUsernames.count({ username: ps.username.toLowerCase() });
|
|
|
|
return {
|
|
available: exist === 0 && exist2 === 0,
|
|
};
|
|
});
|