|
| 1 | +/* |
| 2 | +Copyright 2025 Flant JSC |
| 3 | +
|
| 4 | +Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | +you may not use this file except in compliance with the License. |
| 6 | +You may obtain a copy of the License at |
| 7 | +
|
| 8 | + http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | +
|
| 10 | +Unless required by applicable law or agreed to in writing, software |
| 11 | +distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | +See the License for the specific language governing permissions and |
| 14 | +limitations under the License. |
| 15 | +*/ |
| 16 | + |
| 17 | +package comp |
| 18 | + |
| 19 | +import ( |
| 20 | + "strings" |
| 21 | + |
| 22 | + "github.com/spf13/cobra" |
| 23 | + metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" |
| 24 | + |
| 25 | + "github.com/deckhouse/virtualization/src/cli/internal/clientconfig" |
| 26 | +) |
| 27 | + |
| 28 | +func VirtualMachineNameCompletionFunc(cmd *cobra.Command, args []string, toComplete string) ([]string, cobra.ShellCompDirective) { |
| 29 | + directive := cobra.ShellCompDirectiveNoFileComp |
| 30 | + |
| 31 | + if len(args) > 0 { |
| 32 | + return nil, directive |
| 33 | + } |
| 34 | + |
| 35 | + client, namespace, _, err := clientconfig.ClientAndNamespaceFromContext(cmd.Context()) |
| 36 | + if err != nil { |
| 37 | + return nil, directive |
| 38 | + } |
| 39 | + |
| 40 | + vms, err := client.VirtualMachines(namespace).List(cmd.Context(), metav1.ListOptions{}) |
| 41 | + if err != nil { |
| 42 | + return nil, directive |
| 43 | + } |
| 44 | + |
| 45 | + var comps []string |
| 46 | + for _, vm := range vms.Items { |
| 47 | + if strings.HasPrefix(vm.Name, toComplete) { |
| 48 | + comps = append(comps, vm.Name) |
| 49 | + } |
| 50 | + } |
| 51 | + |
| 52 | + return comps, directive |
| 53 | +} |
0 commit comments