2023-01-12 12:03:02 +00:00
|
|
|
import { Injectable } from '@nestjs/common';
|
2022-12-04 01:16:03 +00:00
|
|
|
import { HttpRequestService } from '@/core/HttpRequestService.js';
|
2022-12-04 06:03:09 +00:00
|
|
|
import { bindThis } from '@/decorators.js';
|
2022-09-17 18:27:08 +00:00
|
|
|
|
|
|
|
type CaptchaResponse = {
|
|
|
|
success: boolean;
|
|
|
|
'error-codes'?: string[];
|
|
|
|
};
|
|
|
|
|
|
|
|
@Injectable()
|
|
|
|
export class CaptchaService {
|
|
|
|
constructor(
|
|
|
|
private httpRequestService: HttpRequestService,
|
|
|
|
) {
|
|
|
|
}
|
|
|
|
|
2022-12-04 06:03:09 +00:00
|
|
|
@bindThis
|
2022-09-18 18:11:50 +00:00
|
|
|
private async getCaptchaResponse(url: string, secret: string, response: string): Promise<CaptchaResponse> {
|
2022-09-17 18:27:08 +00:00
|
|
|
const params = new URLSearchParams({
|
|
|
|
secret,
|
|
|
|
response,
|
|
|
|
});
|
|
|
|
|
2023-01-25 03:00:04 +00:00
|
|
|
const res = await this.httpRequestService.send(url, {
|
|
|
|
method: 'POST',
|
2023-01-26 02:31:43 +00:00
|
|
|
body: params.toString(),
|
2023-01-25 03:00:04 +00:00
|
|
|
headers: {
|
2023-01-26 02:31:43 +00:00
|
|
|
'Content-Type': 'application/x-www-form-urlencoded',
|
2022-09-17 18:27:08 +00:00
|
|
|
},
|
2023-01-25 03:00:04 +00:00
|
|
|
}, { throwErrorWhenResponseNotOk: false });
|
2022-09-17 18:27:08 +00:00
|
|
|
|
|
|
|
if (!res.ok) {
|
|
|
|
throw `${res.status}`;
|
|
|
|
}
|
|
|
|
|
|
|
|
return await res.json() as CaptchaResponse;
|
|
|
|
}
|
|
|
|
|
2022-12-04 06:03:09 +00:00
|
|
|
@bindThis
|
2022-12-03 10:42:05 +00:00
|
|
|
public async verifyRecaptcha(secret: string, response: string | null | undefined): Promise<void> {
|
|
|
|
if (response == null) {
|
|
|
|
throw 'recaptcha-failed: no response provided';
|
|
|
|
}
|
|
|
|
|
|
|
|
const result = await this.getCaptchaResponse('https://www.recaptcha.net/recaptcha/api/siteverify', secret, response).catch(err => {
|
|
|
|
throw `recaptcha-request-failed: ${err}`;
|
2022-09-17 18:27:08 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
if (result.success !== true) {
|
|
|
|
const errorCodes = result['error-codes'] ? result['error-codes'].join(', ') : '';
|
|
|
|
throw `recaptcha-failed: ${errorCodes}`;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-12-04 06:03:09 +00:00
|
|
|
@bindThis
|
2022-12-03 10:42:05 +00:00
|
|
|
public async verifyHcaptcha(secret: string, response: string | null | undefined): Promise<void> {
|
|
|
|
if (response == null) {
|
|
|
|
throw 'hcaptcha-failed: no response provided';
|
|
|
|
}
|
|
|
|
|
|
|
|
const result = await this.getCaptchaResponse('https://hcaptcha.com/siteverify', secret, response).catch(err => {
|
|
|
|
throw `hcaptcha-request-failed: ${err}`;
|
2022-09-17 18:27:08 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
if (result.success !== true) {
|
|
|
|
const errorCodes = result['error-codes'] ? result['error-codes'].join(', ') : '';
|
|
|
|
throw `hcaptcha-failed: ${errorCodes}`;
|
|
|
|
}
|
|
|
|
}
|
2022-10-13 00:19:57 +00:00
|
|
|
|
2022-12-04 06:03:09 +00:00
|
|
|
@bindThis
|
2022-12-03 10:42:05 +00:00
|
|
|
public async verifyTurnstile(secret: string, response: string | null | undefined): Promise<void> {
|
|
|
|
if (response == null) {
|
|
|
|
throw 'turnstile-failed: no response provided';
|
|
|
|
}
|
|
|
|
|
|
|
|
const result = await this.getCaptchaResponse('https://challenges.cloudflare.com/turnstile/v0/siteverify', secret, response).catch(err => {
|
|
|
|
throw `turnstile-request-failed: ${err}`;
|
2022-10-13 00:19:57 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
if (result.success !== true) {
|
|
|
|
const errorCodes = result['error-codes'] ? result['error-codes'].join(', ') : '';
|
|
|
|
throw `turnstile-failed: ${errorCodes}`;
|
|
|
|
}
|
|
|
|
}
|
2022-09-17 18:27:08 +00:00
|
|
|
}
|
|
|
|
|