org.gitlab.api.http.Query类的使用及代码示例

x33g5p2x  于2022-01-28 转载在 其他  
字(10.1k)|赞(0)|评价(0)|浏览(203)

本文整理了Java中org.gitlab.api.http.Query类的一些代码示例,展示了Query类的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Query类的具体详情如下:
包路径:org.gitlab.api.http.Query
类名称:Query

Query介绍

[英]Models the Query aspect of a URL
[中]对URL的查询方面进行建模

代码示例

代码示例来源:origin: timols/java-gitlab-api

  1. public List<GitlabGroup> getGroupsViaSudo(String username, Pagination pagination) throws IOException {
  2. String tailUrl = GitlabGroup.URL;
  3. Query query = new Query()
  4. .appendIf(PARAM_SUDO, username);
  5. if (pagination != null) {
  6. query.mergeWith(pagination.asQuery());
  7. }
  8. return retrieve().getAll(tailUrl + query.toString(), GitlabGroup[].class);
  9. }

代码示例来源:origin: timols/java-gitlab-api

  1. private GitlabSSHKey createDeployKey(Integer targetProjectId, String title, String key, boolean canPush) throws IOException {
  2. Query query = new Query()
  3. .append("title", title)
  4. .append("key", key)
  5. .append("can_push", Boolean.toString(canPush));
  6. String tailUrl = GitlabProject.URL + "/" + targetProjectId + GitlabSSHKey.DEPLOY_KEYS_URL + query.toString();
  7. return dispatch().to(tailUrl, GitlabSSHKey.class);
  8. }

代码示例来源:origin: timols/java-gitlab-api

  1. /**
  2. * Generates query representing this request's properties.
  3. * @return {@link Query}
  4. * @throws UnsupportedEncodingException
  5. */
  6. public Query toQuery() throws UnsupportedEncodingException{
  7. return new Query()
  8. .append("name", name)
  9. .append("path", path)
  10. .appendIf("ldap_cn", ldapCn)
  11. .appendIf("description", description)
  12. .appendIf("membershipLock", membershipLock)
  13. .appendIf("share_with_group_lock", shareWithGroupLock)
  14. .appendIf("visibility", visibility != null ? visibility.toString() : null)
  15. .appendIf("lfs_enabled", lfsEnabled)
  16. .appendIf("request_access_enabled", requestAccessEnabled)
  17. .appendIf("parent_id", parentId);
  18. }

代码示例来源:origin: timols/java-gitlab-api

  1. /**
  2. * Add a project member.
  3. *
  4. * @param projectId the project id
  5. * @param userId the user id
  6. * @param accessLevel the GitlabAccessLevel
  7. * @return the GitlabProjectMember
  8. * @throws IOException on gitlab api call error
  9. */
  10. public GitlabProjectMember addProjectMember(Integer projectId, Integer userId, GitlabAccessLevel accessLevel) throws IOException {
  11. Query query = new Query()
  12. .appendIf("id", projectId)
  13. .appendIf("user_id", userId)
  14. .appendIf("access_level", accessLevel);
  15. String tailUrl = GitlabProject.URL + "/" + projectId + GitlabProjectMember.URL + query.toString();
  16. return dispatch().to(tailUrl, GitlabProjectMember.class);
  17. }

代码示例来源:origin: timols/java-gitlab-api

  1. /**
  2. * Get a list of projects that the authenticated user is a member of.
  3. *
  4. * @return A list of gitlab projects
  5. * @throws IOException on gitlab api call error
  6. */
  7. public List<GitlabProject> getMembershipProjects() throws IOException {
  8. Query query = new Query().append("membership", "true");
  9. query.mergeWith(new Pagination().withPerPage(Pagination.MAX_ITEMS_PER_PAGE).asQuery());
  10. String tailUrl = GitlabProject.URL + query.toString();
  11. return retrieve().getAll(tailUrl, GitlabProject[].class);
  12. }

代码示例来源:origin: timols/java-gitlab-api

  1. /**
  2. * Share a project with a group.
  3. *
  4. * @param accessLevel The permissions level to grant the group.
  5. * @param group The group to share with.
  6. * @param project The project to be shared.
  7. * @param expiration Share expiration date in ISO 8601 format: 2016-09-26 or {@code null}.
  8. * @throws IOException on gitlab api call error
  9. */
  10. public void shareProjectWithGroup(GitlabAccessLevel accessLevel, String expiration, GitlabGroup group, GitlabProject project) throws IOException {
  11. Query query = new Query()
  12. .append("group_id", group.getId().toString())
  13. .append("group_access", String.valueOf(accessLevel.accessValue))
  14. .appendIf("expires_at", expiration);
  15. String tailUrl = GitlabProject.URL + "/" + project.getId() + "/share" + query.toString();
  16. dispatch().to(tailUrl, Void.class);
  17. }

