-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathenv_file_handler.go
99 lines (82 loc) · 2.54 KB
/
env_file_handler.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
package utils
import (
"encoding/json"
"github.com/neel1996/gitconvex-server/global"
"go/types"
"io/ioutil"
"os"
"path/filepath"
)
type EnvConfig struct {
DataBaseFile string `json:"databaseFile"`
Port string `json:"port"`
}
func localLogger(message string, status string) {
logger := &global.Logger{}
logger.Log(message, status)
}
// EnvConfigValidator checks if the env_config json file is present and accessible
// If the file is missing or unable to access, then an error will be thrown
func EnvConfigValidator() error {
execName, execErr := os.Executable()
cwd := filepath.Dir(execName)
if execErr != nil {
localLogger(execErr.Error(), global.StatusError)
return execErr
}
fileString := cwd + "/" + global.EnvFileName
_, openErr := os.Open(fileString)
if openErr != nil {
localLogger(openErr.Error(), global.StatusError)
return openErr
} else {
if envContent := EnvConfigFileReader(); envContent == nil {
localLogger("Unable to read env file", global.StatusError)
return types.Error{Msg: "Invalid content in env_config file"}
}
}
return nil
}
// EnvConfigFileReader reads the env_config json file and returns the config data as a struct
func EnvConfigFileReader() *EnvConfig {
execName, execErr := os.Executable()
cwd := filepath.Dir(execName)
if execErr != nil {
localLogger(execErr.Error(), global.StatusError)
return nil
}
fileString := cwd + "/" + global.EnvFileName
envFile, err := os.Open(fileString)
var envConfig *EnvConfig
if err != nil {
localLogger(err.Error(), global.StatusError)
return nil
} else {
if fileContent, openErr := ioutil.ReadAll(envFile); openErr == nil {
unMarshallErr := json.Unmarshal(fileContent, &envConfig)
if unMarshallErr == nil {
return envConfig
} else {
localLogger(unMarshallErr.Error(), global.StatusError)
return nil
}
}
}
return nil
}
// EnvConfigFileGenerator will be invoked when the EnvConfigValidator returns an error or if EnvConfigFileReader returns no data
// The function generates a new env_config.json file and populates it with the default config data
func EnvConfigFileGenerator() error {
execName, execErr := os.Executable()
cwd := filepath.Dir(execName)
if execErr != nil {
localLogger(execErr.Error(), global.StatusError)
return types.Error{Msg: execErr.Error()}
}
fileString := cwd + "/" + global.EnvFileName
envContent, _ := json.MarshalIndent(&EnvConfig{
DataBaseFile: cwd + "/" + global.DatabaseFilePath,
Port: global.DefaultPort,
}, "", " ")
return ioutil.WriteFile(fileString, envContent, 0755)
}