mirror of
https://github.com/jlengrand/github-api.git
synced 2026-04-04 08:21:23 +00:00
137 lines
4.9 KiB
Java
137 lines
4.9 KiB
Java
package org.kohsuke.github;
|
|
|
|
import com.gargoylesoftware.htmlunit.WebClient;
|
|
import com.gargoylesoftware.htmlunit.html.HtmlAnchor;
|
|
import com.gargoylesoftware.htmlunit.html.HtmlPage;
|
|
|
|
import java.io.FileNotFoundException;
|
|
import java.io.IOException;
|
|
import java.util.AbstractList;
|
|
import java.util.ArrayList;
|
|
import java.util.Arrays;
|
|
import java.util.Collection;
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
|
|
import static org.kohsuke.github.ApiVersion.*;
|
|
|
|
/**
|
|
* @author Kohsuke Kawaguchi
|
|
*/
|
|
public class GHOrganization extends GHPerson {
|
|
/**
|
|
* Creates a new repository.
|
|
*
|
|
* @return
|
|
* Newly created repository.
|
|
*/
|
|
public GHRepository createRepository(String name, String description, String homepage, String team, boolean isPublic) throws IOException {
|
|
return createRepository(name,description,homepage,getTeams().get(team),isPublic);
|
|
}
|
|
|
|
public GHRepository createRepository(String name, String description, String homepage, GHTeam team, boolean isPublic) throws IOException {
|
|
// such API doesn't exist, so fall back to HTML scraping
|
|
return new Poster(root,V3).withCredential()
|
|
.with("name", name).with("description", description).with("homepage", homepage)
|
|
.with("public", isPublic).with("team_id",team.getId()).to("/orgs/"+login+"/repos", GHRepository.class).wrap(root);
|
|
}
|
|
|
|
/**
|
|
* Teams by their names.
|
|
*/
|
|
public Map<String,GHTeam> getTeams() throws IOException {
|
|
return root.retrieveWithAuth("/organizations/"+login+"/teams",JsonTeams.class).toMap(this);
|
|
}
|
|
|
|
@Override
|
|
public GHRepository getRepository(String name) throws IOException {
|
|
try {
|
|
return root.retrieveWithAuth3("/repos/" + login + '/' + name, GHRepository.class).wrap(root);
|
|
} catch (FileNotFoundException e) {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Publicizes the membership.
|
|
*/
|
|
public void publicize(GHUser u) throws IOException {
|
|
root.retrieveWithAuth3("/orgs/" + login + "/public_members/" + u.getLogin(), null, "PUT");
|
|
}
|
|
|
|
/**
|
|
* All the members of this organization.
|
|
*/
|
|
public List<GHUser> getMembers() throws IOException {
|
|
return new AbstractList<GHUser>() {
|
|
// these are shallow objects with only some limited values filled out
|
|
// TODO: it's better to allow objects to fill themselves in later when missing values are requested
|
|
final GHUser[] shallow = root.retrieveWithAuth3("/orgs/" + login + "/members", GHUser[].class);
|
|
|
|
@Override
|
|
public GHUser get(int index) {
|
|
try {
|
|
return root.getUser(shallow[index].getLogin());
|
|
} catch (IOException e) {
|
|
throw new RuntimeException(e);
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public int size() {
|
|
return shallow.length;
|
|
}
|
|
};
|
|
}
|
|
|
|
/**
|
|
* Conceals the membership.
|
|
*/
|
|
public void conceal(GHUser u) throws IOException {
|
|
root.retrieveWithAuth3("/orgs/" + login + "/public_members/" + u.getLogin(), null, "DELETE");
|
|
}
|
|
|
|
public enum Permission { ADMIN, PUSH, PULL }
|
|
|
|
/**
|
|
* Creates a new team and assigns the repositories.
|
|
*/
|
|
public GHTeam createTeam(String name, Permission p, Collection<GHRepository> repositories) throws IOException {
|
|
Poster post = new Poster(root).withCredential().with("team[name]", name).with("team[permission]", p.name().toLowerCase());
|
|
for (GHRepository r : repositories) {
|
|
post.with("team[repo_names][]",r.getOwnerName()+'/'+r.getName());
|
|
}
|
|
return post.to("/organizations/"+login+"/teams",JsonTeam.class).wrap(this);
|
|
}
|
|
|
|
public GHTeam createTeam(String name, Permission p, GHRepository... repositories) throws IOException {
|
|
return createTeam(name,p, Arrays.asList(repositories));
|
|
}
|
|
|
|
/**
|
|
* List up repositories that has some open pull requests.
|
|
*/
|
|
public List<GHRepository> getRepositoriesWithOpenPullRequests() throws IOException {
|
|
WebClient wc = root.createWebClient();
|
|
HtmlPage pg = (HtmlPage)wc.getPage("https://github.com/organizations/"+login+"/dashboard/pulls");
|
|
List<GHRepository> r = new ArrayList<GHRepository>();
|
|
for (HtmlAnchor e : pg.getElementById("js-issue-list").<HtmlAnchor>selectNodes(".//UL[@class='smallnav']/LI[not(@class='zeroed')]/A")) {
|
|
String a = e.getHrefAttribute();
|
|
String name = a.substring(a.lastIndexOf('/')+1);
|
|
r.add(getRepository(name));
|
|
}
|
|
return r;
|
|
}
|
|
|
|
/**
|
|
* Gets all the open pull requests in this organizataion.
|
|
*/
|
|
public List<GHPullRequest> getPullRequests() throws IOException {
|
|
List<GHPullRequest> all = new ArrayList<GHPullRequest>();
|
|
for (GHRepository r : getRepositoriesWithOpenPullRequests()) {
|
|
all.addAll(r.getPullRequests(GHIssueState.OPEN));
|
|
}
|
|
return all;
|
|
}
|
|
}
|