Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Add queryParam for getProjects() #13

Closed

Conversation

jlafourc
Copy link
Contributor

Hello,

We should do the same as getAllProjects() to retrieve all projects at once.

Julien

We should do the same as getAllProjects() to retrieve all projects at once.
@gmessner
Copy link
Collaborator

Thanks again for your contribution, however I will not be merging this change as in the next week or so will be adding the getStarredProjects() method and the following parameters along with a per page parameter to all list project methods:

archived - Limit by archived status
visibility - Limit by visibility public, internal, or private
order_by - Return projects ordered by id, name, path, created_at, updated_at, or last_activity_at fields. Default is created_at
sort - Return projects sorted in asc or desc order. Default is desc
search - Return list of authorized projects matching the search criteria
simple - Return only the ID, URL, name, and path of each project

@gmessner gmessner closed this Feb 10, 2017
@gmessner
Copy link
Collaborator

Julien,

Just wanted to let you know that changes were recently made and merged that included equivalent changes to this merge request.

I also wanted to get your input on the following:

I have been working on an Iterator implementation that encapsulates the paging of all calls to the API that support paging. For projects it would work like this:

// Get a Pager instance that will page through the projects with 10 projects per page
Pager<Project> projectPager = gitlabApi.getProjectsApi().getProjectsPager(10);

// Iterate through the pages and print out the name and description
while (projectsPager.hasNext())) {

    List<Project> projects = projectsPager.next();
    for (Project project : projects) {
        System.out.println(project.getName() + " -: " + project.getDescription());
    }
}

Pager is a regular Iterator without remove() implemented. It pages over the available lists of objects by issuing the appropriate call to the GitLab API. It also has the following public non-Iterator methods:

List<T> first();
int getItemsPerPage();
int getNumPages();
List<T> getPage(int pageNumber);
int getTotalItems();
List<T> last();
List<T> previous();

Would love to get your feedback on this proposal.

@gmessner
Copy link
Collaborator

@jlafourc
GitLab4J-API 4.3.0 has been released. This includes both the new Pager support and page/perPage support for all API calls that return a List.

@jlafourc
Copy link
Contributor Author

Hi,

I'm so sorry! Busy times... I'll try to have a look maybe this week. Many thanks for this!

Julien

# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants