blob: 8418bbc8e473f6c1777aa51222eb9184d10f4e02 [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"
"strings"
"github.com/apache/incubator-devlake/core/errors"
"github.com/apache/incubator-devlake/core/plugin"
helper "github.com/apache/incubator-devlake/helpers/pluginhelper/api"
"github.com/apache/incubator-devlake/plugins/github/models"
)
var ExtractApiPullRequestCommitsMeta = plugin.SubTaskMeta{
Name: "extractApiPullRequestCommits",
EntryPoint: ExtractApiPullRequestCommits,
EnabledByDefault: true,
Description: "Extract raw PullRequestCommits data into tool layer table github_commits",
DomainTypes: []string{plugin.DOMAIN_TYPE_CROSS, plugin.DOMAIN_TYPE_CODE_REVIEW},
}
type PrCommitsResponse struct {
Sha string `json:"sha"`
Commit PullRequestCommit
Url string
}
type PullRequestCommit struct {
Author struct {
Id int
Name string
Email string
Date helper.Iso8601Time
}
Committer struct {
Name string
Email string
Date helper.Iso8601Time
}
Message json.RawMessage
}
func ExtractApiPullRequestCommits(taskCtx plugin.SubTaskContext) errors.Error {
data := taskCtx.GetData().(*GithubTaskData)
repoId := data.Options.GithubId
extractor, err := helper.NewApiExtractor(helper.ApiExtractorArgs{
RawDataSubTaskArgs: helper.RawDataSubTaskArgs{
Ctx: taskCtx,
/*
This struct will be JSONEncoded and stored into database along with raw data itself, to identity minimal
set of data to be process, for example, we process JiraIssues by Board
*/
Params: GithubApiParams{
ConnectionId: data.Options.ConnectionId,
Name: data.Options.Name,
},
/*
Table store raw data
*/
Table: RAW_PR_COMMIT_TABLE,
},
Extract: func(row *helper.RawData) ([]interface{}, errors.Error) {
apiPullRequestCommit := &PrCommitsResponse{}
if strings.HasPrefix(string(row.Data), "{\"message\": \"Not Found\"") {
return nil, nil
}
err := errors.Convert(json.Unmarshal(row.Data, apiPullRequestCommit))
if err != nil {
return nil, err
}
pull := &SimplePr{}
err = errors.Convert(json.Unmarshal(row.Input, pull))
if err != nil {
return nil, err
}
// need to extract 2 kinds of entities here
results := make([]interface{}, 0, 3)
githubRepoCommit := &models.GithubRepoCommit{
ConnectionId: data.Options.ConnectionId,
RepoId: repoId,
CommitSha: apiPullRequestCommit.Sha,
}
results = append(results, githubRepoCommit)
githubCommit, err := convertPullRequestCommit(apiPullRequestCommit, data.Options.ConnectionId)
if err != nil {
return nil, err
}
results = append(results, githubCommit)
githubPullRequestCommit := &models.GithubPrCommit{
ConnectionId: data.Options.ConnectionId,
CommitSha: apiPullRequestCommit.Sha,
PullRequestId: pull.GithubId,
CommitAuthorName: githubCommit.AuthorName,
CommitAuthorEmail: githubCommit.AuthorEmail,
CommitAuthoredDate: githubCommit.AuthoredDate,
}
if err != nil {
return nil, err
}
results = append(results, githubPullRequestCommit)
return results, nil
},
})
if err != nil {
return err
}
return extractor.Execute()
}
func convertPullRequestCommit(prCommit *PrCommitsResponse, connId uint64) (*models.GithubCommit, errors.Error) {
githubCommit := &models.GithubCommit{
Sha: prCommit.Sha,
Message: string(prCommit.Commit.Message),
AuthorId: prCommit.Commit.Author.Id,
AuthorName: prCommit.Commit.Author.Name,
AuthorEmail: prCommit.Commit.Author.Email,
AuthoredDate: prCommit.Commit.Author.Date.ToTime(),
CommitterName: prCommit.Commit.Committer.Name,
CommitterEmail: prCommit.Commit.Committer.Email,
CommittedDate: prCommit.Commit.Committer.Date.ToTime(),
Url: prCommit.Url,
}
return githubCommit, nil
}