mirror of
https://github.com/labring/FastGPT.git
synced 2025-10-19 18:14:38 +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>
181 lines
4.7 KiB
TypeScript
181 lines
4.7 KiB
TypeScript
import { retryFn } from '@fastgpt/global/common/system/utils';
|
||
import { connectionMongo, Types } from '../../mongo';
|
||
import { MongoRawTextBufferSchema, bucketName } from './schema';
|
||
import { addLog } from '../../system/log';
|
||
import { setCron } from '../../system/cron';
|
||
import { checkTimerLock } from '../../system/timerLock/utils';
|
||
import { TimerIdEnum } from '../../system/timerLock/constants';
|
||
import { gridFsStream2Buffer } from '../../file/gridfs/utils';
|
||
import { readRawContentFromBuffer } from '../../../worker/function';
|
||
|
||
const getGridBucket = () => {
|
||
return new connectionMongo.mongo.GridFSBucket(connectionMongo.connection.db!, {
|
||
bucketName: bucketName
|
||
});
|
||
};
|
||
|
||
export const addRawTextBuffer = async ({
|
||
sourceId,
|
||
sourceName,
|
||
text,
|
||
expiredTime
|
||
}: {
|
||
sourceId: string;
|
||
sourceName: string;
|
||
text: string;
|
||
expiredTime: Date;
|
||
}) => {
|
||
const gridBucket = getGridBucket();
|
||
const metadata = {
|
||
sourceId,
|
||
sourceName,
|
||
expiredTime
|
||
};
|
||
|
||
const buffer = Buffer.from(text);
|
||
|
||
const fileSize = buffer.length;
|
||
// 单块大小:尽可能大,但不超过 14MB,不小于128KB
|
||
const chunkSizeBytes = (() => {
|
||
// 计算理想块大小:文件大小 ÷ 目标块数(10)。 并且每个块需要小于 14MB
|
||
const idealChunkSize = Math.min(Math.ceil(fileSize / 10), 14 * 1024 * 1024);
|
||
|
||
// 确保块大小至少为128KB
|
||
const minChunkSize = 128 * 1024; // 128KB
|
||
|
||
// 取理想块大小和最小块大小中的较大值
|
||
let chunkSize = Math.max(idealChunkSize, minChunkSize);
|
||
|
||
// 将块大小向上取整到最接近的64KB的倍数,使其更整齐
|
||
chunkSize = Math.ceil(chunkSize / (64 * 1024)) * (64 * 1024);
|
||
|
||
return chunkSize;
|
||
})();
|
||
|
||
const uploadStream = gridBucket.openUploadStream(sourceId, {
|
||
metadata,
|
||
chunkSizeBytes
|
||
});
|
||
|
||
return retryFn(async () => {
|
||
return new Promise((resolve, reject) => {
|
||
uploadStream.end(buffer);
|
||
uploadStream.on('finish', () => {
|
||
resolve(uploadStream.id);
|
||
});
|
||
uploadStream.on('error', (error) => {
|
||
addLog.error('addRawTextBuffer error', error);
|
||
resolve('');
|
||
});
|
||
});
|
||
});
|
||
};
|
||
|
||
export const getRawTextBuffer = async (sourceId: string) => {
|
||
const gridBucket = getGridBucket();
|
||
|
||
return retryFn(async () => {
|
||
const bufferData = await MongoRawTextBufferSchema.findOne(
|
||
{
|
||
'metadata.sourceId': sourceId
|
||
},
|
||
'_id metadata'
|
||
).lean();
|
||
if (!bufferData) {
|
||
return null;
|
||
}
|
||
|
||
// Read file content
|
||
const downloadStream = gridBucket.openDownloadStream(new Types.ObjectId(bufferData._id));
|
||
|
||
const fileBuffers = await gridFsStream2Buffer(downloadStream);
|
||
|
||
const rawText = await (async () => {
|
||
if (fileBuffers.length < 10000000) {
|
||
return fileBuffers.toString('utf8');
|
||
} else {
|
||
return (
|
||
await readRawContentFromBuffer({
|
||
extension: 'txt',
|
||
encoding: 'utf8',
|
||
buffer: fileBuffers
|
||
})
|
||
).rawText;
|
||
}
|
||
})();
|
||
|
||
return {
|
||
text: rawText,
|
||
sourceName: bufferData.metadata?.sourceName || ''
|
||
};
|
||
});
|
||
};
|
||
|
||
export const deleteRawTextBuffer = async (sourceId: string): Promise<boolean> => {
|
||
const gridBucket = getGridBucket();
|
||
|
||
return retryFn(async () => {
|
||
const buffer = await MongoRawTextBufferSchema.findOne({ 'metadata.sourceId': sourceId });
|
||
if (!buffer) {
|
||
return false;
|
||
}
|
||
|
||
await gridBucket.delete(new Types.ObjectId(buffer._id));
|
||
return true;
|
||
});
|
||
};
|
||
|
||
export const updateRawTextBufferExpiredTime = async ({
|
||
sourceId,
|
||
expiredTime
|
||
}: {
|
||
sourceId: string;
|
||
expiredTime: Date;
|
||
}) => {
|
||
return retryFn(async () => {
|
||
return MongoRawTextBufferSchema.updateOne(
|
||
{ 'metadata.sourceId': sourceId },
|
||
{ $set: { 'metadata.expiredTime': expiredTime } }
|
||
);
|
||
});
|
||
};
|
||
|
||
export const clearExpiredRawTextBufferCron = async () => {
|
||
const gridBucket = getGridBucket();
|
||
|
||
const clearExpiredRawTextBuffer = async () => {
|
||
addLog.debug('Clear expired raw text buffer start');
|
||
|
||
const data = await MongoRawTextBufferSchema.find(
|
||
{
|
||
'metadata.expiredTime': { $lt: new Date() }
|
||
},
|
||
'_id'
|
||
).lean();
|
||
|
||
for (const item of data) {
|
||
try {
|
||
await gridBucket.delete(new Types.ObjectId(item._id));
|
||
} catch (error) {
|
||
addLog.error('Delete expired raw text buffer error', error);
|
||
}
|
||
}
|
||
addLog.debug('Clear expired raw text buffer end');
|
||
};
|
||
|
||
setCron('*/10 * * * *', async () => {
|
||
if (
|
||
await checkTimerLock({
|
||
timerId: TimerIdEnum.clearExpiredRawTextBuffer,
|
||
lockMinuted: 9
|
||
})
|
||
) {
|
||
try {
|
||
await clearExpiredRawTextBuffer();
|
||
} catch (error) {
|
||
addLog.error('clearExpiredRawTextBufferCron error', error);
|
||
}
|
||
}
|
||
});
|
||
};
|