-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsubscription-check.ts
More file actions
126 lines (107 loc) · 2.95 KB
/
Copy pathsubscription-check.ts
File metadata and controls
126 lines (107 loc) · 2.95 KB
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
import { auth } from "@/server/auth/config";
import {
hasActiveSubscription,
getUserSubscriptionTier,
PlanType,
} from "@/server/services/subscription";
export const PLAN_LIMITS = {
free: {
maxNotes: 5,
canUploadImages: true,
canUseAI: true,
maxImageSize: 5 * 1024 * 1024,
aiSuggestionsPerMonth: 30,
},
basic: {
maxNotes: 50,
canUploadImages: true,
canUseAI: true,
maxImageSize: 10 * 1024 * 1024,
aiSuggestionsPerMonth: 300,
},
pro: {
maxNotes: 500,
canUploadImages: true,
canUseAI: true,
maxImageSize: 20 * 1024 * 1024,
aiSuggestionsPerMonth: 1500,
},
enterprise: {
maxNotes: Infinity,
canUploadImages: true,
canUseAI: true,
maxImageSize: 100 * 1024 * 1024,
aiSuggestionsPerMonth: Infinity,
},
} as const;
export async function checkUserSubscription() {
const session = await auth();
if (!session?.user?.id) {
return {
hasSubscription: false,
tier: "free" as const,
isActive: false,
};
}
const isActive = await hasActiveSubscription(session.user.id);
const tier = await getUserSubscriptionTier(session.user.id);
return {
hasSubscription: isActive,
tier,
isActive,
limits: PLAN_LIMITS[tier],
};
}
export async function canAccessFeature(
feature: keyof typeof PLAN_LIMITS.free
): Promise<boolean> {
const { tier } = await checkUserSubscription();
const limits = PLAN_LIMITS[tier];
return limits[feature] as boolean;
}
export async function hasReachedLimit(
currentUsage: number,
limitType: "maxNotes"
): Promise<{ reachedLimit: boolean; limit: number; tier: PlanType | "free" }> {
const { tier } = await checkUserSubscription();
const limits = PLAN_LIMITS[tier];
const limit = limits[limitType];
return {
reachedLimit: currentUsage >= limit,
limit,
tier,
};
}
export async function getUserLimits() {
const { tier } = await checkUserSubscription();
return PLAN_LIMITS[tier];
}
export async function requireSubscription(minTier?: PlanType) {
const session = await auth();
if (!session?.user?.id) {
throw new Error("Authentication required");
}
const isActive = await hasActiveSubscription(session.user.id);
if (!isActive) {
throw new Error("Active subscription required");
}
if (minTier) {
const tier = await getUserSubscriptionTier(session.user.id);
const tierOrder = ["free", "basic", "pro", "enterprise"];
const userTierIndex = tierOrder.indexOf(tier);
const minTierIndex = tierOrder.indexOf(minTier);
if (userTierIndex < minTierIndex) {
throw new Error(`${minTier} subscription or higher required`);
}
}
return true;
}
export function isTierSufficient(
currentTier: PlanType | "free",
requiredTier: PlanType | "free"
): boolean {
const tierOrder = ["free", "basic", "pro", "enterprise"];
const currentIndex = tierOrder.indexOf(currentTier);
const requiredIndex = tierOrder.indexOf(requiredTier);
return currentIndex >= requiredIndex;
}