-
Notifications
You must be signed in to change notification settings - Fork 110
Expand file tree
/
Copy pathpull_requests.go
More file actions
143 lines (120 loc) · 4.71 KB
/
pull_requests.go
File metadata and controls
143 lines (120 loc) · 4.71 KB
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
// Copyright 2024 Palantir Technologies, Inc.
//
// Licensed 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 pull
import (
"context"
"strings"
"github.com/google/go-github/v84/github"
"github.com/pkg/errors"
"github.com/rs/zerolog"
)
// GitHubPullRequestClient is an interface that wraps the methods used from the github.Client.
type GitHubPullRequestClient interface {
ListPullRequestsWithCommit(ctx context.Context, owner, repo, sha string, opts *github.ListOptions) ([]*github.PullRequest, *github.Response, error)
List(ctx context.Context, owner, repo string, opts *github.PullRequestListOptions) ([]*github.PullRequest, *github.Response, error)
}
// getOpenPullRequestsForSHA returns all open pull requests where the HEAD of the source branch
// matches the given SHA.
func getOpenPullRequestsForSHA(ctx context.Context, client GitHubPullRequestClient, owner, repo, sha string) ([]*github.PullRequest, error) {
logger := zerolog.Ctx(ctx)
var results []*github.PullRequest
opts := &github.ListOptions{PerPage: 100}
for {
prs, resp, err := client.ListPullRequestsWithCommit(ctx, owner, repo, sha, opts)
if err != nil {
return nil, errors.Wrapf(err, "failed to list pull requests for repository %s/%s", owner, repo)
}
for _, pr := range prs {
if pr.GetState() == "open" && pr.GetHead().GetSHA() == sha {
logger.Debug().Msgf("found open pull request with sha %s", pr.GetHead().GetSHA())
results = append(results, pr)
}
}
if resp.NextPage == 0 {
break
}
opts.Page = resp.NextPage
}
return results, nil
}
// ListAllOpenPullRequestsFilteredBySHA returns all open pull requests where the HEAD of the source branch
// matches the given SHA by fetching all open PRs and filtering.
func ListAllOpenPullRequestsFilteredBySHA(ctx context.Context, client GitHubPullRequestClient, owner, repo, sha string) ([]*github.PullRequest, error) {
logger := zerolog.Ctx(ctx)
var results []*github.PullRequest
opts := &github.PullRequestListOptions{
State: "open",
ListOptions: github.ListOptions{PerPage: 100},
}
for {
prs, resp, err := client.List(ctx, owner, repo, opts)
if err != nil {
return nil, errors.Wrapf(err, "failed to list pull requests for repository %s/%s", owner, repo)
}
for _, pr := range prs {
if pr.Head.GetSHA() == sha {
logger.Debug().Msgf("found open pull request with sha %s", pr.Head.GetSHA())
results = append(results, pr)
}
}
if resp.NextPage == 0 {
break
}
opts.Page = resp.NextPage
}
return results, nil
}
// GetAllPossibleOpenPullRequestsForSHA attempts to find all open pull requests
// associated with the given SHA using multiple methods in case we are dealing with a fork
func GetAllPossibleOpenPullRequestsForSHA(ctx context.Context, client GitHubPullRequestClient, owner, repo, sha string) ([]*github.PullRequest, error) {
logger := zerolog.Ctx(ctx)
prs, err := getOpenPullRequestsForSHA(ctx, client, owner, repo, sha)
if err != nil {
return nil, errors.Wrap(err, "failed to get open pull requests matching the SHA")
}
if len(prs) == 0 {
logger.Debug().Msg("no pull requests found via commit association , searching all pull requests by SHA")
prs, err = ListAllOpenPullRequestsFilteredBySHA(ctx, client, owner, repo, sha)
if err != nil {
return nil, errors.Wrap(err, "failed to list open pull requests matching the SHA")
}
}
return prs, nil
}
// GetAllOpenPullRequestsForRef returns all open pull requests for a given base branch reference.
func GetAllOpenPullRequestsForRef(ctx context.Context, client GitHubPullRequestClient, owner, repo, ref string) ([]*github.PullRequest, error) {
logger := zerolog.Ctx(ctx)
ref = strings.TrimPrefix(ref, "refs/heads/")
opts := &github.PullRequestListOptions{
State: "open",
Base: ref,
ListOptions: github.ListOptions{PerPage: 100},
}
var results []*github.PullRequest
for {
prs, resp, err := client.List(ctx, owner, repo, opts)
if err != nil {
return nil, errors.Wrapf(err, "failed to list pull requests for repository %s/%s", owner, repo)
}
for _, pr := range prs {
logger.Debug().Msgf("found open pull request with base ref %s", pr.GetBase().GetRef())
results = append(results, pr)
}
if resp.NextPage == 0 {
break
}
opts.Page = resp.NextPage
}
return results, nil
}