blob: 56afdbc70e7e9d713298ddbb323e85a3ef57ea50 [file] [log] [blame]
/*
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You 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 cmd
import (
"context"
"fmt"
"strings"
v1 "github.com/apache/camel-k/pkg/apis/camel/v1"
"github.com/apache/camel-k/pkg/platform"
"github.com/apache/camel-k/pkg/trait"
"github.com/apache/camel-k/pkg/util/camel"
"github.com/spf13/cobra"
)
// ******************************
//
//
//
// ******************************
const bashCompletionCmdLongDescription = `
To load completion run
. <(kamel completion bash)
To configure your bash shell to load completions for each session add to your bashrc
# ~/.bashrc or ~/.profile
. <(kamel completion bash)
`
var bashCompletionFunction = `
__kamel_dependency_type() {
case ${cur} in
c*)
local type_list="` + computeCamelDependencies() + `"
COMPREPLY=( $( compgen -W "${type_list}" -- "$cur") )
;;
m*)
local type_list="mvn:"
COMPREPLY=( $( compgen -W "${type_list}" -- "$cur") )
compopt -o nospace
;;
f*)
local type_list="file:"
COMPREPLY=( $( compgen -W "${type_list}" -- "$cur") )
compopt -o nospace
;;
*)
local type_list="camel mvn: file:"
COMPREPLY=( $( compgen -W "${type_list}" -- "$cur") )
compopt -o nospace
esac
}
__kamel_traits() {
local type_list="` + strings.Join(trait.NewCatalog(context.TODO(), nil).ComputeTraitsProperties(), " ") + `"
COMPREPLY=( $( compgen -W "${type_list}" -- "$cur") )
compopt -o nospace
}
__kamel_languages() {
local type_list="js groovy kotlin java xml"
COMPREPLY=( $( compgen -W "${type_list}" -- "$cur") )
}
__kamel_deletion_policy() {
local type_list="owner label"
COMPREPLY=( $( compgen -W "${type_list}" -- "$cur") )
}
__kamel_kubectl_get_configmap() {
local template
local kubectl_out
template="{{ range .items }}{{ .metadata.name }} {{ end }}"
if kubectl_out=$(kubectl get -o template --template="${template}" configmap 2>/dev/null); then
COMPREPLY=( $( compgen -W "${kubectl_out}" -- "$cur" ) )
fi
}
__kamel_kubectl_get_secret() {
local template
local kubectl_out
template="{{ range .items }}{{ .metadata.name }} {{ end }}"
if kubectl_out=$(kubectl get -o template --template="${template}" secret 2>/dev/null); then
COMPREPLY=( $( compgen -W "${kubectl_out}" -- "$cur" ) )
fi
}
__kamel_kubectl_get_integrations() {
local template
local kubectl_out
template="{{ range .items }}{{ .metadata.name }} {{ end }}"
if kubectl_out=$(kubectl get -o template --template="${template}" integrations 2>/dev/null); then
COMPREPLY=( $( compgen -W "${kubectl_out}" -- "$cur" ) )
fi
}
__kamel_kubectl_get_integrationkits() {
local template
local kubectl_out
template="{{ range .items }}{{ .metadata.name }} {{ end }}"
if kubectl_out=$(kubectl get -o template --template="${template}" integrationkits 2>/dev/null); then
COMPREPLY=( $( compgen -W "${kubectl_out}" -- "$cur" ) )
fi
}
__kamel_kubectl_get_non_platform_integrationkits() {
local template
local kubectl_out
template="{{ range .items }}{{ .metadata.name }} {{ end }}"
label_condition="camel.apache.org/kit.type!=platform"
if kubectl_out=$(kubectl get -l ${label_condition} -o template --template="${template}" integrationkits 2>/dev/null); then
COMPREPLY=( $( compgen -W "${kubectl_out}" -- "$cur" ) )
fi
}
__kamel_kubectl_get_known_integrationkits() {
local type_list="` + strings.Join(platform.GetKitsNames(), " ") + `"
COMPREPLY=( $( compgen -W "${type_list}" -- "$cur") )
compopt -o nospace
}
__custom_func() {
case ${last_command} in
kamel_delete)
__kamel_kubectl_get_integrations
return
;;
kamel_log)
__kamel_kubectl_get_integrations
return
;;
kamel_kit_delete)
__kamel_kubectl_get_non_platform_integrationkits
return
;;
*)
;;
esac
}
`
// ******************************
//
// COMMAND
//
// ******************************
func newCmdCompletionBash(root *cobra.Command) *cobra.Command {
return &cobra.Command{
Use: "bash",
Short: "Generates bash completion scripts",
Long: bashCompletionCmdLongDescription,
Run: func(_ *cobra.Command, _ []string) {
err := root.GenBashCompletion(root.OutOrStdout())
if err != nil {
fmt.Print(err.Error())
}
},
Annotations: map[string]string{
offlineCommandLabel: "true",
},
}
}
func configureKnownBashCompletions(command *cobra.Command) {
configureBashAnnotationForFlag(
command,
"dependency",
map[string][]string{
cobra.BashCompCustom: {"__kamel_dependency_type"},
},
)
configureBashAnnotationForFlag(
command,
"configmap",
map[string][]string{
cobra.BashCompCustom: {"__kamel_kubectl_get_configmap"},
},
)
configureBashAnnotationForFlag(
command,
"secret",
map[string][]string{
cobra.BashCompCustom: {"__kamel_kubectl_get_secret"},
},
)
configureBashAnnotationForFlag(
command,
"kit",
map[string][]string{
cobra.BashCompCustom: {"__kamel_kubectl_get_non_platform_integrationkits"},
},
)
configureBashAnnotationForFlag(
command,
"language",
map[string][]string{
cobra.BashCompCustom: {"__kamel_languages"},
},
)
configureBashAnnotationForFlag(
command,
"trait",
map[string][]string{
cobra.BashCompCustom: {"__kamel_traits"},
},
)
configureBashAnnotationForFlag(
command,
"deletion-policy",
map[string][]string{
cobra.BashCompCustom: {"__kamel_deletion_policy"},
},
)
}
func configureBashAnnotationForFlag(command *cobra.Command, flagName string, annotations map[string][]string) {
flag := command.Flag(flagName)
if flag != nil {
flag.Annotations = annotations
}
}
func computeCamelDependencies() string {
catalog, err := camel.DefaultCatalog()
if err != nil || catalog == nil {
catalog = camel.NewRuntimeCatalog(v1.CamelCatalog{}.Spec)
}
results := make([]string, 0, len(catalog.Artifacts))
for k := range catalog.Artifacts {
results = append(results, k)
}
return strings.Join(results, " ")
}