Add IssueType as filter for ListIssues (#286)
add IssueType as filter for ListIssues Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com> Co-authored-by: 6543 <6543@obermui.de> Reviewed-on: https://gitea.com/gitea/go-sdk/pulls/286 Reviewed-by: John Olheiser <john.olheiser@gmail.com> Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com>
This commit is contained in:
parent
10a1de1d10
commit
01b2959d4d
1 changed files with 16 additions and 2 deletions
|
@ -57,6 +57,7 @@ type Issue struct {
|
||||||
type ListIssueOption struct {
|
type ListIssueOption struct {
|
||||||
ListOptions
|
ListOptions
|
||||||
State StateType
|
State StateType
|
||||||
|
Type IssueType
|
||||||
Labels []string
|
Labels []string
|
||||||
KeyWord string
|
KeyWord string
|
||||||
}
|
}
|
||||||
|
@ -65,14 +66,26 @@ type ListIssueOption struct {
|
||||||
type StateType string
|
type StateType string
|
||||||
|
|
||||||
const (
|
const (
|
||||||
// StateOpen pr is opend
|
// StateOpen pr/issue is opend
|
||||||
StateOpen StateType = "open"
|
StateOpen StateType = "open"
|
||||||
// StateClosed pr is closed
|
// StateClosed pr/issue is closed
|
||||||
StateClosed StateType = "closed"
|
StateClosed StateType = "closed"
|
||||||
// StateAll is all
|
// StateAll is all
|
||||||
StateAll StateType = "all"
|
StateAll StateType = "all"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
// IssueType is issue a pull or only an issue
|
||||||
|
type IssueType string
|
||||||
|
|
||||||
|
const (
|
||||||
|
// IssueTypeAll pr and issue
|
||||||
|
IssueTypeAll IssueType = ""
|
||||||
|
// IssueTypeIssue only issues
|
||||||
|
IssueTypeIssue IssueType = "issues"
|
||||||
|
// IssueTypePull only pulls
|
||||||
|
IssueTypePull IssueType = "pulls"
|
||||||
|
)
|
||||||
|
|
||||||
// QueryEncode turns options into querystring argument
|
// QueryEncode turns options into querystring argument
|
||||||
func (opt *ListIssueOption) QueryEncode() string {
|
func (opt *ListIssueOption) QueryEncode() string {
|
||||||
query := opt.getURLQuery()
|
query := opt.getURLQuery()
|
||||||
|
@ -92,6 +105,7 @@ func (opt *ListIssueOption) QueryEncode() string {
|
||||||
if len(opt.KeyWord) > 0 {
|
if len(opt.KeyWord) > 0 {
|
||||||
query.Add("q", opt.KeyWord)
|
query.Add("q", opt.KeyWord)
|
||||||
}
|
}
|
||||||
|
query.Add("type", string(opt.Type))
|
||||||
|
|
||||||
return query.Encode()
|
return query.Encode()
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue