2022-09-17 20:27:08 +02:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
|
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
|
|
|
import { EmailService } from '@/core/EmailService.js';
|
2021-10-08 06:37:02 +02:00
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
tags: ['users'],
|
|
|
|
|
2022-01-18 14:27:10 +01:00
|
|
|
requireCredential: false,
|
2021-10-08 06:37:02 +02:00
|
|
|
|
|
|
|
res: {
|
2022-01-18 14:27:10 +01:00
|
|
|
type: 'object',
|
|
|
|
optional: false, nullable: false,
|
2021-10-08 06:37:02 +02:00
|
|
|
properties: {
|
|
|
|
available: {
|
2022-01-18 14:27:10 +01:00
|
|
|
type: 'boolean',
|
|
|
|
optional: false, nullable: false,
|
2021-11-07 12:16:01 +01:00
|
|
|
},
|
|
|
|
reason: {
|
2022-01-18 14:27:10 +01:00
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: true,
|
2021-11-07 12:16:01 +01:00
|
|
|
},
|
2021-12-09 15:58:30 +01:00
|
|
|
},
|
|
|
|
},
|
2022-01-18 14:27:10 +01:00
|
|
|
} as const;
|
2021-10-08 06:37:02 +02:00
|
|
|
|
2022-02-20 05:15:40 +01:00
|
|
|
export const paramDef = {
|
2022-02-19 06:05:32 +01:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
emailAddress: { type: 'string' },
|
|
|
|
},
|
|
|
|
required: ['emailAddress'],
|
|
|
|
} as const;
|
|
|
|
|
2022-01-02 18:12:50 +01:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-09-17 20:27:08 +02:00
|
|
|
@Injectable()
|
|
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> {
|
|
|
|
constructor(
|
|
|
|
private emailService: EmailService,
|
|
|
|
) {
|
|
|
|
super(meta, paramDef, async (ps, me) => {
|
|
|
|
return await this.emailService.validateEmailForAccount(ps.emailAddress);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|