-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.go
219 lines (193 loc) · 6.33 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
package main
import (
"flag"
"fmt"
"log"
"net/http"
"os"
"path/filepath"
"sort"
"strings"
"text/template"
_ "github.com/go-sql-driver/mysql"
)
const siremisVersion = "25.0.0"
// CLIOptions - structure for command line options
type GMCLIOptions struct {
config string
domain string
httpsrv string
httpssrv string
httpsusele bool
httpspubkey string
httpsprvkey string
version bool
}
var GMCLIOptionsV = GMCLIOptions{
config: "etc/siremis-config.json",
domain: "",
httpsrv: "127.0.0.1:8284",
httpssrv: "",
httpsusele: false,
httpspubkey: "",
httpsprvkey: "",
version: false,
}
var GMTemplatesV *template.Template = nil
func startHTTPServices() chan error {
errchan := make(chan error)
// starting HTTP server
if len(GMCLIOptionsV.httpsrv) > 0 {
go func() {
if len(GMConfigV.URLDir) > 0 {
log.Printf("staring HTTP service on: http://%s%s ...",
GMCLIOptionsV.httpsrv, GMConfigV.URLDir)
} else {
log.Printf("staring HTTP service on: http://%s ...", GMCLIOptionsV.httpsrv)
}
if err := http.ListenAndServe(GMCLIOptionsV.httpsrv, nil); err != nil {
errchan <- err
}
}()
}
// starting HTTPS server
if len(GMCLIOptionsV.httpssrv) > 0 && len(GMCLIOptionsV.httpspubkey) > 0 && len(GMCLIOptionsV.httpsprvkey) > 0 {
go func() {
if len(GMConfigV.URLDir) > 0 {
log.Printf("Staring HTTPS service on: https://%s%s ...", GMCLIOptionsV.httpssrv, GMConfigV.URLDir)
} else {
log.Printf("Staring HTTPS service on: https://%s ...", GMCLIOptionsV.httpssrv)
}
if len(GMCLIOptionsV.domain) > 0 {
dtoken := strings.Split(strings.TrimSpace(GMCLIOptionsV.httpssrv), ":")
if len(GMConfigV.URLDir) > 0 {
log.Printf("HTTPS with domain: https://%s:%s%s ...", GMCLIOptionsV.domain, dtoken[1], GMConfigV.URLDir)
} else {
log.Printf("HTTPS with domain: https://%s:%s ...", GMCLIOptionsV.domain, dtoken[1])
}
}
if err := http.ListenAndServeTLS(GMCLIOptionsV.httpssrv, GMCLIOptionsV.httpspubkey, GMCLIOptionsV.httpsprvkey, nil); err != nil {
errchan <- err
}
}()
}
return errchan
}
func printCLIOptions() {
type CLIOptionDef struct {
Ops []string
Usage string
DefValue string
VType string
}
var items []CLIOptionDef
flag.VisitAll(func(f *flag.Flag) {
var found bool = false
for idx, it := range items {
if it.Usage == f.Usage {
found = true
it.Ops = append(it.Ops, f.Name)
items[idx] = it
}
}
if !found {
items = append(items, CLIOptionDef{
Ops: []string{f.Name},
Usage: f.Usage,
DefValue: f.DefValue,
VType: fmt.Sprintf("%T", f.Value),
})
}
})
sort.Slice(items, func(i, j int) bool {
return strings.ToLower(items[i].Ops[0]) <
strings.ToLower(items[j].Ops[0])
})
for _, val := range items {
vtype := val.VType[6 : len(val.VType)-5]
if vtype[len(vtype)-2:] == "64" {
vtype = vtype[:len(vtype)-2]
}
for _, opt := range val.Ops {
if vtype == "bool" {
fmt.Printf(" -%s\n", opt)
} else {
fmt.Printf(" -%s %s\n", opt, vtype)
}
}
if vtype != "bool" && len(val.DefValue) > 0 {
fmt.Printf(" %s [default: %s]\n", val.Usage, val.DefValue)
} else {
fmt.Printf(" %s\n", val.Usage)
}
}
}
// initialize application components
func init() {
// command line arguments
flag.Usage = func() {
fmt.Fprintf(os.Stderr, "Usage of %s (v%s):\n", filepath.Base(os.Args[0]), siremisVersion)
printCLIOptions()
fmt.Fprintf(os.Stderr, "\n")
os.Exit(1)
}
flag.StringVar(&GMCLIOptionsV.config, "config", GMCLIOptionsV.config, "path to json config file")
flag.StringVar(&GMCLIOptionsV.domain, "domain", GMCLIOptionsV.domain, "http service domain")
flag.StringVar(&GMCLIOptionsV.httpsrv, "http-srv", GMCLIOptionsV.httpsrv, "http server bind address")
flag.StringVar(&GMCLIOptionsV.httpssrv, "https-srv", GMCLIOptionsV.httpssrv, "https server bind address")
flag.StringVar(&GMCLIOptionsV.httpspubkey, "https-pubkey", GMCLIOptionsV.httpspubkey, "https server public key")
flag.StringVar(&GMCLIOptionsV.httpsprvkey, "https-prvkey", GMCLIOptionsV.httpsprvkey, "https server private key")
flag.BoolVar(&GMCLIOptionsV.httpsusele, "use-letsencrypt", GMCLIOptionsV.httpsusele,
"use local letsencrypt certificates (requires domain)")
flag.BoolVar(&GMCLIOptionsV.version, "version", GMCLIOptionsV.version, "print version")
}
func main() {
flag.Parse()
log.SetFlags(log.LstdFlags | log.Lshortfile)
if GMCLIOptionsV.httpsusele && len(GMCLIOptionsV.domain) == 0 {
log.Printf("use-letsencrypt requires domain parameter\n")
os.Exit(1)
}
GMConfigLoad()
if _, err := os.Stat(GMConfigV.PublicDir); os.IsNotExist(err) {
log.Printf("%s folder cannot be found\n", GMConfigV.PublicDir)
os.Exit(1)
}
if GMCLIOptionsV.httpsusele && len(GMCLIOptionsV.httpssrv) > 0 && len(GMCLIOptionsV.domain) > 0 {
GMCLIOptionsV.httpspubkey = "/etc/letsencrypt/live/" + GMCLIOptionsV.domain + "/fullchain.pem"
GMCLIOptionsV.httpsprvkey = "/etc/letsencrypt/live/" + GMCLIOptionsV.domain + "/privkey.pem"
}
GMFuncMap["HA1"] = GMFuncHA1
GMFuncMap["HA1B"] = GMFuncHA1B
GMFuncMap["DateTimeNow"] = GMFuncDateTimeNow
GMFuncMap["Float2D"] = GMFuncFloat2D
GMFuncMap["ListBitFlags"] = GMFuncListBitFlags
GMFuncMap["TimeStampUTCDate"] = GMFuncTimeStampUTCDate
GMFuncMap["DBColumnValues"] = GMFuncDBColumnValues
GMFuncMap["ParamValues"] = GMFuncParamValues
GMFuncMap["ParamVN"] = GMFuncParamVN
GMTemplatesV = template.Must(template.New("").Funcs(template.FuncMap{
"rowon": GMTemplateFuncRowOn,
"rowstart": GMTemplateFuncRowStart,
"rowend": GMTemplateFuncRowEnd,
"add": GMTemplateFuncAdd,
"sub": GMTemplateFuncSub,
"mod": GMTemplateFuncMod,
"modx": GMTemplateFuncModX,
"loop": GMTemplateFuncLoop,
"lastloop": GMTemplateFuncLastLoop,
"lastindex": GMTemplateFuncLastIndex,
}).ParseGlob(GMConfigV.TemplatesDir + "/*"))
if len(GMConfigV.PublicDir) > 0 && len(GMConfigV.PublicDirWebPath) > 0 {
http.Handle(GMConfigV.URLDir+"/"+GMConfigV.PublicDir+"/",
http.StripPrefix(strings.TrimRight(GMConfigV.URLDir+"/"+GMConfigV.PublicDir+"/", "/"),
http.FileServer(http.Dir(GMConfigV.PublicDirWebPath))))
}
http.HandleFunc("/", GMRequestHandler)
// http.HandleFunc("/show", Show)
// http.ListenAndServe(":8284", nil)
errchan := startHTTPServices()
errx := <-errchan
log.Printf("unable to start http services due to (error: %v)", errx)
os.Exit(1)
}