-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.go
82 lines (72 loc) · 1.66 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
81
82
package main
import (
"encoding/json"
"fmt"
"log"
"os"
"path/filepath"
"sort"
)
const directoryName = "gh-mirror"
const configFileName = "gh-mirror.json"
type Config struct {
SleepDuration int `json:"sleepDuration"`
Repos []string `json:"repos"`
}
func getConfigPath() string {
configPath := filepath.Join(getRootPath(), configFileName)
return configPath
}
func createConfig() {
var config Config
config.SleepDuration = 30
config.Repos = []string{}
writeConfig(config)
fmt.Printf("Created config file: %v\n", getConfigPath())
}
func readConfig() Config {
var config Config
data, err := os.ReadFile(getConfigPath())
if err != nil {
log.Fatalf("could not read config: %v", err)
}
json.Unmarshal(data, &config)
return config
}
func writeConfig(config Config) {
configPath := getConfigPath()
data, _ := json.MarshalIndent(config, "", " ")
err := os.WriteFile(configPath, data, os.ModePerm)
if err != nil {
log.Fatalf("could not write config: %v", err)
}
}
func addRepoToConfig(repo string) {
fmt.Println("adding repo", repo)
config := readConfig()
for _, cfgRepo := range config.Repos {
if repo == cfgRepo {
// prevent duplicates
return
}
}
config.Repos = append(config.Repos, repo)
sort.Strings(config.Repos)
writeConfig(config)
}
func getRootPath() string {
homeDir := os.Getenv("HOME")
if homeDir == "" {
log.Fatal("$HOME is not set")
}
rootPath := filepath.Join(homeDir, directoryName)
return rootPath
}
func createRoot() {
rootPath := getRootPath()
err := os.Mkdir(rootPath, os.ModePerm)
if err != nil {
log.Fatalf("could not create directory %v: %v", rootPath, err)
}
fmt.Printf("Created directory: %v\n", rootPath)
}