backend/server/services/remote/plugin/plugin_impl.go (195 lines of code) (raw):

/* Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to You 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 ( "fmt" "github.com/apache/incubator-devlake/core/dal" "github.com/apache/incubator-devlake/core/errors" coreModels "github.com/apache/incubator-devlake/core/models" "github.com/apache/incubator-devlake/core/models/common" "github.com/apache/incubator-devlake/core/plugin" "github.com/apache/incubator-devlake/helpers/pluginhelper/api" "github.com/apache/incubator-devlake/server/services/remote/bridge" "github.com/apache/incubator-devlake/server/services/remote/models" "github.com/apache/incubator-devlake/server/services/remote/models/migrationscripts" "github.com/apache/incubator-devlake/server/services/remote/plugin/doc" ) type ( remotePluginImpl struct { name string subtaskMetas []plugin.SubTaskMeta pluginPath string description string invoker bridge.Invoker connectionTabler coreModels.DynamicTabler scopeTabler coreModels.DynamicTabler scopeConfigTabler coreModels.DynamicTabler toolModelTablers []coreModels.DynamicTabler migrationScripts []plugin.MigrationScript resources map[string]map[string]plugin.ApiResourceHandler openApiSpec string connHelper *api.ConnectionApiHelper } RemotePluginTaskData struct { DbUrl string `json:"db_url"` Scope interface{} `json:"scope"` Connection interface{} `json:"connection"` ScopeConfig interface{} `json:"scope_config"` Options map[string]interface{} `json:"options"` } ) func newPlugin(info *models.PluginInfo, invoker bridge.Invoker) (*remotePluginImpl, errors.Error) { connectionTabler, err := info.ConnectionModelInfo.LoadDynamicTabler(common.Model{}) if err != nil { return nil, errors.Default.Wrap(err, fmt.Sprintf("Couldn't load Connection type for plugin %s", info.Name)) } scopeTabler, err := info.ScopeModelInfo.LoadDynamicTabler(models.ScopeModel{}) if err != nil { return nil, errors.Default.Wrap(err, fmt.Sprintf("Couldn't load Scope type for plugin %s", info.Name)) } scopeConfigTabler, err := info.ScopeConfigModelInfo.LoadDynamicTabler(models.ScopeConfigModel{}) if err != nil { return nil, errors.Default.Wrap(err, fmt.Sprintf("Couldn't load ScopeConfig type for plugin %s", info.Name)) } // put the scope and connection models in the tool list to be consistent with Go plugins toolModelTablers := []coreModels.DynamicTabler{ connectionTabler.New(), models.NewDynamicScopeModel(scopeTabler), } for _, toolModelInfo := range info.ToolModelInfos { toolModelTabler, err := toolModelInfo.LoadDynamicTabler(models.ToolModel{}) if err != nil { return nil, errors.Default.Wrap(err, fmt.Sprintf("Couldn't load ToolModel type for plugin %s", info.Name)) } toolModelTablers = append(toolModelTablers, toolModelTabler.New()) } openApiSpec, err := doc.GenerateOpenApiSpec(info) if err != nil { return nil, errors.Default.Wrap(err, fmt.Sprintf("Couldn't generate OpenAPI spec for plugin %s", info.Name)) } scripts := make([]plugin.MigrationScript, 0) for _, script := range info.MigrationScripts { script := script scripts = append(scripts, &script) } connectionHelper := api.NewConnectionHelper( basicRes, vld, info.Name, ) apiResources := GetDefaultAPI(invoker, connectionTabler, scopeConfigTabler, scopeTabler, connectionHelper) p := remotePluginImpl{ name: info.Name, invoker: invoker, pluginPath: info.PluginPath, description: info.Description, connectionTabler: connectionTabler, scopeTabler: scopeTabler, scopeConfigTabler: scopeConfigTabler, toolModelTablers: toolModelTablers, migrationScripts: scripts, resources: apiResources, openApiSpec: *openApiSpec, connHelper: connectionHelper, } remoteBridge := bridge.NewBridge(invoker) for _, subtask := range info.SubtaskMetas { p.subtaskMetas = append(p.subtaskMetas, plugin.SubTaskMeta{ Name: subtask.Name, EntryPoint: remoteBridge.RemoteSubtaskEntrypointHandler(subtask), Required: subtask.Required, EnabledByDefault: subtask.EnabledByDefault, Description: subtask.Description, DomainTypes: subtask.DomainTypes, }) } return &p, nil } func (p *remotePluginImpl) SubTaskMetas() []plugin.SubTaskMeta { return p.subtaskMetas } func (p *remotePluginImpl) GetTablesInfo() []dal.Tabler { tables := make([]dal.Tabler, 0) for _, toolModelTabler := range p.toolModelTablers { tables = append(tables, toolModelTabler) } return tables } func (p *remotePluginImpl) Connection() dal.Tabler { return p.connectionTabler.New() } func (p *remotePluginImpl) Scope() plugin.ToolLayerScope { return models.NewDynamicScopeModel(p.scopeTabler) } func (p *remotePluginImpl) ScopeConfig() dal.Tabler { return p.scopeConfigTabler.New() } func (p *remotePluginImpl) PrepareTaskData(taskCtx plugin.TaskContext, options map[string]interface{}) (interface{}, errors.Error) { dbUrl := taskCtx.GetConfig("db_url") connectionId := uint64(options["connectionId"].(float64)) helper := api.NewConnectionHelper( taskCtx, nil, p.Name(), ) wrappedConnection := p.connectionTabler.New() err := helper.FirstById(wrappedConnection, connectionId) if err != nil { return nil, errors.Convert(err) } connection := wrappedConnection.Unwrap() scopeId, ok := options["scopeId"].(string) if !ok { return nil, errors.BadInput.New("missing scopeId") } db := taskCtx.GetDal() scope, scopeConfig, err := p.getScopeAndConfig(db, connectionId, scopeId) if err != nil { return nil, err } return RemotePluginTaskData{ DbUrl: dbUrl, Scope: scope, Connection: connection, ScopeConfig: scopeConfig, Options: options, }, nil } func (p *remotePluginImpl) getScopeAndConfig(db dal.Dal, connectionId uint64, scopeId string) (interface{}, interface{}, errors.Error) { wrappedScope := p.scopeTabler.New() err := api.CallDB(db.First, wrappedScope, dal.Where("connection_id = ? AND id = ?", connectionId, scopeId)) if err != nil { return nil, nil, errors.BadInput.New("Invalid scope id") } scope := models.ScopeModel{} err = wrappedScope.To(&scope) if err != nil { return nil, nil, errors.BadInput.Wrap(err, "Invalid scope") } if scope.ScopeConfigId != 0 { wrappedScopeConfig := p.scopeConfigTabler.New() err = api.CallDB(db.First, wrappedScopeConfig, dal.From(p.scopeConfigTabler.TableName()), dal.Where("id = ?", scope.ScopeConfigId)) if err != nil { return nil, nil, err } return wrappedScope.Unwrap(), wrappedScopeConfig.Unwrap(), nil } else { return wrappedScope.Unwrap(), nil, nil } } func (p *remotePluginImpl) Description() string { return p.description } func (p *remotePluginImpl) Name() string { return p.name } func (p *remotePluginImpl) RootPkgPath() string { // RootPkgPath is used by DomainIdGenerator to find the name of the plugin that defines a given type. // While remote plugins do not use the DomainIdGenerator, we still need to implement this function. // Indeed, DomainIdGenerator uses FindPluginNameBySubPkgPath that returns the name of the first plugin // whose RootPkgPath is a prefix of the type package path. // So we forge a fake package path that is not a prefix of any go plugin package path. return "github.com/apache/incubator-devlake/services/remote/fakepackages/" + p.name } func (p *remotePluginImpl) ApiResources() map[string]map[string]plugin.ApiResourceHandler { return p.resources } func (p *remotePluginImpl) OpenApiSpec() string { return p.openApiSpec } func (p *remotePluginImpl) MigrationScripts() []plugin.MigrationScript { return append(p.migrationScripts, migrationscripts.All(p.name)...) } var _ models.RemotePlugin = (*remotePluginImpl)(nil)