-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweb-serv.go
237 lines (198 loc) · 5.87 KB
/
web-serv.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
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
package main
import (
"bytes"
"crypto/tls"
"encoding/json"
"fmt"
"log"
"net/http"
"os"
"strconv"
"strings"
"time"
)
func startWebserver() {
//Run a webserver, if requested
exit := false
if serverConfig.WebServer.RunWebServer {
if serverConfig.PathData.FactorioBanFile == "" {
log.Println("No factorio banlist file specified in config file")
exit = true
}
if serverConfig.WebServer.SSLCertFile == "" || serverConfig.WebServer.SSLKeyFile == "" {
log.Println("No SSL certificate or key file specified in config file")
exit = true
}
if serverConfig.WebServer.DomainName == "" {
log.Println("No domain name specified in config file")
exit = true
}
if !exit {
http.HandleFunc("/", handleFileRequest)
server := &http.Server{
Addr: serverConfig.WebServer.DomainName + ":" + strconv.Itoa(serverConfig.WebServer.SSLWebPort),
ReadTimeout: 5 * time.Second,
WriteTimeout: 5 * time.Second,
TLSConfig: &tls.Config{ServerName: serverConfig.WebServer.DomainName},
}
go func(sc serverConfigData, serv *http.Server) {
err := serv.ListenAndServeTLS(sc.WebServer.SSLCertFile, sc.WebServer.SSLKeyFile)
if err != nil {
log.Println(err)
}
}(serverConfig, server)
if serverConfig.ServerPrefs.VerboseLogging {
log.Println("Web server started:")
log.Printf("https://%s:%d/%s.gz\n", serverConfig.WebServer.DomainName, serverConfig.WebServer.SSLWebPort, defaultFileWebName)
log.Printf("https://%s:%d/%s\n", serverConfig.WebServer.DomainName, serverConfig.WebServer.SSLWebPort, defaultFileWebName)
}
} else {
log.Println("Web server not started.")
}
}
}
// Web server
func handleFileRequest(w http.ResponseWriter, r *http.Request) {
//Limit requests per second
delay := 1000000 / serverConfig.WebServer.MaxRequestsPerSecond
if delay < 1 {
delay = 1
}
defer time.Sleep(time.Duration(delay) * time.Microsecond)
//Ban list: Cached gzip copy
if r.URL.Path == "/" || r.URL.Path == "" {
if cachedWelcome == nil {
noDataReply(w)
return
}
w.WriteHeader(http.StatusOK)
w.Header().Set("Content-Type", "application/json")
cachedBanListLock.Lock()
w.Write(cachedWelcome)
cachedBanListLock.Unlock()
} else if r.URL.Path == "/"+defaultFileWebName+".gz" {
if cachedBanListGz == nil {
noDataReply(w)
}
w.WriteHeader(http.StatusOK)
w.Header().Set("Content-Type", "gzip")
cachedBanListLock.Lock()
w.Write(cachedBanListGz)
cachedBanListLock.Unlock()
//Ban list: Cached copy
} else if r.URL.Path == "/"+defaultFileWebName {
if cachedBanList == nil {
noDataReply(w)
return
}
w.WriteHeader(http.StatusOK)
w.Header().Set("Content-Type", "application/json")
cachedBanListLock.Lock()
w.Write(cachedBanList)
cachedBanListLock.Unlock()
//Composite: Cached gzip copy
} else if r.URL.Path == "/"+defaultCompositeName+".gz" {
if cachedCompositeGz == nil {
noDataReply(w)
}
w.WriteHeader(http.StatusOK)
w.Header().Set("Content-Type", "gzip")
cachedBanListLock.Lock()
w.Write(cachedCompositeGz)
cachedBanListLock.Unlock()
//Composite: Cached copy
} else if r.URL.Path == "/"+defaultCompositeName {
if cachedCompositeList == nil {
noDataReply(w)
return
}
w.WriteHeader(http.StatusOK)
w.Header().Set("Content-Type", "application/json")
cachedBanListLock.Lock()
w.Write(cachedCompositeList)
cachedBanListLock.Unlock()
} else {
//Not found
w.WriteHeader(http.StatusNotFound)
w.Header().Set("Content-Type", "text/plain; charset=utf-8") // normal header
fmt.Fprintf(w, "404: File not found\n")
}
}
func noDataReply(w http.ResponseWriter) {
w.WriteHeader(http.StatusOK)
w.Header().Set("Content-Type", "text/plain; charset=utf-8") // normal header
fmt.Fprintf(w, "No data\n")
}
// Read list of servers from file
func readWelcome() {
file, err := os.ReadFile(defaultWelcomeFile)
//Read server list file if it exists
if file != nil && !os.IsNotExist(err) {
cachedWelcome = file
} else {
log.Println("readWelcome: ", err)
}
}
func updateWebCache() {
readWelcome()
//Our ban list
var localCopy []banDataType
for _, item := range ourBanData {
if item.UserName != "" {
var name, reason string
name = item.UserName
if !serverConfig.ServerPrefs.StripReasons {
reason = item.Reason
}
localCopy = append(localCopy, banDataType{UserName: strings.ToLower(name), Reason: reason})
}
}
outbuf := new(bytes.Buffer)
enc := json.NewEncoder(outbuf)
enc.SetIndent("", "\t")
err := enc.Encode(localCopy)
if err != nil {
log.Println("Error encoding ban list for web: " + err.Error())
os.Exit(1)
}
//Cache a normal and gzip version of the ban list
if serverConfig.WebServer.RunWebServer {
cachedBanListLock.Lock()
cachedBanList = outbuf.Bytes()
cachedBanListGz = compressGzip(outbuf.Bytes())
if serverConfig.ServerPrefs.VerboseLogging {
log.Printf("Cached response: json: %v gz: %v (bytes)\n", len(cachedBanList), len(cachedBanListGz))
}
cachedBanListLock.Unlock()
}
//Composite ban list
localCopy = []banDataType{} //Clear
for _, item := range compositeBanData {
if item.UserName != "" {
var name, reason string
name = item.UserName
if !serverConfig.ServerPrefs.StripReasons {
reason = item.Reason
}
localCopy = append(localCopy, banDataType{UserName: strings.ToLower(name), Reason: reason})
}
}
outbuf = new(bytes.Buffer)
enc = json.NewEncoder(outbuf)
enc.SetIndent("", "\t")
err = enc.Encode(localCopy)
if err != nil {
log.Println("Error encoding composite list for web: " + err.Error())
os.Exit(1)
}
//Cache a normal and gzip version of the ban list
if serverConfig.WebServer.RunWebServer {
cachedBanListLock.Lock()
cachedCompositeList = outbuf.Bytes()
cachedCompositeGz = compressGzip(outbuf.Bytes())
if serverConfig.ServerPrefs.VerboseLogging {
log.Printf("Cached response: json: %v gz: %v (bytes)\n", len(cachedCompositeList), len(cachedCompositeGz))
}
cachedBanListLock.Unlock()
}
}