mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-23 21:13:50 +00:00

* feat: add feishu & yuque dataset (#3379) * feat: add feishu & yuque dataset * fix ts * fix ts * move type position * fix * fix: merge interface * fix * feat: dingtalk sso support (#3408) * fix: optional sso state * feat: dingtalk bot * feat: dingtalk sso login * chore: move i18n to user namespace * feat: dingtalk bot integration (#3415) * feat: dingtalk bot integration * docs: config dingtalk bot * feat:sear XNG服务 (#3413) * feat:sear XNG服务 * 补充了courseUrl * 添加了官方文档 * 错误时返回情况修正了一下 * Tracks (#3420) * feat: node intro * feat: add domain track * dingding sso login * perf: api dataset code and add doc * feat: tracks * feat: searXNG plugins * fix: ts * feat: delete node tracks (#3423) * fix: dingtalk bot GET verification (#3424) * 4.8.16 test: fix: plugin inputs render;fix: ui offset (#3426) * fix: ui offset * perf: dingding talk * fix: plugin inputs render * feat: menu all folder (#3429) * fix: recall code --------- Co-authored-by: heheer <heheer@sealos.io> Co-authored-by: a.e. <49438478+I-Info@users.noreply.github.com> Co-authored-by: Jiangween <145003935+Jiangween@users.noreply.github.com>
102 lines
2.2 KiB
TypeScript
102 lines
2.2 KiB
TypeScript
import { connectionMongo, getMongoModel } from '../../common/mongo';
|
|
const { Schema } = connectionMongo;
|
|
import { ChatSchema as ChatType } from '@fastgpt/global/core/chat/type.d';
|
|
import { ChatSourceMap } from '@fastgpt/global/core/chat/constants';
|
|
import {
|
|
TeamCollectionName,
|
|
TeamMemberCollectionName
|
|
} from '@fastgpt/global/support/user/team/constant';
|
|
import { AppCollectionName } from '../app/schema';
|
|
|
|
export const chatCollectionName = 'chat';
|
|
|
|
const ChatSchema = new Schema({
|
|
chatId: {
|
|
type: String,
|
|
require: true
|
|
},
|
|
userId: {
|
|
type: Schema.Types.ObjectId,
|
|
ref: 'user'
|
|
},
|
|
teamId: {
|
|
type: Schema.Types.ObjectId,
|
|
ref: TeamCollectionName,
|
|
required: true
|
|
},
|
|
tmbId: {
|
|
type: Schema.Types.ObjectId,
|
|
ref: TeamMemberCollectionName,
|
|
required: true
|
|
},
|
|
appId: {
|
|
type: Schema.Types.ObjectId,
|
|
ref: AppCollectionName,
|
|
required: true
|
|
},
|
|
updateTime: {
|
|
type: Date,
|
|
default: () => new Date()
|
|
},
|
|
title: {
|
|
type: String,
|
|
default: '历史记录'
|
|
},
|
|
customTitle: {
|
|
type: String,
|
|
default: ''
|
|
},
|
|
top: {
|
|
type: Boolean,
|
|
default: false
|
|
},
|
|
source: {
|
|
type: String,
|
|
required: true
|
|
},
|
|
shareId: {
|
|
type: String
|
|
},
|
|
outLinkUid: {
|
|
type: String
|
|
},
|
|
|
|
variableList: {
|
|
type: Array
|
|
},
|
|
welcomeText: {
|
|
type: String
|
|
},
|
|
variables: {
|
|
// variable value
|
|
type: Object,
|
|
default: {}
|
|
},
|
|
pluginInputs: Array,
|
|
metadata: {
|
|
//For special storage
|
|
type: Object,
|
|
default: {}
|
|
}
|
|
});
|
|
|
|
try {
|
|
ChatSchema.index({ chatId: 1 }, { background: true });
|
|
// get user history
|
|
ChatSchema.index({ tmbId: 1, appId: 1, top: -1, updateTime: -1 }, { background: true });
|
|
// delete by appid; clear history; init chat; update chat; auth chat; get chat;
|
|
ChatSchema.index({ appId: 1, chatId: 1 }, { background: true });
|
|
|
|
// get chat logs;
|
|
ChatSchema.index({ teamId: 1, appId: 1, updateTime: -1 }, { background: true });
|
|
// get share chat history
|
|
ChatSchema.index({ shareId: 1, outLinkUid: 1, updateTime: -1 }, { background: true });
|
|
|
|
// timer, clear history
|
|
ChatSchema.index({ teamId: 1, updateTime: -1 }, { background: true });
|
|
} catch (error) {
|
|
console.log(error);
|
|
}
|
|
|
|
export const MongoChat = getMongoModel<ChatType>(chatCollectionName, ChatSchema);
|