JGIT验证存储库是否有效

时间:2012-06-14 10:31:32

标签: java validation jgit

是否有一种方法可以在流中杀死克隆操作? 我将使用克隆来验证存储库? 有没有其他方法可以测试远程URL /存储库是否有效?

7 个答案:

答案 0 :(得分:3)

我正在使用以下启发式(需要进一步改进):

private final static String INFO_REFS_PATH = "info/refs";

public static boolean isValidRepository(URIish repoUri) {
  if (repoUri.isRemote()) {
    return isValidRemoteRepository(repoUri);
  } else {
    return isValidLocalRepository(repoUri);
  }
}

private static boolean isValidLocalRepository(URIish repoUri) {
  boolean result;
  try {
    result = new FileRepository(repoUri.getPath()).getObjectDatabase().exists();
  } catch (IOException e) {
    result = false;
  }
  return result;
}

private static boolean isValidRemoteRepository(URIish repoUri) {
  boolean result;

  if (repoUri.getScheme().toLowerCase().startsWith("http") ) {
    String path = repoUri.getPath();
    String newPath = path.endsWith("/")? path + INFO_REFS_PATH : path + "/" + INFO_REFS_PATH;
    URIish checkUri = repoUri.setPath(newPath);

    InputStream ins = null;
    try {
      URLConnection conn = new URL(checkUri.toString()).openConnection();
      conn.setReadTimeout(NETWORK_TIMEOUT_MSEC);
      ins = conn.getInputStream();
      result = true;
    } catch (Exception e) {
      result = false;
    } finally {
      try { ins.close(); } catch (Exception e) { /* ignore */ }
    }

  } else if (repoUri.getScheme().toLowerCase().startsWith("ssh") ) {

    RemoteSession ssh = null;
    Process exec = null;

    try {
      ssh = SshSessionFactory.getInstance().getSession(repoUri, null, FS.detect(), 5000);
      exec = ssh.exec("cd " + repoUri.getPath() +"; git rev-parse --git-dir", 5000);

      Integer exitValue = null;
      do {
        try {
          exitValue = exec.exitValue();
        } catch (Exception e) { 
          try{Thread.sleep(1000);}catch(Exception ee){}
        }
      } while (exitValue == null);

      result = exitValue == 0;

    } catch (Exception e) {
      result = false;

    } finally {
      try { exec.destroy(); } catch (Exception e) { /* ignore */ }
      try { ssh.disconnect(); } catch (Exception e) { /* ignore */ }
    }

  } else {
    // TODO need to implement tests for other schemas
    result = true;
  }
  return result;
}

这适用于裸存储库和非裸存储库。

请注意,URIish.isRemote()方法似乎存在问题。从文件URL创建URIish时,主机不是null而是空字符串!但是,如果host字段不为null,则URIish.isRemote()返回true ...

编辑:为isValidRemoteRepository()方法添加了ssh支持。

答案 1 :(得分:3)

你可以使用JGIT调用'git ls-remote'。见here

示例代码如下:

    final LsRemoteCommand lsCmd = new LsRemoteCommand(null);
    final List<String> repos = Arrays.asList(
            "https://github.com/MuchContact/java.git",
            "git@github.com:MuchContact/java.git");
    for (String gitRepo: repos){
        lsCmd.setRemote(gitRepo);
        System.out.println(lsCmd.call().toString());
    }

答案 2 :(得分:1)

我看了一下JGit源代码,似乎没有一种方法来检查远程仓库的有效性。

这是call的{​​{1}}方法:

CloneCommand

为了获取远程网址无效,在抓住public Git call() throws JGitInternalException { try { URIish u = new URIish(uri); Repository repository = init(u); FetchResult result = fetch(repository, u); if (!noCheckout) checkout(repository, result); return new Git(repository); } catch (IOException ioe) { throw new JGitInternalException(ioe.getMessage(), ioe); } catch (InvalidRemoteException e) { throw new JGitInternalException(e.getMessage(), e); } catch (URISyntaxException e) { throw new JGitInternalException(e.getMessage(), e); } } JGitInternalException时,您可能会找到e查找e.getCause()甚至{InvalidRemoteException的实际原因{1}},但正如你所指出的,如果它实际上是有效的,你最终会克隆;该库不允许您中断操作。

更深入地研究JGit代码,URISyntaxException类有TransportLocal方法可用于检查是否抛出open(URIsh,Repository,String),但其构造函数不公开。唉,需要一个自己动手的解决方案。你可以从我提到的InvalidRemoteException方法的内容开始。

答案 3 :(得分:0)

AFAIK JGit尚未实现git fsck

答案 4 :(得分:0)

对于任何正在寻找的人,我都使用以下更通用的方法来验证远程存储库(代码在C#中,但它不应该很难将其转换为java)。

public static bool IsValidRemoteRepository(URIish repoUri, CredentialsProvider credentialsProvider = null)
{
    var repoPath = Path.Combine(Path.GetTempPath(), Path.GetFileNameWithoutExtension(Path.GetRandomFileName()));

    Directory.CreateDirectory(repoPath);

    var git = Git.Init().SetBare(true).SetDirectory(repoPath).Call();

    var config = git.GetRepository().GetConfig();
    config.SetString("remote", "origin", "url", repoUri.ToString());
    config.Save();

    try
    {
        var cmd = git.LsRemote();

        if (credentialsProvider != null)
        {
            cmd.SetCredentialsProvider(credentialsProvider);
        }

        cmd.SetRemote("origin").Call();
    }
    catch (TransportException e)
    {
        LastException = e;
        return false;
    }

    return true;
}

答案 5 :(得分:0)

JGit正在研究var server = net.createServer(function(socket) { //read data socket.setEncoding("ascii"); //set data encoding (either 'ascii', 'utf8', or 'base64') socket.on('data', function(data, res) { //update new data in browser }); //send data socket.write('Echo server\n'); socket.pipe(socket); }); server.listen(8081, '127.0.0.1'); 命令的实现,但据我所见,这个命令尚未在mvnrepository.com上发布。

示例如何,请查看test case

git fsck

答案 6 :(得分:0)

用于验证远程存储库的API

public boolean validateRepository(String repositoryURL, String username, String password) throws Exception {
    boolean result = false;
    Repository db = FileRepositoryBuilder.create(new File("/tmp"));
    Git git = Git.wrap(db);
    final LsRemoteCommand lsCmd = git.lsRemote();
    lsCmd.setRemote(repositoryURL);
    if (username != null && password != null) {
        lsCmd.setCredentialsProvider(new UsernamePasswordCredentialsProvider(username, password));
    }
    if (null != lsCmd.call()){
        result = true;
    }
    return result;
}

注意:jgit的ls-remote api会抛出已知错误的NPE。所以添加了bug的注释中提到的解决方法。
https://bugs.eclipse.org/bugs/show_bug.cgi?id=436695