Search in sources :

Example 1 with CloudProject

use of com.google.cloud.tools.intellij.project.CloudProject in project google-cloud-intellij by GoogleCloudPlatform.

the class AddCloudLibrariesDialog method doOKAction.

/**
 * Overrides {@link DialogWrapper#doOKAction()} to first check if there are any APIs to enable on
 * GCP.
 *
 * <p>If so, the {@link CloudApiManagementConfirmationDialog} is opened confirming the API changes
 * to be made. If the user cancels, the user is returned to this parent dialog. Otherwise, it is
 * closed and the default {@link DialogWrapper#doOKAction()} is invoked.
 */
@Override
protected void doOKAction() {
    CloudProject cloudProject = getCloudProject();
    Set<CloudLibrary> selectedApis = getSelectedLibraries();
    Set<CloudLibrary> apisToEnable = getApisToEnable();
    Set<CloudLibrary> apisNotEnabled = Sets.difference(selectedApis, apisToEnable);
    if (cloudProject != null) {
        Set<Role> roles = getServiceAccountRoles(selectedApis);
        CloudApiManagementConfirmationDialog managementDialog = new CloudApiManagementConfirmationDialog(getSelectedModule(), cloudProject, apisToEnable, apisNotEnabled, roles);
        DialogManager.show(managementDialog);
        if (managementDialog.isOK()) {
            if (!apisToEnable.isEmpty()) {
                runApiEnablement(apisToEnable);
            }
            if (managementDialog.isCreateNewServiceAccount()) {
                runServiceAccountManagement(managementDialog.getSelectedRoles(), managementDialog.getServiceAccountName(), managementDialog.getServiceAccountKeyDownloadPath());
            }
            super.doOKAction();
        }
    } else {
        super.doOKAction();
    }
}
Also used : Role(com.google.api.services.iam.v1.model.Role) CloudProject(com.google.cloud.tools.intellij.project.CloudProject) CloudLibrary(com.google.cloud.tools.libraries.json.CloudLibrary)

Example 2 with CloudProject

use of com.google.cloud.tools.intellij.project.CloudProject in project google-cloud-intellij by GoogleCloudPlatform.

the class CloudApiManager method addRolesToServiceAccount.

/**
 * Adds a set of {@link Role roles} to a {@link ServiceAccount}.
 *
 * <p>This is done by fetching the cloud project's existing IAM Policy, adding the new roles to
 * the given service account, and then writing the updated policy back to the cloud project.
 *
 * @param user the current {@link CredentialedUser}
 * @param serviceAccount the {@link ServiceAccount} to which to add roles
 * @param roles the set of {@link Role} to be added to the service account
 * @param cloudProject the current {@link CloudProject}
 * @throws IOException if the API call fails to update the IAM policy
 */
