mirror of
https://github.com/ahmadk953/tasko.git
synced 2025-01-31 00:53:37 +00:00
86 lines
1.6 KiB
TypeScript
86 lines
1.6 KiB
TypeScript
import { auth } from "@clerk/nextjs";
|
|
|
|
import { db } from "@/lib/db";
|
|
import { MAX_FREE_BOARDS } from "@/constants/boards";
|
|
|
|
export const incrementAvailableCount = async () => {
|
|
const { orgId } = auth();
|
|
|
|
if (!orgId) {
|
|
throw new Error("Unauthorized");
|
|
}
|
|
|
|
const orgLimit = await db.orgLimit.findUnique({
|
|
where: { orgId },
|
|
});
|
|
|
|
if (orgLimit) {
|
|
await db.orgLimit.update({
|
|
where: { orgId },
|
|
data: { count: orgLimit.count + 1 },
|
|
});
|
|
} else {
|
|
await db.orgLimit.create({
|
|
data: { orgId, count: 1 },
|
|
});
|
|
}
|
|
};
|
|
|
|
export const decreaseAvailableCount = async () => {
|
|
const { orgId } = auth();
|
|
|
|
if (!orgId) {
|
|
throw new Error("Unauthorized");
|
|
}
|
|
|
|
const orgLimit = await db.orgLimit.findUnique({
|
|
where: { orgId },
|
|
});
|
|
|
|
if (orgLimit) {
|
|
await db.orgLimit.update({
|
|
where: { orgId },
|
|
data: { count: orgLimit.count > 0 ? orgLimit.count - 1 : 0 },
|
|
});
|
|
} else {
|
|
await db.orgLimit.create({
|
|
data: { orgId, count: 1 },
|
|
});
|
|
}
|
|
};
|
|
|
|
export const hasAvailableCount = async () => {
|
|
const { orgId } = auth();
|
|
|
|
if (!orgId) {
|
|
throw new Error("Unauthorized");
|
|
}
|
|
|
|
const orgLimit = await db.orgLimit.findUnique({
|
|
where: { orgId },
|
|
});
|
|
|
|
if (!orgLimit || orgLimit.count < MAX_FREE_BOARDS) {
|
|
return true;
|
|
} else {
|
|
return false;
|
|
}
|
|
};
|
|
|
|
export const getAvailableCount = async () => {
|
|
const { orgId } = auth();
|
|
|
|
if (!orgId) {
|
|
return 0;
|
|
}
|
|
|
|
const orgLimit = await db.orgLimit.findUnique({
|
|
where: { orgId },
|
|
});
|
|
|
|
if (!orgLimit) {
|
|
return 0;
|
|
}
|
|
|
|
return orgLimit.count;
|
|
};
|