backend/plugins/ae/impl/impl.go (117 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 impl import ( "fmt" "github.com/apache/incubator-devlake/core/context" "github.com/apache/incubator-devlake/core/dal" "github.com/apache/incubator-devlake/core/errors" "github.com/apache/incubator-devlake/core/plugin" helper "github.com/apache/incubator-devlake/helpers/pluginhelper/api" "github.com/apache/incubator-devlake/plugins/ae/api" "github.com/apache/incubator-devlake/plugins/ae/models" "github.com/apache/incubator-devlake/plugins/ae/models/migrationscripts" "github.com/apache/incubator-devlake/plugins/ae/tasks" ) var _ interface { plugin.PluginMeta plugin.PluginInit plugin.PluginTask plugin.PluginApi plugin.PluginModel plugin.PluginMigration plugin.CloseablePluginTask plugin.PluginSource } = (*AE)(nil) type AE struct{} func (p AE) Init(basicRes context.BasicRes) errors.Error { api.Init(basicRes, p) return nil } func (p AE) Connection() dal.Tabler { return &models.AeConnection{} } func (p AE) Scope() plugin.ToolLayerScope { return nil } func (p AE) ScopeConfig() dal.Tabler { return nil } func (p AE) GetTablesInfo() []dal.Tabler { return []dal.Tabler{ &models.AECommit{}, &models.AEProject{}, &models.AeConnection{}, } } func (p AE) Description() string { return "To collect and enrich data from AE" } func (p AE) Name() string { return "ae" } func (p AE) SubTaskMetas() []plugin.SubTaskMeta { return []plugin.SubTaskMeta{ tasks.CollectProjectMeta, tasks.CollectCommitsMeta, tasks.ExtractProjectMeta, tasks.ExtractCommitsMeta, tasks.ConvertCommitsMeta, } } func (p AE) PrepareTaskData(taskCtx plugin.TaskContext, options map[string]interface{}) (interface{}, errors.Error) { var op tasks.AeOptions err := helper.Decode(options, &op, nil) if err != nil { return nil, errors.Default.Wrap(err, "AE plugin could not decode options") } if op.ProjectId <= 0 { return nil, errors.Default.New("projectId is required") } connection := &models.AeConnection{} connectionHelper := helper.NewConnectionHelper( taskCtx, nil, p.Name(), ) err = connectionHelper.FirstById(connection, op.ConnectionId) if err != nil { return nil, errors.Default.Wrap(err, "error getting connection for AE plugin") } apiClient, err := tasks.CreateApiClient(taskCtx, connection) if err != nil { return nil, err } return &tasks.AeTaskData{ Options: &op, ApiClient: apiClient, }, nil } func (p AE) RootPkgPath() string { return "github.com/apache/incubator-devlake/plugins/ae" } func (p AE) MigrationScripts() []plugin.MigrationScript { return migrationscripts.All() } func (p AE) ApiResources() map[string]map[string]plugin.ApiResourceHandler { return map[string]map[string]plugin.ApiResourceHandler{ "test": { "POST": api.TestConnection, }, "connections": { "GET": api.ListConnections, "POST": api.PostConnections, }, "connections/:connectionId": { "GET": api.GetConnection, "PATCH": api.PatchConnection, "DELETE": api.DeleteConnection, }, } } func (p AE) Close(taskCtx plugin.TaskContext) errors.Error { data, ok := taskCtx.GetData().(*tasks.AeTaskData) if !ok { return errors.Default.New(fmt.Sprintf("GetData failed when try to close %+v", taskCtx)) } data.ApiClient.Release() return nil }