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