mirror of
https://github.com/labring/FastGPT.git
synced 2025-10-18 09:24:03 +00:00

* fix(api): 修复二级路由下的页面判断逻辑 在请求错误处理中,添加基础URL前缀以正确判断当前是否为外部链接页面。 * perf: use global var * remove invalid code * feat: response limit;perf: copy avatar image;perf: markdown parse (#5719) * feat: response limit * remove placeholder * perf: copy avatar image * perf: markdown parse * fix: child app cannot show cite * doc * fix: node template bugs (#5727) * add dataset search count track (#5721) * add dataset search count track * remove pro * change to track * remove unused * fix * perf: track code --------- Co-authored-by: archer <545436317@qq.com> * http response limit * deploy doc * fix: test * doc * remove invalid code * remove invalid code --------- Co-authored-by: 戴盛利 <1639499287@qq.com> Co-authored-by: heheer <heheer@sealos.io>
629 lines
19 KiB
TypeScript
629 lines
19 KiB
TypeScript
import type {
|
|
NodeToolConfigType,
|
|
FlowNodeTemplateType
|
|
} from '@fastgpt/global/core/workflow/type/node.d';
|
|
import {
|
|
FlowNodeOutputTypeEnum,
|
|
FlowNodeInputTypeEnum,
|
|
FlowNodeTypeEnum
|
|
} from '@fastgpt/global/core/workflow/node/constant';
|
|
import {
|
|
appData2FlowNodeIO,
|
|
pluginData2FlowNodeIO,
|
|
toolData2FlowNodeIO,
|
|
toolSetData2FlowNodeIO
|
|
} from '@fastgpt/global/core/workflow/utils';
|
|
import { MongoApp } from '../schema';
|
|
import type { localeType } from '@fastgpt/global/common/i18n/type';
|
|
import { parseI18nString } from '@fastgpt/global/common/i18n/utils';
|
|
import type { WorkflowTemplateBasicType } from '@fastgpt/global/core/workflow/type';
|
|
import { type SystemPluginTemplateItemType } from '@fastgpt/global/core/app/plugin/type';
|
|
import {
|
|
checkIsLatestVersion,
|
|
getAppLatestVersion,
|
|
getAppVersionById
|
|
} from '../version/controller';
|
|
import { type PluginRuntimeType } from '@fastgpt/global/core/app/plugin/type';
|
|
import { MongoSystemPlugin } from './systemPluginSchema';
|
|
import { PluginErrEnum } from '@fastgpt/global/common/error/code/plugin';
|
|
import { PluginSourceEnum } from '@fastgpt/global/core/app/plugin/constants';
|
|
import {
|
|
FlowNodeTemplateTypeEnum,
|
|
NodeInputKeyEnum
|
|
} from '@fastgpt/global/core/workflow/constants';
|
|
import { getNanoid } from '@fastgpt/global/common/string/tools';
|
|
import { APIGetSystemToolList } from '../tool/api';
|
|
import { Types } from '../../../common/mongo';
|
|
import type { SystemPluginConfigSchemaType } from './type';
|
|
import type {
|
|
FlowNodeInputItemType,
|
|
FlowNodeOutputItemType
|
|
} from '@fastgpt/global/core/workflow/type/io';
|
|
import { isProduction } from '@fastgpt/global/common/system/constants';
|
|
import { Output_Template_Error_Message } from '@fastgpt/global/core/workflow/template/output';
|
|
import { splitCombinePluginId } from '@fastgpt/global/core/app/plugin/utils';
|
|
import { getMCPToolRuntimeNode } from '@fastgpt/global/core/app/mcpTools/utils';
|
|
import { getHTTPToolRuntimeNode } from '@fastgpt/global/core/app/httpTools/utils';
|
|
import { AppTypeEnum } from '@fastgpt/global/core/app/constants';
|
|
import { getMCPChildren } from '../mcp';
|
|
import { cloneDeep } from 'lodash';
|
|
import { UserError } from '@fastgpt/global/common/error/utils';
|
|
import { getCachedData } from '../../../common/cache';
|
|
import { SystemCacheKeyEnum } from '../../../common/cache/type';
|
|
|
|
type ChildAppType = SystemPluginTemplateItemType & {
|
|
teamId?: string;
|
|
tmbId?: string;
|
|
workflow?: WorkflowTemplateBasicType;
|
|
versionLabel?: string; // Auto computed
|
|
isLatestVersion?: boolean; // Auto computed
|
|
};
|
|
|
|
export const getSystemTools = () => getCachedData(SystemCacheKeyEnum.systemTool);
|
|
|
|
export const getSystemPluginByIdAndVersionId = async (
|
|
pluginId: string,
|
|
versionId?: string
|
|
): Promise<ChildAppType> => {
|
|
const plugin = await getSystemToolById(pluginId);
|
|
|
|
// Admin selected system tool
|
|
if (plugin.associatedPluginId) {
|
|
// The verification plugin is set as a system plugin
|
|
const systemPlugin = await MongoSystemPlugin.findOne(
|
|
{ pluginId: plugin.id, 'customConfig.associatedPluginId': plugin.associatedPluginId },
|
|
'associatedPluginId'
|
|
).lean();
|
|
if (!systemPlugin) return Promise.reject(PluginErrEnum.unExist);
|
|
|
|
const app = await MongoApp.findById(plugin.associatedPluginId).lean();
|
|
if (!app) return Promise.reject(PluginErrEnum.unExist);
|
|
|
|
const version = versionId
|
|
? await getAppVersionById({
|
|
appId: plugin.associatedPluginId,
|
|
versionId,
|
|
app
|
|
})
|
|
: await getAppLatestVersion(plugin.associatedPluginId, app);
|
|
if (!version.versionId) return Promise.reject(new UserError('App version not found'));
|
|
const isLatest = version.versionId
|
|
? await checkIsLatestVersion({
|
|
appId: plugin.associatedPluginId,
|
|
versionId: version.versionId
|
|
})
|
|
: true;
|
|
|
|
return {
|
|
...plugin,
|
|
workflow: {
|
|
nodes: version.nodes,
|
|
edges: version.edges,
|
|
chatConfig: version.chatConfig
|
|
},
|
|
version: versionId ? version?.versionId : '',
|
|
versionLabel: version?.versionName,
|
|
isLatestVersion: isLatest,
|
|
teamId: String(app.teamId),
|
|
tmbId: String(app.tmbId)
|
|
};
|
|
}
|
|
|
|
// System toolset
|
|
if (plugin.isFolder) {
|
|
return {
|
|
...plugin,
|
|
inputs: [],
|
|
outputs: [],
|
|
inputList: plugin.inputList,
|
|
version: '',
|
|
isLatestVersion: true
|
|
};
|
|
}
|
|
|
|
// System tool
|
|
const versionList = (plugin.versionList as SystemPluginTemplateItemType['versionList']) || [];
|
|
|
|
if (versionList.length === 0) {
|
|
return Promise.reject(new UserError('Can not find plugin version list'));
|
|
}
|
|
|
|
const version = versionId
|
|
? versionList.find((item) => item.value === versionId) ?? versionList[0]
|
|
: versionList[0];
|
|
const lastVersion = versionList[0];
|
|
|
|
// concat parent (if exists) input config
|
|
const parent = plugin.parentId ? await getSystemToolById(plugin.parentId) : undefined;
|
|
if (parent?.inputList) {
|
|
version?.inputs?.unshift({
|
|
key: NodeInputKeyEnum.systemInputConfig,
|
|
label: '',
|
|
renderTypeList: [FlowNodeInputTypeEnum.hidden],
|
|
inputList: parent.inputList
|
|
});
|
|
}
|
|
|
|
return {
|
|
...plugin,
|
|
inputs: version.inputs ?? [],
|
|
outputs: version.outputs ?? [],
|
|
version: versionId ? version?.value : '',
|
|
versionLabel: versionId ? version?.value : '',
|
|
isLatestVersion: !version || !lastVersion || version.value === lastVersion?.value
|
|
};
|
|
};
|
|
|
|
/*
|
|
Format plugin to workflow preview node data
|
|
Persion workflow/plugin: objectId
|
|
Persion mcptoolset: objectId
|
|
Persion mcp tool: mcp-parentId/name
|
|
System tool/toolset: system-toolId
|
|
*/
|
|
export async function getChildAppPreviewNode({
|
|
appId,
|
|
versionId,
|
|
lang = 'en'
|
|
}: {
|
|
appId: string;
|
|
versionId?: string;
|
|
lang?: localeType;
|
|
}): Promise<FlowNodeTemplateType> {
|
|
const { source, pluginId } = splitCombinePluginId(appId);
|
|
|
|
const app: ChildAppType = await (async () => {
|
|
// 1. App
|
|
// 2. MCP ToolSets
|
|
if (source === PluginSourceEnum.personal) {
|
|
const item = await MongoApp.findById(pluginId).lean();
|
|
if (!item) return Promise.reject(PluginErrEnum.unExist);
|
|
|
|
const version = await getAppVersionById({ appId: pluginId, versionId, app: item });
|
|
|
|
const isLatest =
|
|
version.versionId && Types.ObjectId.isValid(version.versionId)
|
|
? await checkIsLatestVersion({
|
|
appId: pluginId,
|
|
versionId: version.versionId
|
|
})
|
|
: true;
|
|
|
|
if (item.type === AppTypeEnum.toolSet) {
|
|
const children = await getMCPChildren(item);
|
|
version.nodes[0].toolConfig = {
|
|
mcpToolSet: {
|
|
toolId: pluginId,
|
|
toolList: children,
|
|
url: '',
|
|
headerSecret: {}
|
|
}
|
|
};
|
|
}
|
|
return {
|
|
id: String(item._id),
|
|
teamId: String(item.teamId),
|
|
name: item.name,
|
|
avatar: item.avatar,
|
|
intro: item.intro,
|
|
showStatus: true,
|
|
workflow: {
|
|
nodes: version.nodes,
|
|
edges: version.edges,
|
|
chatConfig: version.chatConfig
|
|
},
|
|
templateType: FlowNodeTemplateTypeEnum.teamApp,
|
|
|
|
version: versionId ? version?.versionId : '',
|
|
versionLabel: version?.versionName,
|
|
isLatestVersion: isLatest,
|
|
|
|
originCost: 0,
|
|
currentCost: 0,
|
|
hasTokenFee: false,
|
|
pluginOrder: 0
|
|
};
|
|
}
|
|
// mcp tool
|
|
else if (source === PluginSourceEnum.mcp) {
|
|
const [parentId, toolName] = pluginId.split('/');
|
|
// 1. get parentApp
|
|
const item = await MongoApp.findById(parentId).lean();
|
|
if (!item) return Promise.reject(PluginErrEnum.unExist);
|
|
|
|
const version = await getAppVersionById({ appId: parentId, versionId, app: item });
|
|
const toolConfig = version.nodes[0].toolConfig?.mcpToolSet;
|
|
const tool = await (async () => {
|
|
if (toolConfig?.toolList) {
|
|
// new mcp toolset
|
|
return toolConfig.toolList.find((item) => item.name === toolName);
|
|
}
|
|
// old mcp toolset
|
|
return (await getMCPChildren(item)).find((item) => item.name === toolName);
|
|
})();
|
|
if (!tool) return Promise.reject(PluginErrEnum.unExist);
|
|
return {
|
|
avatar: item.avatar,
|
|
id: appId,
|
|
name: tool.name,
|
|
templateType: FlowNodeTemplateTypeEnum.tools,
|
|
workflow: {
|
|
nodes: [
|
|
getMCPToolRuntimeNode({
|
|
tool: {
|
|
description: tool.description,
|
|
inputSchema: tool.inputSchema,
|
|
name: tool.name
|
|
},
|
|
avatar: item.avatar,
|
|
parentId: item._id
|
|
})
|
|
],
|
|
edges: []
|
|
},
|
|
version: '',
|
|
isLatestVersion: true
|
|
};
|
|
}
|
|
// http tool
|
|
else if (source === PluginSourceEnum.http) {
|
|
const [parentId, toolName] = pluginId.split('/');
|
|
const item = await MongoApp.findById(parentId).lean();
|
|
if (!item) return Promise.reject(PluginErrEnum.unExist);
|
|
|
|
const version = await getAppVersionById({ appId: parentId, versionId, app: item });
|
|
const toolConfig = version.nodes[0].toolConfig?.httpToolSet;
|
|
const tool = await (async () => {
|
|
if (toolConfig?.toolList) {
|
|
return toolConfig.toolList.find((item) => item.name === toolName);
|
|
}
|
|
return undefined;
|
|
})();
|
|
if (!tool) return Promise.reject(PluginErrEnum.unExist);
|
|
return {
|
|
avatar: item.avatar,
|
|
id: appId,
|
|
name: tool.name,
|
|
templateType: FlowNodeTemplateTypeEnum.tools,
|
|
workflow: {
|
|
nodes: [
|
|
getHTTPToolRuntimeNode({
|
|
tool: {
|
|
description: tool.description,
|
|
inputSchema: tool.inputSchema,
|
|
outputSchema: tool.outputSchema,
|
|
name: `${item.name}/${tool.name}`
|
|
},
|
|
avatar: item.avatar,
|
|
parentId: item._id
|
|
})
|
|
],
|
|
edges: []
|
|
},
|
|
version: '',
|
|
isLatestVersion: true
|
|
};
|
|
}
|
|
// 1. System Tools
|
|
// 2. System Plugins configured in Pro (has associatedPluginId)
|
|
else {
|
|
return getSystemPluginByIdAndVersionId(pluginId, versionId);
|
|
}
|
|
})();
|
|
|
|
const { flowNodeType, nodeIOConfig } = await (async (): Promise<{
|
|
flowNodeType: FlowNodeTypeEnum;
|
|
nodeIOConfig: {
|
|
inputs: FlowNodeInputItemType[];
|
|
outputs: FlowNodeOutputItemType[];
|
|
toolConfig?: NodeToolConfigType;
|
|
showSourceHandle?: boolean;
|
|
showTargetHandle?: boolean;
|
|
};
|
|
}> => {
|
|
if (source === PluginSourceEnum.systemTool) {
|
|
// system Tool or Toolsets
|
|
const children = app.isFolder
|
|
? (await getSystemTools()).filter((item) => item.parentId === pluginId)
|
|
: [];
|
|
|
|
return {
|
|
flowNodeType: app.isFolder ? FlowNodeTypeEnum.toolSet : FlowNodeTypeEnum.tool,
|
|
nodeIOConfig: {
|
|
inputs: [
|
|
...(app.inputList
|
|
? [
|
|
{
|
|
key: NodeInputKeyEnum.systemInputConfig,
|
|
label: '',
|
|
renderTypeList: [FlowNodeInputTypeEnum.hidden],
|
|
inputList: app.inputList
|
|
}
|
|
]
|
|
: []),
|
|
...(app.inputs ?? [])
|
|
],
|
|
outputs: app.outputs ?? [],
|
|
toolConfig: {
|
|
...(app.isFolder
|
|
? {
|
|
systemToolSet: {
|
|
toolId: app.id,
|
|
toolList: children
|
|
.filter((item) => item.isActive !== false)
|
|
.map((item) => ({
|
|
toolId: item.id,
|
|
name: parseI18nString(item.name, lang),
|
|
description: parseI18nString(item.intro, lang)
|
|
}))
|
|
}
|
|
}
|
|
: { systemTool: { toolId: app.id } })
|
|
},
|
|
showSourceHandle: app.isFolder ? false : true,
|
|
showTargetHandle: app.isFolder ? false : true
|
|
}
|
|
};
|
|
}
|
|
|
|
// Plugin workflow
|
|
if (!!app.workflow.nodes.find((node) => node.flowNodeType === FlowNodeTypeEnum.pluginInput)) {
|
|
// plugin app
|
|
return {
|
|
flowNodeType: FlowNodeTypeEnum.pluginModule,
|
|
nodeIOConfig: pluginData2FlowNodeIO({ nodes: app.workflow.nodes })
|
|
};
|
|
}
|
|
|
|
// Mcp
|
|
if (
|
|
!!app.workflow.nodes.find((node) => node.flowNodeType === FlowNodeTypeEnum.toolSet) &&
|
|
app.workflow.nodes.length === 1
|
|
) {
|
|
// mcp tools
|
|
return {
|
|
flowNodeType: FlowNodeTypeEnum.toolSet,
|
|
nodeIOConfig: toolSetData2FlowNodeIO({ nodes: app.workflow.nodes })
|
|
};
|
|
}
|
|
|
|
if (
|
|
!!app.workflow.nodes.find((node) => node.flowNodeType === FlowNodeTypeEnum.tool) &&
|
|
app.workflow.nodes.length === 1
|
|
) {
|
|
return {
|
|
flowNodeType: FlowNodeTypeEnum.tool,
|
|
nodeIOConfig: toolData2FlowNodeIO({ nodes: app.workflow.nodes })
|
|
};
|
|
}
|
|
|
|
// Chat workflow
|
|
return {
|
|
flowNodeType: FlowNodeTypeEnum.appModule,
|
|
nodeIOConfig: appData2FlowNodeIO({ chatConfig: app.workflow.chatConfig })
|
|
};
|
|
})();
|
|
|
|
return {
|
|
id: getNanoid(),
|
|
pluginId: app.id,
|
|
templateType: app.templateType,
|
|
flowNodeType,
|
|
avatar: app.avatar,
|
|
name: parseI18nString(app.name, lang),
|
|
intro: parseI18nString(app.intro, lang),
|
|
toolDescription: app.toolDescription,
|
|
courseUrl: app.courseUrl,
|
|
userGuide: app.userGuide,
|
|
showStatus: true,
|
|
isTool: true,
|
|
catchError: false,
|
|
|
|
version: app.version,
|
|
versionLabel: app.versionLabel,
|
|
isLatestVersion: app.isLatestVersion,
|
|
showSourceHandle: true,
|
|
showTargetHandle: true,
|
|
|
|
currentCost: app.currentCost,
|
|
systemKeyCost: app.systemKeyCost,
|
|
hasTokenFee: app.hasTokenFee,
|
|
hasSystemSecret: app.hasSystemSecret,
|
|
isFolder: app.isFolder,
|
|
|
|
...nodeIOConfig,
|
|
outputs: nodeIOConfig.outputs.some((item) => item.type === FlowNodeOutputTypeEnum.error)
|
|
? nodeIOConfig.outputs
|
|
: [...nodeIOConfig.outputs, Output_Template_Error_Message]
|
|
};
|
|
}
|
|
|
|
/**
|
|
Get runtime plugin data
|
|
System plugin: plugin id
|
|
Personal plugin: Version id
|
|
*/
|
|
export async function getChildAppRuntimeById({
|
|
id,
|
|
versionId,
|
|
lang = 'en'
|
|
}: {
|
|
id: string;
|
|
versionId?: string;
|
|
lang?: localeType;
|
|
}): Promise<PluginRuntimeType> {
|
|
const app = await (async () => {
|
|
const { source, pluginId } = splitCombinePluginId(id);
|
|
|
|
if (source === PluginSourceEnum.personal) {
|
|
const item = await MongoApp.findById(pluginId).lean();
|
|
if (!item) return Promise.reject(PluginErrEnum.unExist);
|
|
|
|
const version = await getAppVersionById({
|
|
appId: pluginId,
|
|
versionId,
|
|
app: item
|
|
});
|
|
|
|
return {
|
|
id: String(item._id),
|
|
teamId: String(item.teamId),
|
|
tmbId: String(item.tmbId),
|
|
name: item.name,
|
|
avatar: item.avatar,
|
|
intro: item.intro,
|
|
showStatus: true,
|
|
workflow: {
|
|
nodes: version.nodes,
|
|
edges: version.edges,
|
|
chatConfig: version.chatConfig
|
|
},
|
|
templateType: FlowNodeTemplateTypeEnum.teamApp,
|
|
|
|
originCost: 0,
|
|
currentCost: 0,
|
|
systemKeyCost: 0,
|
|
hasTokenFee: false,
|
|
pluginOrder: 0
|
|
};
|
|
} else {
|
|
return getSystemPluginByIdAndVersionId(pluginId, versionId);
|
|
}
|
|
})();
|
|
|
|
return {
|
|
id: app.id,
|
|
teamId: app.teamId,
|
|
tmbId: app.tmbId,
|
|
name: parseI18nString(app.name, lang),
|
|
avatar: app.avatar || '',
|
|
showStatus: true,
|
|
currentCost: app.currentCost,
|
|
systemKeyCost: app.systemKeyCost,
|
|
nodes: app.workflow.nodes,
|
|
edges: app.workflow.edges,
|
|
hasTokenFee: app.hasTokenFee
|
|
};
|
|
}
|
|
|
|
const dbPluginFormat = (item: SystemPluginConfigSchemaType): SystemPluginTemplateItemType => {
|
|
const {
|
|
name,
|
|
avatar,
|
|
intro,
|
|
toolDescription,
|
|
version,
|
|
weight,
|
|
templateType,
|
|
associatedPluginId,
|
|
userGuide
|
|
} = item.customConfig!;
|
|
|
|
return {
|
|
id: item.pluginId,
|
|
isActive: item.isActive,
|
|
isFolder: false,
|
|
parentId: null,
|
|
author: item.customConfig?.author || '',
|
|
version,
|
|
name,
|
|
avatar,
|
|
intro,
|
|
toolDescription,
|
|
weight,
|
|
templateType,
|
|
originCost: item.originCost,
|
|
currentCost: item.currentCost,
|
|
hasTokenFee: item.hasTokenFee,
|
|
pluginOrder: item.pluginOrder,
|
|
systemKeyCost: item.systemKeyCost,
|
|
associatedPluginId,
|
|
userGuide,
|
|
workflow: {
|
|
nodes: [],
|
|
edges: []
|
|
}
|
|
};
|
|
};
|
|
|
|
/* FastsGPT-Pluign api: */
|
|
export const refreshSystemTools = async (): Promise<SystemPluginTemplateItemType[]> => {
|
|
const tools = await APIGetSystemToolList();
|
|
|
|
// 从数据库里加载插件配置进行替换
|
|
const systemToolsArray = await MongoSystemPlugin.find({}).lean();
|
|
const systemTools = new Map(systemToolsArray.map((plugin) => [plugin.pluginId, plugin]));
|
|
|
|
const formatTools = tools.map<SystemPluginTemplateItemType>((item) => {
|
|
const dbPluginConfig = systemTools.get(item.id);
|
|
const isFolder = tools.some((tool) => tool.parentId === item.id);
|
|
|
|
const versionList = (item.versionList as SystemPluginTemplateItemType['versionList']) || [];
|
|
|
|
return {
|
|
id: item.id,
|
|
parentId: item.parentId,
|
|
isFolder,
|
|
name: item.name,
|
|
avatar: item.avatar,
|
|
intro: item.description,
|
|
toolDescription: item.toolDescription,
|
|
author: item.author,
|
|
courseUrl: item.courseUrl,
|
|
instructions: dbPluginConfig?.customConfig?.userGuide,
|
|
weight: item.weight,
|
|
toolSource: item.toolSource || 'built-in',
|
|
workflow: {
|
|
nodes: [],
|
|
edges: []
|
|
},
|
|
versionList,
|
|
templateType: item.templateType,
|
|
showStatus: true,
|
|
isActive: dbPluginConfig?.isActive ?? item.isActive ?? true,
|
|
inputList: item?.secretInputConfig,
|
|
hasSystemSecret: !!dbPluginConfig?.inputListVal,
|
|
|
|
originCost: dbPluginConfig?.originCost ?? 0,
|
|
currentCost: dbPluginConfig?.currentCost ?? 0,
|
|
systemKeyCost: dbPluginConfig?.systemKeyCost ?? 0,
|
|
hasTokenFee: dbPluginConfig?.hasTokenFee ?? false,
|
|
pluginOrder: dbPluginConfig?.pluginOrder
|
|
};
|
|
});
|
|
|
|
const dbPlugins = systemToolsArray
|
|
.filter((item) => item.customConfig?.associatedPluginId)
|
|
.map((item) => dbPluginFormat(item));
|
|
|
|
const concatTools = [...formatTools, ...dbPlugins];
|
|
concatTools.sort((a, b) => (a.pluginOrder ?? 999) - (b.pluginOrder ?? 999));
|
|
|
|
global.systemToolsTypeCache = {};
|
|
concatTools.forEach((item) => {
|
|
global.systemToolsTypeCache[item.templateType] = 1;
|
|
});
|
|
|
|
return concatTools;
|
|
};
|
|
|
|
export const getSystemToolById = async (id: string): Promise<SystemPluginTemplateItemType> => {
|
|
const { source, pluginId } = splitCombinePluginId(id);
|
|
if (source === PluginSourceEnum.systemTool) {
|
|
const tools = await getSystemTools();
|
|
const tool = tools.find((item) => item.id === pluginId);
|
|
if (tool) {
|
|
return cloneDeep(tool);
|
|
}
|
|
return Promise.reject(PluginErrEnum.unExist);
|
|
}
|
|
|
|
const dbPlugin = await MongoSystemPlugin.findOne({ pluginId }).lean();
|
|
if (!dbPlugin) return Promise.reject(PluginErrEnum.unExist);
|
|
return dbPluginFormat(dbPlugin);
|
|
};
|
|
|
|
declare global {
|
|
var systemToolsTypeCache: Record<string, 1>;
|
|
}
|