blob: 6d8f89adb9f8ea1aca7c691c7c29c8aafbed4022 [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 (
"reflect"
"github.com/apache/incubator-devlake/plugins/core/dal"
"github.com/apache/incubator-devlake/plugins/tapd/models"
"github.com/apache/incubator-devlake/models/domainlayer/ticket"
"github.com/apache/incubator-devlake/plugins/core"
"github.com/apache/incubator-devlake/plugins/helper"
)
var ConvertTaskLabelsMeta = core.SubTaskMeta{
Name: "convertTaskLabels",
EntryPoint: ConvertTaskLabels,
EnabledByDefault: true,
Description: "Convert tool layer table tapd_issue_labels into domain layer table issue_labels",
DomainTypes: []string{core.DOMAIN_TYPE_TICKET},
}
func ConvertTaskLabels(taskCtx core.SubTaskContext) error {
db := taskCtx.GetDal()
rawDataSubTaskArgs, data := CreateRawDataSubTaskArgs(taskCtx, RAW_TASK_TABLE, false)
clauses := []dal.Clause{
dal.From(&models.TapdTaskLabel{}),
dal.Join("left join _tool_tapd_workspace_tasks on _tool_tapd_workspace_tasks.task_id = _tool_tapd_task_labels.task_id"),
dal.Where("_tool_tapd_workspace_tasks.workspace_id = ? and _tool_tapd_workspace_tasks.connection_id = ?",
data.Options.WorkspaceId, data.Options.ConnectionId),
dal.Orderby("task_id ASC"),
}
cursor, err := db.Cursor(clauses...)
if err != nil {
return err
}
defer cursor.Close()
converter, err := helper.NewDataConverter(helper.DataConverterArgs{
RawDataSubTaskArgs: *rawDataSubTaskArgs,
InputRowType: reflect.TypeOf(models.TapdTaskLabel{}),
Input: cursor,
Convert: func(inputRow interface{}) ([]interface{}, error) {
issueLabel := inputRow.(*models.TapdTaskLabel)
domainTaskLabel := &ticket.IssueLabel{
IssueId: IssueIdGen.Generate(issueLabel.TaskId),
LabelName: issueLabel.LabelName,
}
return []interface{}{
domainTaskLabel,
}, nil
},
})
if err != nil {
return err
}
return converter.Execute()
}