private static void addRolesToServiceAccount(CredentialedUser user, ServiceAccount serviceAccount, Set<Role> roles, CloudProject cloudProject) throws IOException {
    CloudResourceManager resourceManager = GoogleApiClientFactory.getInstance().getCloudResourceManagerClient(user.getCredential());
    Policy existingPolicy = resourceManager.projects().getIamPolicy(cloudProject.projectId(), new GetIamPolicyRequest()).execute();
    List<Binding> bindings = Lists.newArrayList(existingPolicy.getBindings());
    List<Binding> additionalBindings = roles.stream().map(role -> {
        Binding binding = new Binding();
        binding.setRole(role.getName());
        binding.setMembers(createServiceAccountMemberBindings(serviceAccount));
        return binding;
    }).collect(Collectors.toList());
    bindings.addAll(additionalBindings);
    SetIamPolicyRequest policyRequest = new SetIamPolicyRequest();
    Policy newPolicy = new Policy();
    newPolicy.setBindings(bindings);
    policyRequest.setPolicy(newPolicy);
    resourceManager.projects().setIamPolicy(cloudProject.projectId(), policyRequest).execute();
}
Also used : Policy(com.google.api.services.cloudresourcemanager.model.Policy) Binding(com.google.api.services.cloudresourcemanager.model.Binding) ServiceAccountKey(com.google.api.services.iam.v1.model.ServiceAccountKey) ZonedDateTime(java.time.ZonedDateTime) Binding(com.google.api.services.cloudresourcemanager.model.Binding) Role(com.google.api.services.iam.v1.model.Role) CloudProject(com.google.cloud.tools.intellij.project.CloudProject) Logger(com.intellij.openapi.diagnostic.Logger) Path(java.nio.file.Path) ProgressManager(com.intellij.openapi.progress.ProgressManager) CloudLibrary(com.google.cloud.tools.libraries.json.CloudLibrary) Set(java.util.Set) EnableServiceRequest(com.google.api.services.servicemanagement.model.EnableServiceRequest) GoogleApiClientFactory(com.google.cloud.tools.intellij.resources.GoogleApiClientFactory) Collectors(java.util.stream.Collectors) Sets(com.google.common.collect.Sets) NotificationType(com.intellij.notification.NotificationType) Notification(com.intellij.notification.Notification) ProgressIndicator(com.intellij.openapi.progress.ProgressIndicator) List(java.util.List) ServiceManager(com.intellij.openapi.components.ServiceManager) Services(com.google.cloud.tools.intellij.login.Services) ApplicationManager(com.intellij.openapi.application.ApplicationManager) Optional(java.util.Optional) ServiceManagement(com.google.api.services.servicemanagement.ServiceManagement) Pattern(java.util.regex.Pattern) SetIamPolicyRequest(com.google.api.services.cloudresourcemanager.model.SetIamPolicyRequest) NotificationDisplayType(com.intellij.notification.NotificationDisplayType) ServiceAccount(com.google.api.services.iam.v1.model.ServiceAccount) ArrayList(java.util.ArrayList) GetIamPolicyRequest(com.google.api.services.cloudresourcemanager.model.GetIamPolicyRequest) CloudResourceManager(com.google.api.services.cloudresourcemanager.CloudResourceManager) Lists(com.google.common.collect.Lists) ImmutableList(com.google.common.collect.ImmutableList) PropertiesFileFlagReader(com.google.cloud.tools.intellij.flags.PropertiesFileFlagReader) NotificationGroup(com.intellij.notification.NotificationGroup) CredentialedUser(com.google.cloud.tools.intellij.login.CredentialedUser) CreateServiceAccountKeyRequest(com.google.api.services.iam.v1.model.CreateServiceAccountKeyRequest) Project(com.intellij.openapi.project.Project) GctBundle(com.google.cloud.tools.intellij.util.GctBundle) DialogManager(git4idea.DialogManager) Policy(com.google.api.services.cloudresourcemanager.model.Policy) Base64(com.google.api.client.util.Base64) Files(java.nio.file.Files) GctTracking(com.google.cloud.tools.intellij.analytics.GctTracking) IOException(java.io.IOException) UsageTrackerProvider(com.google.cloud.tools.intellij.analytics.UsageTrackerProvider) Paths(java.nio.file.Paths) CreateServiceAccountRequest(com.google.api.services.iam.v1.model.CreateServiceAccountRequest) DateTimeFormatter(java.time.format.DateTimeFormatter) Iam(com.google.api.services.iam.v1.Iam) GoogleCloudCoreIcons(com.google.cloud.tools.intellij.GoogleCloudCoreIcons) CloudResourceManager(com.google.api.services.cloudresourcemanager.CloudResourceManager) SetIamPolicyRequest(com.google.api.services.cloudresourcemanager.model.SetIamPolicyRequest) GetIamPolicyRequest(com.google.api.services.cloudresourcemanager.model.GetIamPolicyRequest)

Example 3 with CloudProject

use of com.google.cloud.tools.intellij.project.CloudProject in project google-cloud-intellij by GoogleCloudPlatform.

the class ProjectDebuggeeBinding method buildResult.

