-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.go
80 lines (66 loc) · 1.73 KB
/
config.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
package main
import (
"encoding/json"
"fmt"
"io/ioutil"
"log"
"os"
)
type Config struct {
OpenAIKey string
IncludeScreen bool
IncludeNvim bool
ListenAddress string
}
var config = Config{
// ListenAddress: "localhost:9898",
// IncludeScreen: true,
// IncludeNvim: true,
}
func getConfigPath() (string, error) {
configDir, err := os.UserConfigDir()
if err != nil {
return "", fmt.Errorf("Error finding user config directory: %v", err)
}
return fmt.Sprintf("%s/talkxtyper-config.json", configDir), nil
}
func readConfig() error {
configPath, err := getConfigPath()
if err != nil {
return fmt.Errorf("Error getting config path: %v", err)
}
configFile, err := os.Open(configPath)
if err != nil {
return fmt.Errorf("Error opening config file: %v", err)
}
defer configFile.Close()
byteValue, err := ioutil.ReadAll(configFile)
if err != nil {
return fmt.Errorf("Error reading config file: %v", err)
}
if err := json.Unmarshal(byteValue, &config); err != nil {
return fmt.Errorf("Error unmarshalling config file: %v", err)
}
log.Printf("Configuration loaded: %s\n", configPath)
return nil
}
func writeConfig() error {
configPath, err := getConfigPath()
if err != nil {
return fmt.Errorf("Error getting config path: %v", err)
}
configFile, err := os.Create(configPath)
if err != nil {
return fmt.Errorf("Error creating config file: %v", err)
}
defer configFile.Close()
byteValue, err := json.MarshalIndent(config, "", " ")
if err != nil {
return fmt.Errorf("Error marshalling config to JSON: %v", err)
}
if _, err := configFile.Write(byteValue); err != nil {
return fmt.Errorf("Error writing to config file: %v", err)
}
log.Printf("Config file has been written: %s\n", configPath)
return nil
}