2017-03-09 03:50:09 +09:00
|
|
|
import $ from 'cafy';
|
2021-08-19 21:55:45 +09:00
|
|
|
import define from '../../define';
|
|
|
|
import { Users, UsedUsernames } from '@/models/index';
|
2018-11-02 12:49:08 +09:00
|
|
|
|
|
|
|
export const meta = {
|
2019-02-23 11:20:58 +09:00
|
|
|
tags: ['users'],
|
|
|
|
|
2020-02-15 21:33:32 +09:00
|
|
|
requireCredential: false as const,
|
2018-11-02 12:49:08 +09:00
|
|
|
|
|
|
|
params: {
|
|
|
|
username: {
|
2021-12-09 23:58:30 +09:00
|
|
|
validator: $.use(Users.validateLocalUsername),
|
|
|
|
},
|
2021-03-06 22:34:11 +09: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 23:58:30 +09:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2018-11-02 12:49:08 +09:00
|
|
|
};
|
2016-12-29 07:49:51 +09:00
|
|
|
|
2019-02-22 11:46:58 +09:00
|
|
|
export default define(meta, async (ps) => {
|
2016-12-29 07:49:51 +09:00
|
|
|
// Get exist
|
2019-04-07 21:50:36 +09:00
|
|
|
const exist = await Users.count({
|
2019-02-22 11:46:58 +09:00
|
|
|
host: null,
|
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
|
|
|
|
2019-07-22 10:15:00 +09:00
|
|
|
const exist2 = await UsedUsernames.count({ username: ps.username.toLowerCase() });
|
|
|
|
|
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
|
|
|
};
|
|
|
|
});
|