forked from redhat-developer/intellij-kubernetes
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: impl'd describe for resources (redhat-developer#553)
Signed-off-by: Andre Dietisheim <[email protected]>
- Loading branch information
Showing
48 changed files
with
5,346 additions
and
89 deletions.
There are no files selected for viewing
52 changes: 52 additions & 0 deletions
52
src/main/kotlin/com/redhat/devtools/intellij/kubernetes/actions/DescribeResourceAction.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,52 @@ | ||
/******************************************************************************* | ||
* 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.actions | ||
|
||
import com.intellij.openapi.actionSystem.AnActionEvent | ||
import com.intellij.openapi.diagnostic.logger | ||
import com.redhat.devtools.intellij.common.actions.StructureTreeAction | ||
import com.redhat.devtools.intellij.kubernetes.editor.describe.DescriptionViewerFactory | ||
import com.redhat.devtools.intellij.kubernetes.model.Notification | ||
import io.fabric8.kubernetes.api.model.HasMetadata | ||
import io.fabric8.kubernetes.api.model.Pod | ||
import javax.swing.tree.TreePath | ||
|
||
class DescribeResourceAction: StructureTreeAction() { | ||
|
||
override fun actionPerformed(event: AnActionEvent?, path: TreePath?, selected: Any?) { | ||
// not called | ||
} | ||
|
||
override fun actionPerformed(event: AnActionEvent?, path: Array<out TreePath>?, selected: Array<out Any>?) { | ||
val descriptor = selected?.get(0)?.getDescriptor() ?: return | ||
val project = descriptor.project ?: return | ||
val toDescribe: HasMetadata = descriptor.element as? HasMetadata? ?: return | ||
try { | ||
DescriptionViewerFactory.instance.openEditor(toDescribe, project) | ||
} catch (e: RuntimeException) { | ||
logger<DescribeResourceAction>().warn("Error opening editor ${toDescribe.metadata.name}", e) | ||
Notification().error( | ||
"Error opening editor ${toDescribe.metadata.name}", | ||
"Could not open editor for ${toDescribe.kind} '${toDescribe.metadata.name}'." | ||
) | ||
} | ||
} | ||
|
||
override fun isVisible(selected: Array<out Any>?): Boolean { | ||
return selected?.size == 1 | ||
&& isVisible(selected.firstOrNull()) | ||
} | ||
|
||
override fun isVisible(selected: Any?): Boolean { | ||
val element = selected?.getElement<HasMetadata>() | ||
return element is Pod | ||
} | ||
} |
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
28 changes: 28 additions & 0 deletions
28
...otlin/com/redhat/devtools/intellij/kubernetes/editor/KubernetesEditorsTabTitleProvider.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,28 @@ | ||
/******************************************************************************* | ||
* 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.editor | ||
|
||
import com.intellij.openapi.fileEditor.impl.EditorTabTitleProvider | ||
import com.intellij.openapi.fileEditor.impl.UniqueNameEditorTabTitleProvider | ||
import com.intellij.openapi.project.Project | ||
import com.intellij.openapi.vfs.VirtualFile | ||
import com.redhat.devtools.intellij.kubernetes.editor.describe.DescriptionViewerTabTitleProvider | ||
|
||
open class KubernetesEditorsTabTitleProvider( | ||
private val fallback: EditorTabTitleProvider = UniqueNameEditorTabTitleProvider() | ||
) : EditorTabTitleProvider { | ||
|
||
override fun getEditorTabTitle(project: Project, file: VirtualFile): String? { | ||
return ResourceEditorTabTitleProvider().getEditorTabTitle(project, file) | ||
?: DescriptionViewerTabTitleProvider().getEditorTabTitle(project, file) | ||
?: fallback.getEditorTabTitle(project, file) | ||
} | ||
} |
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
18 changes: 18 additions & 0 deletions
18
src/main/kotlin/com/redhat/devtools/intellij/kubernetes/editor/describe/Description.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,18 @@ | ||
/******************************************************************************* | ||
* 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.editor.describe | ||
|
||
import com.redhat.devtools.intellij.kubernetes.editor.describe.paragraphs.Chapter | ||
|
||
abstract class Description: Chapter("Document") { | ||
|
||
abstract fun toText(): String | ||
} |
139 changes: 139 additions & 0 deletions
139
src/main/kotlin/com/redhat/devtools/intellij/kubernetes/editor/describe/DescriptionUtils.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,139 @@ | ||
/******************************************************************************* | ||
* 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.editor.describe | ||
|
||
import com.redhat.devtools.intellij.kubernetes.editor.describe.paragraphs.NamedSequence | ||
import com.redhat.devtools.intellij.kubernetes.editor.describe.paragraphs.NamedValue | ||
import com.redhat.devtools.intellij.kubernetes.editor.describe.paragraphs.Paragraph | ||
import java.time.DateTimeException | ||
import java.time.Duration | ||
import java.time.LocalDateTime | ||
import java.time.ZonedDateTime | ||
import java.time.format.DateTimeFormatter | ||
|
||
object DescriptionConstants { | ||
|
||
object Labels { | ||
const val NAME = "Name" | ||
const val NAMESPACE = "Namespace" | ||
} | ||
|
||
object Values { | ||
const val NONE = "<none>" | ||
const val UNSET = "<unset>" | ||
} | ||
} | ||
|
||
fun createValueOrSequence(title: String, items: List<String>?): Paragraph? { | ||
return if (items.isNullOrEmpty()) { | ||
null | ||
} else if (items.size == 1) { | ||
NamedValue(title, items.first()) | ||
} else { | ||
NamedSequence(title, items) | ||
} | ||
} | ||
|
||
fun createValues(map: Map<String, String>?): List<NamedValue> { | ||
if (map.isNullOrEmpty()) { | ||
return emptyList() | ||
} | ||
return map.entries.map { entry -> NamedValue(entry.key, entry.value) } | ||
} | ||
|
||
fun toString(items: List<String>?): String? { | ||
return items?.joinToString("\n") | ||
} | ||
|
||
fun toRFC1123Date(dateTime: String?): String? { | ||
if (dateTime == null) { | ||
return null | ||
} | ||
val parsed = LocalDateTime.parse(dateTime, DateTimeFormatter.ISO_ZONED_DATE_TIME) | ||
val zoned = parsed.atOffset(ZonedDateTime.now().offset) | ||
return DateTimeFormatter.RFC_1123_DATE_TIME.format(zoned) | ||
} | ||
|
||
fun toRFC1123DateOrUnrecognized(dateTime: String?): String? { | ||
return try { | ||
toRFC1123Date(dateTime) | ||
} catch (e: DateTimeException) { | ||
"Unrecognized Date: $dateTime" | ||
} | ||
} | ||
|
||
/** | ||
* Returns a human-readable form of the given date/time since the given date/time. | ||
* Returns `null` if the given dateTime is not understood. | ||
* The logic is copied from k8s.io/apimachinery/util/duration/ duration/HumanDuration. | ||
* | ||
* @see [k8s.io/apimachinery/util/duration/duration/HumanDuration](https://github.com/kubernetes/apimachinery/blob/d7e1c5311169d5ece2db0ae0118066859aa6f7d8/pkg/util/duration/duration.go#L48) | ||
* @see | ||
*/ | ||
fun toHumanReadableDurationSince(dateTime: String?, since: LocalDateTime): String? { | ||
if (dateTime == null) { | ||
return null | ||
} | ||
return try { | ||
val parsed = LocalDateTime.parse(dateTime, DateTimeFormatter.ISO_ZONED_DATE_TIME) | ||
val difference = if (since.isBefore(parsed)) { | ||
Duration.between(since, parsed) | ||
} else { | ||
Duration.between(parsed, since) | ||
} | ||
val seconds = difference.toSeconds() | ||
return when { | ||
seconds < 60 * 2 -> | ||
// < 2 minutes | ||
"${seconds}s" | ||
|
||
seconds < 60 * 10 -> | ||
// < 10 minutes | ||
"${difference.toMinutesPart()}m${difference.toSecondsPart()}s" | ||
|
||
seconds < 60 * 60 * 3 -> | ||
// < 3 hours | ||
"${difference.toMinutes()}m" | ||
|
||
seconds < 60 * 60 * 8 -> | ||
// < 8 hours | ||
"${difference.toHoursPart()}h" | ||
|
||
seconds < 60 * 60 * 48 -> | ||
// < 48 hours | ||
"${difference.toHours()}h${difference.toMinutesPart()}m" | ||
|
||
seconds < 60 * 60 * 24 * 8 -> { | ||
// < 192 hours | ||
if (difference.toHoursPart() == 0) { | ||
"${difference.toDaysPart()}d" | ||
} else { | ||
"${difference.toDaysPart()}d${difference.toHoursPart()}h" | ||
} | ||
} | ||
|
||
seconds < 60 * 60 * 24 * 365 * 2 -> | ||
// < 2 years | ||
"${difference.toDaysPart()}d" | ||
|
||
seconds < 60 * 60 * 24 * 365 * 8 -> { | ||
// < 8 years | ||
val years = difference.toDaysPart() / 365 | ||
"${years}y${difference.toDaysPart() % 365}d" | ||
} | ||
|
||
else -> | ||
"${difference.toDaysPart() / 365}y" | ||
} | ||
} catch (e: DateTimeException) { | ||
null | ||
} | ||
} |
Oops, something went wrong.