blob: 4846c1d400726a69e718a98e194fe409d7c1547c [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/core/dal"
"github.com/apache/incubator-devlake/core/errors"
"github.com/apache/incubator-devlake/core/models/common"
"github.com/apache/incubator-devlake/core/plugin"
helper "github.com/apache/incubator-devlake/helpers/pluginhelper/api"
"github.com/apache/incubator-devlake/plugins/github/models"
githubUtils "github.com/apache/incubator-devlake/plugins/github/utils"
)
func init() {
RegisterSubtaskMeta(&ExtractApiCommentsMeta)
}
var ExtractApiCommentsMeta = plugin.SubTaskMeta{
Name: "extractApiComments",
EntryPoint: ExtractApiComments,
EnabledByDefault: true,
Description: "Extract raw comment data into tool layer table github_pull_request_comments" +
"and github_issue_comments",
DomainTypes: []string{plugin.DOMAIN_TYPE_CODE_REVIEW, plugin.DOMAIN_TYPE_TICKET},
DependencyTables: []string{RAW_COMMENTS_TABLE},
ProductTables: []string{
models.GithubPrComment{}.TableName(),
models.GithubIssueComment{}.TableName(),
models.GithubRepoAccount{}.TableName()},
}
type IssueComment struct {
GithubId int `json:"id"`
Body json.RawMessage
User *GithubAccountResponse
IssueUrl string `json:"issue_url"`
GithubCreatedAt common.Iso8601Time `json:"created_at"`
GithubUpdatedAt common.Iso8601Time `json:"updated_at"`
}
func ExtractApiComments(taskCtx plugin.SubTaskContext) errors.Error {
data := taskCtx.GetData().(*GithubTaskData)
extractor, err := helper.NewApiExtractor(helper.ApiExtractorArgs{
RawDataSubTaskArgs: helper.RawDataSubTaskArgs{
Ctx: taskCtx,
Params: GithubApiParams{
ConnectionId: data.Options.ConnectionId,
Name: data.Options.Name,
},
Table: RAW_COMMENTS_TABLE,
},
Extract: func(row *helper.RawData) ([]interface{}, errors.Error) {
apiComment := &IssueComment{}
err := errors.Convert(json.Unmarshal(row.Data, apiComment))
if err != nil {
return nil, err
}
// need to extract 2 kinds of entities here
results := make([]interface{}, 0, 2)
if apiComment.GithubId == 0 {
return nil, nil
}
//If this is a pr, ignore
issueINumber, err := errors.Convert01(githubUtils.GetIssueIdByIssueUrl(apiComment.IssueUrl))
if err != nil {
return nil, err
}
issue := &models.GithubIssue{}
db := taskCtx.GetDal()
err = db.All(issue, dal.Where("connection_id = ? and number = ? and repo_id = ?", data.Options.ConnectionId, issueINumber, data.Options.GithubId))
if err != nil && !db.IsErrorNotFound(err) {
return nil, err
}
//if we can not find issues with issue number above, move the comments to github_pull_request_comments
if issue.GithubId == 0 {
pr := &models.GithubPullRequest{}
err = db.First(pr, dal.Where("connection_id = ? and number = ? and repo_id = ?", data.Options.ConnectionId, issueINumber, data.Options.GithubId))
if err != nil && !db.IsErrorNotFound(err) {
return nil, err
}
githubPrComment := &models.GithubPrComment{
ConnectionId: data.Options.ConnectionId,
GithubId: apiComment.GithubId,
PullRequestId: pr.GithubId,
Body: string(apiComment.Body),
GithubCreatedAt: apiComment.GithubCreatedAt.ToTime(),
GithubUpdatedAt: apiComment.GithubUpdatedAt.ToTime(),
Type: "NORMAL",
}
if apiComment.User != nil {
githubPrComment.AuthorUsername = apiComment.User.Login
githubPrComment.AuthorUserId = apiComment.User.Id
}
results = append(results, githubPrComment)
} else {
githubIssueComment := &models.GithubIssueComment{
ConnectionId: data.Options.ConnectionId,
GithubId: apiComment.GithubId,
IssueId: issue.GithubId,
Body: string(apiComment.Body),
GithubCreatedAt: apiComment.GithubCreatedAt.ToTime(),
GithubUpdatedAt: apiComment.GithubUpdatedAt.ToTime(),
}
if apiComment.User != nil {
githubIssueComment.AuthorUsername = apiComment.User.Login
githubIssueComment.AuthorUserId = apiComment.User.Id
}
results = append(results, githubIssueComment)
}
if apiComment.User != nil {
githubAccount, err := convertAccount(apiComment.User, data.Options.GithubId, data.Options.ConnectionId)
if err != nil {
return nil, err
}
results = append(results, githubAccount)
}
return results, nil
},
})
if err != nil {
return err
}
return extractor.Execute()
}