mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-22 12:20:34 +00:00
104 lines
3.1 KiB
TypeScript
104 lines
3.1 KiB
TypeScript
import { getTeamPlanStatus, getTeamStandPlan } from '../../support/wallet/sub/utils';
|
|
import { MongoApp } from '../../core/app/schema';
|
|
import { MongoDataset } from '../../core/dataset/schema';
|
|
import { DatasetTypeEnum } from '@fastgpt/global/core/dataset/constants';
|
|
import { TeamErrEnum } from '@fastgpt/global/common/error/code/team';
|
|
import { SystemErrEnum } from '@fastgpt/global/common/error/code/system';
|
|
import { AppTypeEnum } from '@fastgpt/global/core/app/constants';
|
|
|
|
export const checkDatasetLimit = async ({
|
|
teamId,
|
|
insertLen = 0
|
|
}: {
|
|
teamId: string;
|
|
insertLen?: number;
|
|
}) => {
|
|
const { standardConstants, totalPoints, usedPoints, datasetMaxSize, usedDatasetSize } =
|
|
await getTeamPlanStatus({ teamId });
|
|
|
|
if (!standardConstants) return;
|
|
|
|
if (usedDatasetSize + insertLen >= datasetMaxSize) {
|
|
return Promise.reject(TeamErrEnum.datasetSizeNotEnough);
|
|
}
|
|
|
|
if (usedPoints >= totalPoints) {
|
|
return Promise.reject(TeamErrEnum.aiPointsNotEnough);
|
|
}
|
|
return;
|
|
};
|
|
|
|
export const checkTeamAIPoints = async (teamId: string) => {
|
|
const { standardConstants, totalPoints, usedPoints } = await getTeamPlanStatus({
|
|
teamId
|
|
});
|
|
|
|
if (!standardConstants) return;
|
|
|
|
if (usedPoints >= totalPoints) {
|
|
return Promise.reject(TeamErrEnum.aiPointsNotEnough);
|
|
}
|
|
|
|
return {
|
|
totalPoints,
|
|
usedPoints
|
|
};
|
|
};
|
|
|
|
export const checkTeamDatasetLimit = async (teamId: string) => {
|
|
const [{ standardConstants }, datasetCount] = await Promise.all([
|
|
getTeamStandPlan({ teamId }),
|
|
MongoDataset.countDocuments({
|
|
teamId,
|
|
type: { $ne: DatasetTypeEnum.folder }
|
|
})
|
|
]);
|
|
|
|
// User check
|
|
if (standardConstants && datasetCount >= standardConstants.maxDatasetAmount) {
|
|
return Promise.reject(TeamErrEnum.datasetAmountNotEnough);
|
|
}
|
|
|
|
// System check
|
|
if (global?.licenseData?.maxDatasets && typeof global?.licenseData?.maxDatasets === 'number') {
|
|
const totalDatasets = await MongoDataset.countDocuments({
|
|
type: { $ne: DatasetTypeEnum.folder }
|
|
});
|
|
if (totalDatasets >= global.licenseData.maxDatasets) {
|
|
return Promise.reject(SystemErrEnum.licenseDatasetAmountLimit);
|
|
}
|
|
}
|
|
// Open source check
|
|
if (!global.feConfigs.isPlus && datasetCount >= 30) {
|
|
return Promise.reject(SystemErrEnum.communityVersionNumLimit);
|
|
}
|
|
};
|
|
|
|
export const checkTeamAppLimit = async (teamId: string, amount = 1) => {
|
|
const [{ standardConstants }, appCount] = await Promise.all([
|
|
getTeamStandPlan({ teamId }),
|
|
MongoApp.countDocuments({
|
|
teamId,
|
|
type: {
|
|
$in: [AppTypeEnum.simple, AppTypeEnum.workflow, AppTypeEnum.plugin, AppTypeEnum.tool]
|
|
}
|
|
})
|
|
]);
|
|
|
|
if (standardConstants && appCount + amount >= standardConstants.maxAppAmount) {
|
|
return Promise.reject(TeamErrEnum.appAmountNotEnough);
|
|
}
|
|
|
|
// System check
|
|
if (global?.licenseData?.maxApps && typeof global?.licenseData?.maxApps === 'number') {
|
|
const totalApps = await MongoApp.countDocuments({
|
|
type: {
|
|
$in: [AppTypeEnum.simple, AppTypeEnum.workflow, AppTypeEnum.plugin, AppTypeEnum.tool]
|
|
}
|
|
});
|
|
if (totalApps >= global.licenseData.maxApps) {
|
|
return Promise.reject(SystemErrEnum.licenseAppAmountLimit);
|
|
}
|
|
}
|
|
};
|