@NotNull
public CloudDebugProcessState buildResult(Project project) {
    CloudProject cloudProject = projectSelector.getSelectedProject();
    String projectId = Optional.ofNullable(cloudProject).map(CloudProject::projectId).orElse("");
    String projectNumberString = Optional.ofNullable(cloudProject).map(CloudProject::projectNumber).map(Object::toString).orElse(null);
    DebugTarget selectedItem = (DebugTarget) targetSelector.getSelectedItem();
    String savedDebuggeeId = selectedItem != null ? selectedItem.getId() : null;
    return new CloudDebugProcessState(credentialedUser != null ? credentialedUser.getEmail() : null, savedDebuggeeId, projectId, projectNumberString, project);
}
Also used : CloudDebugProcessState(com.google.cloud.tools.intellij.debugger.CloudDebugProcessState) CloudProject(com.google.cloud.tools.intellij.project.CloudProject) NotNull(org.jetbrains.annotations.NotNull)

Example 4 with CloudProject

use of com.google.cloud.tools.intellij.project.CloudProject in project google-cloud-intellij by GoogleCloudPlatform.

the class ProjectDebuggeeBinding method getCloudDebuggerClient.

@Nullable
private Debugger getCloudDebuggerClient() {
    CloudProject cloudProject = projectSelector.getSelectedProject();
    CredentialedUser credentialedUser = cloudProject == null ? null : Services.getLoginService().getLoggedInUser(cloudProject.googleUsername()).orElse(null);
    if (this.credentialedUser == credentialedUser) {
        return cloudDebuggerClient;
    }
    this.credentialedUser = credentialedUser;
    cloudDebuggerClient = this.credentialedUser != null ? CloudDebuggerClient.getLongTimeoutClient(this.credentialedUser.getEmail()) : null;
    return cloudDebuggerClient;
}
Also used : CloudProject(com.google.cloud.tools.intellij.project.CloudProject) CredentialedUser(com.google.cloud.tools.intellij.login.CredentialedUser) Nullable(org.jetbrains.annotations.Nullable)

Example 5 with CloudProject

use of com.google.cloud.tools.intellij.project.CloudProject in project google-cloud-intellij by GoogleCloudPlatform.

the class AppEngineStandardDeploymentEditorTest method resetEditorFrom_doesSet_matchingCloudProject.

@Test
public void resetEditorFrom_doesSet_matchingCloudProject() {
    String projectId = "some-project";
    configuration.setCloudProjectName(projectId);
    configuration.setGoogleUsername(EMAIL);
    editor.resetEditorFrom(configuration);
    CloudProject expectedProject = CloudProject.create(projectId, projectId, EMAIL);
    verify(projectSelector).setSelectedProject(expectedProject);
}
Also used : CloudProject(com.google.cloud.tools.intellij.project.CloudProject) Test(org.junit.Test)

Aggregations

CloudProject (com.google.cloud.tools.intellij.project.CloudProject)20 Test (org.junit.Test)10 CredentialedUser (com.google.cloud.tools.intellij.login.CredentialedUser)5 CloudLibrary (com.google.cloud.tools.libraries.json.CloudLibrary)3 Role (com.google.api.services.iam.v1.model.Role)2 Nullable (org.jetbrains.annotations.Nullable)2 Base64 (com.google.api.client.util.Base64)1 CloudResourceManager (com.google.api.services.cloudresourcemanager.CloudResourceManager)1 Binding (com.google.api.services.cloudresourcemanager.model.Binding)1 GetIamPolicyRequest (com.google.api.services.cloudresourcemanager.model.GetIamPolicyRequest)1 Policy (com.google.api.services.cloudresourcemanager.model.Policy)1 SetIamPolicyRequest (com.google.api.services.cloudresourcemanager.model.SetIamPolicyRequest)1 Iam (com.google.api.services.iam.v1.Iam)1 CreateServiceAccountKeyRequest (com.google.api.services.iam.v1.model.CreateServiceAccountKeyRequest)1 CreateServiceAccountRequest (com.google.api.services.iam.v1.model.CreateServiceAccountRequest)1 ServiceAccount (com.google.api.services.iam.v1.model.ServiceAccount)1 ServiceAccountKey (com.google.api.services.iam.v1.model.ServiceAccountKey)1 ServiceManagement (com.google.api.services.servicemanagement.ServiceManagement)1 EnableServiceRequest (com.google.api.services.servicemanagement.model.EnableServiceRequest)1 GoogleCloudCoreIcons (com.google.cloud.tools.intellij.GoogleCloudCoreIcons)1