mirror of
https://github.com/labring/FastGPT.git
synced 2026-05-07 01:02:55 +08:00
58000324e2
* feat(marketplace): update plugin/ download count statistic (#5957) * feat: download count * feat: update ui * fix: ui * chore: update sdk verison * chore: update .env.template * chore: adjust * chore: remove console.log * chore: adjust * Update projects/marketplace/src/pages/index.tsx Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Update projects/marketplace/src/pages/index.tsx Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Update projects/app/src/pages/config/tool/marketplace.tsx Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * fix: update refresh; feat: marketplace download count per hour --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * download * marketplace code * fix: ui (#5963) * feat: support dataset and files as global variables (#5961) * json & dataset * file * fix file var * fix * fix init * remove * perf: file vars * fix: file uploading errors (#5969) * fix: file uploading errors * fix build * perf: fileselector ux * feat: integrate S3 for dataset with compatibility (#5941) * fix: text split * remove test * feat: integrate S3 for dataset with compatibility * fix: delay s3 files delete timing * fix: remove imageKeys * fix: remove parsed images' TTL * fix: improve codes by pr comments --------- Co-authored-by: archer <545436317@qq.com> * remove log * perf: request limit * chore: s3 migration script (#5971) * test * perf: s3 code * fix: migration script (#5972) * perf: s3 move object * wip: fix s3 bugs (#5976) * fix: incorrect replace origin logic (#5978) * fix: add downloadURL (#5980) * perf: file variable ttl & quick create dataset with temp s3 bucket (#5973) * perf: file variable ttl & quick create dataset with temp s3 bucket * fix * plugin & form input variables (#5979) * plugin & form input variables * fix * docs: 4143.mdx (#5981) * doc: update 4143.mdx (#5982) * fix form input file ttl (#5983) * trans file type (#5986) * trans file type * fix * fix: S3 script early return (#5985) * fix: S3 script typeof * fix: truncate large filename to fit S3 name * perf(permission): add a schema verification for resource permission, tmbId, groupId, orgId should be set at least one of them (#5987) * fix: version & typo (#5988) * fix-v4.14.3 (#5991) * fix: empty alt make replace JWT failed & incorrect image dataset preview url (#5989) * fix: empty alt make replace JWT failed & incorrect image dataset preview url * fix: s3 files recovery script * fix: incorrect chat external url parsing (#5993) --------- Co-authored-by: Finley Ge <32237950+FinleyGe@users.noreply.github.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: heheer <heheer@sealos.io> Co-authored-by: Roy <whoeverimf5@gmail.com>
174 lines
4.8 KiB
TypeScript
174 lines
4.8 KiB
TypeScript
import { addMinutes } from 'date-fns';
|
|
import { bucketName, MongoDatasetImageSchema } from './schema';
|
|
import { connectionMongo, Types } from '../../../common/mongo';
|
|
import fs from 'fs';
|
|
import type { FileType } from '../../../common/file/multer';
|
|
import fsp from 'fs/promises';
|
|
import { computeGridFsChunSize } from '../../../common/file/gridfs/utils';
|
|
import { setCron } from '../../../common/system/cron';
|
|
import { checkTimerLock } from '../../../common/system/timerLock/utils';
|
|
import { TimerIdEnum } from '../../../common/system/timerLock/constants';
|
|
import { addLog } from '../../../common/system/log';
|
|
import { UserError } from '@fastgpt/global/common/error/utils';
|
|
import { getS3DatasetSource, S3DatasetSource } from '../../../common/s3/sources/dataset';
|
|
import { isS3ObjectKey } from '../../../common/s3/utils';
|
|
|
|
const getGridBucket = () => {
|
|
return new connectionMongo.mongo.GridFSBucket(connectionMongo.connection.db!, {
|
|
bucketName: bucketName
|
|
});
|
|
};
|
|
|
|
export const createDatasetImage = async ({
|
|
teamId,
|
|
datasetId,
|
|
file,
|
|
expiredTime = addMinutes(new Date(), 30)
|
|
}: {
|
|
teamId: string;
|
|
datasetId: string;
|
|
file: FileType;
|
|
expiredTime?: Date;
|
|
}): Promise<{ imageId: string; previewUrl: string }> => {
|
|
const path = file.path;
|
|
const gridBucket = getGridBucket();
|
|
const metadata = {
|
|
teamId: String(teamId),
|
|
datasetId: String(datasetId),
|
|
expiredTime
|
|
};
|
|
|
|
const stats = await fsp.stat(path);
|
|
if (!stats.isFile()) return Promise.reject(`${path} is not a file`);
|
|
|
|
const readStream = fs.createReadStream(path, {
|
|
highWaterMark: 256 * 1024
|
|
});
|
|
const chunkSizeBytes = computeGridFsChunSize(stats.size);
|
|
|
|
const stream = gridBucket.openUploadStream(file.originalname, {
|
|
metadata,
|
|
contentType: file.mimetype,
|
|
chunkSizeBytes
|
|
});
|
|
|
|
// save to gridfs
|
|
await new Promise((resolve, reject) => {
|
|
readStream
|
|
.pipe(stream as any)
|
|
.on('finish', resolve)
|
|
.on('error', reject);
|
|
});
|
|
|
|
return {
|
|
imageId: String(stream.id),
|
|
previewUrl: ''
|
|
};
|
|
};
|
|
|
|
export const getDatasetImageReadData = async (imageId: string) => {
|
|
// Get file metadata to get contentType
|
|
const fileInfo = await MongoDatasetImageSchema.findOne({
|
|
_id: new Types.ObjectId(imageId)
|
|
}).lean();
|
|
if (!fileInfo) {
|
|
return Promise.reject(new UserError('Image not found'));
|
|
}
|
|
|
|
const gridBucket = getGridBucket();
|
|
return {
|
|
stream: gridBucket.openDownloadStream(new Types.ObjectId(imageId)),
|
|
fileInfo
|
|
};
|
|
};
|
|
export const getDatasetImageBase64 = async (imageId: string) => {
|
|
// Get file metadata to get contentType
|
|
const fileInfo = await MongoDatasetImageSchema.findOne({
|
|
_id: new Types.ObjectId(imageId)
|
|
}).lean();
|
|
if (!fileInfo) {
|
|
return Promise.reject(new UserError('Image not found'));
|
|
}
|
|
|
|
// Get image stream from GridFS
|
|
const { stream } = await getDatasetImageReadData(imageId);
|
|
|
|
// Convert stream to buffer
|
|
const chunks: Buffer[] = [];
|
|
|
|
return new Promise<string>((resolve, reject) => {
|
|
stream.on('data', (chunk: Buffer) => {
|
|
chunks.push(chunk);
|
|
});
|
|
|
|
stream.on('end', () => {
|
|
// Combine all chunks into a single buffer
|
|
const buffer = Buffer.concat(chunks);
|
|
// Convert buffer to base64 string
|
|
const base64 = buffer.toString('base64');
|
|
const dataUrl = `data:${fileInfo.contentType || 'image/jpeg'};base64,${base64}`;
|
|
resolve(dataUrl);
|
|
});
|
|
|
|
stream.on('error', reject);
|
|
});
|
|
};
|
|
|
|
export const deleteDatasetImage = async (imageId: string) => {
|
|
const gridBucket = getGridBucket();
|
|
|
|
try {
|
|
if (isS3ObjectKey(imageId, 'dataset')) {
|
|
await getS3DatasetSource().deleteDatasetFileByKey(imageId);
|
|
} else {
|
|
await gridBucket.delete(new Types.ObjectId(imageId));
|
|
}
|
|
} catch (error: any) {
|
|
const msg = error?.message;
|
|
if (msg.includes('File not found')) {
|
|
addLog.warn('Delete dataset image error', error);
|
|
return;
|
|
} else {
|
|
return Promise.reject(error);
|
|
}
|
|
}
|
|
};
|
|
|
|
export const clearExpiredDatasetImageCron = async () => {
|
|
const gridBucket = getGridBucket();
|
|
const clearExpiredDatasetImages = async () => {
|
|
addLog.debug('Clear expired dataset image start');
|
|
|
|
const data = await MongoDatasetImageSchema.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 dataset image error', error);
|
|
}
|
|
}
|
|
addLog.debug('Clear expired dataset image end');
|
|
};
|
|
|
|
setCron('*/10 * * * *', async () => {
|
|
if (
|
|
await checkTimerLock({
|
|
timerId: TimerIdEnum.clearExpiredDatasetImage,
|
|
lockMinuted: 9
|
|
})
|
|
) {
|
|
try {
|
|
await clearExpiredDatasetImages();
|
|
} catch (error) {
|
|
addLog.error('clearExpiredDatasetImageCron error', error);
|
|
}
|
|
}
|
|
});
|
|
};
|