mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-20 19:24:29 +00:00
67 lines
1.6 KiB
TypeScript
67 lines
1.6 KiB
TypeScript
import { connectionMongo, type Model } from '../../../common/mongo';
|
|
const { Schema, model, models } = connectionMongo;
|
|
import { DatasetCollectionSchemaType } from '@fastgpt/global/core/dataset/type.d';
|
|
import { DatasetCollectionTypeMap } from '@fastgpt/global/core/dataset/constant';
|
|
import { DatasetCollectionName } from '../schema';
|
|
|
|
export const DatasetColCollectionName = 'dataset.collections';
|
|
|
|
const DatasetCollectionSchema = new Schema({
|
|
parentId: {
|
|
type: Schema.Types.ObjectId,
|
|
ref: DatasetColCollectionName,
|
|
default: null
|
|
},
|
|
userId: {
|
|
type: Schema.Types.ObjectId,
|
|
ref: 'user',
|
|
required: true
|
|
},
|
|
datasetId: {
|
|
type: Schema.Types.ObjectId,
|
|
ref: DatasetCollectionName,
|
|
required: true
|
|
},
|
|
name: {
|
|
type: String,
|
|
required: true
|
|
},
|
|
type: {
|
|
type: String,
|
|
enum: Object.keys(DatasetCollectionTypeMap),
|
|
required: true
|
|
},
|
|
updateTime: {
|
|
type: Date,
|
|
default: () => new Date()
|
|
},
|
|
metadata: {
|
|
type: {
|
|
fileId: {
|
|
type: Schema.Types.ObjectId,
|
|
ref: 'dataset.files'
|
|
},
|
|
rawLink: {
|
|
type: String,
|
|
default: ''
|
|
},
|
|
// 451 初始化
|
|
pgCollectionId: {
|
|
type: String
|
|
}
|
|
},
|
|
default: {}
|
|
}
|
|
});
|
|
|
|
try {
|
|
DatasetCollectionSchema.index({ datasetId: 1 });
|
|
DatasetCollectionSchema.index({ userId: 1 });
|
|
DatasetCollectionSchema.index({ updateTime: -1 });
|
|
} catch (error) {
|
|
console.log(error);
|
|
}
|
|
|
|
export const MongoDatasetCollection: Model<DatasetCollectionSchemaType> =
|
|
models[DatasetColCollectionName] || model(DatasetColCollectionName, DatasetCollectionSchema);
|