代码示例来源:origin: timols/java-gitlab-api

  1. public GitlabCommitComparison compareCommits(Serializable projectId, String commitHash1, String commitHash2, Pagination pagination) throws IOException {
  2. String tailUrl = GitlabProject.URL + "/" + sanitizeProjectId(projectId) + GitlabCommitComparison.URL;
  3. Query query = new Query()
  4. .append("from", commitHash1)
  5. .append("to", commitHash2);
  6. query.mergeWith(pagination.asQuery());
  7. return retrieve().to(tailUrl + query, GitlabCommitComparison.class);
  8. }

代码示例来源:origin: timols/java-gitlab-api

  1. /**
  2. * Get an archive of the repository
  3. *
  4. * @param project The Project
  5. * @param path The path inside the repository. Used to get content of subdirectories (optional)
  6. * @param ref The name of a repository branch or tag or if not given the default branch (optional)
  7. * @throws IOException on gitlab api call error
  8. */
  9. public List<GitlabRepositoryTree> getRepositoryTree(GitlabProject project, String path, String ref, boolean recursive) throws IOException {
  10. Query query = new Pagination().withPerPage(Pagination.MAX_ITEMS_PER_PAGE).asQuery()
  11. .appendIf("path", path)
  12. .appendIf("ref", ref)
  13. .appendIf("recursive", recursive);
  14. String tailUrl = GitlabProject.URL + "/" + project.getId() + "/repository" + GitlabRepositoryTree.URL + query.toString();
  15. return retrieve().getAll(tailUrl, GitlabRepositoryTree[].class);
  16. }

代码示例来源:origin: timols/java-gitlab-api

  1. @Test
  2. public void emptyPagination() {
  3. Pagination pagination = new Pagination();
  4. final Query expectedQuery = new Query();
  5. assertEquals(expectedQuery.toString(), pagination.toString());
  6. assertEquals(expectedQuery.toString(), pagination.asQuery().toString());
  7. }

代码示例来源:origin: timols/java-gitlab-api

  1. public void setPage(int page) {
  2. try {
  3. paginationQuery.append(PARAM_PAGE, String.valueOf(page));
  4. } catch (UnsupportedEncodingException ignored) {
  5. }
  6. }

代码示例来源:origin: timols/java-gitlab-api

  1. @Override
  2. public String toString() {
  3. return paginationQuery.toString();
  4. }
  5. }

代码示例来源:origin: timols/java-gitlab-api

  1. /**
  2. * @param namespace The namespace of the fork
  3. * @param projectId ProjectId of the project forked
  4. * @return The new Gitlab Project
  5. * @throws IOException on gitlab api call error
  6. */
  7. public GitlabProject createFork(String namespace, Integer projectId) throws IOException {
  8. Query query = new Query()
  9. .appendIf("namespace", namespace);
  10. String tailUrl = GitlabProject.URL + "/" + projectId + "/fork" + query.toString();
  11. return dispatch().to(tailUrl, GitlabProject.class);
  12. }

代码示例来源:origin: timols/java-gitlab-api

  1. /**
  2. * Get a list of projects owned by the authenticated user.
  3. *
  4. * @return A list of gitlab projects
  5. * @throws IOException on gitlab api call error
  6. */
  7. public List<GitlabProject> getOwnedProjects() throws IOException {
  8. Query query = new Query().append("owned", "true");
  9. query.mergeWith(new Pagination().withPerPage(Pagination.MAX_ITEMS_PER_PAGE).asQuery());
  10. String tailUrl = GitlabProject.URL + query.toString();
  11. return retrieve().getAll(tailUrl, GitlabProject[].class);
  12. }

