-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathroot.go
141 lines (114 loc) · 3.46 KB
/
root.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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
/*
Copyright © 2023 NAME HERE <EMAIL ADDRESS>
*/
package cmd
import (
"encoding/base64"
"fmt"
"log"
"os"
"github.com/google/uuid"
"github.com/spf13/cobra"
"github.com/spf13/viper"
)
var cfgFile string
var vaultKey string
var encKeyAes string
var encKeyPgpPub string
var encKeyPgpPriv string
var encKeyPgpPassphrase string
var secKey string
var identity string
var verbose bool
// rootCmd represents the base command when called without any subcommands
var rootCmd = &cobra.Command{
Use: "immuch",
Short: "A secure CLI messager making use of ImmuDB Vault as a backend",
Long: `ImmuCh is a secure CLI messager making use of ImmuDB Vault as a backend:
It enable two parties to communicate securely by using a trusted central authority for exchanging their messages.
immudb Vault guarantees integrity of contents saved by a mathematical proof.`,
// Uncomment the following line if your bare application
// has an action associated with it:
// Run: func(cmd *cobra.Command, args []string) { },
}
// Execute adds all child commands to the root command and sets flags appropriately.
// This is called by main.main(). It only needs to happen once to the rootCmd.
func Execute() {
err := rootCmd.Execute()
if err != nil {
os.Exit(1)
}
}
func init() {
cobra.OnInitialize(initConfig)
// Here you will define your flags and configuration settings.
// Cobra supports persistent flags, which, if defined here,
// will be global for your application.
rootCmd.PersistentFlags().StringVar(&cfgFile, "config", "", "config file (default is $HOME/.immuch.yaml)")
rootCmd.PersistentFlags().BoolVar(&verbose, "verbose", false, "enable verbose output")
// Cobra also supports local flags, which will only run
// when this action is called directly.
rootCmd.Flags().BoolP("toggle", "t", false, "Help message for toggle")
}
func initConfig() {
if cfgFile != "" {
// Use config file from the flag.
viper.SetConfigFile(cfgFile)
} else {
// Find home directory.
home, err := os.UserHomeDir()
cobra.CheckErr(err)
// Search config in home directory with name ".go-immuch" (without extension).
viper.AddConfigPath(home)
viper.SetConfigType("yaml")
viper.SetConfigName(".immuch")
}
viper.AutomaticEnv() // read in environment variables that match
// If a config file is found, read it in.
if err := viper.ReadInConfig(); err == nil {
fmt.Fprintln(os.Stderr, "Using config file:", viper.ConfigFileUsed())
}
if viper.Get("SECKEY") == nil {
secKey = genSecKey()
viper.Set("SECKEY", secKey)
} else {
secKey = viper.GetString("SECKEY")
}
if vaultKey != "" {
viper.Set("VAULT_KEY", vaultKey)
}
if encKeyAes != "" {
viper.Set("ENC_KEY_AES", encKeyAes)
}
if encKeyPgpPub != "" {
viper.Set("ENC_KEY_PGP_PUB", encKeyPgpPub)
}
if encKeyPgpPriv != "" {
viper.Set("ENC_KEY_PGP_PRIV", encKeyPgpPriv)
}
if encKeyPgpPassphrase != "" {
viper.Set("ENC_KEY_PGP_PASSPHRASE", doEncryptAes(encKeyPgpPassphrase, secKey))
}
if identity != "" {
viper.Set("IDENTITY", identity)
}
if vaultKey != "" || encKeyAes != "" || encKeyPgpPub != "" || encKeyPgpPriv != "" || encKeyPgpPassphrase != "" || identity != "" {
if viper.ConfigFileUsed() != "" {
viper.WriteConfigAs(viper.ConfigFileUsed())
} else {
viper.SafeWriteConfig()
}
}
}
func genSecKey() string {
uuid := uuid.New()
uuidBytes := uuid[:]
secKeyBytes := append(uuidBytes)
secKey := base64.StdEncoding.EncodeToString(secKeyBytes)
return secKey
}
func debug(msg string) {
if verbose {
log.Println(msg)
}
}