All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.spotify.helios.client.GoogleCredentialsAccessTokenSupplier Maven / Gradle / Ivy

There is a newer version: 0.9.283
Show newest version
/*
 *  -\-\-
 *  helios-client
 *  --
 *  Copyright (C) 2017 Spotify AB
 *  --
 *  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.spotify.helios.client;

import com.google.auth.oauth2.AccessToken;
import com.google.auth.oauth2.GoogleCredentials;
import com.google.common.annotations.VisibleForTesting;
import com.google.common.base.Optional;
import com.google.common.base.Supplier;
import com.google.common.collect.ImmutableList;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.util.List;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

class GoogleCredentialsAccessTokenSupplier implements Supplier> {

  private static final Logger LOG =
      LoggerFactory.getLogger(GoogleCredentialsAccessTokenSupplier.class);

  public static final List DEFAULT_SCOPES = ImmutableList.of(
      "https://www.googleapis.com/auth/cloud-platform.read-only",
      "https://www.googleapis.com/auth/userinfo.email"
  );

  private boolean enabled;
  private AccessToken staticToken;
  private List tokenScopes;
  private GoogleCredentials credentials;
  private final Object lock = new byte[0];

  GoogleCredentialsAccessTokenSupplier(final boolean enabled,
                                       final AccessToken staticToken,
                                       final List tokenScopes) {
    this(enabled, staticToken, tokenScopes, null);
  }

  @VisibleForTesting
  GoogleCredentialsAccessTokenSupplier(final boolean enabled,
                                       final AccessToken staticToken,
                                       final List tokenScopes,
                                       final GoogleCredentials credentials) {
    this.enabled = enabled;
    this.staticToken = staticToken;
    this.tokenScopes = tokenScopes;
    this.credentials = credentials;
  }

  @Override
  public Optional get() {
    Optional tokenOpt = Optional.absent();

    if (enabled) {
      if (staticToken != null) {
        tokenOpt = Optional.of(staticToken);
      } else {
        try {
          synchronized (lock) {
            if (credentials == null) {
              credentials = getCredentialsWithScopes(tokenScopes);
            }
            credentials.getRequestMetadata(null);
          }

          tokenOpt = Optional.of(credentials.getAccessToken());
        } catch (IOException | RuntimeException e) {
          LOG.debug("Exception (possibly benign) while loading Google Credentials", e);
          return Optional.absent();
        }
      }
    }

    return tokenOpt;
  }

  /**
   * Attempt to load Google Credentials with specified scopes.
   * 
    *
  1. First check to see if the environment variable HELIOS_GOOGLE_CREDENTIALS is set * and points to a readable file
  2. *
  3. Otherwise check if Google Application Default Credentials (ADC) can be loaded
  4. *
* *

Note that we use a special environment variable of our own in addition to any environment * variable that the ADC loading uses (GOOGLE_APPLICATION_CREDENTIALS) in case there is a need * for the user to use the latter env var for some other purpose. * * @return Return a {@link GoogleCredentials} */ private static GoogleCredentials getCredentialsWithScopes(final List scopes) throws IOException { GoogleCredentials credentials = null; // first check whether the environment variable is set final String googleCredentialsPath = System.getenv("HELIOS_GOOGLE_CREDENTIALS"); if (googleCredentialsPath != null) { final File file = new File(googleCredentialsPath); if (file.exists()) { final FileInputStream s = new FileInputStream(file); credentials = GoogleCredentials.fromStream(s); LOG.debug("Using Google Credentials from file: " + file.getAbsolutePath()); } } // fallback to application default credentials if (credentials == null) { credentials = GoogleCredentials.getApplicationDefault(); LOG.debug("Using Google Application Default Credentials"); } return scopes.isEmpty() ? credentials : credentials.createScoped(scopes); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy