135 lines
		
	
	
		
			3.9 KiB
		
	
	
	
		
			Go
		
	
	
	
			
		
		
	
	
			135 lines
		
	
	
		
			3.9 KiB
		
	
	
	
		
			Go
		
	
	
	
| /*
 | |
|  * 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.
 | |
|  */
 | |
| 
 | |
| package plugin
 | |
| 
 | |
| import (
 | |
| 	"context"
 | |
| 	"fmt"
 | |
| 	"strconv"
 | |
| 
 | |
| 	"github.com/cloudwego/eino/compose"
 | |
| 
 | |
| 	model "github.com/coze-dev/coze-studio/backend/api/model/crossdomain/plugin"
 | |
| 	workflowModel "github.com/coze-dev/coze-studio/backend/api/model/crossdomain/workflow"
 | |
| 	crossplugin "github.com/coze-dev/coze-studio/backend/crossdomain/contract/plugin"
 | |
| 	"github.com/coze-dev/coze-studio/backend/domain/workflow/entity"
 | |
| 	"github.com/coze-dev/coze-studio/backend/domain/workflow/entity/vo"
 | |
| 	"github.com/coze-dev/coze-studio/backend/domain/workflow/internal/canvas/convert"
 | |
| 	"github.com/coze-dev/coze-studio/backend/domain/workflow/internal/execute"
 | |
| 	"github.com/coze-dev/coze-studio/backend/domain/workflow/internal/nodes"
 | |
| 	"github.com/coze-dev/coze-studio/backend/domain/workflow/internal/schema"
 | |
| 	"github.com/coze-dev/coze-studio/backend/pkg/errorx"
 | |
| 	"github.com/coze-dev/coze-studio/backend/pkg/lang/ptr"
 | |
| 	"github.com/coze-dev/coze-studio/backend/pkg/lang/slices"
 | |
| 	"github.com/coze-dev/coze-studio/backend/types/errno"
 | |
| )
 | |
| 
 | |
| type Config struct {
 | |
| 	PluginID      int64
 | |
| 	ToolID        int64
 | |
| 	PluginVersion string
 | |
| }
 | |
| 
 | |
| func (c *Config) Adapt(ctx context.Context, n *vo.Node, opts ...nodes.AdaptOption) (*schema.NodeSchema, error) {
 | |
| 	ns := &schema.NodeSchema{
 | |
| 		Key:     vo.NodeKey(n.ID),
 | |
| 		Type:    entity.NodeTypePlugin,
 | |
| 		Name:    n.Data.Meta.Title,
 | |
| 		Configs: c,
 | |
| 	}
 | |
| 	inputs := n.Data.Inputs
 | |
| 
 | |
| 	apiParams := slices.ToMap(inputs.APIParams, func(e *vo.Param) (string, *vo.Param) {
 | |
| 		return e.Name, e
 | |
| 	})
 | |
| 
 | |
| 	ps, ok := apiParams["pluginID"]
 | |
| 	if !ok {
 | |
| 		return nil, fmt.Errorf("plugin id param is not found")
 | |
| 	}
 | |
| 
 | |
| 	pID, err := strconv.ParseInt(ps.Input.Value.Content.(string), 10, 64)
 | |
| 
 | |
| 	c.PluginID = pID
 | |
| 
 | |
| 	ps, ok = apiParams["apiID"]
 | |
| 	if !ok {
 | |
| 		return nil, fmt.Errorf("plugin id param is not found")
 | |
| 	}
 | |
| 
 | |
| 	tID, err := strconv.ParseInt(ps.Input.Value.Content.(string), 10, 64)
 | |
| 	if err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 
 | |
| 	c.ToolID = tID
 | |
| 
 | |
| 	ps, ok = apiParams["pluginVersion"]
 | |
| 	if !ok {
 | |
| 		return nil, fmt.Errorf("plugin version param is not found")
 | |
| 	}
 | |
| 	version := ps.Input.Value.Content.(string)
 | |
| 
 | |
| 	c.PluginVersion = version
 | |
| 
 | |
| 	if err := convert.SetInputsForNodeSchema(n, ns); err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 
 | |
| 	if err := convert.SetOutputTypesForNodeSchema(n, ns); err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 
 | |
| 	return ns, nil
 | |
| }
 | |
| 
 | |
| func (c *Config) Build(_ context.Context, _ *schema.NodeSchema, _ ...schema.BuildOption) (any, error) {
 | |
| 	return &Plugin{
 | |
| 		pluginID:      c.PluginID,
 | |
| 		toolID:        c.ToolID,
 | |
| 		pluginVersion: c.PluginVersion,
 | |
| 	}, nil
 | |
| }
 | |
| 
 | |
| type Plugin struct {
 | |
| 	pluginID      int64
 | |
| 	toolID        int64
 | |
| 	pluginVersion string
 | |
| }
 | |
| 
 | |
| func (p *Plugin) Invoke(ctx context.Context, parameters map[string]any) (ret map[string]any, err error) {
 | |
| 	var exeCfg workflowModel.ExecuteConfig
 | |
| 	if ctxExeCfg := execute.GetExeCtx(ctx); ctxExeCfg != nil {
 | |
| 		exeCfg = ctxExeCfg.ExeCfg
 | |
| 	}
 | |
| 	result, err := crossplugin.DefaultSVC().ExecutePlugin(ctx, parameters, &model.PluginEntity{
 | |
| 		PluginID:      p.pluginID,
 | |
| 		PluginVersion: ptr.Of(p.pluginVersion),
 | |
| 	}, p.toolID, exeCfg)
 | |
| 	if err != nil {
 | |
| 		if extra, ok := compose.IsInterruptRerunError(err); ok {
 | |
| 			// TODO: temporarily replace interrupt with real error, because frontend cannot handle interrupt for now
 | |
| 			interruptData := extra.(*entity.InterruptEvent).InterruptData
 | |
| 			return nil, vo.NewError(errno.ErrAuthorizationRequired, errorx.KV("extra", interruptData))
 | |
| 		}
 | |
| 		return nil, err
 | |
| 	}
 | |
| 
 | |
| 	return result, nil
 | |
| 
 | |
| }
 |