blob: 3d864353cb3e7afd2f665dfcee0df8a4a9237530 [file] [log] [blame]
/*
* Copyright 2000-2013 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.jetbrains.plugins.github.api;
import com.google.gson.annotations.SerializedName;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import java.util.Date;
/**
* @author Aleksey Pivovarov
*/
@SuppressWarnings("UnusedDeclaration")
class GithubRepoRaw implements DataConstructor {
@Nullable public Long id;
@Nullable public String name;
@Nullable public String fullName;
@Nullable public String description;
@SerializedName("private")
@Nullable public Boolean isPrivate;
@SerializedName("fork")
@Nullable public Boolean isFork;
@Nullable public String url;
@Nullable public String htmlUrl;
@Nullable public String cloneUrl;
@Nullable public String gitUrl;
@Nullable public String sshUrl;
@Nullable public String svnUrl;
@Nullable public String mirrorUrl;
@Nullable public String homepage;
@Nullable public String language;
@Nullable public Integer size;
@Nullable public Integer forks;
@Nullable public Integer forksCount;
@Nullable public Integer watchers;
@Nullable public Integer watchersCount;
@Nullable public Integer openIssues;
@Nullable public Integer openIssuesCount;
@Nullable public String masterBranch;
@Nullable public String defaultBranch;
@Nullable public Boolean hasIssues;
@Nullable public Boolean hasWiki;
@Nullable public Boolean hasDownloads;
@Nullable public GithubRepoRaw parent;
@Nullable public GithubRepoRaw source;
@Nullable public GithubUserRaw owner;
@Nullable public GithubUserRaw organization;
@Nullable public Date pushedAt;
@Nullable public Date createdAt;
@Nullable public Date updatedAt;
@Nullable public Permissions permissions;
public static class Permissions {
@Nullable public Boolean admin;
@Nullable public Boolean pull;
@Nullable public Boolean push;
@SuppressWarnings("ConstantConditions")
@NotNull
public GithubRepoOrg.Permissions create() {
return new GithubRepoOrg.Permissions(admin, pull, push);
}
}
@SuppressWarnings("ConstantConditions")
@NotNull
public GithubRepo createRepo() {
return new GithubRepo(name, description, isPrivate, isFork, htmlUrl, cloneUrl, defaultBranch, owner.createUser());
}
@SuppressWarnings("ConstantConditions")
@NotNull
public GithubRepoOrg createRepoOrg() {
return new GithubRepoOrg(name, description, isPrivate, isFork, htmlUrl, cloneUrl, defaultBranch, owner.createUser(),
permissions.create());
}
@SuppressWarnings("ConstantConditions")
@NotNull
public GithubRepoDetailed createRepoDetailed() {
GithubRepo parent = this.parent == null ? null : this.parent.createRepo();
GithubRepo source = this.source == null ? null : this.source.createRepo();
return new GithubRepoDetailed(name, description, isPrivate, isFork, htmlUrl, cloneUrl, defaultBranch, owner.createUser(),
parent, source);
}
@SuppressWarnings("unchecked")
@NotNull
@Override
public <T> T create(@NotNull Class<T> resultClass) {
if (resultClass == GithubRepo.class) {
return (T)createRepo();
}
if (resultClass == GithubRepoOrg.class) {
return (T)createRepoOrg();
}
if (resultClass == GithubRepoDetailed.class) {
return (T)createRepoDetailed();
}
throw new ClassCastException(this.getClass().getName() + ": bad class type: " + resultClass.getName());
}
}