2022-02-27 11:07:39 +09:00
|
|
|
import define from '../../define.js';
|
|
|
|
|
import { Users, UsedUsernames } from '@/models/index.js';
|
2022-03-26 15:34:00 +09:00
|
|
|
import { IsNull } from 'typeorm';
|
2018-11-02 12:49:08 +09:00
|
|
|
|
|
|
|
|
export const meta = {
|
2019-02-23 11:20:58 +09:00
|
|
|
tags: ['users'],
|
|
|
|
|
|
2022-01-18 22:27:10 +09:00
|
|
|
requireCredential: false,
|
2018-11-02 12:49:08 +09:00
|
|
|
|
2021-03-06 22:34:11 +09:00
|
|
|
res: {
|
2022-01-18 22:27:10 +09:00
|
|
|
type: 'object',
|
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 22:34:11 +09:00
|
|
|
properties: {
|
|
|
|
|
available: {
|
2022-01-18 22:27:10 +09:00
|
|
|
type: 'boolean',
|
|
|
|
|
optional: false, nullable: false,
|
2021-12-09 23:58:30 +09:00
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
2022-01-18 22:27:10 +09:00
|
|
|
} as const;
|
2016-12-29 07:49:51 +09:00
|
|
|
|
2022-02-20 13:15:40 +09:00
|
|
|
export const paramDef = {
|
2022-02-19 14:05:32 +09:00
|
|
|
type: 'object',
|
|
|
|
|
properties: {
|
|
|
|
|
username: Users.localUsernameSchema,
|
|
|
|
|
},
|
|
|
|
|
required: ['username'],
|
|
|
|
|
} as const;
|
|
|
|
|
|
2022-01-03 02:12:50 +09:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-02-19 14:05:32 +09:00
|
|
|
export default define(meta, paramDef, async (ps) => {
|
2016-12-29 07:49:51 +09:00
|
|
|
// Get exist
|
2022-03-26 15:34:00 +09:00
|
|
|
const exist = await Users.countBy({
|
|
|
|
|
host: IsNull(),
|
2021-12-09 23:58:30 +09:00
|
|
|
usernameLower: ps.username.toLowerCase(),
|
2019-02-22 11:46:58 +09:00
|
|
|
});
|
2016-12-29 07:49:51 +09:00
|
|
|
|
2022-03-26 15:34:00 +09:00
|
|
|
const exist2 = await UsedUsernames.countBy({ username: ps.username.toLowerCase() });
|
2019-07-22 10:15:00 +09:00
|
|
|
|
2019-02-22 11:46:58 +09:00
|
|
|
return {
|
2021-12-09 23:58:30 +09:00
|
|
|
available: exist === 0 && exist2 === 0,
|
2019-02-22 11:46:58 +09:00
|
|
|
};
|
|
|
|
|
});
|