/* * Copyright (C) 2013 The Android Open Source Project * * 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.android.tools.idea.gradle.service.notification.hyperlink; import com.android.tools.idea.gradle.project.GradleProjectImporter; import com.android.tools.idea.gradle.util.GradleUtil; import com.intellij.openapi.externalSystem.service.notification.EditableNotificationMessageElement; import com.intellij.openapi.project.Project; import com.intellij.openapi.ui.Messages; import com.intellij.openapi.util.text.StringUtil; import com.intellij.openapi.vfs.VfsUtil; import com.intellij.openapi.vfs.VirtualFile; import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.Nullable; import org.jetbrains.plugins.gradle.settings.DistributionType; import org.jetbrains.plugins.gradle.settings.GradleProjectSettings; import javax.swing.event.HyperlinkEvent; import java.io.File; import java.io.IOException; /** * Fixes the Gradle version in a project's Gradle wrapper. */ public class FixGradleVersionInWrapperHyperlink extends NotificationHyperlink { @NotNull private final File myWrapperPropertiesFile; @NotNull private final String myGradleVersion; @Nullable public static NotificationHyperlink createIfProjectUsesGradleWrapper(@NotNull Project project) { File wrapperPropertiesFile = GradleUtil.findWrapperPropertiesFile(project); if (wrapperPropertiesFile != null) { String supportedGradleVersion = GradleUtil.getSupportedGradleVersion(project); if (StringUtil.isNotEmpty(supportedGradleVersion)) { return new FixGradleVersionInWrapperHyperlink(wrapperPropertiesFile, supportedGradleVersion); } } return null; } private FixGradleVersionInWrapperHyperlink(@NotNull File wrapperPropertiesFile, @NotNull String gradleVersion) { super("fixGradleVersionInWrapper", "Fix Gradle wrapper and re-import project"); myWrapperPropertiesFile = wrapperPropertiesFile; myGradleVersion = gradleVersion; } @Override protected void execute(@NotNull Project project) { updateGradleVersion(project, myWrapperPropertiesFile, myGradleVersion); GradleProjectSettings settings = GradleUtil.getGradleProjectSettings(project); if (settings != null) { settings.setDistributionType(DistributionType.DEFAULT_WRAPPED); } GradleProjectImporter.getInstance().requestProjectSync(project, null); } @Override public boolean executeIfClicked(@NotNull Project project, @NotNull HyperlinkEvent event) { // we need HyperlinkEvent for the link deactivation after the fix apply final boolean updated = updateGradleVersion(project, myWrapperPropertiesFile, myGradleVersion); if (updated) { EditableNotificationMessageElement.disableLink(event); } return updated; } static boolean updateGradleVersion(@NotNull Project project, @NotNull File wrapperPropertiesFile, @NotNull String gradleVersion) { try { boolean updated = GradleUtil.updateGradleDistributionUrl(gradleVersion, wrapperPropertiesFile); if (updated) { VirtualFile virtualFile = VfsUtil.findFileByIoFile(wrapperPropertiesFile, true); if (virtualFile != null) { virtualFile.refresh(false, false); } return true; } } catch (IOException e) { String msg = String.format("Unable to update Gradle wrapper to use Gradle %1$s\n", gradleVersion); msg += e.getMessage(); Messages.showErrorDialog(project, msg, ERROR_MSG_TITLE); } return false; } }