Пример #1
0
 private Map<String, ConfigEntry> getConfig(String url) throws IOException, UnauthorizedException {
   HttpResponse response =
       restClient.execute(HttpMethod.GET, config.resolveURL(url), config.getAccessToken());
   List<ConfigEntry> responseObject =
       ObjectResponse.fromJsonBody(response, new TypeToken<List<ConfigEntry>>() {})
           .getResponseObject();
   Map<String, ConfigEntry> config = Maps.newHashMap();
   for (ConfigEntry configEntry : responseObject) {
     config.put(configEntry.getName(), configEntry);
   }
   return config;
 }
Пример #2
0
 public void setNamespace(Id.Namespace namespace) {
   ConnectionConfig connectionConfig =
       ConnectionConfig.builder(clientConfig.getConnectionConfig())
           .setNamespace(namespace)
           .build();
   this.setConnectionConfig(connectionConfig);
 }
Пример #3
0
  private AccessToken getNewAccessToken(
      ConnectionConfig connectionInfo, PrintStream output, boolean debug) throws IOException {

    AuthenticationClient authenticationClient = getAuthenticationClient(connectionInfo);

    Properties properties = new Properties();
    properties.put(
        BasicAuthenticationClient.VERIFY_SSL_CERT_PROP_NAME,
        String.valueOf(clientConfig.isVerifySSLCert()));

    // obtain new access token via manual user input
    output.printf(
        "Authentication is enabled in the CDAP instance: %s.\n", connectionInfo.getHostname());
    ConsoleReader reader = new ConsoleReader();
    for (Credential credential : authenticationClient.getRequiredCredentials()) {
      String prompt = "Please, specify " + credential.getDescription() + "> ";
      String credentialValue;
      if (credential.isSecret()) {
        credentialValue = reader.readLine(prompt, '*');
      } else {
        credentialValue = reader.readLine(prompt);
      }
      properties.put(credential.getName(), credentialValue);
    }

    authenticationClient.configure(properties);
    AccessToken accessToken = authenticationClient.getAccessToken();

    if (accessToken != null) {
      if (saveAccessToken(accessToken, connectionInfo.getHostname()) && debug) {
        output.printf(
            "Saved access token to %s\n",
            getAccessTokenFile(connectionInfo.getHostname()).getAbsolutePath());
      }
    }

    return accessToken;
  }
Пример #4
0
 public Version getVersion() throws IOException, UnauthorizedException {
   HttpResponse response =
       restClient.execute(HttpMethod.GET, config.resolveURL("version"), config.getAccessToken());
   return ObjectResponse.fromJsonBody(response, Version.class).getResponseObject();
 }
Пример #5
0
 public void ping() throws IOException, UnauthorizedException {
   restClient.execute(HttpMethod.GET, config.resolveURLNoVersion("ping"), config.getAccessToken());
 }
Пример #6
0
 public CLIConfig() {
   this(ClientConfig.builder().build(), System.out, new AltStyleTableRenderer());
 }
Пример #7
0
 public void updateAccessToken(PrintStream output) throws IOException {
   AccessToken newAccessToken =
       getNewAccessToken(clientConfig.getConnectionConfig(), output, false);
   clientConfig.setAccessToken(newAccessToken);
 }
Пример #8
0
 public void setConnectionConfig(@Nullable ConnectionConfig connectionConfig) {
   clientConfig.setConnectionConfig(connectionConfig);
   notifyConnectionChanged();
 }
Пример #9
0
 public Id.Namespace getCurrentNamespace() {
   return clientConfig.getNamespace();
 }