tasko/lib/org-limit.ts
2024-03-21 17:15:27 -04:00

86 lines
1.6 KiB
TypeScript

import { auth } from '@clerk/nextjs/server';
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;
};