2022-03-26 01:34:00 -05:00
|
|
|
import { IsNull } from 'typeorm';
|
2022-09-17 13:27:08 -05:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
2022-09-20 15:33:11 -05:00
|
|
|
import type { UsedUsernamesRepository, UsersRepository } from '@/models/index.js';
|
2022-09-17 13:27:08 -05:00
|
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
|
|
|
import { localUsernameSchema } from '@/models/entities/User.js';
|
|
|
|
import { DI } from '@/di-symbols.js';
|
2018-11-01 22:49:08 -05:00
|
|
|
|
|
|
|
export const meta = {
|
2019-02-22 20:20:58 -06:00
|
|
|
tags: ['users'],
|
|
|
|
|
2022-01-18 07:27:10 -06:00
|
|
|
requireCredential: false,
|
2018-11-01 22:49:08 -05:00
|
|
|
|
2021-03-06 07:34:11 -06:00
|
|
|
res: {
|
2022-01-18 07:27:10 -06:00
|
|
|
type: 'object',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 07:34:11 -06:00
|
|
|
properties: {
|
|
|
|
available: {
|
2022-01-18 07:27:10 -06:00
|
|
|
type: 'boolean',
|
|
|
|
optional: false, nullable: false,
|
2021-12-09 08:58:30 -06:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2022-01-18 07:27:10 -06:00
|
|
|
} as const;
|
2016-12-28 16:49:51 -06:00
|
|
|
|
2022-02-19 22:15:40 -06:00
|
|
|
export const paramDef = {
|
2022-02-18 23:05:32 -06:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
2022-09-17 13:27:08 -05:00
|
|
|
username: localUsernameSchema,
|
2022-02-18 23:05:32 -06:00
|
|
|
},
|
|
|
|
required: ['username'],
|
|
|
|
} as const;
|
|
|
|
|
2022-01-02 11:12:50 -06:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-09-17 13:27:08 -05:00
|
|
|
@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,
|
|
|
|
};
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|