summaryrefslogtreecommitdiffhomepage
path: root/packages/console/core/script/black-select-workspaces.ts
blob: 0772bd21298fd4ef1510e076da6fea0da77bc3a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
import { Database, eq, and, sql, inArray, isNull } from "../src/drizzle/index.js"
import { BillingTable, BlackPlans } from "../src/schema/billing.sql.js"
import { UserTable } from "../src/schema/user.sql.js"
import { AuthTable } from "../src/schema/auth.sql.js"

const plan = process.argv[2] as (typeof BlackPlans)[number]
if (!BlackPlans.includes(plan)) {
  console.error("Usage: bun foo.ts <count>")
  process.exit(1)
}

const workspaces = await Database.use((tx) =>
  tx
    .select({ workspaceID: BillingTable.workspaceID })
    .from(BillingTable)
    .where(and(eq(BillingTable.subscriptionPlan, plan), isNull(BillingTable.timeSubscriptionSelected)))
    .orderBy(sql`RAND()`)
    .limit(100),
)

console.log(`Found ${workspaces.length} workspaces on Black ${plan} waitlist`)

console.log("== Workspace IDs ==")
const ids = workspaces.map((w) => w.workspaceID)
for (const id of ids) {
  console.log(id)
}

console.log("\n== User Emails ==")
const emails = await Database.use((tx) =>
  tx
    .select({ email: AuthTable.subject })
    .from(UserTable)
    .innerJoin(AuthTable, and(eq(UserTable.accountID, AuthTable.accountID), eq(AuthTable.provider, "email")))
    .where(inArray(UserTable.workspaceID, ids)),
)

const unique = new Set(emails.map((row) => row.email))
for (const email of unique) {
  console.log(email)
}