1
0
mirror of https://github.com/interviewstreet/go-jira.git synced 2025-02-15 13:53:15 +02:00
2021-08-27 14:45:21 +05:30

56 lines
1.2 KiB
Go

package main
import (
"fmt"
jira "github.com/chhekur/go-jira"
)
// GetAllIssues will implement pagination of api and get all the issues.
// Jira API has limitation as to maxResults it can return at one time.
// You may have usecase where you need to get all the issues according to jql
// This is where this example comes in.
func GetAllIssues(client *jira.Client, searchString string) ([]jira.Issue, error) {
last := 0
var issues []jira.Issue
for {
opt := &jira.SearchOptions{
MaxResults: 1000, // Max results can go up to 1000
StartAt: last,
}
chunk, resp, err := client.Issue.Search(searchString, opt)
if err != nil {
return nil, err
}
total := resp.Total
if issues == nil {
issues = make([]jira.Issue, 0, total)
}
issues = append(issues, chunk...)
last = resp.StartAt + len(chunk)
if last >= total {
return issues, nil
}
}
}
func main() {
jiraClient, err := jira.NewClient(nil, "https://issues.apache.org/jira/")
if err != nil {
panic(err)
}
jql := "project = Mesos and type = Bug and Status NOT IN (Resolved)"
fmt.Printf("Usecase: Running a JQL query '%s'\n", jql)
issues, err := GetAllIssues(jiraClient, jql)
if err != nil {
panic(err)
}
fmt.Println(issues)
}