blob: fee9a56706883fc70e802b10dfa39cd42b5ede66 [file]
/*
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/core/dal"
"github.com/apache/incubator-devlake/core/errors"
"github.com/apache/incubator-devlake/core/models/common"
"github.com/apache/incubator-devlake/core/models/domainlayer"
"github.com/apache/incubator-devlake/core/models/domainlayer/didgen"
"github.com/apache/incubator-devlake/core/models/domainlayer/ticket"
"github.com/apache/incubator-devlake/core/plugin"
"github.com/apache/incubator-devlake/helpers/pluginhelper/api"
"github.com/apache/incubator-devlake/plugins/github/models"
)
func init() {
RegisterSubtaskMeta(&ConvertMilestonesMeta)
}
var ConvertMilestonesMeta = plugin.SubTaskMeta{
Name: "Convert Milestones",
EntryPoint: ConvertMilestones,
EnabledByDefault: true,
Description: "Convert tool layer table github_milestones into domain layer table milestones",
DomainTypes: []string{plugin.DOMAIN_TYPE_TICKET},
DependencyTables: []string{
models.GithubIssue{}.TableName(), // cursor
models.GithubMilestone{}.TableName(), // cursor
//models.GithubRepo{}.TableName(), // id generator, but config not regard as dependency
RAW_MILESTONE_TABLE},
ProductTables: []string{
ticket.Sprint{}.TableName(),
ticket.BoardSprint{}.TableName(),
ticket.SprintIssue{}.TableName()},
}
type MilestoneConverterModel struct {
common.RawDataOrigin
models.GithubMilestone
GithubId int
}
func ConvertMilestones(taskCtx plugin.SubTaskContext) errors.Error {
data := taskCtx.GetData().(*GithubTaskData)
repoId := data.Options.GithubId
connectionId := data.Options.ConnectionId
db := taskCtx.GetDal()
clauses := []dal.Clause{
dal.Select("gi.github_id, gm.*"),
dal.From("_tool_github_issues gi"),
dal.Join("JOIN _tool_github_milestones gm ON gm.milestone_id = gi.milestone_id"),
dal.Where("gm.repo_id = ? and gm.connection_id = ?", repoId, data.Options.ConnectionId),
}
cursor, err := db.Cursor(clauses...)
if err != nil {
return err
}
defer cursor.Close()
boardIdGen := didgen.NewDomainIdGenerator(&models.GithubRepo{})
domainBoardId := boardIdGen.Generate(connectionId, repoId)
sprintIdGen := didgen.NewDomainIdGenerator(&models.GithubMilestone{})
issueIdGen := didgen.NewDomainIdGenerator(&models.GithubIssue{})
converter, err := api.NewDataConverter(api.DataConverterArgs{
RawDataSubTaskArgs: api.RawDataSubTaskArgs{
Ctx: taskCtx,
Params: GithubApiParams{
ConnectionId: connectionId,
Name: data.Options.Name,
},
Table: RAW_MILESTONE_TABLE,
},
InputRowType: reflect.TypeOf(MilestoneConverterModel{}),
Input: cursor,
Convert: func(inputRow interface{}) ([]interface{}, errors.Error) {
response := inputRow.(*MilestoneConverterModel)
domainSprintId := sprintIdGen.Generate(connectionId, response.GithubMilestone.MilestoneId)
domainIssueId := issueIdGen.Generate(connectionId, response.GithubId)
sprint := &ticket.Sprint{
DomainEntity: domainlayer.DomainEntity{Id: domainSprintId},
Name: response.GithubMilestone.Title,
Url: response.GithubMilestone.URL,
Status: response.GithubMilestone.State,
StartedDate: &response.GithubMilestone.GithubCreatedAt, //GitHub doesn't give us a "start date"
EndedDate: response.GithubMilestone.ClosedAt,
CompletedDate: response.GithubMilestone.ClosedAt,
OriginalBoardID: domainBoardId,
}
boardSprint := &ticket.BoardSprint{
BoardId: domainBoardId,
SprintId: domainSprintId,
}
sprintIssue := &ticket.SprintIssue{
SprintId: domainSprintId,
IssueId: domainIssueId,
}
return []interface{}{sprint, sprintIssue, boardSprint}, nil
},
})
if err != nil {
return err
}
return converter.Execute()
}