rudeshark.net/src/server/api/endpoints/username/available.ts

34 lines
635 B
TypeScript
Raw Normal View History

2017-03-08 19:50:09 +01:00
import $ from 'cafy';
2018-03-29 13:32:18 +02:00
import User from '../../../../models/user';
import { validateUsername } from '../../../../models/user';
2018-11-02 04:49:08 +01:00
import getParams from '../../get-params';
export const meta = {
requireCredential: false,
params: {
username: {
validator: $.str.pipe(validateUsername)
}
}
};
2016-12-28 23:49:51 +01:00
2018-07-05 19:58:29 +02:00
export default async (params: any) => new Promise(async (res, rej) => {
2018-11-02 04:49:08 +01:00
const [ps, psErr] = getParams(meta, params);
if (psErr) return rej(psErr);
2016-12-28 23:49:51 +01:00
// Get exist
const exist = await User
.count({
2018-03-27 09:51:12 +02:00
host: null,
2018-11-02 04:49:08 +01:00
usernameLower: ps.username.toLowerCase()
2016-12-28 23:49:51 +01:00
}, {
limit: 1
});
// Reply
res({
available: exist === 0
});
});