forked from cli/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquery.go
More file actions
213 lines (175 loc) · 3.77 KB
/
query.go
File metadata and controls
213 lines (175 loc) · 3.77 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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
package githubsearch
import (
"fmt"
"strings"
)
type EntityType string
type State string
type RepoVisibility string
type SortField string
type SortDirection int
const (
Asc SortDirection = iota
Desc
UpdatedAt SortField = "updated"
CreatedAt SortField = "created"
Issue EntityType = "issue"
PullRequest EntityType = "pr"
Open State = "open"
Closed State = "closed"
Merged State = "merged"
Public RepoVisibility = "public"
Private RepoVisibility = "private"
)
func NewQuery() *Query {
return &Query{}
}
type Query struct {
repo string
owner string
sort string
query string
entity string
state string
baseBranch string
headBranch string
labels []string
assignee string
author string
mentions string
milestone string
language string
topic string
forkState string
visibility string
isArchived *bool
}
func (q *Query) InRepository(nameWithOwner string) {
q.repo = nameWithOwner
}
func (q *Query) OwnedBy(owner string) {
q.owner = owner
}
func (q *Query) SortBy(field SortField, direction SortDirection) {
var dir string
switch direction {
case Asc:
dir = "asc"
case Desc:
dir = "desc"
}
q.sort = fmt.Sprintf("%s-%s", field, dir)
}
func (q *Query) AddQuery(query string) {
q.query = query
}
func (q *Query) SetType(t EntityType) {
q.entity = string(t)
}
func (q *Query) SetState(s State) {
q.state = string(s)
}
func (q *Query) SetBaseBranch(name string) {
q.baseBranch = name
}
func (q *Query) SetHeadBranch(name string) {
q.headBranch = name
}
func (q *Query) AssignedTo(user string) {
q.assignee = user
}
func (q *Query) AuthoredBy(user string) {
q.author = user
}
func (q *Query) Mentions(handle string) {
q.mentions = handle
}
func (q *Query) InMilestone(title string) {
q.milestone = title
}
func (q *Query) AddLabel(name string) {
q.labels = append(q.labels, name)
}
func (q *Query) SetLanguage(name string) {
q.language = name
}
func (q *Query) SetTopic(name string) {
q.topic = name
}
func (q *Query) SetVisibility(visibility RepoVisibility) {
q.visibility = string(visibility)
}
func (q *Query) OnlyForks() {
q.forkState = "only"
}
func (q *Query) IncludeForks(include bool) {
q.forkState = fmt.Sprintf("%v", include)
}
func (q *Query) SetArchived(isArchived bool) {
q.isArchived = &isArchived
}
func (q *Query) String() string {
var qs string
// context
if q.repo != "" {
qs += fmt.Sprintf("repo:%s ", q.repo)
} else if q.owner != "" {
qs += fmt.Sprintf("user:%s ", q.owner)
}
// type
if q.entity != "" {
qs += fmt.Sprintf("is:%s ", q.entity)
}
if q.state != "" {
qs += fmt.Sprintf("is:%s ", q.state)
}
// repositories
if q.visibility != "" {
qs += fmt.Sprintf("is:%s ", q.visibility)
}
if q.language != "" {
qs += fmt.Sprintf("language:%s ", quote(q.language))
}
if q.topic != "" {
qs += fmt.Sprintf("topic:%s ", quote(q.topic))
}
if q.forkState != "" {
qs += fmt.Sprintf("fork:%s ", q.forkState)
}
if q.isArchived != nil {
qs += fmt.Sprintf("archived:%v ", *q.isArchived)
}
// issues
if q.assignee != "" {
qs += fmt.Sprintf("assignee:%s ", q.assignee)
}
for _, label := range q.labels {
qs += fmt.Sprintf("label:%s ", quote(label))
}
if q.author != "" {
qs += fmt.Sprintf("author:%s ", q.author)
}
if q.mentions != "" {
qs += fmt.Sprintf("mentions:%s ", q.mentions)
}
if q.milestone != "" {
qs += fmt.Sprintf("milestone:%s ", quote(q.milestone))
}
// pull requests
if q.baseBranch != "" {
qs += fmt.Sprintf("base:%s ", quote(q.baseBranch))
}
if q.headBranch != "" {
qs += fmt.Sprintf("head:%s ", quote(q.headBranch))
}
if q.sort != "" {
qs += fmt.Sprintf("sort:%s ", q.sort)
}
return strings.TrimRight(qs+q.query, " ")
}
func quote(v string) string {
if strings.ContainsAny(v, " \"\t\r\n") {
return fmt.Sprintf("%q", v)
}
return v
}