Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*********************************************************************************
* *
* The MIT License (MIT) *
* *
* Copyright (c) 2015-2022 aoju.org Greg Messner and other contributors. *
* *
* Permission is hereby granted, free of charge, to any person obtaining a copy *
* of this software and associated documentation files (the "Software"), to deal *
* in the Software without restriction, including without limitation the rights *
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell *
* copies of the Software, and to permit persons to whom the Software is *
* furnished to do so, subject to the following conditions: *
* *
* The above copyright notice and this permission notice shall be included in *
* all copies or substantial portions of the Software. *
* *
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR *
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, *
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE *
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER *
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, *
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN *
* THE SOFTWARE. *
* *
********************************************************************************/
package org.aoju.bus.gitlab;
import org.aoju.bus.gitlab.models.*;
import java.util.List;
import java.util.stream.Stream;
/**
* This class provides an entry point to all the GitLab API Search API calls.
*
* @see Search API
*/
public class SearchApi extends AbstractApi {
public SearchApi(GitLabApi gitLabApi) {
super(gitLabApi);
}
/**
* Search globally across the GitLab instance.
*
*
GitLab Endpoint: POST /search?scope=:scope&search=:search-query
*
* @param scope search the expression within the specified scope. Currently these scopes are supported:
* projects, issues, merge_requests, milestones, snippet_titles, snippet_blobs, users
* @param search the search query
* @return a List containing the object type specified by the scope
* @throws GitLabApiException if any exception occurs
* @since GitLab 10.5
*/
public List> globalSearch(SearchScope scope, String search) throws GitLabApiException {
return (globalSearch(scope, search, this.getDefaultPerPage()).all());
}
/**
* Search globally across the GitLab instance.
*
*
GitLab Endpoint: POST /search?scope=:scope&search=:search-query
*
* @param scope search the expression within the specified scope. Currently these scopes are supported:
* projects, issues, merge_requests, milestones, snippet_titles, snippet_blobs, users
* @param search the search query
* @return a Stream containing the object type specified by the scope
* @throws GitLabApiException if any exception occurs
* @since GitLab 10.5
*/
public Stream> globalSearchStream(SearchScope scope, String search) throws GitLabApiException {
return (globalSearch(scope, search, getDefaultPerPage()).stream());
}
/**
* Search globally across the GitLab instance.
*
*
GitLab Endpoint: POST /search?scope=:scope&search=:search-query
*
* @param scope search the expression within the specified scope. Currently these scopes are supported:
* projects, issues, merge_requests, milestones, snippet_titles, snippet_blobs, users
* @param search the search query
* @param itemsPerPage the number of items that will be fetched per page
* @return a Pager containing the object type specified by the scope
* @throws GitLabApiException if any exception occurs
* @since GitLab 10.5
*/
public Pager> globalSearch(SearchScope scope, String search, int itemsPerPage) throws GitLabApiException {
GitLabApiForm formData = new GitLabApiForm()
.withParam("scope", scope, true)
.withParam("search", search, true);
switch (scope) {
case BLOBS:
return (new Pager(this, SearchBlob.class, itemsPerPage, formData.asMap(), "search"));
case COMMITS:
return (new Pager(this, Commit.class, itemsPerPage, formData.asMap(), "search"));
case PROJECTS:
return (new Pager(this, Project.class, itemsPerPage, formData.asMap(), "search"));
case ISSUES:
return (new Pager(this, Issue.class, itemsPerPage, formData.asMap(), "search"));
case MERGE_REQUESTS:
return (new Pager(this, MergeRequest.class, itemsPerPage, formData.asMap(), "search"));
case MILESTONES:
return (new Pager(this, Milestone.class, itemsPerPage, formData.asMap(), "search"));
case SNIPPET_TITLES:
return (new Pager(this, Snippet.class, itemsPerPage, formData.asMap(), "search"));
case SNIPPET_BLOBS:
return (new Pager(this, Snippet.class, itemsPerPage, formData.asMap(), "search"));
case USERS:
return (new Pager(this, User.class, itemsPerPage, formData.asMap(), "search"));
case WIKI_BLOBS:
return (new Pager(this, SearchBlob.class, itemsPerPage, formData.asMap(), "search"));
default:
throw new GitLabApiException("Invalid SearchScope [" + scope + "]");
}
}
/**
* Search within the specified group. If a user is not a member of a group and the group is private,
* a request on that group will result to a 404 status code.
*
*
GitLab Endpoint: POST /groups/:groupId/search?scope=:scope&search=:search-query
*
* @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path, required
* @param scope search the expression within the specified scope. Currently these scopes are supported:
* projects, issues, merge_requests, milestones, users
* @param search the search query
* @return a List containing the object type specified by the scope
* @throws GitLabApiException if any exception occurs
* @since GitLab 10.5
*/
public List> groupSearch(Object groupIdOrPath, GroupSearchScope scope, String search) throws GitLabApiException {
return (groupSearch(groupIdOrPath, scope, search, this.getDefaultPerPage()).all());
}
/**
* Search within the specified group. If a user is not a member of a group and the group is private,
* a request on that group will result to a 404 status code.
*
*
GitLab Endpoint: POST /groups/:groupId/search?scope=:scope&search=:search-query
*
* @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path, required
* @param scope search the expression within the specified scope. Currently these scopes are supported:
* projects, issues, merge_requests, milestones, users
* @param search the search query
* @return a Stream containing the object type specified by the scope
* @throws GitLabApiException if any exception occurs
* @since GitLab 10.5
*/
public Stream> groupSearchStream(Object groupIdOrPath, GroupSearchScope scope, String search) throws GitLabApiException {
return (groupSearch(groupIdOrPath, scope, search, getDefaultPerPage()).stream());
}
/**
* Search within the specified group. If a user is not a member of a group and the group is private,
* a request on that group will result to a 404 status code.
*
*
GitLab Endpoint: POST /groups/:groupId/search?scope=:scope&search=:search-query
*
* @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path, required
* @param scope search the expression within the specified scope. Currently these scopes are supported:
* projects, issues, merge_requests, milestones, users
* @param search the search query
* @param itemsPerPage the number of items that will be fetched per page
* @return a Pager containing the object type specified by the scope
* @throws GitLabApiException if any exception occurs
* @since GitLab 10.5
*/
public Pager> groupSearch(Object groupIdOrPath, GroupSearchScope scope, String search, int itemsPerPage) throws GitLabApiException {
GitLabApiForm formData = new GitLabApiForm()
.withParam("scope", scope, true)
.withParam("search", search, true);
switch (scope) {
case PROJECTS:
return (new Pager(this, Project.class, itemsPerPage, formData.asMap(),
"groups", getGroupIdOrPath(groupIdOrPath), "search"));
case ISSUES:
return (new Pager(this, Issue.class, itemsPerPage, formData.asMap(),
"groups", getGroupIdOrPath(groupIdOrPath), "search"));
case MERGE_REQUESTS:
return (new Pager(this, MergeRequest.class, itemsPerPage, formData.asMap(),
"groups", getGroupIdOrPath(groupIdOrPath), "search"));
case MILESTONES:
return (new Pager(this, Milestone.class, itemsPerPage, formData.asMap(),
"groups", getGroupIdOrPath(groupIdOrPath), "search"));
case USERS:
return (new Pager(this, User.class, itemsPerPage, formData.asMap(),
"groups", getGroupIdOrPath(groupIdOrPath), "search"));
default:
throw new GitLabApiException("Invalid GroupSearchScope [" + scope + "]");
}
}
/**
* Search within the specified project. If a user is not a member of a project and the project is private,
* a request on that project will result to a 404 status code.
*
*
GitLab Endpoint: POST /projects/:projectId/search?scope=:scope&search=:search-query
*
* @param projectIdOrPath the project in the form of an Long(ID), String(path), or Project instance, required
* @param scope search the expression within the specified scope. Currently these scopes are supported:
* issues, merge_requests, milestones, notes, wiki_blobs, commits, blobs, users
* @param search the search query
* @return a List containing the object type specified by the scope
* @throws GitLabApiException if any exception occurs
* @since GitLab 10.5
*/
public List> projectSearch(Object projectIdOrPath, ProjectSearchScope scope, String search) throws GitLabApiException {
return (projectSearch(projectIdOrPath, scope, search, null, this.getDefaultPerPage()).all());
}
/**
* Search within the specified project. If a user is not a member of a project and the project is private,
* a request on that project will result to a 404 status code.
*
*
GitLab Endpoint: POST /projects/:projectId/search?scope=:scope&search=:search-query&ref=ref
*
* @param projectIdOrPath the project in the form of an Long(ID), String(path), or Project instance, required
* @param scope search the expression within the specified scope. Currently these scopes are supported:
* issues, merge_requests, milestones, notes, wiki_blobs, commits, blobs, users
* @param search the search query
* @param ref the name of a repository branch or tag to search on. The project’s default branch is used by
* default. This is only applicable for scopes: commits, blobs, and wiki_blobs.
* @return a List containing the object type specified by the scope
* @throws GitLabApiException if any exception occurs
* @since GitLab 10.5
*/
public List> projectSearch(Object projectIdOrPath, ProjectSearchScope scope, String search, String ref) throws GitLabApiException {
return (projectSearch(projectIdOrPath, scope, search, ref, this.getDefaultPerPage()).all());
}
/**
* Search within the specified project. If a user is not a member of a project and the project is private,
* a request on that project will result to a 404 status code.
*
*
GitLab Endpoint: POST /projects/:projectId/search?scope=:scope&search=:search-query
*
* @param projectIdOrPath the project in the form of an Long(ID), String(path), or Project instance, required
* @param scope search the expression within the specified scope. Currently these scopes are supported:
* issues, merge_requests, milestones, notes, wiki_blobs, commits, blobs, users
* @param search the search query
* @return a Stream containing the object type specified by the scope
* @throws GitLabApiException if any exception occurs
* @since GitLab 10.5
*/
public Stream> projectSearchStream(Object projectIdOrPath, ProjectSearchScope scope, String search) throws GitLabApiException {
return (projectSearch(projectIdOrPath, scope, search, null, getDefaultPerPage()).stream());
}
/**
* Search within the specified project. If a user is not a member of a project and the project is private,
* a request on that project will result to a 404 status code.
*
*
GitLab Endpoint: POST /projects/:projectId/search?scope=:scope&search=:search-query&ref=ref
*
* @param projectIdOrPath the project in the form of an Long(ID), String(path), or Project instance, required
* @param scope search the expression within the specified scope. Currently these scopes are supported:
* issues, merge_requests, milestones, notes, wiki_blobs, commits, blobs, users
* @param search the search query
* @param ref the name of a repository branch or tag to search on. The project’s default branch is used by
* default. This is only applicable for scopes: commits, blobs, and wiki_blobs.
* @return a Stream containing the object type specified by the scope
* @throws GitLabApiException if any exception occurs
* @since GitLab 10.5
*/
public Stream> projectSearchStream(Object projectIdOrPath, ProjectSearchScope scope, String search, String ref) throws GitLabApiException {
return (projectSearch(projectIdOrPath, scope, search, ref, getDefaultPerPage()).stream());
}
/**
* Search within the specified project. If a user is not a member of a project and the project is private,
* a request on that project will result to a 404 status code.
*
*
GitLab Endpoint: POST /project/:projectId/search?scope=:scope&search=:search-query
*
* @param projectIdOrPath the project in the form of an Long(ID), String(path), or Project instance, required
* @param scope search the expression within the specified scope. Currently these scopes are supported:
* issues, merge_requests, milestones, notes, wiki_blobs, commits, blobs, users
* @param search the search query
* @param itemsPerPage the number of items that will be fetched per page
* @return a Pager containing the object type specified by the scope
* @throws GitLabApiException if any exception occurs
* @since GitLab 10.5
*/
public Pager> projectSearch(Object projectIdOrPath, ProjectSearchScope scope, String search, int itemsPerPage) throws GitLabApiException {
return projectSearch(projectIdOrPath, scope, search, null, itemsPerPage);
}
/**
* Search within the specified project. If a user is not a member of a project and the project is private,
* a request on that project will result to a 404 status code.
*
*
GitLab Endpoint: POST /project/:projectId/search?scope=:scope&search=:search-query&ref=ref
*
* @param projectIdOrPath the project in the form of an Long(ID), String(path), or Project instance, required
* @param scope search the expression within the specified scope. Currently these scopes are supported:
* issues, merge_requests, milestones, notes, wiki_blobs, commits, blobs, users
* @param search the search query
* @param ref the name of a repository branch or tag to search on. The project’s default branch is used by
* default. This is only applicable for scopes: commits, blobs, and wiki_blobs.
* @param itemsPerPage the number of items that will be fetched per page
* @return a Pager containing the object type specified by the scope
* @throws GitLabApiException if any exception occurs
* @since GitLab 10.5
*/
public Pager> projectSearch(Object projectIdOrPath, ProjectSearchScope scope, String search, String ref, int itemsPerPage) throws GitLabApiException {
GitLabApiForm formData = new GitLabApiForm()
.withParam("scope", scope, true)
.withParam("search", search, true)
.withParam("ref", ref, false);
if (ref != null) {
if (!scope.equals(ProjectSearchScope.BLOBS) && !scope.equals(ProjectSearchScope.WIKI_BLOBS) && !scope.equals(ProjectSearchScope.COMMITS)) {
throw new GitLabApiException("Ref parameter is only applicable for scopes: commits, blobs, and wiki_blobs");
}
}
switch (scope) {
case BLOBS:
return (new Pager(this, SearchBlob.class, itemsPerPage, formData.asMap(),
"projects", getProjectIdOrPath(projectIdOrPath), "search"));
case COMMITS:
return (new Pager(this, Commit.class, itemsPerPage, formData.asMap(),
"projects", getProjectIdOrPath(projectIdOrPath), "search"));
case ISSUES:
return (new Pager(this, Issue.class, itemsPerPage, formData.asMap(),
"projects", getProjectIdOrPath(projectIdOrPath), "search"));
case MERGE_REQUESTS:
return (new Pager(this, MergeRequest.class, itemsPerPage, formData.asMap(),
"projects", getProjectIdOrPath(projectIdOrPath), "search"));
case MILESTONES:
return (new Pager(this, Milestone.class, itemsPerPage, formData.asMap(),
"projects", getProjectIdOrPath(projectIdOrPath), "search"));
case NOTES:
return (new Pager(this, Note.class, itemsPerPage, formData.asMap(),
"projects", getProjectIdOrPath(projectIdOrPath), "search"));
case WIKI_BLOBS:
return (new Pager(this, SearchBlob.class, itemsPerPage, formData.asMap(),
"projects", getProjectIdOrPath(projectIdOrPath), "search"));
case USERS:
return (new Pager(this, User.class, itemsPerPage, formData.asMap(),
"projects", getProjectIdOrPath(projectIdOrPath), "search"));
default:
throw new GitLabApiException("Invalid ProjectSearchScope [" + scope + "]");
}
}
}