| /* |
| 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" |
| "fmt" |
| "net/http" |
| "net/url" |
| "reflect" |
| |
| "github.com/apache/incubator-devlake/plugins/core/dal" |
| |
| "github.com/apache/incubator-devlake/plugins/helper" |
| |
| "github.com/apache/incubator-devlake/plugins/core" |
| "github.com/apache/incubator-devlake/plugins/gitee/models" |
| ) |
| |
| const RAW_PULL_REQUEST_COMMIT_TABLE = "gitee_api_pull_request_commits" |
| |
| var CollectApiPullRequestCommitsMeta = core.SubTaskMeta{ |
| Name: "collectApiPullRequestCommits", |
| EntryPoint: CollectApiPullRequestCommits, |
| EnabledByDefault: true, |
| Description: "Collect PullRequestCommits data from Gitee api", |
| DomainTypes: []string{core.DOMAIN_TYPE_CODE_REVIEW}, |
| } |
| |
| type SimplePr struct { |
| Number int |
| GiteeId int |
| } |
| |
| func CollectApiPullRequestCommits(taskCtx core.SubTaskContext) error { |
| db := taskCtx.GetDal() |
| rawDataSubTaskArgs, data := CreateRawDataSubTaskArgs(taskCtx, RAW_PULL_REQUEST_COMMIT_TABLE) |
| |
| incremental := false |
| |
| cursor, err := db.Cursor( |
| dal.Select("number, gitee_id"), |
| dal.From(models.GiteePullRequest{}.TableName()), |
| dal.Where("repo_id = ? and connection_id=?", data.Repo.GiteeId, data.Options.ConnectionId), |
| ) |
| if err != nil { |
| return err |
| } |
| iterator, err := helper.NewDalCursorIterator(db, cursor, reflect.TypeOf(SimplePr{})) |
| if err != nil { |
| return err |
| } |
| collector, err := helper.NewApiCollector(helper.ApiCollectorArgs{ |
| RawDataSubTaskArgs: *rawDataSubTaskArgs, |
| ApiClient: data.ApiClient, |
| PageSize: 100, |
| Incremental: incremental, |
| Input: iterator, |
| |
| UrlTemplate: "repos/{{ .Params.Owner }}/{{ .Params.Repo }}/pulls/{{ .Input.Number }}/commits", |
| |
| Query: func(reqData *helper.RequestData) (url.Values, error) { |
| query := url.Values{} |
| query.Set("state", "all") |
| query.Set("page", fmt.Sprintf("%v", reqData.Pager.Page)) |
| query.Set("direction", "asc") |
| query.Set("per_page", fmt.Sprintf("%v", reqData.Pager.Size)) |
| |
| return query, nil |
| }, |
| ResponseParser: func(res *http.Response) ([]json.RawMessage, error) { |
| var items []json.RawMessage |
| err := helper.UnmarshalResponse(res, &items) |
| if err != nil { |
| return nil, err |
| } |
| return items, nil |
| }, |
| }) |
| |
| if err != nil { |
| return err |
| } |
| return collector.Execute() |
| } |