mirror of
https://github.com/fosrl/pangolin.git
synced 2025-12-15 04:26:14 +00:00
Chungus 2.0
This commit is contained in:
38
server/lib/billing/limitsService.ts
Normal file
38
server/lib/billing/limitsService.ts
Normal file
@@ -0,0 +1,38 @@
|
||||
import { db, limits } from "@server/db";
|
||||
import { and, eq } from "drizzle-orm";
|
||||
import { LimitSet } from "./limitSet";
|
||||
import { FeatureId } from "./features";
|
||||
|
||||
class LimitService {
|
||||
async applyLimitSetToOrg(orgId: string, limitSet: LimitSet): Promise<void> {
|
||||
const limitEntries = Object.entries(limitSet);
|
||||
|
||||
// delete existing limits for the org
|
||||
await db.transaction(async (trx) => {
|
||||
await trx.delete(limits).where(eq(limits.orgId, orgId));
|
||||
for (const [featureId, entry] of limitEntries) {
|
||||
const limitId = `${orgId}-${featureId}`;
|
||||
const { value, description } = entry;
|
||||
await trx
|
||||
.insert(limits)
|
||||
.values({ limitId, orgId, featureId, value, description });
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
async getOrgLimit(
|
||||
orgId: string,
|
||||
featureId: FeatureId
|
||||
): Promise<number | null> {
|
||||
const limitId = `${orgId}-${featureId}`;
|
||||
const [limit] = await db
|
||||
.select()
|
||||
.from(limits)
|
||||
.where(and(eq(limits.limitId, limitId)))
|
||||
.limit(1);
|
||||
|
||||
return limit ? limit.value : null;
|
||||
}
|
||||
}
|
||||
|
||||
export const limitsService = new LimitService();
|
||||
Reference in New Issue
Block a user