feat: manually mirror opencoze's code from bytedance

Change-Id: I09a73aadda978ad9511264a756b2ce51f5761adf
This commit is contained in:
fanlv
2025-07-20 17:36:12 +08:00
commit 890153324f
14811 changed files with 1923430 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
/*
* 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.
*/
import { WorkflowMode } from '@coze-workflow/base/api';
export const ICON_URIS = {
[WorkflowMode.Workflow]: 'plugin_icon/workflow.png',
[WorkflowMode.ChatFlow]: 'plugin_icon/chatflow-icon.png',
};

View File

@@ -0,0 +1,111 @@
/*
* 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 @coze-arch/use-error-in-catch */
import { get } from 'lodash-es';
import { inject, injectable } from 'inversify';
import { OperateType, workflowApi } from '@coze-workflow/base/api';
import { EncapsulateContext } from '../encapsulate-context';
import {
type EncapsulateWorkflowParams,
type EncapsulateApiService,
} from './types';
import { ICON_URIS } from './constants';
@injectable()
export class EncapsulateApiServiceImpl implements EncapsulateApiService {
@inject(EncapsulateContext)
private encapsulateContext: EncapsulateContext;
async encapsulateWorkflow({
name,
desc,
json,
flowMode,
}: EncapsulateWorkflowParams) {
try {
const res = await workflowApi.EncapsulateWorkflow({
space_id: this.encapsulateContext.spaceId,
name,
flow_mode: flowMode,
desc,
schema: JSON.stringify(json),
icon_uri: ICON_URIS[flowMode],
project_id: this.encapsulateContext.projectId,
});
const workflowId = res.data?.workflow_id;
if (!workflowId) {
return null;
}
return {
workflowId,
};
} catch (e) {
return null;
}
}
async validateWorkflow(json) {
try {
const res = await workflowApi.EncapsulateWorkflow({
space_id: this.encapsulateContext.spaceId,
name: '',
desc: '',
icon_uri: '',
schema: JSON.stringify(json),
only_validate: true,
});
return res?.data?.validate_data || [];
} catch (e) {
return [
{
message: 'call validate api failed',
},
];
}
}
async getWorkflow(spaceId: string, workflowId: string, version?: string) {
let json;
// 有历史版本的场景获取历史版本的数据
if (version) {
const res = await workflowApi.GetHistorySchema({
space_id: spaceId,
workflow_id: workflowId,
workflow_version: version,
commit_id: '',
type: OperateType.DraftOperate,
});
json = get(res, 'data.schema');
} else {
const res = await workflowApi.GetCanvasInfo({
space_id: spaceId,
workflow_id: workflowId,
});
json = get(res, 'data.workflow.schema_json');
}
if (!json) {
return null;
}
return JSON.parse(json);
}
}

View File

@@ -0,0 +1,18 @@
/*
* 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 * from './types';
export * from './encapsulate-api-service';

View File

@@ -0,0 +1,57 @@
/*
* 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.
*/
import {
type ValidateErrorData,
type WorkflowMode,
} from '@coze-workflow/base/';
import { type WorkflowJSON } from '@flowgram-adapter/free-layout-editor';
export interface EncapsulateWorkflowParams {
name: string;
desc: string;
json: WorkflowJSON;
flowMode: WorkflowMode;
}
export interface EncapsulateApiService {
/**
* 封装流程
* @param name
*/
encapsulateWorkflow: (
params: EncapsulateWorkflowParams,
) => Promise<{ workflowId: string } | null>;
/**
* 校验流程
* @param schema
* @returns
*/
validateWorkflow: (json: WorkflowJSON) => Promise<ValidateErrorData[]>;
/**
* 获取流程数据
* @param spaceId
* @param workflowId
* @returns
*/
getWorkflow: (
spaceId: string,
workflowId: string,
version?: string,
) => Promise<WorkflowJSON | null>;
}
export const EncapsulateApiService = Symbol('EncapsulateApiService');