feat: telegram use the random domain when not set (#704)

This commit is contained in:
Dream Hunter
2025-08-08 13:07:00 +08:00
committed by GitHub
parent bfd66f5019
commit 9843b35f54
10 changed files with 1265 additions and 1276 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "cloudflare_temp_email",
"version": "1.0.2",
"version": "1.0.3",
"private": true,
"type": "module",
"scripts": {
@@ -11,26 +11,26 @@
"build": "wrangler deploy --dry-run --outdir dist --minify"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20250726.0",
"@cloudflare/workers-types": "^4.20250807.0",
"@eslint/js": "9.18.0",
"@simplewebauthn/types": "10.0.0",
"@types/node": "^22.16.5",
"@types/node": "^22.17.0",
"eslint": "9.18.0",
"globals": "^15.15.0",
"typescript-eslint": "^8.38.0",
"wrangler": "^4.26.0"
"typescript-eslint": "^8.39.0",
"wrangler": "^4.28.1"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.850.0",
"@aws-sdk/s3-request-presigner": "^3.850.0",
"@aws-sdk/client-s3": "^3.863.0",
"@aws-sdk/s3-request-presigner": "^3.863.0",
"@simplewebauthn/server": "10.0.1",
"hono": "^4.8.9",
"hono": "^4.9.0",
"jsonpath-plus": "^10.3.0",
"mimetext": "^3.0.27",
"postal-mime": "^2.4.4",
"resend": "^4.7.0",
"resend": "^4.8.0",
"telegraf": "4.16.3",
"worker-mailer": "^1.1.4"
"worker-mailer": "^1.1.5"
},
"pnpm": {
"patchedDependencies": {

1443
worker/pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@@ -108,9 +108,9 @@ export const newAddress = async (
}
// check domain
const allowDomains = checkAllowDomains ? await getAllowDomains(c) : getDomains(c);
// if domain is not set, use the first domain
// if domain is not set, use the random domain
if (!domain && allowDomains.length > 0) {
domain = allowDomains[0];
domain = allowDomains[Math.floor(Math.random() * allowDomains.length)];
}
// check domain is valid
if (!domain || !allowDomains.includes(domain)) {

View File

@@ -1,5 +1,5 @@
export const CONSTANTS = {
VERSION: 'v' + '1.0.2',
VERSION: 'v' + '1.0.3',
// DB Version
DB_VERSION_KEY: 'db_version',