Peter Penzov
Peter Penzov

Reputation: 1678

List all issues in repository

I want to list all issues into all repository under all organizations. I tried this code:

GitHubClient client = new GitHubClient(host);
        client.setCredentials(user_name, password);

        RepositoryService repository = new RepositoryService(client);
        IssueService issues = new IssueService(client);

        OrganizationService organization = new OrganizationService(client);

        List<Repository> orgRepositories = repository.getOrgRepositories("eMerchantPay");

        for (int i = 0; i < orgRepositories.size(); i++) {
            Repository get = orgRepositories.get(i);
            String name = get.getName();
            System.out.println("Repository name " + name);

            Map<String, String> map = new HashMap<>();
            List<Issue> issues1 = issues.getIssues(user_name, name, map);

            for (int x = 0; x < issues1.size(); x++) {
                Issue get1 = issues1.get(x);
                String title = get1.getTitle();
                System.out.println("Issue name " + title);
            }

        }

How I can do this with org.eclipse.egit.github.core library?

Upvotes: 1

Views: 391

Answers (1)

VonC
VonC

Reputation: 1323953

You can use org.eclipse.egit.github.core.service.IssueService for fetching all issues of a given repo.

See an example in this question, where you will get the pages of issues:

IssueService service = new IssueService(client);
Map<String, String> params = new HashMap<String, String>();
params.put(IssueService.FILTER_STATE, IssueService.STATE_CLOSED);
PageIterator<Issue> iterator = service.pageIssues("schacon", "showoff",
        params, 1);

Upvotes: 2

Related Questions