blob: efce85b026e6e15dd636670befa18e911aa00c31 [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 (
"encoding/json"
"github.com/apache/incubator-devlake/errors"
"github.com/apache/incubator-devlake/plugins/core"
"github.com/apache/incubator-devlake/plugins/helper"
"github.com/apache/incubator-devlake/plugins/jira/models"
"github.com/apache/incubator-devlake/plugins/jira/tasks/apiv2models"
)
var _ core.SubTaskEntryPoint = ExtractIssueChangelogs
var ExtractIssueChangelogsMeta = core.SubTaskMeta{
Name: "extractIssueChangelogs",
EntryPoint: ExtractIssueChangelogs,
EnabledByDefault: true,
Description: "extract Jira Issue change logs",
DomainTypes: []string{core.DOMAIN_TYPE_TICKET, core.DOMAIN_TYPE_CROSS},
}
func ExtractIssueChangelogs(taskCtx core.SubTaskContext) errors.Error {
data := taskCtx.GetData().(*JiraTaskData)
if data.JiraServerInfo.DeploymentType == models.DeploymentServer {
return nil
}
connectionId := data.Options.ConnectionId
extractor, err := helper.NewApiExtractor(helper.ApiExtractorArgs{
RawDataSubTaskArgs: helper.RawDataSubTaskArgs{
Ctx: taskCtx,
Params: JiraApiParams{
ConnectionId: data.Options.ConnectionId,
BoardId: data.Options.BoardId,
},
Table: RAW_CHANGELOG_TABLE,
},
Extract: func(row *helper.RawData) ([]interface{}, errors.Error) {
// process input
var input apiv2models.Input
err := errors.Convert(json.Unmarshal(row.Input, &input))
if err != nil {
return nil, err
}
var changelog apiv2models.Changelog
err = errors.Convert(json.Unmarshal(row.Data, &changelog))
if err != nil {
return nil, err
}
// prepare output
var result []interface{}
cl, user := changelog.ToToolLayer(connectionId, input.IssueId, &input.UpdateTime)
// this is crucial for incremental update
cl.IssueUpdated = &input.UpdateTime
// collect changelog / user inforation
result = append(result, cl)
if user != nil {
result = append(result, user)
}
// collect changelog_items
for _, item := range changelog.Items {
result = append(result, item.ToToolLayer(connectionId, changelog.ID))
for _, u := range item.ExtractUser(connectionId) {
if u != nil && u.AccountId != "" {
result = append(result, u)
}
}
}
return result, nil
},
})
if err != nil {
return err
}
return extractor.Execute()
}