blob: 2a56590a430a4d6ffb1b88d035fd2deb27352cc7 [file] [log] [blame]
// Copyright (C) 2013 The Android Open Source Project
//
// 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 com.googlesource.gerrit.plugins.github.git;
import com.google.inject.Inject;
import com.google.inject.assistedinject.Assisted;
import com.googlesource.gerrit.plugins.github.GitHubConfig;
import java.io.File;
import java.io.IOException;
import org.apache.commons.io.FileUtils;
import org.eclipse.jgit.api.CloneCommand;
import org.eclipse.jgit.lib.ProgressMonitor;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public class GitCloneStep extends ImportStep {
private static final Logger LOG = LoggerFactory.getLogger(GitImporter.class);
private final File gitDir;
private File destinationDirectory;
public interface Factory {
GitCloneStep create(
@Assisted("organisation") String organisation, @Assisted("name") String repository);
}
@Inject
public GitCloneStep(
GitHubConfig gitConfig,
GitHubRepository.Factory gitHubRepoFactory,
@Assisted("organisation") String organisation,
@Assisted("name") String repository)
throws GitDestinationAlreadyExistsException, GitDestinationNotWritableException {
super(gitConfig.gitHubUrl, organisation, repository, gitHubRepoFactory);
LOG.debug("GitHub Clone " + organisation + "/" + repository);
this.gitDir = gitConfig.gitDir.toFile();
this.destinationDirectory = prepareTargetGitDirectory(organisation, repository);
}
private File prepareTargetGitDirectory(String organisation, String repository)
throws GitDestinationAlreadyExistsException, GitDestinationNotWritableException {
File orgDirectory = new File(gitDir, organisation);
File destDirectory = new File(orgDirectory, repository + ".git");
if (destDirectory.exists() && isNotEmpty(destDirectory)) {
throw new GitDestinationAlreadyExistsException(destDirectory);
}
if (!orgDirectory.exists()) {
if (!orgDirectory.mkdirs()) {
throw new GitDestinationNotWritableException(destDirectory);
}
}
return destDirectory;
}
@Override
public void doImport(ProgressMonitor progress)
throws GitCloneFailedException, GitDestinationAlreadyExistsException,
GitDestinationNotWritableException {
CloneCommand clone = new CloneCommand();
clone.setCredentialsProvider(getRepository().getCredentialsProvider());
String sourceUri = getSourceUri();
clone.setURI(sourceUri);
clone.setBare(true);
clone.setDirectory(destinationDirectory);
if (progress != null) {
clone.setProgressMonitor(progress);
}
try {
LOG.info(sourceUri + "| Clone into " + destinationDirectory);
clone.call();
} catch (Throwable e) {
throw new GitCloneFailedException(sourceUri, e);
}
}
private boolean isNotEmpty(File destDirectory) {
return destDirectory.listFiles().length > 0;
}
@Override
public boolean rollback() {
File gitDirectory = destinationDirectory;
if (!gitDirectory.exists()) {
return false;
}
try {
FileUtils.deleteDirectory(gitDirectory);
return true;
} catch (IOException e) {
LOG.error("Cannot clean-up output Git directory " + gitDirectory);
return false;
}
}
}