blob: 54c4351e8371fa29f2f7cb3c663b0ed37dd7af2b [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 tasks
import (
"github.com/apache/incubator-devlake/models/domainlayer/code"
"github.com/apache/incubator-devlake/plugins/core/dal"
"reflect"
"github.com/apache/incubator-devlake/models/domainlayer/didgen"
"github.com/apache/incubator-devlake/plugins/core"
gitlabModels "github.com/apache/incubator-devlake/plugins/gitlab/models"
"github.com/apache/incubator-devlake/plugins/helper"
)
var ConvertMrLabelsMeta = core.SubTaskMeta{
Name: "convertMrLabels",
EntryPoint: ConvertMrLabels,
EnabledByDefault: true,
Description: "Convert tool layer table gitlab_mr_labels into domain layer table pull_request_labels",
DomainTypes: []string{core.DOMAIN_TYPE_CODE_REVIEW},
}
func ConvertMrLabels(taskCtx core.SubTaskContext) error {
db := taskCtx.GetDal()
rawDataSubTaskArgs, data := CreateRawDataSubTaskArgs(taskCtx, RAW_MERGE_REQUEST_TABLE)
projectId := data.Options.ProjectId
clauses := []dal.Clause{
dal.Select("*"),
dal.From(&gitlabModels.GitlabMrLabel{}),
dal.Join(`left join _tool_gitlab_merge_requests on
_tool_gitlab_merge_requests.gitlab_id = _tool_gitlab_mr_labels.mr_id`),
dal.Where(`_tool_gitlab_merge_requests.project_id = ?
and _tool_gitlab_merge_requests.connection_id = ?`,
projectId, data.Options.ConnectionId),
dal.Orderby("mr_id ASC"),
}
cursor, err := db.Cursor(clauses...)
if err != nil {
return err
}
defer cursor.Close()
mrIdGen := didgen.NewDomainIdGenerator(&gitlabModels.GitlabMergeRequest{})
converter, err := helper.NewDataConverter(helper.DataConverterArgs{
RawDataSubTaskArgs: *rawDataSubTaskArgs,
InputRowType: reflect.TypeOf(gitlabModels.GitlabMrLabel{}),
Input: cursor,
Convert: func(inputRow interface{}) ([]interface{}, error) {
mrLabel := inputRow.(*gitlabModels.GitlabMrLabel)
domainIssueLabel := &code.PullRequestLabel{
PullRequestId: mrIdGen.Generate(data.Options.ConnectionId, mrLabel.MrId),
LabelName: mrLabel.LabelName,
}
return []interface{}{
domainIssueLabel,
}, nil
},
})
if err != nil {
return err
}
return converter.Execute()
}