978a9bbb3b
* Implement? HttpFetchService
* ✌️
* remove node-fetch
* fix
* refactor
* fix
* gateway timeout
* UndiciFetcherクラスを追加 (仮コミット, ビルドもstartもさせていない)
* fix
* add logger and fix url preview
* fix ip check
* enhance logger and error handling
* fix
* fix
* clean up
* Use custom fetcher for ApRequest / ApResolver
* bypassProxyはproxyBypassHostsに判断を委譲するように
* set maxRedirections (default 3, ApRequest/ApResolver: 0)
* fix comment
* handle error s3 upload
* add debug message
* no return await
* Revert "no return await"
This reverts commit b5b0dc58a342393d260492e3a6f58304372f53b2.
* reduce maxSockets
* apResolverのUndiciFetcherを廃止しapRequestのものを使う、 add ap logger
* Revert "apResolverのUndiciFetcherを廃止しapRequestのものを使う、 add ap logger"
This reverts commit 997243915c8e1f8472da64f607f88c36cb1d5cb4.
* add logger
* fix
* change logger name
* safe
* デフォルトでUser-Agentを設定
92 lines
2.4 KiB
TypeScript
92 lines
2.4 KiB
TypeScript
import { Injectable } from '@nestjs/common';
|
|
import { HttpRequestService } from '@/core/HttpRequestService.js';
|
|
import { bindThis } from '@/decorators.js';
|
|
|
|
type CaptchaResponse = {
|
|
success: boolean;
|
|
'error-codes'?: string[];
|
|
};
|
|
|
|
@Injectable()
|
|
export class CaptchaService {
|
|
constructor(
|
|
private httpRequestService: HttpRequestService,
|
|
) {
|
|
}
|
|
|
|
@bindThis
|
|
private async getCaptchaResponse(url: string, secret: string, response: string): Promise<CaptchaResponse> {
|
|
const params = new URLSearchParams({
|
|
secret,
|
|
response,
|
|
});
|
|
|
|
const res = await this.httpRequestService.fetch(
|
|
url,
|
|
{
|
|
method: 'POST',
|
|
body: params,
|
|
},
|
|
{
|
|
noOkError: true,
|
|
}
|
|
).catch(err => {
|
|
throw `${err.message ?? err}`;
|
|
});
|
|
|
|
if (!res.ok) {
|
|
throw `${res.status}`;
|
|
}
|
|
|
|
return await res.json() as CaptchaResponse;
|
|
}
|
|
|
|
@bindThis
|
|
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}`;
|
|
});
|
|
|
|
if (result.success !== true) {
|
|
const errorCodes = result['error-codes'] ? result['error-codes'].join(', ') : '';
|
|
throw `recaptcha-failed: ${errorCodes}`;
|
|
}
|
|
}
|
|
|
|
@bindThis
|
|
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}`;
|
|
});
|
|
|
|
if (result.success !== true) {
|
|
const errorCodes = result['error-codes'] ? result['error-codes'].join(', ') : '';
|
|
throw `hcaptcha-failed: ${errorCodes}`;
|
|
}
|
|
}
|
|
|
|
@bindThis
|
|
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}`;
|
|
});
|
|
|
|
if (result.success !== true) {
|
|
const errorCodes = result['error-codes'] ? result['error-codes'].join(', ') : '';
|
|
throw `turnstile-failed: ${errorCodes}`;
|
|
}
|
|
}
|
|
}
|
|
|