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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
|
// Thanks to @t3dotgg for the recommendations (https://github.com/t3dotgg/stripe-recommendations)!
import { TRPCError } from "@trpc/server";
import { count, eq, sum } from "drizzle-orm";
import Stripe from "stripe";
import { z } from "zod";
import { assets, bookmarks, subscriptions, users } from "@karakeep/db/schema";
import serverConfig from "@karakeep/shared/config";
import { authedProcedure, Context, publicProcedure, router } from "../index";
const stripe = serverConfig.stripe.secretKey
? new Stripe(serverConfig.stripe.secretKey, {
apiVersion: "2025-06-30.basil",
})
: null;
function requireStripeConfig() {
if (!stripe || !serverConfig.stripe.priceId) {
throw new TRPCError({
code: "PRECONDITION_FAILED",
message: "Stripe is not configured. Please contact your administrator.",
});
}
return { stripe, priceId: serverConfig.stripe.priceId };
}
// Taken from https://github.com/t3dotgg/stripe-recommendations
const allowedEvents: Stripe.Event.Type[] = [
"checkout.session.completed",
"customer.subscription.created",
"customer.subscription.updated",
"customer.subscription.deleted",
"customer.subscription.paused",
"customer.subscription.resumed",
"customer.subscription.pending_update_applied",
"customer.subscription.pending_update_expired",
"customer.subscription.trial_will_end",
"invoice.paid",
"invoice.payment_failed",
"invoice.payment_action_required",
"invoice.upcoming",
"invoice.marked_uncollectible",
"invoice.payment_succeeded",
"payment_intent.succeeded",
"payment_intent.payment_failed",
"payment_intent.canceled",
];
async function syncStripeDataToDatabase(customerId: string, db: Context["db"]) {
if (!stripe) {
throw new Error("Stripe is not configured");
}
const existingSubscription = await db.query.subscriptions.findFirst({
where: eq(subscriptions.stripeCustomerId, customerId),
});
if (!existingSubscription) {
console.error(
`ERROR: No subscription found for customer with this ID ${customerId}`,
);
throw new TRPCError({
code: "INTERNAL_SERVER_ERROR",
message: "No subscription found for customer with this ID",
});
}
try {
const subscriptionsList = await stripe.subscriptions.list({
customer: customerId,
limit: 1,
status: "all",
});
if (subscriptionsList.data.length === 0) {
await db.transaction(async (trx) => {
await trx
.update(subscriptions)
.set({
status: "canceled",
tier: "free",
stripeSubscriptionId: null,
priceId: null,
cancelAtPeriodEnd: false,
startDate: null,
endDate: null,
})
.where(eq(subscriptions.stripeCustomerId, customerId));
// Update user quotas to free tier limits and disable browser crawling
await trx
.update(users)
.set({
bookmarkQuota: serverConfig.quotas.free.bookmarkLimit,
storageQuota: serverConfig.quotas.free.assetSizeBytes,
browserCrawlingEnabled:
serverConfig.quotas.free.browserCrawlingEnabled,
})
.where(eq(users.id, existingSubscription.userId));
});
return;
}
const subscription = subscriptionsList.data[0];
const subscriptionItem = subscription.items.data[0];
const subData = {
stripeSubscriptionId: subscription.id,
status: subscription.status,
tier:
subscription.status === "active" || subscription.status === "trialing"
? ("paid" as const)
: ("free" as const),
priceId: subscription.items.data[0]?.price.id || null,
cancelAtPeriodEnd: subscription.cancel_at_period_end,
startDate: subscriptionItem.current_period_start
? new Date(subscriptionItem.current_period_start * 1000)
: null,
endDate: subscriptionItem.current_period_end
? new Date(subscriptionItem.current_period_end * 1000)
: null,
};
await db.transaction(async (trx) => {
await trx
.update(subscriptions)
.set(subData)
.where(eq(subscriptions.stripeCustomerId, customerId));
if (subData.status === "active" || subData.status === "trialing") {
// Enable paid tier quotas and browser crawling
await trx
.update(users)
.set({
bookmarkQuota: serverConfig.quotas.paid.bookmarkLimit,
storageQuota: serverConfig.quotas.paid.assetSizeBytes,
browserCrawlingEnabled:
serverConfig.quotas.paid.browserCrawlingEnabled,
})
.where(eq(users.id, existingSubscription.userId));
} else {
// Set free tier quotas and disable browser crawling
await trx
.update(users)
.set({
bookmarkQuota: serverConfig.quotas.free.bookmarkLimit,
storageQuota: serverConfig.quotas.free.assetSizeBytes,
browserCrawlingEnabled:
serverConfig.quotas.free.browserCrawlingEnabled,
})
.where(eq(users.id, existingSubscription.userId));
}
});
return subData;
} catch (error) {
console.error("Error syncing Stripe data:", error);
throw error;
}
}
async function processEvent(event: Stripe.Event, db: Context["db"]) {
if (!allowedEvents.includes(event.type)) {
return;
}
const { customer: customerId } = event.data.object as {
customer: string;
};
if (typeof customerId !== "string") {
throw new Error(
`[STRIPE HOOK] Customer ID isn't string. Event type: ${event.type}`,
);
}
return await syncStripeDataToDatabase(customerId, db);
}
export const subscriptionsRouter = router({
getSubscriptionStatus: authedProcedure.query(async ({ ctx }) => {
const subscription = await ctx.db.query.subscriptions.findFirst({
where: eq(subscriptions.userId, ctx.user.id),
});
if (!subscription) {
return {
tier: "free" as const,
status: null,
startDate: null,
endDate: null,
hasActiveSubscription: false,
cancelAtPeriodEnd: false,
};
}
return {
tier: subscription.tier,
status: subscription.status,
startDate: subscription.startDate,
endDate: subscription.endDate,
hasActiveSubscription:
subscription.status === "active" || subscription.status === "trialing",
cancelAtPeriodEnd: subscription.cancelAtPeriodEnd || false,
};
}),
getSubscriptionPrice: authedProcedure.query(async () => {
if (!stripe) {
throw new TRPCError({
code: "PRECONDITION_FAILED",
message: "Stripe is not configured. Please contact your administrator.",
});
}
const { priceId } = requireStripeConfig();
const price = await stripe.prices.retrieve(priceId);
return {
priceId: price.id,
currency: price.currency,
amount: price.unit_amount,
};
}),
createCheckoutSession: authedProcedure.mutation(async ({ ctx }) => {
const { stripe, priceId } = requireStripeConfig();
const user = await ctx.db.query.users.findFirst({
where: eq(users.id, ctx.user.id),
columns: {
email: true,
},
with: {
subscription: true,
},
});
if (!user) {
throw new TRPCError({
code: "NOT_FOUND",
message: "User not found",
});
}
const existingSubscription = user.subscription;
if (existingSubscription?.status === "active") {
throw new TRPCError({
code: "BAD_REQUEST",
message: "User already has an active subscription",
});
}
let customerId = existingSubscription?.stripeCustomerId;
if (!customerId) {
const customer = await stripe.customers.create({
email: user.email,
metadata: {
userId: ctx.user.id,
},
});
customerId = customer.id;
if (!existingSubscription) {
await ctx.db.insert(subscriptions).values({
userId: ctx.user.id,
stripeCustomerId: customerId,
status: "unpaid",
});
} else {
await ctx.db
.update(subscriptions)
.set({ stripeCustomerId: customerId })
.where(eq(subscriptions.userId, ctx.user.id));
}
}
const session = await stripe.checkout.sessions.create({
customer: customerId,
payment_method_types: ["card"],
line_items: [
{
price: priceId,
quantity: 1,
},
],
mode: "subscription",
success_url: `${serverConfig.publicUrl}/settings/subscription?success=true`,
cancel_url: `${serverConfig.publicUrl}/settings/subscription?canceled=true`,
metadata: {
userId: ctx.user.id,
},
automatic_tax: {
enabled: true,
},
customer_update: {
address: "auto",
},
allow_promotion_codes: true,
});
return {
sessionId: session.id,
url: session.url,
};
}),
syncWithStripe: authedProcedure.mutation(async ({ ctx }) => {
const subscription = await ctx.db.query.subscriptions.findFirst({
where: eq(subscriptions.userId, ctx.user.id),
});
if (!subscription?.stripeCustomerId) {
// No Stripe customer found for user
return { success: true };
}
await syncStripeDataToDatabase(subscription.stripeCustomerId, ctx.db);
return { success: true };
}),
createPortalSession: authedProcedure.mutation(async ({ ctx }) => {
const { stripe } = requireStripeConfig();
const subscription = await ctx.db.query.subscriptions.findFirst({
where: eq(subscriptions.userId, ctx.user.id),
});
if (!subscription?.stripeCustomerId) {
throw new TRPCError({
code: "BAD_REQUEST",
message: "No Stripe customer found",
});
}
const session = await stripe.billingPortal.sessions.create({
customer: subscription.stripeCustomerId,
return_url: `${serverConfig.publicUrl}/settings/subscription`,
});
return {
url: session.url,
};
}),
getQuotaUsage: authedProcedure.query(async ({ ctx }) => {
const user = await ctx.db.query.users.findFirst({
where: eq(users.id, ctx.user.id),
columns: {
bookmarkQuota: true,
storageQuota: true,
},
});
if (!user) {
throw new TRPCError({
code: "NOT_FOUND",
message: "User not found",
});
}
// Get current bookmark count
const [{ bookmarkCount }] = await ctx.db
.select({ bookmarkCount: count() })
.from(bookmarks)
.where(eq(bookmarks.userId, ctx.user.id));
// Get current storage usage
const [{ storageUsed }] = await ctx.db
.select({ storageUsed: sum(assets.size) })
.from(assets)
.where(eq(assets.userId, ctx.user.id));
return {
bookmarks: {
used: bookmarkCount,
quota: user.bookmarkQuota,
unlimited: user.bookmarkQuota === null,
},
storage: {
used: Number(storageUsed) || 0,
quota: user.storageQuota,
unlimited: user.storageQuota === null,
},
};
}),
handleWebhook: publicProcedure
.input(
z.object({
body: z.string(),
signature: z.string(),
}),
)
.mutation(async ({ input, ctx }) => {
if (!stripe || !serverConfig.stripe.webhookSecret) {
throw new TRPCError({
code: "PRECONDITION_FAILED",
message: "Stripe is not configured",
});
}
let event: Stripe.Event;
try {
event = stripe.webhooks.constructEvent(
input.body,
input.signature,
serverConfig.stripe.webhookSecret,
);
} catch (err) {
console.error("Webhook signature verification failed:", err);
throw new TRPCError({
code: "BAD_REQUEST",
message: "Invalid signature",
});
}
try {
await processEvent(event, ctx.db);
return { received: true };
} catch (error) {
console.error("Error processing webhook:", error);
throw new TRPCError({
code: "INTERNAL_SERVER_ERROR",
message: "Internal server error",
});
}
}),
});
|