com.google.cloud.MetadataConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of google-cloud-core Show documentation
Show all versions of google-cloud-core Show documentation
Core module for the google-cloud.
/*
* Copyright 2017 Google LLC
*
* 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.google.cloud;
import static java.nio.charset.StandardCharsets.UTF_8;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.URL;
/**
* Retrieves Google Cloud project-id and a limited set of instance attributes from Metadata server.
* @see
* https://cloud.google.com/compute/docs/storing-retrieving-metadata
*/
public class MetadataConfig {
private static final String METADATA_URL = "http://metadata/computeMetadata/v1/";
private MetadataConfig() {
}
public static String getProjectId() {
return getAttribute("project/project-id");
}
public static String getZone() {
String zoneId = getAttribute("instance/zone");
if (zoneId.contains("/")) {
return zoneId.substring(zoneId.lastIndexOf('/') + 1);
}
return zoneId;
}
public static String getInstanceId() {
return getAttribute("instance/id");
}
public static String getClusterName() {
return getAttribute("instance/attributes/cluster-name");
}
public static String getAttribute(String attributeName) {
try {
URL url = new URL(METADATA_URL + attributeName);
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
connection.setRequestProperty("Metadata-Flavor", "Google");
InputStream input = connection.getInputStream();
if (connection.getResponseCode() == 200) {
try (BufferedReader reader = new BufferedReader(new InputStreamReader(input, UTF_8))) {
return reader.readLine();
}
}
} catch (IOException ignore) {
// ignore
}
return null;
}
}