-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathgeneral.go
380 lines (308 loc) · 9.37 KB
/
general.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
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
package main
import (
"database/sql"
"fmt"
"io/ioutil"
"log"
"net/http"
"os"
"regexp"
"strings"
"time"
auth "github.com/abbot/go-http-auth"
_ "github.com/go-sql-driver/mysql"
"github.com/vaughan0/go-ini"
)
func exitWithMessage(message string) {
fmt.Println(message)
time.Sleep(time.Second * 3)
os.Exit(0)
}
func loadSqlQueries() map[string]string {
var err error
var queries map[string]string
var deleteStubsQuery, deleteLowQualityTreesQuery []byte
queries = make(map[string]string)
deleteStubsQuery, err = ioutil.ReadFile("sql" + pathSeparator + "deleteStubs.sql")
checkError(err, "Error in loading sql file")
deleteLowQualityTreesQuery, err = ioutil.ReadFile("sql" + pathSeparator + "deleteLowQualityTrees.sql")
checkError(err, "Error in loading sql file")
queries["delete-stubs"] = string(deleteStubsQuery)
queries["delete-trees"] = string(deleteLowQualityTreesQuery)
return queries
}
func loadConfiguration() map[string]map[string]string {
new_config := make(map[string]map[string]string)
iniFile, err := ini.LoadFile("lifds-cp.ini")
if err != nil {
exitWithMessage("Can't read configuration from lifds-cp.ini file.")
}
new_config["lifds"] = iniFile.Section("lifds")
new_config["control-panel"] = iniFile.Section("control-panel")
new_config["lifds"]["db-host"] = ""
switch {
case new_config["lifds"] == nil:
case new_config["lifds"]["lifds-directory"] == "":
case new_config["lifds"]["wine-executable"] == "":
case new_config["lifds"]["world-id"] == "":
case new_config["control-panel"] == nil:
case new_config["control-panel"]["port"] == "":
case new_config["control-panel"]["address"] == "":
case new_config["control-panel"]["server-up-at-start"] == "":
exitWithMessage("Broken configuration in lifds-cp.ini file.")
case new_config["control-panel"]["online-statistics"] == "":
new_config["control-panel"]["online-statistics"] = "off"
}
if new_config["lifds"]["lifds-exe-file-name"] == "" {
exeFileName = "ddctd_cm_yo_server.exe"
} else {
exeFileName = new_config["lifds"]["lifds-exe-file-name"]
}
if new_config["lifds"]["wine-executable"] == "" {
wineExePath = "/usr/bin/wine64"
} else {
wineExePath = new_config["lifds"]["wine-executable"]
}
exePath = new_config["lifds"]["lifds-directory"] + pathSeparator + exeFileName
worldCfgPath = new_config["lifds"]["lifds-directory"] + pathSeparator + "config" + pathSeparator + "world_" + new_config["lifds"]["world-id"] + ".xml"
worldCfgContentsBuff, err := ioutil.ReadFile(worldCfgPath)
worldCfgContents = string(worldCfgContentsBuff)
localCfgPath = new_config["lifds"]["lifds-directory"] + pathSeparator + "config_local.cs"
localCfgFile, err := ini.LoadFile(localCfgPath)
dirtyDbHost, ok := localCfgFile.Get("", "$cm_config::DB::Connect::server")
if ok == false {
dirtyDbHost = ""
}
dirtyDbUser, ok := localCfgFile.Get("", "$cm_config::DB::Connect::user")
if ok == false {
dirtyDbUser = ""
}
dirtyDbPassword, ok := localCfgFile.Get("", "$cm_config::DB::Connect::password")
if ok == false {
dirtyDbPassword = ""
}
dbHost := getCleanLocalCfgValue(dirtyDbHost)
dbUser := getCleanLocalCfgValue(dirtyDbUser)
dbPassword := getCleanLocalCfgValue(dirtyDbPassword)
if !strings.Contains(dbHost, ":") {
dbHost = dbHost + ":3306"
}
new_config["lifds"]["db-host"] = dbHost
new_config["lifds"]["db-user"] = dbUser
new_config["lifds"]["db-password"] = dbPassword
if err != nil {
log.Printf("Can't open config file \"%s\"", worldCfgPath)
}
return new_config
}
func runControlServer() {
authenticator := auth.NewBasicAuthenticator("localhost", Secret)
http.HandleFunc("/server", authenticator.Wrap(ServerActionsHandler))
http.HandleFunc("/server/status", authenticator.Wrap(ServerStatusHandler))
http.Handle("/index.html", authenticator.Wrap(indexHandler))
http.Handle("/", http.FileServer(http.Dir("."+pathSeparator+"html")))
http.ListenAndServe(config["control-panel"]["address"]+":"+config["control-panel"]["port"], nil)
}
func actionSqlExec(action string) {
queryParts := strings.Split(sqls[action], "//")
for _, queryPart := range queryParts {
result, err := dbConn.Exec(queryPart)
checkError(err, "Error on action query: "+action)
log.Printf("Action %v query result: %v", action, result)
}
}
func processClientAction(clientAction string, w http.ResponseWriter, params map[string]string) {
switch clientAction {
case "start":
serverStartAction(w, params)
break
case "stop":
serverStopAction(w, params)
break
case "restart":
serverRestartAction(w, params)
break
case "delete-trees":
//actionSqlExec(clientAction)
fmt.Fprint(w, "success")
break
case "delete-stubs":
//actionSqlExec(clientAction)
fmt.Fprint(w, "success")
break
case "get-online-characters":
getOnlineCharactersListAction(w)
break
case "get-character-death-log":
getCharacterDeathLogAction(w, params)
break
case "get-character-online-history":
getCharacterOnlineHistoryAction(w, params)
break
case "get-character-skills":
getCharacterSkillsAction(w, params)
break
case "get-active-accounts":
getActiveAccountsAction(w, params)
break
case "get-banned-accounts":
getBannedAccountsAction(w, params)
break
default:
log.Print("Wrong server action received")
fmt.Fprint(w, "fail")
}
}
func isTransitState() bool {
var isTransitState bool
if strings.Contains(gameSrvStatus, "GETTING") {
isTransitState = true
} else {
isTransitState = true
}
return isTransitState
}
func getStatusResponse(debug bool) string {
return fmt.Sprintf(
responseBaseStr,
debug,
gameSrvStatus,
currentSrvVersion,
availableSrvVersion,
topicVersion,
config["control-panel"]["online-statistics"] == "on")
}
func getAdminPassword() string {
cpPassword := config["control-panel"]["password"]
if cpPassword != "" {
return cpPassword
}
compiled, _ := regexp.Compile("<adminPassword>([^<]*)</adminPassword>")
matches := compiled.FindStringSubmatch(worldCfgContents)
if len(matches) > 1 {
return matches[1]
} else {
return "password"
}
}
func getCleanLocalCfgValue(dirtyValue string) string {
compiled, _ := regexp.Compile("\"([^\"]*)\"")
matches := compiled.FindStringSubmatch(dirtyValue)
if len(matches) > 1 {
return matches[1]
} else {
return ""
}
}
func Secret(user, realm string) string {
a := auth.MD5Crypt([]byte(adminPassword), []byte("gjnjVexnjNfr"), []byte("$1$"))
return string(a)
}
func initDbConnection() {
var err error
connectStr := fmt.Sprintf(
"%v:%v@tcp(%v)/lif_%v?charset=utf8&parseTime=true",
config["lifds"]["db-user"],
config["lifds"]["db-password"],
config["lifds"]["db-host"],
config["lifds"]["world-id"])
fmt.Println(connectStr)
dbConn, err = sql.Open("mysql", connectStr)
checkError(err, "MySQL connection failed")
dbConn.SetMaxIdleConns(3)
dbConn.SetMaxOpenConns(9)
go ensureDbExists()
}
func ensureDbExists() {
for {
_, err := dbConn.Exec(fmt.Sprintf("use lif_%v", config["lifds"]["world-id"]))
if err == nil {
dbExists = true
break
}
time.Sleep(time.Second * 5)
}
}
func fillDbData() {
fillCharacters()
fillAccounts()
}
func checkError(err error, message string) bool {
if err != nil {
log.Printf(message+": %v", err)
return true
}
return false
}
func createCsFile(fileName string) {
csContent, err := ioutil.ReadFile("cs" + pathSeparator + fileName)
if checkError(err, fmt.Sprintf("Error on getting %s content", fileName)) {
return
}
f, err := os.OpenFile(config["lifds"]["lifds-directory"]+pathSeparator+fileName, os.O_CREATE|os.O_WRONLY, 0644)
if err != nil {
log.Println("Error in creating file: ", err)
return
}
defer f.Close()
_, err = f.Write(csContent)
if err != nil {
log.Println("Error in file writing:", err)
return
}
fmt.Printf("File %s successfully written", fileName)
}
func includeCsFile(fileName string) {
if checkIfIncludeNeeded(fileName) == false {
return
}
writeCsInclude(fileName)
}
func checkIfIncludeNeeded(fileName string) bool {
mainCsContent, err := ioutil.ReadFile(config["lifds"]["lifds-directory"] + pathSeparator + "main.cs")
if err != nil {
log.Println("Error on getting main.cs content:", err)
}
compiled, _ := regexp.Compile("exec[(]\"" + fileName + "\"[)];")
matches := compiled.FindStringSubmatch(string(mainCsContent))
if len(matches) > 0 {
return false
} else {
return true
}
}
func writeCsInclude(fileName string) {
f, err := os.OpenFile(config["lifds"]["lifds-directory"]+pathSeparator+"main.cs", os.O_APPEND|os.O_WRONLY, 0644)
if err != nil {
log.Println("Error in creating file: ", err)
return
}
defer f.Close()
_, err = f.WriteString("\r\nexec(\"" + fileName + "\");")
if err != nil {
log.Println("Error in writing main.cs file:", err)
return
}
fmt.Printf("File %s successfully included in main.cs", fileName)
}
func excludeCs(fileName string) {
if checkIfIncludeNeeded(fileName) == false {
writeCsExclude(fileName)
}
}
func writeCsExclude(fileName string) {
mainCsFilePath := config["lifds"]["lifds-directory"] + pathSeparator + "main.cs"
mainCsFileContent, err := ioutil.ReadFile(mainCsFilePath)
if err != nil {
log.Println("Error in reading main.cs file: ", err)
return
}
cleanedContent := strings.Replace(string(mainCsFileContent), "\r\nexec(\""+fileName+"\");", "", -1)
log.Printf("Excluding %v from main.cs", fileName)
err = ioutil.WriteFile(mainCsFilePath, []byte(cleanedContent), 0644)
if err != nil {
log.Println("Error in writing main.cs file:", err)
return
}
fmt.Printf("File %s successfully excluded from main.cs", fileName)
}