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

* feat: add third party account config (#3443) * temp * editor workflow variable style * add team to dispatch * i18n * delete console * change openai account position * fix * fix * fix * fix * fix * 4.8.17 test (#3461) * perf: external provider config * perf: ui * feat: add template config (#3434) * change template position * template config * delete console * delete * fix * fix * perf: Mongo visutal field (#3464) * remve invalid code * perf: team member visutal code * perf: virtual search; perf: search test data * fix: ts * fix: image response headers * perf: template code * perf: auth layout;perf: auto save (#3472) * perf: auth layout * perf: auto save * perf: auto save * fix: template guide display & http input support external variables (#3475) * fix: template guide display * http editor support external workflow variables * perf: auto save;fix: ifelse checker line break; (#3478) * perf: auto save * perf: auto save * fix: ifelse checker line break * perf: doc * perf: doc * fix: update var type error * 4.8.17 test (#3479) * perf: auto save * perf: auto save * perf: template code * 4.8.17 test (#3480) * perf: auto save * perf: auto save * perf: model price model * feat: add react memo * perf: model provider filter * fix: ts (#3481) * perf: auto save * perf: auto save * fix: ts * simple app tool select (#3473) * workflow plugin userguide & simple tool ui * simple tool filter * reuse component * change component to hook * fix * perf: too selector modal (#3484) * perf: auto save * perf: auto save * perf: markdown render * perf: too selector * fix: app version require tmbId * perf: templates refresh * perf: templates refresh * hide auto save error tip * perf: toolkit guide --------- Co-authored-by: heheer <heheer@sealos.io>
206 lines
6.3 KiB
TypeScript
206 lines
6.3 KiB
TypeScript
import { FlowNodeTemplateType } from '@fastgpt/global/core/workflow/type/node.d';
|
|
import { FlowNodeTypeEnum, defaultNodeVersion } from '@fastgpt/global/core/workflow/node/constant';
|
|
import { appData2FlowNodeIO, pluginData2FlowNodeIO } from '@fastgpt/global/core/workflow/utils';
|
|
import { PluginSourceEnum } from '@fastgpt/global/core/plugin/constants';
|
|
import { FlowNodeTemplateTypeEnum } from '@fastgpt/global/core/workflow/constants';
|
|
import { getHandleConfig } from '@fastgpt/global/core/workflow/template/utils';
|
|
import { getNanoid } from '@fastgpt/global/common/string/tools';
|
|
import { cloneDeep } from 'lodash';
|
|
import { MongoApp } from '../schema';
|
|
import { SystemPluginTemplateItemType } from '@fastgpt/global/core/workflow/type';
|
|
import { getSystemPluginTemplates } from '../../../../plugins/register';
|
|
import { getAppLatestVersion, getAppVersionById } from '../version/controller';
|
|
import { PluginRuntimeType } from '@fastgpt/global/core/plugin/type';
|
|
import { MongoSystemPlugin } from './systemPluginSchema';
|
|
import { PluginErrEnum } from '@fastgpt/global/common/error/code/plugin';
|
|
|
|
/*
|
|
plugin id rule:
|
|
personal: id
|
|
community: community-id
|
|
commercial: commercial-id
|
|
*/
|
|
|
|
export async function splitCombinePluginId(id: string) {
|
|
const splitRes = id.split('-');
|
|
if (splitRes.length === 1) {
|
|
// app id
|
|
return {
|
|
source: PluginSourceEnum.personal,
|
|
pluginId: id
|
|
};
|
|
}
|
|
|
|
const [source, pluginId] = id.split('-') as [PluginSourceEnum, string];
|
|
if (!source || !pluginId) return Promise.reject('pluginId not found');
|
|
|
|
return { source, pluginId: id };
|
|
}
|
|
|
|
type ChildAppType = SystemPluginTemplateItemType & { teamId?: string };
|
|
const getSystemPluginTemplateById = async (
|
|
pluginId: string,
|
|
versionId?: string
|
|
): Promise<SystemPluginTemplateItemType> => {
|
|
const item = getSystemPluginTemplates().find((plugin) => plugin.id === pluginId);
|
|
if (!item) return Promise.reject(PluginErrEnum.unAuth);
|
|
|
|
const plugin = cloneDeep(item);
|
|
|
|
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.unAuth);
|
|
|
|
const app = await MongoApp.findById(plugin.associatedPluginId).lean();
|
|
if (!app) return Promise.reject(PluginErrEnum.unAuth);
|
|
|
|
const version = versionId
|
|
? await getAppVersionById({
|
|
appId: plugin.associatedPluginId,
|
|
versionId,
|
|
app
|
|
})
|
|
: await getAppLatestVersion(plugin.associatedPluginId, app);
|
|
if (!version.versionId) return Promise.reject('App version not found');
|
|
|
|
plugin.workflow = {
|
|
nodes: version.nodes,
|
|
edges: version.edges,
|
|
chatConfig: version.chatConfig
|
|
};
|
|
plugin.version = versionId || String(version.versionId);
|
|
}
|
|
return plugin;
|
|
};
|
|
|
|
/* Format plugin to workflow preview node data */
|
|
export async function getChildAppPreviewNode({
|
|
id
|
|
}: {
|
|
id: string;
|
|
}): Promise<FlowNodeTemplateType> {
|
|
const app: ChildAppType = await (async () => {
|
|
const { source, pluginId } = await splitCombinePluginId(id);
|
|
|
|
if (source === PluginSourceEnum.personal) {
|
|
const item = await MongoApp.findById(id).lean();
|
|
if (!item) return Promise.reject('plugin not found');
|
|
|
|
const version = await getAppLatestVersion(id, item);
|
|
|
|
if (!version.versionId) return Promise.reject('App version not found');
|
|
|
|
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: version.versionId,
|
|
originCost: 0,
|
|
currentCost: 0,
|
|
hasTokenFee: false,
|
|
pluginOrder: 0
|
|
};
|
|
} else {
|
|
return getSystemPluginTemplateById(pluginId);
|
|
}
|
|
})();
|
|
|
|
const isPlugin = !!app.workflow.nodes.find(
|
|
(node) => node.flowNodeType === FlowNodeTypeEnum.pluginInput
|
|
);
|
|
|
|
return {
|
|
id: getNanoid(),
|
|
pluginId: app.id,
|
|
templateType: app.templateType,
|
|
flowNodeType: isPlugin ? FlowNodeTypeEnum.pluginModule : FlowNodeTypeEnum.appModule,
|
|
avatar: app.avatar,
|
|
name: app.name,
|
|
intro: app.intro,
|
|
courseUrl: app.courseUrl,
|
|
userGuide: app.userGuide,
|
|
showStatus: app.showStatus,
|
|
isTool: true,
|
|
version: app.version,
|
|
sourceHandle: getHandleConfig(true, true, true, true),
|
|
targetHandle: getHandleConfig(true, true, true, true),
|
|
...(isPlugin
|
|
? pluginData2FlowNodeIO({ nodes: app.workflow.nodes })
|
|
: appData2FlowNodeIO({ chatConfig: app.workflow.chatConfig }))
|
|
};
|
|
}
|
|
|
|
/*
|
|
Get runtime plugin data
|
|
System plugin: plugin id
|
|
Personal plugin: Version id
|
|
*/
|
|
export async function getChildAppRuntimeById(
|
|
id: string,
|
|
versionId?: string
|
|
): Promise<PluginRuntimeType> {
|
|
const app: ChildAppType = await (async () => {
|
|
const { source, pluginId } = await splitCombinePluginId(id);
|
|
|
|
if (source === PluginSourceEnum.personal) {
|
|
const item = await MongoApp.findById(id).lean();
|
|
if (!item) return Promise.reject('plugin not found');
|
|
|
|
const version = await getAppVersionById({
|
|
appId: id,
|
|
versionId,
|
|
app: item
|
|
});
|
|
|
|
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: item?.pluginData?.nodeVersion || defaultNodeVersion,
|
|
originCost: 0,
|
|
currentCost: 0,
|
|
hasTokenFee: false,
|
|
pluginOrder: 0
|
|
};
|
|
} else {
|
|
return getSystemPluginTemplateById(pluginId, versionId);
|
|
}
|
|
})();
|
|
|
|
return {
|
|
id: app.id,
|
|
teamId: app.teamId,
|
|
name: app.name,
|
|
avatar: app.avatar,
|
|
showStatus: app.showStatus,
|
|
currentCost: app.currentCost,
|
|
nodes: app.workflow.nodes,
|
|
edges: app.workflow.edges,
|
|
hasTokenFee: app.hasTokenFee
|
|
};
|
|
}
|