mirror of
https://github.com/labring/FastGPT.git
synced 2025-10-16 08:01:18 +00:00
81 lines
1.8 KiB
TypeScript
81 lines
1.8 KiB
TypeScript
import { connectionMongo, getMongoModel } from '../../../common/mongo';
|
|
const { Schema } = connectionMongo;
|
|
import { type UsageSchemaType } from '@fastgpt/global/support/wallet/usage/type';
|
|
import { UsageSourceEnum } from '@fastgpt/global/support/wallet/usage/constants';
|
|
import {
|
|
TeamCollectionName,
|
|
TeamMemberCollectionName
|
|
} from '@fastgpt/global/support/user/team/constant';
|
|
import { UsageCollectionName, UsageItemCollectionName } from './constants';
|
|
|
|
const UsageSchema = new Schema(
|
|
{
|
|
teamId: {
|
|
type: Schema.Types.ObjectId,
|
|
ref: TeamCollectionName,
|
|
required: true
|
|
},
|
|
tmbId: {
|
|
type: Schema.Types.ObjectId,
|
|
ref: TeamMemberCollectionName,
|
|
required: true
|
|
},
|
|
source: {
|
|
type: String,
|
|
enum: Object.values(UsageSourceEnum),
|
|
required: true
|
|
},
|
|
appName: {
|
|
// usage name
|
|
type: String,
|
|
default: ''
|
|
},
|
|
totalPoints: {
|
|
// total points
|
|
type: Number,
|
|
required: true
|
|
},
|
|
appId: {
|
|
type: Schema.Types.ObjectId,
|
|
ref: 'apps',
|
|
required: false
|
|
},
|
|
pluginId: {
|
|
type: Schema.Types.ObjectId,
|
|
ref: 'plugins',
|
|
required: false
|
|
},
|
|
time: {
|
|
type: Date,
|
|
default: () => new Date()
|
|
},
|
|
|
|
// @description It will not be used again in the future.
|
|
list: {
|
|
type: Array
|
|
}
|
|
},
|
|
{
|
|
// Auto update time
|
|
timestamps: {
|
|
updatedAt: 'time'
|
|
}
|
|
}
|
|
);
|
|
|
|
UsageSchema.virtual('usageItems', {
|
|
ref: UsageItemCollectionName,
|
|
localField: '_id',
|
|
foreignField: 'usageId'
|
|
});
|
|
|
|
try {
|
|
UsageSchema.index({ teamId: 1, tmbId: 1, source: 1, time: 1, appName: 1, _id: -1 });
|
|
|
|
UsageSchema.index({ time: 1 }, { expireAfterSeconds: 360 * 24 * 60 * 60 });
|
|
} catch (error) {
|
|
console.log(error);
|
|
}
|
|
|
|
export const MongoUsage = getMongoModel<UsageSchemaType>(UsageCollectionName, UsageSchema);
|