blob: 89f14d3dc29b6b1ad0b00c75bbd3f222ed28c321 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
import $ from 'cafy';
import define from '../../define';
import { Users, UsedUsernames } from '../../../../models';
export const meta = {
tags: ['users'],
requireCredential: false as const,
params: {
username: {
validator: $.use(Users.validateLocalUsername)
}
}
};
export default define(meta, 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
};
});
|