Skip to content

Commit

Permalink
🧐 Update add users to brevo list script
Browse files Browse the repository at this point in the history
  • Loading branch information
baptisteArno committed Feb 6, 2024
1 parent 272adc0 commit 9a36281
Show file tree
Hide file tree
Showing 3 changed files with 71 additions and 66 deletions.
65 changes: 0 additions & 65 deletions packages/scripts/importContactToBrevo.ts

This file was deleted.

70 changes: 70 additions & 0 deletions packages/scripts/insertUsersInBrevoList.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
import { PrismaClient } from '@typebot.io/prisma'
import { promptAndSetEnvironment } from './utils'
import got, { HTTPError } from 'got'
import { confirm, text, isCancel } from '@clack/prompts'
import { writeFileSync } from 'fs'

const insertUsersInBrevoList = async () => {
await promptAndSetEnvironment('production')

const listId = await text({
message: 'List ID?',
})
if (!listId || isCancel(listId) || isNaN(listId as unknown as number))
process.exit()

const prisma = new PrismaClient()

const threeMonthsAgo = new Date()
threeMonthsAgo.setMonth(threeMonthsAgo.getMonth() - 3)

const oneMonthAgo = new Date()
oneMonthAgo.setMonth(oneMonthAgo.getMonth() - 1)

const users = await prisma.user.findMany({
where: {
lastActivityAt: {
gte: threeMonthsAgo,
},
createdAt: {
lt: oneMonthAgo,
},
},
select: {
email: true,
},
})

console.log('Inserting users', users.length)

writeFileSync('logs/users.json', JSON.stringify(users, null, 2))

const proceed = await confirm({ message: 'Proceed?' })
if (!proceed || typeof proceed !== 'boolean') {
console.log('Aborting')
return
}

try {
await got.post('https://api.brevo.com/v3/contacts/import', {
headers: {
'api-key': process.env.BREVO_API_KEY,
},
json: {
listIds: [Number(listId)],
updateExistingContacts: true,
jsonBody: users.map((email) => ({
email,
})),
},
})
} catch (err) {
if (err instanceof HTTPError) {
console.log(err.response.body)
return
}
console.log(err)
}
}

insertUsersInBrevoList()
2 changes: 1 addition & 1 deletion packages/scripts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"checkSubscriptionsStatus": "tsx checkSubscriptionsStatus.ts",
"createChatsPrices": "tsx createChatsPrices.ts",
"migrateSubscriptionsToUsageBased": "tsx migrateSubscriptionsToUsageBased.ts",
"importContactToBrevo": "tsx importContactToBrevo.ts",
"insertUsersInBrevoList": "tsx insertUsersInBrevoList.ts",
"getUsage": "tsx getUsage.ts",
"suspendWorkspace": "tsx suspendWorkspace.ts",
"destroyUser": "tsx destroyUser.ts",
Expand Down

0 comments on commit 9a36281

Please sign in to comment.