-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: show/allow setting decoded base64 values in Secrets, ConfigMaps (…
…#663) Signed-off-by: Andre Dietisheim <[email protected]>
- Loading branch information
Showing
4 changed files
with
339 additions
and
1 deletion.
There are no files selected for viewing
151 changes: 151 additions & 0 deletions
151
src/main/kotlin/com/redhat/devtools/intellij/kubernetes/balloon/StringInputBalloon.kt
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,151 @@ | ||
/******************************************************************************* | ||
* 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 com.redhat.devtools.intellij.kubernetes.balloon | ||
|
||
import com.intellij.openapi.editor.Editor | ||
import com.intellij.openapi.ui.ComponentValidator | ||
import com.intellij.openapi.ui.ValidationInfo | ||
import com.intellij.openapi.ui.popup.Balloon | ||
import com.intellij.openapi.ui.popup.JBPopupFactory | ||
import com.intellij.openapi.ui.popup.JBPopupListener | ||
import com.intellij.openapi.ui.popup.LightweightWindowEvent | ||
import com.intellij.openapi.util.Disposer | ||
import com.intellij.openapi.util.ExpirableRunnable | ||
import com.intellij.openapi.util.text.StringUtil | ||
import com.intellij.openapi.wm.IdeFocusManager | ||
import com.intellij.ui.awt.RelativePoint | ||
import com.intellij.ui.components.JBLabel | ||
import com.intellij.ui.components.JBTextField | ||
import com.intellij.util.ui.JBUI | ||
import org.jetbrains.annotations.NotNull | ||
import java.awt.BorderLayout | ||
import java.awt.Dimension | ||
import java.awt.event.KeyAdapter | ||
import java.awt.event.KeyEvent | ||
import java.awt.event.MouseEvent | ||
import java.util.function.BiConsumer | ||
import java.util.function.Supplier | ||
import javax.swing.JPanel | ||
import javax.swing.JTextField | ||
import kotlin.math.max | ||
|
||
|
||
class StringInputBalloon(@NotNull private val onValidValue: (String) -> Unit, @NotNull private val editor: Editor) { | ||
|
||
companion object { | ||
private const val MAX_WIDTH = 220.0 | ||
} | ||
|
||
private var isValid = false | ||
|
||
fun show(event: MouseEvent) { | ||
val (field, balloon) = create() | ||
balloon.show(RelativePoint(event), Balloon.Position.above) | ||
val focusManager = IdeFocusManager.getInstance(editor.project) | ||
focusManager.doWhenFocusSettlesDown(onFocused(focusManager, field)) | ||
} | ||
|
||
private fun create(): Pair<JBTextField, Balloon> { | ||
val panel = JPanel(BorderLayout()) | ||
val label = JBLabel("Value:") | ||
label.border = JBUI.Borders.empty(0, 3, 0, 1) | ||
panel.add(label, BorderLayout.WEST) | ||
val field = JBTextField() | ||
field.preferredSize = Dimension( | ||
max(MAX_WIDTH, field.preferredSize.width.toDouble()).toInt(), | ||
field.preferredSize.height | ||
) | ||
panel.add(field, BorderLayout.CENTER) | ||
val balloon = createBalloon(panel) | ||
val disposable = Disposer.newDisposable() | ||
Disposer.register(balloon, disposable) | ||
ComponentValidator(disposable) | ||
.withValidator(ValueValidator(field)) | ||
.installOn(field) | ||
.andRegisterOnDocumentListener(field) | ||
.revalidate() | ||
val keyListener = onKeyPressed(field, balloon) | ||
field.addKeyListener(keyListener) | ||
balloon.addListener(onClosed(field, keyListener)) | ||
return Pair(field, balloon) | ||
} | ||
|
||
private fun createBalloon(panel: JPanel): Balloon { | ||
return JBPopupFactory.getInstance() | ||
.createBalloonBuilder(panel) | ||
.setCloseButtonEnabled(false) | ||
.setBlockClicksThroughBalloon(true) | ||
.setAnimationCycle(0) | ||
.setHideOnKeyOutside(true) | ||
.setHideOnClickOutside(true) | ||
.setFillColor(panel.background) | ||
.createBalloon() | ||
} | ||
|
||
private fun onClosed(field: JBTextField, keyListener: KeyAdapter): JBPopupListener { | ||
return object : JBPopupListener { | ||
override fun beforeShown(event: LightweightWindowEvent) {} | ||
override fun onClosed(event: LightweightWindowEvent) { | ||
field.removeKeyListener(keyListener) | ||
} | ||
} | ||
} | ||
|
||
private fun onKeyPressed(field: JTextField, balloon: Balloon) = object : KeyAdapter() { | ||
override fun keyPressed(e: KeyEvent) { | ||
when (e.keyCode) { | ||
KeyEvent.VK_ESCAPE -> | ||
balloon.hide() | ||
KeyEvent.VK_ENTER -> | ||
if (isValid) { | ||
onValidValue.invoke(field.text) | ||
} | ||
} | ||
} | ||
} | ||
|
||
private fun onFocused(focusManager: IdeFocusManager, field: JBTextField): ExpirableRunnable { | ||
return object : ExpirableRunnable { | ||
|
||
override fun run() { | ||
focusManager.requestFocus(field, true) | ||
field.selectAll() | ||
} | ||
|
||
override fun isExpired(): Boolean { | ||
return false | ||
} | ||
} | ||
} | ||
|
||
private inner class ValueValidator(private val field: JTextField) : Supplier<ValidationInfo?> { | ||
|
||
override fun get(): ValidationInfo? { | ||
if (!field.isEnabled | ||
|| !field.isVisible | ||
) { | ||
return null | ||
} | ||
return validate(field.text) | ||
} | ||
|
||
private fun validate(name: String): ValidationInfo? { | ||
val validation = if (StringUtil.isEmptyOrSpaces(name)) { | ||
ValidationInfo("Provide a value", field).asWarning() | ||
} else { | ||
null | ||
} | ||
this@StringInputBalloon.isValid = (validation == null) | ||
return validation | ||
} | ||
} | ||
|
||
} |
119 changes: 119 additions & 0 deletions
119
...n/kotlin/com/redhat/devtools/intellij/kubernetes/editor/inlay/Base64InlayHintsProvider.kt
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,119 @@ | ||
@file:Suppress("UnstableApiUsage") | ||
|
||
package com.redhat.devtools.intellij.kubernetes.editor.inlay | ||
|
||
import com.intellij.codeInsight.hints.ChangeListener | ||
import com.intellij.codeInsight.hints.FactoryInlayHintsCollector | ||
import com.intellij.codeInsight.hints.ImmediateConfigurable | ||
import com.intellij.codeInsight.hints.InlayHintsCollector | ||
import com.intellij.codeInsight.hints.InlayHintsProvider | ||
import com.intellij.codeInsight.hints.InlayHintsSink | ||
import com.intellij.codeInsight.hints.NoSettings | ||
import com.intellij.codeInsight.hints.SettingsKey | ||
import com.intellij.codeInsight.hints.presentation.PresentationFactory | ||
import com.intellij.json.psi.JsonProperty | ||
import com.intellij.openapi.application.ApplicationManager | ||
import com.intellij.openapi.application.WriteAction | ||
import com.intellij.openapi.command.WriteCommandAction | ||
import com.intellij.openapi.editor.Editor | ||
import com.intellij.openapi.editor.impl.EditorImpl | ||
import com.intellij.openapi.progress.ModalTaskOwner.project | ||
import com.intellij.psi.PsiElement | ||
import com.intellij.psi.PsiFile | ||
import com.intellij.refactoring.suggested.startOffset | ||
import com.intellij.ui.dsl.builder.panel | ||
import com.redhat.devtools.intellij.kubernetes.balloon.StringInputBalloon | ||
import com.redhat.devtools.intellij.kubernetes.editor.util.decodeBase64 | ||
import com.redhat.devtools.intellij.kubernetes.editor.util.getContent | ||
import com.redhat.devtools.intellij.kubernetes.editor.util.getData | ||
import com.redhat.devtools.intellij.kubernetes.editor.util.getKubernetesResourceInfo | ||
import com.redhat.devtools.intellij.kubernetes.editor.util.isKubernetesResource | ||
import com.redhat.devtools.intellij.kubernetes.editor.util.setValue | ||
import org.jetbrains.yaml.psi.YAMLKeyValue | ||
import javax.swing.JComponent | ||
|
||
|
||
internal class Base64InlayHintsProvider : InlayHintsProvider<NoSettings> { | ||
|
||
override val key: SettingsKey<NoSettings> = SettingsKey("LSP.hints") | ||
override val name: String = "Kubernetes" | ||
override val previewText: String = "Preview" | ||
|
||
override fun createSettings(): NoSettings { | ||
return NoSettings() | ||
} | ||
|
||
override fun createConfigurable(settings: NoSettings): ImmediateConfigurable { | ||
return object : ImmediateConfigurable { | ||
override fun createComponent(listener: ChangeListener): JComponent = panel {} | ||
|
||
override val mainCheckboxText: String = "Show hints for:" | ||
|
||
override val cases: List<ImmediateConfigurable.Case> = emptyList() | ||
} | ||
} | ||
|
||
override fun getCollectorFor( | ||
file: PsiFile, | ||
editor: Editor, | ||
settings: NoSettings, | ||
sink: InlayHintsSink | ||
): InlayHintsCollector? { | ||
val project = editor.project ?: return null | ||
val virtualFile = file.virtualFile ?: return null | ||
val info = getKubernetesResourceInfo(virtualFile, project) | ||
if (!isKubernetesResource("Secret", info) | ||
&& !isKubernetesResource("ConfigMap", info) | ||
) { | ||
return null | ||
} | ||
return Collector(editor) | ||
} | ||
|
||
private class Collector(editor: Editor) : FactoryInlayHintsCollector(editor) { | ||
|
||
override fun collect(element: PsiElement, editor: Editor, sink: InlayHintsSink): Boolean { | ||
if (!element.isValid) { | ||
return true | ||
} | ||
val content = getContent(element) ?: return true | ||
val data = getData(content) ?: return true | ||
data.children.toList() | ||
.forEach { child -> | ||
val value = when (child) { | ||
is YAMLKeyValue -> child.value?.text | ||
is JsonProperty -> child.value?.text | ||
else -> null | ||
} | ||
val decoded = decodeBase64(value) | ||
val offset = when (child) { | ||
is YAMLKeyValue -> child.value?.startOffset | ||
is JsonProperty -> child.value?.startOffset | ||
else -> null | ||
} ?: return true | ||
if (decoded != null) { | ||
val factory = PresentationFactory(editor as EditorImpl) | ||
val text = factory.smallText(decoded) | ||
val hover = factory.referenceOnHover(text) { event, translated -> StringInputBalloon(onValidValue(child, editor), editor).show(event) } | ||
val tooltip = factory.withTooltip("Click to change value", hover) | ||
val round = factory.roundWithBackground(tooltip) | ||
sink.addInlineElement(offset, false, round, false) | ||
} | ||
} | ||
|
||
return true | ||
} | ||
|
||
fun onValidValue(child: PsiElement, editor: Editor): (value: String) -> Unit { | ||
return { value -> | ||
ApplicationManager.getApplication().invokeLater { | ||
WriteCommandAction.runWriteCommandAction(editor.project) { | ||
setValue(value, child, editor.project) | ||
} | ||
} | ||
} | ||
} | ||
} | ||
|
||
|
||
} |
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.