forked from redhat-developer/intellij-openshift-connector
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add/remove/edit helm repo (redhat-developer#673)
Signed-off-by: Andre Dietisheim <[email protected]>
- Loading branch information
Showing
20 changed files
with
563 additions
and
111 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
78 changes: 78 additions & 0 deletions
78
src/main/java/org/jboss/tools/intellij/openshift/actions/helm/AddHelmRepoAction.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
/******************************************************************************* | ||
* Copyright (c) 2023 Red Hat, Inc. | ||
* Distributed under license by Red Hat, Inc. All rights reserved. | ||
* This program is made available under the terms of the | ||
* Eclipse Public License v2.0 which accompanies this distribution, | ||
* and is available at http://www.eclipse.org/legal/epl-v20.html | ||
* | ||
* Contributors: | ||
* Red Hat, Inc. - initial API and implementation | ||
******************************************************************************/ | ||
package org.jboss.tools.intellij.openshift.actions.helm; | ||
|
||
import com.intellij.openapi.actionSystem.AnActionEvent; | ||
import com.intellij.openapi.project.Project; | ||
import com.redhat.devtools.intellij.common.utils.ApplicationUtils; | ||
import com.redhat.devtools.intellij.common.utils.SwingUtils; | ||
import java.awt.Point; | ||
import java.io.IOException; | ||
import java.util.Collection; | ||
import java.util.Collections; | ||
import java.util.concurrent.CompletableFuture; | ||
import org.jboss.tools.intellij.openshift.actions.HelmAction; | ||
import org.jboss.tools.intellij.openshift.telemetry.TelemetryService; | ||
import org.jboss.tools.intellij.openshift.tree.application.HelmRepositoriesNode; | ||
import org.jboss.tools.intellij.openshift.ui.helm.AddHelmRepoDialog; | ||
import org.jboss.tools.intellij.openshift.utils.helm.Helm; | ||
import org.jboss.tools.intellij.openshift.utils.helm.HelmRepository; | ||
import org.jetbrains.annotations.NotNull; | ||
import org.slf4j.Logger; | ||
import org.slf4j.LoggerFactory; | ||
|
||
|
||
public class AddHelmRepoAction extends HelmAction { | ||
|
||
private static final Logger LOGGER = LoggerFactory.getLogger(AddHelmRepoAction.class); | ||
|
||
@Override | ||
public void actionPerformedOnSelectedObject(AnActionEvent anActionEvent, Object selected, @NotNull Helm helm) { | ||
Project project = getEventProject(anActionEvent); | ||
if (!(selected instanceof HelmRepositoriesNode repositoriesNode)) { | ||
return; | ||
} | ||
openAddHelmRepoDialog(repositoriesNode, helm, project, SwingUtils.getMouseLocation(anActionEvent)); | ||
} | ||
|
||
private void openAddHelmRepoDialog(HelmRepositoriesNode repositoriesNode, Helm helm, Project project, Point location) { | ||
CompletableFuture.supplyAsync( | ||
() -> listRepositories(helm), | ||
ApplicationUtils.PLATFORM_EXECUTOR | ||
).thenAcceptAsync( | ||
repositories -> { | ||
AddHelmRepoDialog dialog = new AddHelmRepoDialog(repositories, repositoriesNode, helm, project, location); | ||
sendTelemetryResults(TelemetryService.TelemetryResult.SUCCESS); | ||
dialog.show(); | ||
}, | ||
ApplicationUtils.UI_EXECUTOR | ||
); | ||
} | ||
|
||
private Collection<HelmRepository> listRepositories(Helm helm) { | ||
try { | ||
return helm.listRepos(); | ||
} catch (IOException e) { | ||
LOGGER.warn("Could not list helm repositories", e); | ||
return Collections.emptyList(); | ||
} | ||
} | ||
|
||
@Override | ||
public String getTelemetryActionName() { | ||
return "helm-add repo"; | ||
} | ||
|
||
@Override | ||
public boolean isVisible(Object selected) { | ||
return selected instanceof HelmRepositoriesNode; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
121 changes: 121 additions & 0 deletions
121
src/main/java/org/jboss/tools/intellij/openshift/actions/helm/RemoveRepositoriesAction.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,121 @@ | ||
/******************************************************************************* | ||
* Copyright (c) 2024 Red Hat, Inc. | ||
* Distributed under license by Red Hat, Inc. All rights reserved. | ||
* This program is made available under the terms of the | ||
* Eclipse Public License v2.0 which accompanies this distribution, | ||
* and is available at http://www.eclipse.org/legal/epl-v20.html | ||
* | ||
* Contributors: | ||
* Red Hat, Inc. - initial API and implementation | ||
******************************************************************************/ | ||
package org.jboss.tools.intellij.openshift.actions.helm; | ||
|
||
import com.intellij.openapi.actionSystem.AnActionEvent; | ||
import com.intellij.openapi.progress.ProgressIndicator; | ||
import com.intellij.openapi.project.Project; | ||
import com.intellij.openapi.ui.Messages; | ||
import com.redhat.devtools.intellij.common.actions.StructureTreeAction; | ||
import com.redhat.devtools.intellij.common.utils.UIHelper; | ||
import java.util.Arrays; | ||
import java.util.List; | ||
import java.util.stream.Collectors; | ||
import javax.swing.tree.TreePath; | ||
import org.jboss.tools.intellij.openshift.actions.HelmAction; | ||
import org.jboss.tools.intellij.openshift.telemetry.TelemetryService; | ||
import org.jboss.tools.intellij.openshift.tree.application.ApplicationsRootNode; | ||
import org.jboss.tools.intellij.openshift.tree.application.HelmRepositoryNode; | ||
import org.jboss.tools.intellij.openshift.tree.application.ProcessingNode; | ||
import org.jboss.tools.intellij.openshift.utils.helm.Helm; | ||
import org.jetbrains.annotations.Nullable; | ||
|
||
import static org.jboss.tools.intellij.openshift.actions.ActionUtils.runWithProgress; | ||
import static org.jboss.tools.intellij.openshift.actions.NodeUtils.clearProcessing; | ||
import static org.jboss.tools.intellij.openshift.actions.NodeUtils.setProcessing; | ||
|
||
public class RemoveRepositoriesAction extends HelmAction { | ||
|
||
@Override | ||
public void actionPerformed(AnActionEvent anActionEvent, TreePath[] path, Object[] selected) { | ||
Helm helm = getHelm(anActionEvent); | ||
if (helm == null) { | ||
return; | ||
} | ||
Project project = getEventProject(anActionEvent); | ||
List<HelmRepositoryNode> repositories = toHelmRepositoryNodes(selected); | ||
if (repositories == null | ||
|| repositories.isEmpty()) { | ||
return; | ||
} | ||
|
||
if (cancelRemoval(repositories)) { | ||
sendTelemetryResults(TelemetryService.TelemetryResult.ABORTED); | ||
return; | ||
} | ||
|
||
runWithProgress((ProgressIndicator progress) -> { | ||
removeRepositories(repositories, helm); | ||
}, | ||
"Remove Helm Repositories...", | ||
project); | ||
} | ||
|
||
private void removeRepositories(List<HelmRepositoryNode> repositories, Helm helm) { | ||
ProcessingNode[] processingNodes = repositories.toArray(new ProcessingNode[0]); | ||
ApplicationsRootNode rootNode = repositories.get(0).getRoot(); | ||
try { | ||
setProcessing("removing...", rootNode, processingNodes); | ||
helm.removeRepos( | ||
repositories.stream() | ||
.map(HelmRepositoryNode::getName) | ||
.toArray(String[]::new)); | ||
clearProcessing(rootNode, processingNodes); | ||
sendTelemetryResults(TelemetryService.TelemetryResult.SUCCESS); | ||
} catch (Exception e) { | ||
clearProcessing(rootNode, processingNodes); | ||
UIHelper.executeInUI(() -> Messages.showErrorDialog("Error: " + e.getLocalizedMessage(), "Remove Helm Repositories")); | ||
sendTelemetryResults(TelemetryService.TelemetryResult.ERROR); | ||
} | ||
} | ||
|
||
@Nullable | ||
private static List<HelmRepositoryNode> toHelmRepositoryNodes(Object[] selected) { | ||
if (selected == null | ||
|| selected.length == 0) { | ||
return null; | ||
} | ||
|
||
return Arrays.stream(selected) | ||
.map(StructureTreeAction::getElement) | ||
.filter(HelmRepositoryNode.class::isInstance) | ||
.map(HelmRepositoryNode.class::cast) | ||
.collect(Collectors.toList()); | ||
} | ||
|
||
private boolean cancelRemoval(List<HelmRepositoryNode> releases) { | ||
String repositoriesNames = releases.stream() | ||
.map(HelmRepositoryNode::getName) | ||
.collect(Collectors.joining(", ")); | ||
return Messages.NO == Messages.showYesNoDialog( | ||
"Remove Repositories " | ||
+ repositoriesNames | ||
+ ".\n\nAre you sure?", | ||
"Remove Repositories", | ||
Messages.getQuestionIcon()); | ||
} | ||
|
||
@Override | ||
public String getTelemetryActionName() { | ||
return "helm-remove repositories"; | ||
} | ||
|
||
@Override | ||
public boolean isVisible(Object[] selected) { | ||
return Arrays.stream(selected).anyMatch(item -> { | ||
Object node = getElement(item); | ||
if (!(node instanceof HelmRepositoryNode)) { | ||
return false; | ||
} | ||
return !((HelmRepositoryNode) node).isProcessing(); | ||
}); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.