-
Notifications
You must be signed in to change notification settings - Fork 523
/
pr_collector.go
107 lines (87 loc) · 3.07 KB
/
pr_collector.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
/*
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"
"github.com/apache/incubator-devlake/errors"
"net/http"
"net/url"
"github.com/apache/incubator-devlake/plugins/core/dal"
"github.com/apache/incubator-devlake/plugins/gitee/models"
"github.com/apache/incubator-devlake/plugins/helper"
"github.com/apache/incubator-devlake/plugins/core"
)
const RAW_PULL_REQUEST_TABLE = "gitee_api_pull_requests"
var CollectApiPullRequestsMeta = core.SubTaskMeta{
Name: "collectApiPullRequests",
EntryPoint: CollectApiPullRequests,
EnabledByDefault: true,
Description: "Collect PullRequests data from Gitee api",
DomainTypes: []string{core.DOMAIN_TYPE_CODE_REVIEW},
}
func CollectApiPullRequests(taskCtx core.SubTaskContext) errors.Error {
db := taskCtx.GetDal()
rawDataSubTaskArgs, data := CreateRawDataSubTaskArgs(taskCtx, RAW_PULL_REQUEST_TABLE)
since := data.Since
incremental := false
if since == nil {
var latestUpdated models.GiteePullRequest
err := db.All(
&latestUpdated,
dal.Where("repo_id = ? and connection_id=?", data.Repo.GiteeId, data.Options.ConnectionId),
dal.Orderby("gitee_updated_at DESC"),
dal.Limit(1),
)
if err != nil {
return errors.Default.Wrap(err, "failed to get latest gitee issue record")
}
if latestUpdated.GiteeId > 0 {
since = &latestUpdated.GiteeUpdatedAt
incremental = true
}
}
collector, err := helper.NewApiCollector(helper.ApiCollectorArgs{
RawDataSubTaskArgs: *rawDataSubTaskArgs,
ApiClient: data.ApiClient,
PageSize: 100,
Incremental: incremental,
UrlTemplate: "repos/{{ .Params.Owner }}/{{ .Params.Repo }}/pulls",
Query: func(reqData *helper.RequestData) (url.Values, errors.Error) {
query := url.Values{}
query.Set("state", "all")
if since != nil {
query.Set("since", since.String())
}
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
},
GetTotalPages: GetTotalPagesFromResponse,
ResponseParser: func(res *http.Response) ([]json.RawMessage, errors.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()
}