-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathdb_file_reader.go
38 lines (33 loc) · 1004 Bytes
/
db_file_reader.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
package utils
import (
"encoding/json"
"github.com/neel1996/gitconvex-server/global"
"io/ioutil"
)
type RepoData struct {
RepoId string `json:"id"`
RepoName string `json:"repoName"`
RepoPath string `json:"repoPath"`
TimeStamp string `json:"timestamp"`
AuthOption string `json:"authOption"`
UserName string `json:"userName"`
Password string `json:"password"`
SSHKeyPath string `json:"sshKeyPath"`
}
// DataStoreFileReader reads the database json file tracking the stored repos and returns the data as a struct
func DataStoreFileReader() []RepoData {
logger := global.Logger{}
envConfig := EnvConfigFileReader()
dbFile := envConfig.DataBaseFile
dbFileContent, err := ioutil.ReadFile(dbFile)
if err != nil {
logger.Log(err.Error(), global.StatusError)
} else {
var repoData []RepoData
if unmarshallErr := json.Unmarshal(dbFileContent, &repoData); unmarshallErr != nil {
logger.Log(unmarshallErr.Error(), global.StatusError)
}
return repoData
}
return nil
}