2
0

🛂 (whatsapp) Disallow test numbers as they are not unique

This commit is contained in:
Baptiste Arnaud
2023-09-01 16:51:18 +02:00
parent 27a5f4eb74
commit 60abddd86e

View File

@@ -5,7 +5,7 @@ import prisma from '@/lib/prisma'
import { decrypt } from '@typebot.io/lib/api' import { decrypt } from '@typebot.io/lib/api'
import { TRPCError } from '@trpc/server' import { TRPCError } from '@trpc/server'
import { WhatsAppCredentials } from '@typebot.io/schemas/features/whatsapp' import { WhatsAppCredentials } from '@typebot.io/schemas/features/whatsapp'
import { formatNumber } from 'libphonenumber-js' import { parsePhoneNumber } from 'libphonenumber-js'
const inputSchema = z.object({ const inputSchema = z.object({
credentialsId: z.string().optional(), credentialsId: z.string().optional(),
@@ -46,12 +46,18 @@ export const getPhoneNumber = authenticatedProcedure
display_phone_number: string display_phone_number: string
} }
const parsedPhoneNumber = parsePhoneNumber(display_phone_number)
if (!parsedPhoneNumber.isValid())
throw new TRPCError({
code: 'BAD_REQUEST',
message:
"Phone number is not valid. Make sure you don't provide a WhatsApp test number.",
})
return { return {
id: credentials.phoneNumberId, id: credentials.phoneNumberId,
name: formatNumber(display_phone_number, 'INTERNATIONAL').replace( name: parsedPhoneNumber.formatInternational().replace(/\s/g, ''),
/\s/g,
''
),
} }
}) })