mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-24 22:03:54 +00:00
81 lines
1.9 KiB
TypeScript
81 lines
1.9 KiB
TypeScript
import { connectionMongo, type Model } from '../../common/mongo';
|
|
const { Schema, model, models } = connectionMongo;
|
|
import type { OpenApiSchema } from '@fastgpt/global/support/openapi/type';
|
|
import { PRICE_SCALE } from '@fastgpt/global/support/wallet/bill/constants';
|
|
import { formatStorePrice2Read } from '@fastgpt/global/support/wallet/bill/tools';
|
|
import {
|
|
TeamCollectionName,
|
|
TeamMemberCollectionName
|
|
} from '@fastgpt/global/support/user/team/constant';
|
|
|
|
const OpenApiSchema = new Schema(
|
|
{
|
|
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
|
|
},
|
|
apiKey: {
|
|
type: String,
|
|
required: true,
|
|
get: (val: string) => `******${val.substring(val.length - 4)}`
|
|
},
|
|
createTime: {
|
|
type: Date,
|
|
default: () => new Date()
|
|
},
|
|
lastUsedTime: {
|
|
type: Date
|
|
},
|
|
appId: {
|
|
type: String,
|
|
required: false
|
|
},
|
|
name: {
|
|
type: String,
|
|
default: 'Api Key'
|
|
},
|
|
usage: {
|
|
// total usage. value from bill total
|
|
type: Number,
|
|
default: 0,
|
|
get: (val: number) => formatStorePrice2Read(val)
|
|
},
|
|
limit: {
|
|
expiredTime: {
|
|
type: Date
|
|
},
|
|
credit: {
|
|
// value from user settings
|
|
type: Number,
|
|
default: -1,
|
|
set: (val: number) => val * PRICE_SCALE,
|
|
get: (val: number) => formatStorePrice2Read(val)
|
|
}
|
|
}
|
|
},
|
|
{
|
|
toObject: { getters: true }
|
|
}
|
|
);
|
|
|
|
try {
|
|
OpenApiSchema.index({ teamId: 1 });
|
|
OpenApiSchema.index({ apiKey: 1 });
|
|
} catch (error) {
|
|
console.log(error);
|
|
}
|
|
|
|
export const MongoOpenApi: Model<OpenApiSchema> =
|
|
models['openapi'] || model('openapi', OpenApiSchema);
|
|
MongoOpenApi.syncIndexes();
|