Package org.eclipse.orion.server.git

Source Code of org.eclipse.orion.server.git.GitCredentialsProvider

/*******************************************************************************
* Copyright (c) 2011, 2014 IBM Corporation and others
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.orion.server.git;

import java.util.Locale;

import org.eclipse.jgit.errors.UnsupportedCredentialItem;
import org.eclipse.jgit.transport.CredentialItem;
import org.eclipse.jgit.transport.URIish;
import org.eclipse.jgit.transport.UsernamePasswordCredentialsProvider;

public class GitCredentialsProvider extends UsernamePasswordCredentialsProvider {

  private URIish uri;
  private String knownHosts;
  private byte[] privateKey;
  private byte[] publicKey;
  private byte[] passphrase;

  public GitCredentialsProvider(URIish uri, String username, char[] password, String knownHosts) {
    super(username, password);
    this.uri = uri;
    this.knownHosts = knownHosts;
  }

  public URIish getUri() {
    return uri;
  }

  public String getKnownHosts() {
    return knownHosts;
  }

  public byte[] getPrivateKey() {
    return privateKey;
  }

  public byte[] getPublicKey() {
    return publicKey;
  }

  public byte[] getPassphrase() {
    return passphrase;
  }

  public void setUri(URIish uri) {
    this.uri = uri;
  }

  public void setPrivateKey(byte[] privateKey) {
    this.privateKey = privateKey;
  }

  public void setPublicKey(byte[] publicKey) {
    this.publicKey = publicKey;
  }

  public void setPassphrase(byte[] passphrase) {
    this.passphrase = passphrase;
  }

  @Override
  public boolean get(URIish uri, CredentialItem... items) throws UnsupportedCredentialItem {
    for (CredentialItem item : items) {
      if (super.supports(item)) {
        super.get(uri, item);
      } else if (item instanceof CredentialItem.StringType) {
        if (item.getPromptText().toLowerCase(Locale.ENGLISH).contains("passphrase") && passphrase != null && passphrase.length > 0) {
          ((CredentialItem.StringType) item).setValue(new String(passphrase));
        } else {
          ((CredentialItem.StringType) item).setValue("");
        }
      } else if (item instanceof CredentialItem.CharArrayType) {
        ((CredentialItem.CharArrayType) item).setValue(new char[0]);
      } else {
        throw new UnsupportedCredentialItem(uri, item.getPromptText());
      }
    }
    return true; // we assume that user provided all credentials that are needed
  }
}
TOP

Related Classes of org.eclipse.orion.server.git.GitCredentialsProvider

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.