feat: manually mirror opencoze's code from bytedance
Change-Id: I09a73aadda978ad9511264a756b2ce51f5761adf
This commit is contained in:
@@ -0,0 +1,249 @@
|
||||
/*
|
||||
* Copyright 2025 coze-dev Authors
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
/* eslint-disable @typescript-eslint/naming-convention */
|
||||
import { isArray } from 'lodash-es';
|
||||
import { inject, injectable, postConstruct, preDestroy } from 'inversify';
|
||||
import {
|
||||
ASTFactory,
|
||||
type ASTNodeJSON,
|
||||
type PropertyJSON,
|
||||
type Scope,
|
||||
VariableEngine,
|
||||
} from '@flowgram-adapter/free-layout-editor';
|
||||
import { DisposableCollection, Emitter } from '@flowgram-adapter/common';
|
||||
import {
|
||||
VariableChannel,
|
||||
VariableConnector,
|
||||
type Variable as GlobalVariableType,
|
||||
} from '@coze-arch/bot-api/memory';
|
||||
import { MemoryApi } from '@coze-arch/bot-api';
|
||||
|
||||
import { safeJSONParse } from '../utils/json';
|
||||
import {
|
||||
GlobalVariableKey,
|
||||
allGlobalVariableKeys,
|
||||
GLOBAL_VARIABLE_SCOPE_ID,
|
||||
} from '../constants';
|
||||
|
||||
type FetchGlobalVariablesType = Partial<
|
||||
Record<GlobalVariableKey, PropertyJSON[]>
|
||||
>;
|
||||
|
||||
interface GlobalVariableTreeNode {
|
||||
name?: string;
|
||||
type?: string;
|
||||
schema?: GlobalVariableTreeNode;
|
||||
readonly?: boolean;
|
||||
}
|
||||
|
||||
export interface State {
|
||||
type?: 'project' | 'bot';
|
||||
id?: string;
|
||||
}
|
||||
|
||||
@injectable()
|
||||
export class GlobalVariableService {
|
||||
@inject(VariableEngine) variableEngine: VariableEngine;
|
||||
|
||||
protected onLoadedEmitter = new Emitter<void>();
|
||||
protected onBeforeLoadEmitter = new Emitter<void>();
|
||||
|
||||
protected toDispose = new DisposableCollection();
|
||||
|
||||
protected globalScope: Scope;
|
||||
|
||||
protected connectorTypeMapping = {
|
||||
bot: VariableConnector.Bot,
|
||||
project: VariableConnector.Project,
|
||||
};
|
||||
|
||||
protected variableChannelMapping = {
|
||||
[GlobalVariableKey.System]: VariableChannel.System,
|
||||
[GlobalVariableKey.User]: VariableChannel.Custom,
|
||||
[GlobalVariableKey.App]: VariableChannel.APP,
|
||||
};
|
||||
|
||||
onLoaded = this.onLoadedEmitter.event;
|
||||
|
||||
onBeforeLoad = this.onBeforeLoadEmitter.event;
|
||||
|
||||
protected _state: State = {};
|
||||
|
||||
get state(): State {
|
||||
return this._state;
|
||||
}
|
||||
|
||||
/**
|
||||
* 拉取最新的变量数据
|
||||
*/
|
||||
protected async fetchGlobalVariableMetas(
|
||||
connectorType: 'project' | 'bot',
|
||||
connectorId?: string,
|
||||
): Promise<FetchGlobalVariablesType> {
|
||||
try {
|
||||
const res = await MemoryApi.GetMemoryVariableMeta({
|
||||
ConnectorID: connectorId,
|
||||
ConnectorType: this.connectorTypeMapping[connectorType],
|
||||
});
|
||||
|
||||
return {
|
||||
[GlobalVariableKey.System]: this.parseGlobalVariableList(
|
||||
res?.VariableMap?.[VariableChannel.System],
|
||||
),
|
||||
[GlobalVariableKey.App]: this.parseGlobalVariableList(
|
||||
res?.VariableMap?.[VariableChannel.APP],
|
||||
),
|
||||
[GlobalVariableKey.User]: this.parseGlobalVariableList(
|
||||
res?.VariableMap?.[VariableChannel.Custom],
|
||||
),
|
||||
};
|
||||
} catch (err) {
|
||||
console.error(err);
|
||||
|
||||
return Promise.resolve({});
|
||||
}
|
||||
}
|
||||
|
||||
_latestFetchId = 0;
|
||||
|
||||
/**
|
||||
* 触发刷新事件
|
||||
*/
|
||||
async loadGlobalVariables(
|
||||
connectorType: 'project' | 'bot',
|
||||
connectorId?: string,
|
||||
) {
|
||||
if (!connectorId) {
|
||||
return;
|
||||
}
|
||||
|
||||
const fetchId = ++this._latestFetchId;
|
||||
|
||||
this._state = Object.assign(this._state, {
|
||||
type: connectorType,
|
||||
id: connectorId,
|
||||
});
|
||||
|
||||
this.onBeforeLoadEmitter.fire();
|
||||
|
||||
const res = await this.fetchGlobalVariableMetas(connectorType, connectorId);
|
||||
|
||||
// 有新的请求,则直接丢弃结果
|
||||
if (fetchId !== this._latestFetchId) {
|
||||
return;
|
||||
}
|
||||
|
||||
// 同步最新的变量数据到 AST
|
||||
allGlobalVariableKeys.forEach(_key => {
|
||||
if (!res[_key]?.length) {
|
||||
this.globalScope.ast.remove(_key);
|
||||
return;
|
||||
}
|
||||
|
||||
this.globalScope.ast.set(
|
||||
_key,
|
||||
ASTFactory.createVariableDeclaration({
|
||||
key: _key,
|
||||
type: ASTFactory.createObject({
|
||||
properties: (res[_key] || []).filter(Boolean),
|
||||
}),
|
||||
}),
|
||||
);
|
||||
});
|
||||
|
||||
this.onLoadedEmitter.fire();
|
||||
}
|
||||
|
||||
@postConstruct()
|
||||
init() {
|
||||
this.globalScope = this.variableEngine.createScope(
|
||||
GLOBAL_VARIABLE_SCOPE_ID,
|
||||
);
|
||||
}
|
||||
|
||||
protected parseGlobalVariableList(
|
||||
vList?: GlobalVariableType[],
|
||||
): PropertyJSON[] {
|
||||
if (!vList?.length) {
|
||||
return [];
|
||||
}
|
||||
|
||||
return vList.map(_v =>
|
||||
this.createASTPropertyFromGlobalVariableSchema({
|
||||
name: _v.Keyword,
|
||||
readonly: _v.IsReadOnly,
|
||||
...safeJSONParse(_v.Schema),
|
||||
}),
|
||||
);
|
||||
}
|
||||
|
||||
protected createASTPropertyFromGlobalVariableSchema(
|
||||
globalVariable: GlobalVariableTreeNode,
|
||||
): PropertyJSON {
|
||||
const { name, readonly, type, schema } = globalVariable;
|
||||
|
||||
return ASTFactory.createProperty({
|
||||
key: name || '',
|
||||
meta: { readonly },
|
||||
type: this.createASTTypeFromGlobalVariableType(type || '', schema),
|
||||
});
|
||||
}
|
||||
|
||||
protected createASTTypeFromGlobalVariableType(
|
||||
type: string,
|
||||
schema?: GlobalVariableTreeNode,
|
||||
): ASTNodeJSON | undefined {
|
||||
// 参考协议:
|
||||
switch (type) {
|
||||
case 'string':
|
||||
return ASTFactory.createString();
|
||||
case 'boolean':
|
||||
return ASTFactory.createBoolean();
|
||||
case 'integer':
|
||||
return ASTFactory.createInteger();
|
||||
case 'float':
|
||||
case 'number': // number 为历史数据,标准为 float
|
||||
return ASTFactory.createNumber();
|
||||
|
||||
case 'object':
|
||||
return ASTFactory.createObject({
|
||||
properties: isArray(schema)
|
||||
? schema.map(_schema =>
|
||||
this.createASTPropertyFromGlobalVariableSchema(_schema),
|
||||
)
|
||||
: [],
|
||||
});
|
||||
|
||||
case 'list':
|
||||
return ASTFactory.createArray({
|
||||
items: this.createASTTypeFromGlobalVariableType(
|
||||
schema?.type || '',
|
||||
schema?.schema,
|
||||
),
|
||||
});
|
||||
|
||||
default:
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
@preDestroy()
|
||||
dispose() {
|
||||
this.toDispose.dispose();
|
||||
this.onLoadedEmitter.dispose();
|
||||
}
|
||||
}
|
||||
17
frontend/packages/workflow/variable/src/services/index.tsx
Normal file
17
frontend/packages/workflow/variable/src/services/index.tsx
Normal file
@@ -0,0 +1,17 @@
|
||||
/*
|
||||
* Copyright 2025 coze-dev Authors
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
export { GlobalVariableService } from './global-variable-service';
|
||||
Reference in New Issue
Block a user