mirror of
https://github.com/fosrl/pangolin.git
synced 2025-12-14 20:16:38 +00:00
39 lines
1.2 KiB
TypeScript
39 lines
1.2 KiB
TypeScript
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();
|