
org.jclouds.googlecloud.config.CurrentProject Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jclouds-shaded Show documentation
Show all versions of jclouds-shaded Show documentation
Provides a shaded jclouds with relocated guava and guice
The newest version!
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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 org.jclouds.googlecloud.config;
import static shaded.com.google.common.base.Preconditions.checkArgument;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import javax.inject.Qualifier;
/** Associated bindings with the current project. */
@Retention(value = RetentionPolicy.RUNTIME)
@Target(value = {ElementType.TYPE, ElementType.FIELD, ElementType.PARAMETER, ElementType.METHOD})
@Qualifier
public @interface CurrentProject {
/** Utilities related to the email associated with the service account of a project. */
public static final class ClientEmail {
public static final String DESCRIPTION = "" //
+ "client_email which usually looks like [email protected] or " //
+ "[email protected] or " //
+ "account@project_id.company_domain.iam.gserviceaccount.com or " //
+ "account@project_id.iam.gserviceaccount.com.";
private static final Pattern PROJECT_NUMBER_PATTERN = Pattern.compile("^([0-9]+)[@-].*");
private static final String IAM_ACCOUNT_SUFFIX = ".iam.gserviceaccount.com";
/** Parses the project number from the client email or throws an {@linkplain IllegalArgumentException}. */
public static String toProjectNumber(String email) {
Matcher matcher = PROJECT_NUMBER_PATTERN.matcher(email);
boolean isIAM = email.endsWith(IAM_ACCOUNT_SUFFIX);
checkArgument(isIAM || matcher.find(), "Client email %s is malformed. Should be %s", email, DESCRIPTION);
return isIAM ? projectIdFromIAM(email) : matcher.group(1);
}
private static String projectIdFromIAM(String email) {
String project_id = email.substring(email.indexOf('@') + 1, email.indexOf(IAM_ACCOUNT_SUFFIX));
int dot = project_id.indexOf('.');
return dot > 0
// Convert project_id.company_domain into company_domain:project_id
? String.format("%s:%s", project_id.substring(dot + 1), project_id.substring(0, dot))
: project_id;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy