blob: f685897bced0c9f641477b037b58d9253ebe0925 [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 (
"encoding/json"
"time"
"github.com/apache/incubator-devlake/core/errors"
plugin "github.com/apache/incubator-devlake/core/plugin"
"github.com/apache/incubator-devlake/helpers/pluginhelper/api"
"github.com/apache/incubator-devlake/plugins/bitbucket/models"
)
var ExtractApiPrCommentsMeta = plugin.SubTaskMeta{
Name: "Extract PR Comments",
EntryPoint: ExtractApiPullRequestsComments,
EnabledByDefault: true,
Required: false,
Description: "Extract raw pull requests comments data into tool layer table BitbucketPrComments",
DomainTypes: []string{plugin.DOMAIN_TYPE_CODE_REVIEW},
}
type BitbucketPrCommentsResponse struct {
BitbucketId int `json:"id"`
CreatedOn time.Time `json:"created_on"`
UpdatedOn *time.Time `json:"updated_on"`
Type string `json:"type"`
Content struct {
Raw string `json:"raw"`
} `json:"content"`
PullRequest struct {
Id int `json:"id"`
} `json:"pullrequest"`
User *BitbucketAccountResponse `json:"user"`
}
func ExtractApiPullRequestsComments(taskCtx plugin.SubTaskContext) errors.Error {
rawDataSubTaskArgs, data := CreateRawDataSubTaskArgs(taskCtx, RAW_PULL_REQUEST_COMMENTS_TABLE)
extractor, err := api.NewApiExtractor(api.ApiExtractorArgs{
RawDataSubTaskArgs: *rawDataSubTaskArgs,
Extract: func(row *api.RawData) ([]interface{}, errors.Error) {
prComment := &BitbucketPrCommentsResponse{}
err := errors.Convert(json.Unmarshal(row.Data, prComment))
if err != nil {
return nil, err
}
toolprComment, err := convertPullRequestComment(prComment)
toolprComment.ConnectionId = data.Options.ConnectionId
toolprComment.RepoId = data.Options.FullName
if err != nil {
return nil, err
}
results := make([]interface{}, 0, 2)
if prComment.User != nil {
bitbucketUser, err := convertAccount(prComment.User, data.Options.ConnectionId)
if err != nil {
return nil, err
}
toolprComment.AuthorId = bitbucketUser.AccountId
toolprComment.AuthorName = bitbucketUser.DisplayName
results = append(results, bitbucketUser)
}
results = append(results, toolprComment)
return results, nil
},
})
if err != nil {
return err
}
return extractor.Execute()
}
func convertPullRequestComment(prComment *BitbucketPrCommentsResponse) (*models.BitbucketPrComment, errors.Error) {
bitbucketPrComment := &models.BitbucketPrComment{
BitbucketId: prComment.BitbucketId,
AuthorId: prComment.User.AccountId,
PullRequestId: prComment.PullRequest.Id,
AuthorName: prComment.User.DisplayName,
BitbucketCreatedAt: prComment.CreatedOn,
BitbucketUpdatedAt: prComment.UpdatedOn,
Type: prComment.Type,
Body: prComment.Content.Raw,
}
return bitbucketPrComment, nil
}