-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconf.go
83 lines (68 loc) · 1.3 KB
/
conf.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
package main
import (
"encoding/json"
"fmt"
"os"
"bufio"
"runtime"
)
type Configuration struct {
PlotlyAPIToken string
PlotlySecret string
Frequency int
Pathw1 string
ServerPort int
StartServices bool
Log bool
ConfPath string
City string
LocalDescription string
OS string
}
func (conf *Configuration) Open(FileName string) bool {
if FileName=="" {
FileName = conf.ConfPath+"conf.json"
}
fmt.Println(FileName)
file, err := os.Open(FileName)
if err != nil {
return false
}
conf.StartServices = false
conf.ServerPort = 80
conf.Frequency = 3
decoder := json.NewDecoder(file)
err1 := decoder.Decode(&conf)
if err1 != nil {
if conf.Log {
fmt.Println("error reading conf file:", err)
}
}
if conf.Frequency == 0 {
conf.Frequency = 1
}
conf.OS = runtime.GOOS+" "+runtime.GOARCH
if conf.Log {
fmt.Println(conf)
}
return true
}
func (conf *Configuration) DefaultPath() string {
file, err := os.Open("/etc/weather.station")
if err != nil {
return ""
}
var lines []string
scanner := bufio.NewScanner(file)
for scanner.Scan() {
lines = append(lines, scanner.Text())
fmt.Println(lines)
}
if len(lines)>0 {
conf.ConfPath = lines[0] + "/"
} else {
conf.ConfPath = ""
}
file.Close()
return conf.ConfPath
}