2017-03-08 12:50:09 -06:00
|
|
|
import $ from 'cafy';
|
2021-08-19 07:55:45 -05:00
|
|
|
import define from '../../define';
|
|
|
|
import { Users, UsedUsernames } from '@/models/index';
|
2018-11-01 22:49:08 -05:00
|
|
|
|
|
|
|
export const meta = {
|
2019-02-22 20:20:58 -06:00
|
|
|
tags: ['users'],
|
|
|
|
|
2020-02-15 06:33:32 -06:00
|
|
|
requireCredential: false as const,
|
2018-11-01 22:49:08 -05:00
|
|
|
|
|
|
|
params: {
|
|
|
|
username: {
|
2021-12-09 08:58:30 -06:00
|
|
|
validator: $.use(Users.validateLocalUsername),
|
|
|
|
},
|
2021-03-06 07:34:11 -06:00
|
|
|
},
|
|
|
|
|
|
|
|
res: {
|
|
|
|
type: 'object' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
|
|
|
properties: {
|
|
|
|
available: {
|
|
|
|
type: 'boolean' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2021-12-09 08:58:30 -06:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2018-11-01 22:49:08 -05:00
|
|
|
};
|
2016-12-28 16:49:51 -06:00
|
|
|
|
2022-01-02 11:12:50 -06:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2019-02-21 20:46:58 -06:00
|
|
|
export default define(meta, async (ps) => {
|
2016-12-28 16:49:51 -06:00
|
|
|
// Get exist
|
2019-04-07 07:50:36 -05:00
|
|
|
const exist = await Users.count({
|
2019-02-21 20:46:58 -06:00
|
|
|
host: null,
|
2021-12-09 08:58:30 -06:00
|
|
|
usernameLower: ps.username.toLowerCase(),
|
2019-02-21 20:46:58 -06:00
|
|
|
});
|
2016-12-28 16:49:51 -06:00
|
|
|
|
2019-07-21 20:15:00 -05:00
|
|
|
const exist2 = await UsedUsernames.count({ username: ps.username.toLowerCase() });
|
|
|
|
|
2019-02-21 20:46:58 -06:00
|
|
|
return {
|
2021-12-09 08:58:30 -06:00
|
|
|
available: exist === 0 && exist2 === 0,
|
2019-02-21 20:46:58 -06:00
|
|
|
};
|
|
|
|
});
|