This repository has been archived by the owner on Jul 25, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #512 from tedteng/history
History feature
- Loading branch information
Showing
110 changed files
with
11,824 additions
and
18 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
// Copyright (c) 2019 SAP SE or an SAP affiliate company. All rights reserved. This file is licensed under the Apache Software License, v. 2 except as noted otherwise in the LICENSE file | ||
// | ||
// Licensed 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 ( | ||
"encoding/json" | ||
"errors" | ||
"os" | ||
) | ||
|
||
var tmp string | ||
|
||
// WriteStringln writes history to given path | ||
func (w *GardenctlHistoryWriter) WriteStringln(historyPath string, i interface{}) error { | ||
f, err := os.OpenFile(historyPath, os.O_WRONLY|os.O_APPEND|os.O_CREATE, 0666) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
switch x := i.(type) { | ||
case map[string]string: | ||
j, err := json.Marshal(x) | ||
if err != nil { | ||
return err | ||
} | ||
tmp = string(j) | ||
|
||
case string: | ||
tmp = x | ||
default: | ||
return errors.New("Invalid type not supported") | ||
} | ||
|
||
_, err = f.WriteString(tmp + "\n") | ||
return err | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,128 @@ | ||
// Copyright (c) 2019 SAP SE or an SAP affiliate company. All rights reserved. This file is licensed under the Apache Software License, v. 2 except as noted otherwise in the LICENSE file | ||
// | ||
// Licensed 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 ( | ||
"encoding/json" | ||
"fmt" | ||
"os" | ||
|
||
"github.com/gardener/gardenctl/pkg/internal/history" | ||
"github.com/spf13/cobra" | ||
) | ||
|
||
const ( | ||
targetInfoGarden = "garden" | ||
targetInfoProject = "project" | ||
targetInfoSeed = "seed" | ||
targetInfoShoot = "shoot" | ||
targetInfoNamespace = "namespace" | ||
) | ||
|
||
//NewHistoryCmd use for list/search targting history | ||
func NewHistoryCmd(targetWriter TargetWriter, historyWriter HistoryWriter) *cobra.Command { | ||
cmd := &cobra.Command{ | ||
Use: "history", | ||
Short: "List/Search targeting history, e.g. \"gardenctl x\"", | ||
SilenceUsage: true, | ||
Aliases: []string{"x"}, | ||
RunE: func(cmd *cobra.Command, args []string) error { | ||
h := history.SetPath(pathHistory) | ||
|
||
if len(h.Load().Items) <= 0 { | ||
fmt.Println("No Target History results") | ||
os.Exit(0) | ||
} | ||
|
||
items := h.Load().Reverse().Select() | ||
|
||
m, err := toMap(items.PromptItem) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
var target Target | ||
if val, ok := m[targetInfoGarden]; ok { | ||
appendTarget(&target, targetInfoGarden, val) | ||
} | ||
|
||
if val, ok := m[targetInfoProject]; ok { | ||
appendTarget(&target, targetInfoProject, val) | ||
} | ||
|
||
if val, ok := m[targetInfoSeed]; ok { | ||
appendTarget(&target, targetInfoSeed, val) | ||
} | ||
|
||
if val, ok := m[targetInfoShoot]; ok { | ||
appendTarget(&target, targetInfoShoot, val) | ||
} | ||
|
||
if val, ok := m[targetInfoNamespace]; ok { | ||
appendTarget(&target, targetInfoNamespace, val) | ||
|
||
err := namespaceWrapper(nil, targetWriter, val) | ||
if err != nil { | ||
return err | ||
} | ||
} | ||
|
||
err = targetWriter.WriteTarget(pathTarget, &target) | ||
if err != nil { | ||
return fmt.Errorf("error write target %s", err) | ||
} | ||
|
||
kubeconfigPathOutput(&target) | ||
|
||
err = historyWriter.WriteStringln(pathHistory, items.Item) | ||
if err != nil { | ||
return fmt.Errorf("error write history %s", err) | ||
} | ||
|
||
return nil | ||
}, | ||
} | ||
|
||
return cmd | ||
} | ||
|
||
func toMap(item history.PromptItem) (map[string]string, error) { | ||
toMap := make(map[string]string) | ||
tmp, err := json.Marshal(item) | ||
if err != nil { | ||
return nil, fmt.Errorf("convert error") | ||
} | ||
|
||
err = json.Unmarshal(tmp, &toMap) | ||
if err != nil { | ||
return nil, fmt.Errorf("convert error") | ||
} | ||
return toMap, nil | ||
} | ||
|
||
func appendTarget(target *Target, targetKind TargetKind, name string) *Target { | ||
target.Target = append(target.Target, TargetMeta{targetKind, name}) | ||
return target | ||
} | ||
|
||
func kubeconfigPathOutput(target *Target) { | ||
for _, k := range target.Target { | ||
if k.Kind != targetInfoProject && k.Kind != TargetKindNamespace { | ||
fmt.Println(k.Kind + ":") | ||
KUBECONFIG = getKubeConfigOfClusterType(k.Kind) | ||
fmt.Println("KUBECONFIG=" + KUBECONFIG) | ||
} | ||
} | ||
} |
Oops, something went wrong.