view mercurial-common/src/jetbrains/buildServer/buildTriggers/vcs/mercurial/command/PushCommand.java @ 890:771ae1b2f0b1

More command descriptions
author Dmitry Neverov <dmitry.neverov@jetbrains.com>
date Fri, 07 Nov 2014 14:30:28 +0100
parents 61a373476058
children 7bf4d943d5bb
line wrap: on
line source
/*
 * Copyright 2000-2014 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 jetbrains.buildServer.buildTriggers.vcs.mercurial.command;

import jetbrains.buildServer.vcs.VcsException;
import org.jetbrains.annotations.NotNull;

import java.io.File;

/**
 * @author pavel
 */
public class PushCommand extends AuthCommand {

  private String myBookmark;
  private String myRepositoryUrl;

  public PushCommand(@NotNull CommandSettings commandSettings,
                     @NotNull String hgPath,
                     @NotNull File workingDir,
                     @NotNull AuthSettings authSettings) {
    super(commandSettings, hgPath, workingDir, authSettings);
  }

  public PushCommand bookmark(@NotNull String bookmark) {
    myBookmark = bookmark;
    return this;
  }

  public PushCommand toRepository(@NotNull String repositoryUrl) {
    myRepositoryUrl = repositoryUrl;
    return this;
  }

  public void call() throws VcsException {
    MercurialCommandLine cli = createCommandLine();
    cli.addParameter("push");
    if (myBookmark != null) {
      cli.addParameters("-B", myBookmark);
    }
    if (myRepositoryUrl.startsWith("http")) {
      addHttpAuthParams(cli);
      cli.addParameter(myRepositoryUrl);
    } else {
      cli.addParameter(myAuthSettings.getRepositoryUrlWithCredentials(myRepositoryUrl));
    }
    runCommand(cli, myCommandSettings);
  }

  @NotNull
  @Override
  protected String getDescription() {
    return "hg push " + myAuthSettings.getRepositoryUrlWithHiddenPassword(myRepositoryUrl);
  }
}