mirror of
https://github.com/MisskeyIO/misskey
synced 2025-01-10 03:43:43 +09:00
58 lines
1.4 KiB
TypeScript
58 lines
1.4 KiB
TypeScript
import { IsNull } from 'typeorm';
|
|
import { Inject, Injectable } from '@nestjs/common';
|
|
import type { UsedUsernamesRepository, UsersRepository } from '@/models/index.js';
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
|
import { localUsernameSchema } from '@/models/entities/User.js';
|
|
import { DI } from '@/di-symbols.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: localUsernameSchema,
|
|
},
|
|
required: ['username'],
|
|
} as const;
|
|
|
|
// eslint-disable-next-line import/no-default-export
|
|
@Injectable()
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> {
|
|
constructor(
|
|
@Inject(DI.usersRepository)
|
|
private usersRepository: UsersRepository,
|
|
|
|
@Inject(DI.usedUsernamesRepository)
|
|
private usedUsernamesRepository: UsedUsernamesRepository,
|
|
) {
|
|
super(meta, paramDef, async (ps, me) => {
|
|
// Get exist
|
|
const exist = await this.usersRepository.countBy({
|
|
host: IsNull(),
|
|
usernameLower: ps.username.toLowerCase(),
|
|
});
|
|
|
|
const exist2 = await this.usedUsernamesRepository.countBy({ username: ps.username.toLowerCase() });
|
|
|
|
return {
|
|
available: exist === 0 && exist2 === 0,
|
|
};
|
|
});
|
|
}
|
|
}
|