代码示例来源:origin: timols/java-gitlab-api

  1. /**
  2. * Share a project with a group.
  3. *
  4. * @param accessLevel The permissions level to grant the group.
  5. * @param group The group to share with.
  6. * @param project The project to be shared.
  7. * @param expiration Share expiration date in ISO 8601 format: 2016-09-26 or {@code null}.
  8. * @throws IOException on gitlab api call error
  9. */
  10. public void shareProjectWithGroup(GitlabAccessLevel accessLevel, String expiration, GitlabGroup group, GitlabProject project) throws IOException {
  11. Query query = new Query()
  12. .append("group_id", group.getId().toString())
  13. .append("group_access", String.valueOf(accessLevel.accessValue))
  14. .appendIf("expires_at", expiration);
  15. String tailUrl = GitlabProject.URL + "/" + project.getId() + "/share" + query.toString();
  16. dispatch().to(tailUrl, Void.class);
  17. }

代码示例来源:origin: timols/java-gitlab-api

  1. public GitlabCommitComparison compareCommits(Serializable projectId, String commitHash1, String commitHash2, Pagination pagination) throws IOException {
  2. String tailUrl = GitlabProject.URL + "/" + sanitizeProjectId(projectId) + GitlabCommitComparison.URL;
  3. Query query = new Query()
  4. .append("from", commitHash1)
  5. .append("to", commitHash2);
  6. query.mergeWith(pagination.asQuery());
  7. return retrieve().to(tailUrl + query, GitlabCommitComparison.class);
  8. }

代码示例来源:origin: timols/java-gitlab-api

  1. /**
  2. * Get an archive of the repository
  3. *
  4. * @param project The Project
  5. * @param path The path inside the repository. Used to get content of subdirectories (optional)
  6. * @param ref The name of a repository branch or tag or if not given the default branch (optional)
  7. * @throws IOException on gitlab api call error
  8. */
  9. public List<GitlabRepositoryTree> getRepositoryTree(GitlabProject project, String path, String ref, boolean recursive) throws IOException {
  10. Query query = new Pagination().withPerPage(Pagination.MAX_ITEMS_PER_PAGE).asQuery()
  11. .appendIf("path", path)
  12. .appendIf("ref", ref)
  13. .appendIf("recursive", recursive);
  14. String tailUrl = GitlabProject.URL + "/" + project.getId() + "/repository" + GitlabRepositoryTree.URL + query.toString();
  15. return retrieve().getAll(tailUrl, GitlabRepositoryTree[].class);
  16. }

代码示例来源:origin: timols/java-gitlab-api

  1. /**
  2. * Generates query representing this request's properties.
  3. * @return {@link Query}
  4. * @throws UnsupportedEncodingException
  5. */
  6. public Query toQuery() throws UnsupportedEncodingException{
  7. return new Query()
  8. .append("name", name)
  9. .append("path", path)
  10. .appendIf("ldap_cn", ldapCn)
  11. .appendIf("description", description)
  12. .appendIf("membershipLock", membershipLock)
  13. .appendIf("share_with_group_lock", shareWithGroupLock)
  14. .appendIf("visibility", visibility != null ? visibility.toString() : null)
  15. .appendIf("lfs_enabled", lfsEnabled)
  16. .appendIf("request_access_enabled", requestAccessEnabled)
  17. .appendIf("parent_id", parentId);
  18. }

代码示例来源:origin: timols/java-gitlab-api

  1. public void setPage(int page) {
  2. try {
  3. paginationQuery.append(PARAM_PAGE, String.valueOf(page));
  4. } catch (UnsupportedEncodingException ignored) {
  5. }
  6. }

代码示例来源:origin: org.gitlab/java-gitlab-api

  1. /**
  2. * Create a new user. This may succeed only if the requester is an administrator.
  3. *
  4. * @param request An object that represents the parameters for the request.
  5. * @return {@link GitlabUser}
  6. * @throws IOException on gitlab api call error
  7. */
  8. public GitlabUser createUser(CreateUserRequest request) throws IOException {
  9. String tailUrl = GitlabUser.USERS_URL + request.toQuery().toString();
  10. return dispatch().to(tailUrl, GitlabUser.class);
  11. }

代码示例来源:origin: timols/java-gitlab-api

  1. public List<GitlabGroup> getGroupsViaSudo(String username, Pagination pagination) throws IOException {
  2. String tailUrl = GitlabGroup.URL;
  3. Query query = new Query()
  4. .appendIf(PARAM_SUDO, username);
  5. if (pagination != null) {
  6. query.mergeWith(pagination.asQuery());
  7. }
  8. return retrieve().getAll(tailUrl + query.toString(), GitlabGroup[].class);
  9. }

相关文章