iceshrimp-legacy/packages/backend/src/server/api/endpoints/username/available.ts
ThatOneCalculator 7c2dabd047
no more eslint
2023-01-12 20:54:33 -08:00

48 lines
851 B
TypeScript

import { IsNull } from "typeorm";
import { Users, UsedUsernames } from "@/models/index.js";
import define from "../../define.js";
export const meta = {
tags: ["users"],
requireCredential: false,
res: {
type: "object",
optional: false,
nullable: false,
properties: {
available: {
type: "boolean",
optional: false,
nullable: false,
},
},
},
} as const;
export const paramDef = {
type: "object",
properties: {
username: Users.localUsernameSchema,
},
required: ["username"],
} as const;
export default define(meta, paramDef, async (ps) => {
// Get exist
const exist = await Users.countBy({
host: IsNull(),
usernameLower: ps.username.toLowerCase(),
});
const exist2 = await UsedUsernames.countBy({
username: ps.username.toLowerCase(),
});
return {
available: exist === 0 && exist2 === 0,
};
});