-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
96 lines (77 loc) · 1.83 KB
/
main.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
package main
import (
"flag"
"log"
"os"
"time"
)
func main() {
var runWizard bool
//KB, MB
//debug.SetMemoryLimit(1024 * 1024 * 100)
//Launch arguments
flag.StringVar(&configPath, "configPath", defaultConfigPath, "config file path")
var makeConfig bool
flag.BoolVar(&makeConfig, "makeConfig", false, "make a default config file")
flag.BoolVar(&runWizard, "runWizard", false, "run the setup wizard")
var forceFetch bool
flag.BoolVar(&forceFetch, "forceFetch", false, "force startup fetching ban lists from remotes")
var verboseLogging bool
flag.BoolVar(&verboseLogging, "verboseLogging", false, "force enable verbose logging")
flag.Parse()
//Make config file if requested
if makeConfig {
makeDefaultConfigFile()
return
}
if runWizard {
setupWizard()
return
}
readConfigFile()
if verboseLogging {
serverConfig.ServerPrefs.VerboseLogging = true
}
writeConfigFile() //Clean up
//Logging
startLog()
log.Printf("FactBanSync v%v\n", ProgVersion)
//Read banlist
if serverConfig.PathData.FactorioBanFile != "" {
readServerBanList()
}
readServerListFile()
readBanCache()
//Fetch if we don't have anything
if len(serverList.ServerList) == 0 || forceFetch {
updateServerList()
fetchBanLists()
}
readServerBanList()
compositeBans()
updateWebCache()
startWebserver()
go func() {
for {
time.Sleep(time.Second * 5)
initialStat, erra := os.Stat(serverConfig.WebServer.SSLCertFile)
if erra != nil {
continue
}
for initialStat != nil {
time.Sleep(time.Second * 5)
stat, errb := os.Stat(serverConfig.WebServer.SSLCertFile)
if errb != nil {
break
}
if stat.Size() != initialStat.Size() || stat.ModTime() != initialStat.ModTime() {
log.Println("Cert updated, closing.")
time.Sleep(time.Second * 5)
os.Exit(0)
break
}
}
}
}()
mainLoop()
}