mirror of
https://github.com/labring/FastGPT.git
synced 2025-10-16 08:01:18 +00:00

* fix: push again, user select option button and form input radio content overflow (#5601) * fix: push again, user select option button and form input radio content overflow * fix: use useCallback instead of useMemo, fix unnecessary delete * fix: Move the variable inside the component * fix: do not pass valueLabel to MySelect * ui * del collection api adapt * refactor: inherit permission (#5529) * refactor: permission update conflict check function * refactor(permission): app collaborator update api * refactor(permission): support app update collaborator * feat: support fe permission conflict check * refactor(permission): app permission * refactor(permission): dataset permission * refactor(permission): team permission * chore: fe adjust * fix: type error * fix: audit pagiation * fix: tc * chore: initv4130 * fix: app/dataset auth logic * chore: move code * refactor(permission): remove selfPermission * fix: mock * fix: test * fix: app & dataset auth * fix: inherit * test(inheritPermission): test syncChildrenPermission * prompt editor add list plugin (#5620) * perf: search result (#5608) * fix: table size (#5598) * temp: list value * backspace * optimize code --------- Co-authored-by: Archer <545436317@qq.com> Co-authored-by: 伍闲犬 <whoeverimf5@gmail.com> * fix: fe & member list (#5619) * chore: initv4130 * fix: MemberItemCard * fix: MemberItemCard * chore: fe adjust & init script * perf: test code * doc * fix debug variables (#5617) * perf: search result (#5608) * fix: table size (#5598) * fix debug variables * fix --------- Co-authored-by: Archer <545436317@qq.com> Co-authored-by: 伍闲犬 <whoeverimf5@gmail.com> * perf: member ui * fix: inherit bug (#5624) * refactor(permission): remove getClbsWithInfo, which is useless * fix: app list privateApp * fix: get infos * perf(fe): remove delete icon when it is disable in MemberItemCard * fix: dataset private dataset * Apply suggestion from @Copilot Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Apply suggestion from @Copilot Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --------- Co-authored-by: Archer <545436317@qq.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * perf: auto coupon * chore: upgrade script & get infos avatar (#5625) * fix: get infos * chore: initv4130 * feat: support WecomRobot publish, and fix AesKey can not save bug (#5526) * feat: resolve conflicts * fix: add param 'show_publish_wecom' * feat: abstract out WecomCrypto type * doc: wecom robot document * fix: solve instability in AI output * doc: update some pictures * feat: remove functions from request.ts to chat.ts and toolCall.ts * doc: wecom robot doc update * fix * delete unused code * doc: update version and prompt * feat: remove wecom crypto, delete wecom code in workflow * feat: delete unused codes --------- Co-authored-by: heheer <zhiyu44@qq.com> * remove test * rename init shell * feat: collection page store * reload sandbox * pysandbox * remove log * chore: remove useless code (#5629) * chore: remove useless code * fix: checkConflict * perf: support hidden type for RoleList * fix: copy node * update doc * fix(permission): some bug (#5632) * fix: app/dataset list * fix: inherit bug * perf: del app;i18n;save chat * fix: test * i18n * fix: sumper overflow return OwnerRoleVal (#5633) * remove invalid code * fix: scroll * fix: objectId * update next * update package * object id * mock redis * feat: add redis append to resolve wecom stream response (#5643) * feat: resolve conflicts * fix: add param 'show_publish_wecom' * feat: abstract out WecomCrypto type * doc: wecom robot document * fix: solve instability in AI output * doc: update some pictures * feat: remove functions from request.ts to chat.ts and toolCall.ts * doc: wecom robot doc update * fix * delete unused code * doc: update version and prompt * feat: remove wecom crypto, delete wecom code in workflow * feat: delete unused codes * feat: add redis append method --------- Co-authored-by: heheer <zhiyu44@qq.com> * cache per * fix(test): init team sub when creating mocked user (#5646) * fix: button is not vertically centered (#5647) * doc * fix: gridFs objectId (#5649) --------- Co-authored-by: Zeng Qingwen <143274079+fishwww-ww@users.noreply.github.com> Co-authored-by: Finley Ge <32237950+FinleyGe@users.noreply.github.com> Co-authored-by: heheer <heheer@sealos.io> Co-authored-by: 伍闲犬 <whoeverimf5@gmail.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: heheer <zhiyu44@qq.com>
276 lines
7.0 KiB
TypeScript
276 lines
7.0 KiB
TypeScript
import { type PermissionValueType } from '@fastgpt/global/support/permission/type';
|
|
import { getTmbPermission } from '../controller';
|
|
import {
|
|
type CollectionWithDatasetType,
|
|
type DatasetDataItemType,
|
|
type DatasetSchemaType
|
|
} from '@fastgpt/global/core/dataset/type';
|
|
import { getTmbInfoByTmbId } from '../../user/team/controller';
|
|
import { MongoDataset } from '../../../core/dataset/schema';
|
|
import {
|
|
NullPermissionVal,
|
|
NullRoleVal,
|
|
PerResourceTypeEnum
|
|
} from '@fastgpt/global/support/permission/constant';
|
|
import { DatasetErrEnum } from '@fastgpt/global/common/error/code/dataset';
|
|
import { DatasetPermission } from '@fastgpt/global/support/permission/dataset/controller';
|
|
import { getCollectionWithDataset } from '../../../core/dataset/controller';
|
|
import { MongoDatasetData } from '../../../core/dataset/data/schema';
|
|
import { type AuthModeType, type AuthResponseType } from '../type';
|
|
import { DatasetTypeEnum } from '@fastgpt/global/core/dataset/constants';
|
|
import { type ParentIdType } from '@fastgpt/global/common/parentFolder/type';
|
|
import { DataSetDefaultRoleVal } from '@fastgpt/global/support/permission/dataset/constant';
|
|
import { getDatasetImagePreviewUrl } from '../../../core/dataset/image/utils';
|
|
import { i18nT } from '../../../../web/i18n/utils';
|
|
import { parseHeaderCert } from '../auth/common';
|
|
import { sumPer } from '@fastgpt/global/support/permission/utils';
|
|
|
|
export const authDatasetByTmbId = async ({
|
|
tmbId,
|
|
datasetId,
|
|
per,
|
|
isRoot = false
|
|
}: {
|
|
tmbId: string;
|
|
datasetId: string;
|
|
per: PermissionValueType;
|
|
isRoot?: boolean;
|
|
}): Promise<{
|
|
dataset: DatasetSchemaType & {
|
|
permission: DatasetPermission;
|
|
};
|
|
}> => {
|
|
const dataset = await (async () => {
|
|
const [{ teamId, permission: tmbPer }, dataset] = await Promise.all([
|
|
getTmbInfoByTmbId({ tmbId }),
|
|
MongoDataset.findOne({ _id: datasetId }).lean()
|
|
]);
|
|
|
|
if (!dataset) {
|
|
return Promise.reject(DatasetErrEnum.unExist);
|
|
}
|
|
|
|
if (isRoot) {
|
|
return {
|
|
...dataset,
|
|
permission: new DatasetPermission({
|
|
isOwner: true
|
|
})
|
|
};
|
|
}
|
|
|
|
if (String(dataset.teamId) !== teamId) {
|
|
return Promise.reject(DatasetErrEnum.unAuthDataset);
|
|
}
|
|
|
|
const isOwner = tmbPer.isOwner || String(dataset.tmbId) === String(tmbId);
|
|
const isGetParentClb =
|
|
dataset.inheritPermission && dataset.type !== DatasetTypeEnum.folder && !!dataset.parentId;
|
|
|
|
const [folderPer = NullRoleVal, myPer = NullRoleVal] = await Promise.all([
|
|
isGetParentClb
|
|
? getTmbPermission({
|
|
teamId,
|
|
tmbId,
|
|
resourceId: dataset.parentId!,
|
|
resourceType: PerResourceTypeEnum.dataset
|
|
})
|
|
: NullRoleVal,
|
|
getTmbPermission({
|
|
teamId,
|
|
tmbId,
|
|
resourceId: datasetId,
|
|
resourceType: PerResourceTypeEnum.dataset
|
|
})
|
|
]);
|
|
|
|
const Per = new DatasetPermission({ role: sumPer(folderPer, myPer), isOwner });
|
|
|
|
if (!Per.checkPer(per)) {
|
|
return Promise.reject(DatasetErrEnum.unAuthDataset);
|
|
}
|
|
|
|
return {
|
|
...dataset,
|
|
permission: Per
|
|
};
|
|
})();
|
|
|
|
return { dataset };
|
|
};
|
|
|
|
export const authDataset = async ({
|
|
datasetId,
|
|
per,
|
|
...props
|
|
}: AuthModeType & {
|
|
datasetId: ParentIdType;
|
|
per: PermissionValueType;
|
|
}): Promise<
|
|
AuthResponseType & {
|
|
dataset: DatasetSchemaType & {
|
|
permission: DatasetPermission;
|
|
};
|
|
}
|
|
> => {
|
|
const result = await parseHeaderCert(props);
|
|
const { tmbId } = result;
|
|
|
|
if (!datasetId) {
|
|
return Promise.reject(DatasetErrEnum.unExist);
|
|
}
|
|
|
|
const { dataset } = await authDatasetByTmbId({
|
|
tmbId,
|
|
datasetId,
|
|
per,
|
|
isRoot: result.isRoot
|
|
});
|
|
|
|
return {
|
|
...result,
|
|
permission: dataset.permission,
|
|
dataset
|
|
};
|
|
};
|
|
|
|
// the temporary solution for authDatasetCollection is getting the
|
|
export async function authDatasetCollection({
|
|
collectionId,
|
|
per = NullPermissionVal,
|
|
isRoot = false,
|
|
...props
|
|
}: AuthModeType & {
|
|
collectionId: string;
|
|
isRoot?: boolean;
|
|
}): Promise<
|
|
AuthResponseType<DatasetPermission> & {
|
|
collection: CollectionWithDatasetType;
|
|
}
|
|
> {
|
|
const { teamId, tmbId, userId, isRoot: isRootFromHeader } = await parseHeaderCert(props);
|
|
const collection = await getCollectionWithDataset(collectionId);
|
|
|
|
if (!collection) {
|
|
return Promise.reject(DatasetErrEnum.unExist);
|
|
}
|
|
|
|
const { dataset } = await authDatasetByTmbId({
|
|
tmbId,
|
|
datasetId: collection.datasetId,
|
|
per,
|
|
isRoot: isRootFromHeader
|
|
});
|
|
|
|
return {
|
|
userId,
|
|
teamId,
|
|
tmbId,
|
|
collection,
|
|
permission: dataset.permission,
|
|
isRoot: isRootFromHeader
|
|
};
|
|
}
|
|
|
|
// export async function authDatasetFile({
|
|
// fileId,
|
|
// per,
|
|
// ...props
|
|
// }: AuthModeType & {
|
|
// fileId: string;
|
|
// }): Promise<
|
|
// AuthResponseType<DatasetPermission> & {
|
|
// file: DatasetFileSchema;
|
|
// }
|
|
// > {
|
|
// const { teamId, tmbId, isRoot } = await parseHeaderCert(props);
|
|
|
|
// const [file, collection] = await Promise.all([
|
|
// getFileById({ bucketName: BucketNameEnum.dataset, fileId }),
|
|
// MongoDatasetCollection.findOne({
|
|
// teamId,
|
|
// fileId
|
|
// })
|
|
// ]);
|
|
|
|
// if (!file) {
|
|
// return Promise.reject(CommonErrEnum.fileNotFound);
|
|
// }
|
|
|
|
// if (!collection) {
|
|
// return Promise.reject(DatasetErrEnum.unAuthDatasetFile);
|
|
// }
|
|
|
|
// try {
|
|
// const { permission } = await authDatasetCollection({
|
|
// ...props,
|
|
// collectionId: collection._id,
|
|
// per,
|
|
// isRoot
|
|
// });
|
|
|
|
// return {
|
|
// teamId,
|
|
// tmbId,
|
|
// file,
|
|
// permission,
|
|
// isRoot
|
|
// };
|
|
// } catch (error) {
|
|
// return Promise.reject(DatasetErrEnum.unAuthDatasetFile);
|
|
// }
|
|
// }
|
|
|
|
/*
|
|
DatasetData permission is inherited from collection.
|
|
*/
|
|
export async function authDatasetData({
|
|
dataId,
|
|
...props
|
|
}: AuthModeType & {
|
|
dataId: string;
|
|
}) {
|
|
// get mongo dataset.data
|
|
const datasetData = await MongoDatasetData.findById(dataId);
|
|
|
|
if (!datasetData) {
|
|
return Promise.reject(i18nT('common:core.dataset.error.Data not found'));
|
|
}
|
|
|
|
const result = await authDatasetCollection({
|
|
...props,
|
|
collectionId: datasetData.collectionId
|
|
});
|
|
|
|
const data: DatasetDataItemType = {
|
|
id: String(datasetData._id),
|
|
teamId: datasetData.teamId,
|
|
updateTime: datasetData.updateTime,
|
|
q: datasetData.q,
|
|
a: datasetData.a,
|
|
imageId: datasetData.imageId,
|
|
imagePreivewUrl: datasetData.imageId
|
|
? getDatasetImagePreviewUrl({
|
|
imageId: datasetData.imageId,
|
|
teamId: datasetData.teamId,
|
|
datasetId: datasetData.datasetId,
|
|
expiredMinutes: 30
|
|
})
|
|
: undefined,
|
|
chunkIndex: datasetData.chunkIndex,
|
|
indexes: datasetData.indexes,
|
|
datasetId: String(datasetData.datasetId),
|
|
collectionId: String(datasetData.collectionId),
|
|
sourceName: result.collection.name || '',
|
|
sourceId: result.collection?.fileId || result.collection?.rawLink,
|
|
isOwner: String(datasetData.tmbId) === String(result.tmbId)
|
|
// permission: result.permission
|
|
};
|
|
|
|
return {
|
|
...result,
|
|
datasetData: data,
|
|
collection: result.collection
|
|
};
|
|
}
|