-
Notifications
You must be signed in to change notification settings - Fork 170
/
Copy pathwrite.go
102 lines (89 loc) · 2.42 KB
/
write.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
package cmd
import (
"bufio"
"fmt"
"io"
"os"
"strings"
analytics "github.com/segmentio/analytics-go/v3"
"github.com/segmentio/chamber/v3/store"
"github.com/segmentio/chamber/v3/utils"
"github.com/spf13/cobra"
)
var (
singleline bool
skipUnchanged bool
tags map[string]string
// writeCmd represents the write command
writeCmd = &cobra.Command{
Use: "write <service> <key> [--] <value|->",
Short: "write a secret",
Args: cobra.ExactArgs(3),
RunE: write,
}
)
func init() {
writeCmd.Flags().BoolVarP(&singleline, "singleline", "s", false, "Insert single line parameter (end with \\n)")
writeCmd.Flags().BoolVarP(&skipUnchanged, "skip-unchanged", "", false, "Skip writing secret if value is unchanged")
writeCmd.Flags().StringToStringVarP(&tags, "tags", "t", map[string]string{}, "Add tags to the secret; new secrets only")
RootCmd.AddCommand(writeCmd)
}
func write(cmd *cobra.Command, args []string) error {
service := utils.NormalizeService(args[0])
if err := validateService(service); err != nil {
return fmt.Errorf("Failed to validate service: %w", err)
}
key := utils.NormalizeKey(args[1])
if err := validateKey(key); err != nil {
return fmt.Errorf("Failed to validate key: %w", err)
}
if analyticsEnabled && analyticsClient != nil {
_ = analyticsClient.Enqueue(analytics.Track{
UserId: username,
Event: "Ran Command",
Properties: analytics.NewProperties().
Set("command", "write").
Set("chamber-version", chamberVersion).
Set("service", service).
Set("backend", backend).
Set("key", key),
})
}
value := args[2]
if value == "-" {
// Read value from standard input
if singleline {
buf := bufio.NewReader(os.Stdin)
v, err := buf.ReadString('\n')
if err != nil {
return err
}
value = strings.TrimSuffix(v, "\n")
} else {
v, err := io.ReadAll(os.Stdin)
if err != nil {
return err
}
value = string(v)
}
}
secretStore, err := getSecretStore(cmd.Context())
if err != nil {
return fmt.Errorf("Failed to get secret store: %w", err)
}
secretId := store.SecretId{
Service: service,
Key: key,
}
if skipUnchanged {
currentSecret, err := secretStore.Read(cmd.Context(), secretId, -1)
if err == nil && value == *currentSecret.Value {
return nil
}
}
if len(tags) > 0 {
return secretStore.WriteWithTags(cmd.Context(), secretId, value, tags)
} else {
return secretStore.Write(cmd.Context(), secretId, value)
}
}