blob: 95c41518d3341eee3b516e9ed94bd6e9527d28cc [file] [log] [blame]
/*
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/errors"
"github.com/apache/incubator-devlake/plugins/bitbucket/api"
"github.com/apache/incubator-devlake/plugins/bitbucket/models"
"github.com/apache/incubator-devlake/plugins/bitbucket/models/migrationscripts"
"github.com/apache/incubator-devlake/plugins/bitbucket/tasks"
"github.com/apache/incubator-devlake/plugins/core"
"github.com/apache/incubator-devlake/plugins/core/dal"
"github.com/apache/incubator-devlake/plugins/helper"
)
var _ core.PluginMeta = (*Bitbucket)(nil)
var _ core.PluginInit = (*Bitbucket)(nil)
var _ core.PluginTask = (*Bitbucket)(nil)
var _ core.PluginApi = (*Bitbucket)(nil)
var _ core.PluginModel = (*Bitbucket)(nil)
var _ core.PluginMigration = (*Bitbucket)(nil)
var _ core.PluginBlueprintV100 = (*Bitbucket)(nil)
var _ core.CloseablePluginTask = (*Bitbucket)(nil)
type Bitbucket string
func (plugin Bitbucket) Init(basicRes core.BasicRes) errors.Error {
api.Init(basicRes)
return nil
}
func (plugin Bitbucket) GetTablesInfo() []dal.Tabler {
return []dal.Tabler{
&models.BitbucketConnection{},
&models.BitbucketAccount{},
&models.BitbucketCommit{},
&models.BitbucketPullRequest{},
&models.BitbucketIssue{},
&models.BitbucketPrComment{},
&models.BitbucketIssueComment{},
&models.BitbucketPipeline{},
&models.BitbucketRepo{},
&models.BitbucketRepoCommit{},
}
}
func (plugin Bitbucket) Description() string {
return "To collect and enrich data from Bitbucket"
}
func (plugin Bitbucket) SubTaskMetas() []core.SubTaskMeta {
return []core.SubTaskMeta{
tasks.CollectApiRepoMeta,
tasks.ExtractApiRepoMeta,
tasks.CollectApiPullRequestsMeta,
tasks.ExtractApiPullRequestsMeta,
tasks.CollectApiPrCommentsMeta,
tasks.ExtractApiPrCommentsMeta,
tasks.CollectApiPrCommitsMeta,
tasks.ExtractApiPrCommitsMeta,
tasks.CollectApiIssuesMeta,
tasks.ExtractApiIssuesMeta,
tasks.CollectApiIssueCommentsMeta,
tasks.ExtractApiIssueCommentsMeta,
tasks.CollectApiPipelinesMeta,
tasks.ExtractApiPipelinesMeta,
tasks.CollectApiDeploymentsMeta,
tasks.ExtractApiDeploymentsMeta,
tasks.ConvertRepoMeta,
tasks.ConvertAccountsMeta,
tasks.ConvertPullRequestsMeta,
tasks.ConvertPrCommentsMeta,
tasks.ConvertPrCommitsMeta,
tasks.ConvertIssuesMeta,
tasks.ConvertIssueCommentsMeta,
tasks.ConvertPipelineMeta,
tasks.ConvertDeploymentMeta,
}
}
func (plugin Bitbucket) PrepareTaskData(taskCtx core.TaskContext, options map[string]interface{}) (interface{}, errors.Error) {
op, err := tasks.DecodeAndValidateTaskOptions(options)
if err != nil {
return nil, err
}
connectionHelper := helper.NewConnectionHelper(
taskCtx,
nil,
)
connection := &models.BitbucketConnection{}
err = connectionHelper.FirstById(connection, op.ConnectionId)
if err != nil {
return nil, errors.Default.Wrap(err, "unable to get bitbucket connection by the given connection ID")
}
apiClient, err := tasks.CreateApiClient(taskCtx, connection)
if err != nil {
return nil, errors.Default.Wrap(err, "unable to get bitbucket API client instance")
}
return &tasks.BitbucketTaskData{
Options: op,
ApiClient: apiClient,
}, nil
}
func (plugin Bitbucket) RootPkgPath() string {
return "github.com/apache/incubator-devlake/plugins/bitbucket"
}
func (plugin Bitbucket) MigrationScripts() []core.MigrationScript {
return migrationscripts.All()
}
func (plugin Bitbucket) MakePipelinePlan(connectionId uint64, scope []*core.BlueprintScopeV100) (core.PipelinePlan, errors.Error) {
return api.MakePipelinePlan(plugin.SubTaskMetas(), connectionId, scope)
}
func (plugin Bitbucket) ApiResources() map[string]map[string]core.ApiResourceHandler {
return map[string]map[string]core.ApiResourceHandler{
"test": {
"POST": api.TestConnection,
},
"connections": {
"POST": api.PostConnections,
"GET": api.ListConnections,
},
"connections/:connectionId": {
"PATCH": api.PatchConnection,
"DELETE": api.DeleteConnection,
"GET": api.GetConnection,
},
}
}
func (plugin Bitbucket) Close(taskCtx core.TaskContext) errors.Error {
data, ok := taskCtx.GetData().(*tasks.BitbucketTaskData)
if !ok {
return errors.Default.New(fmt.Sprintf("GetData failed when try to close %+v", taskCtx))
}
data.ApiClient.Release()
return nil
}