| | |
| | | */
|
| | | package com.gitblit;
|
| | |
|
| | | import static org.eclipse.jgit.lib.Constants.DOT_GIT_EXT;
|
| | |
|
| | | import java.io.File;
|
| | | import java.io.FileOutputStream;
|
| | | import java.net.InetAddress;
|
| | |
| | | import java.util.Arrays;
|
| | | import java.util.Collection;
|
| | | import java.util.Date;
|
| | | import java.util.HashSet;
|
| | | import java.util.List;
|
| | | import java.util.Map;
|
| | | import java.util.Properties;
|
| | | import java.util.Set;
|
| | | import java.util.concurrent.TimeUnit;
|
| | |
|
| | | import org.eclipse.jgit.lib.Ref;
|
| | | import org.eclipse.jgit.lib.Repository;
|
| | | import org.eclipse.jgit.lib.StoredConfig;
|
| | | import org.eclipse.jgit.revwalk.RevCommit;
|
| | | import org.eclipse.jgit.transport.CredentialsProvider;
|
| | | import org.eclipse.jgit.transport.UsernamePasswordCredentialsProvider;
|
| | | import org.slf4j.Logger;
|
| | |
| | |
|
| | | private final List<FederationModel> registrations;
|
| | |
|
| | | private final boolean isDaemon;
|
| | |
|
| | | /**
|
| | | * Constructor for specifying a single federation registration. This
|
| | | * constructor is used to schedule the next pull execution.
|
| | |
| | | * @param registration
|
| | | */
|
| | | private FederationPullExecutor(FederationModel registration) {
|
| | | this(Arrays.asList(registration));
|
| | | this(Arrays.asList(registration), true);
|
| | | }
|
| | |
|
| | | /**
|
| | |
| | | * on each registrations frequency setting.
|
| | | *
|
| | | * @param registrations
|
| | | * @param isDaemon
|
| | | * if true, registrations are rescheduled in perpetuity. if false,
|
| | | * the federation pull operation is executed once.
|
| | | */
|
| | | public FederationPullExecutor(List<FederationModel> registrations) {
|
| | | public FederationPullExecutor(List<FederationModel> registrations, boolean isDaemon) {
|
| | | this.registrations = registrations;
|
| | | this.isDaemon = isDaemon;
|
| | | }
|
| | |
|
| | | /**
|
| | |
| | | "Failed to pull from federated gitblit ({0} @ {1})", registration.name,
|
| | | registration.url), t);
|
| | | } finally {
|
| | | schedule(registration);
|
| | | if (isDaemon) {
|
| | | schedule(registration);
|
| | | }
|
| | | }
|
| | | }
|
| | | }
|
| | |
| | | continue;
|
| | | }
|
| | |
|
| | | // Determine local repository name
|
| | | String repositoryName;
|
| | | if (StringUtils.isEmpty(registrationFolder)) {
|
| | | repositoryName = repository.name;
|
| | | } else {
|
| | | repositoryName = registrationFolder + "/" + repository.name;
|
| | | }
|
| | | |
| | | if (registration.bare) {
|
| | | // bare repository, ensure .git suffix
|
| | | if (!repositoryName.toLowerCase().endsWith(DOT_GIT_EXT)) {
|
| | | repositoryName += DOT_GIT_EXT;
|
| | | }
|
| | | } else {
|
| | | // normal repository, strip .git suffix
|
| | | if (repositoryName.toLowerCase().endsWith(DOT_GIT_EXT)) {
|
| | | repositoryName = repositoryName.substring(0, repositoryName.indexOf(DOT_GIT_EXT));
|
| | | }
|
| | | }
|
| | |
|
| | | // confirm that the origin of any pre-existing repository matches
|
| | |
| | | StoredConfig config = existingRepository.getConfig();
|
| | | config.load();
|
| | | String origin = config.getString("remote", "origin", "url");
|
| | | fetchHead = JGitUtils.getCommit(existingRepository, "refs/remotes/origin/master")
|
| | | .getName();
|
| | | RevCommit commit = JGitUtils.getCommit(existingRepository, "refs/remotes/origin/master");
|
| | | if (commit != null) {
|
| | | fetchHead = commit.getName();
|
| | | }
|
| | | existingRepository.close();
|
| | | if (!origin.startsWith(registration.url)) {
|
| | | logger.warn(MessageFormat
|
| | |
| | | Constants.FEDERATION_USER, registration.token);
|
| | | logger.info(MessageFormat.format("Pulling federated repository {0} from {1} @ {2}",
|
| | | repository.name, registration.name, registration.url));
|
| | | |
| | | CloneResult result = JGitUtils.cloneRepository(registrationFolderFile, repository.name,
|
| | | cloneUrl, registration.bare, credentials);
|
| | | Repository r = GitBlit.self().getRepository(repositoryName);
|
| | |
| | | } else {
|
| | | // fetch and update
|
| | | boolean fetched = false;
|
| | | String origin = JGitUtils.getCommit(r, "refs/remotes/origin/master").getName();
|
| | | fetched = !fetchHead.equals(origin);
|
| | | RevCommit commit = JGitUtils.getCommit(r, "refs/remotes/origin/master");
|
| | | String origin = commit.getName();
|
| | | fetched = fetchHead == null || !fetchHead.equals(origin);
|
| | |
|
| | | if (registration.mirror) {
|
| | | // mirror
|
| | |
| | | // preserve local settings
|
| | | repository.isFrozen = rm.isFrozen;
|
| | | repository.federationStrategy = rm.federationStrategy;
|
| | | |
| | | // merge federation sets
|
| | | Set<String> federationSets = new HashSet<String>();
|
| | | if (rm.federationSets != null) {
|
| | | federationSets.addAll(rm.federationSets);
|
| | | }
|
| | | if (repository.federationSets != null) {
|
| | | federationSets.addAll(repository.federationSets);
|
| | | }
|
| | | repository.federationSets = new ArrayList<String>(federationSets);
|
| | | }
|
| | | // only repositories that are actually _cloned_ from the origin
|
| | | // Gitblit repository are marked as federated. If the origin
|