DispatchServer.java 22.5 KB
Newer Older
Melledy's avatar
Melledy committed
1
2
3
4
5
6
7
8
9
10
11
package emu.grasscutter.server.dispatch;

import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.OutputStream;
import java.io.UnsupportedEncodingException;
import java.net.InetSocketAddress;
import java.net.URI;
import java.net.URLDecoder;
import java.security.KeyStore;
12
import java.util.*;
Melledy's avatar
Melledy committed
13
14
15
16
17
18
19
20
21
22
23
24

import javax.net.ssl.KeyManagerFactory;
import javax.net.ssl.SSLContext;

import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
import com.google.protobuf.ByteString;
import com.sun.net.httpserver.HttpExchange;
import com.sun.net.httpserver.HttpHandler;
import com.sun.net.httpserver.HttpsConfigurator;
import com.sun.net.httpserver.HttpsServer;

25
import emu.grasscutter.Config;
Melledy's avatar
Melledy committed
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
import emu.grasscutter.Grasscutter;
import emu.grasscutter.database.DatabaseHelper;
import emu.grasscutter.game.Account;
import emu.grasscutter.net.proto.QueryCurrRegionHttpRspOuterClass.QueryCurrRegionHttpRsp;
import emu.grasscutter.net.proto.QueryRegionListHttpRspOuterClass.QueryRegionListHttpRsp;
import emu.grasscutter.net.proto.RegionInfoOuterClass.RegionInfo;
import emu.grasscutter.net.proto.RegionSimpleInfoOuterClass.RegionSimpleInfo;
import emu.grasscutter.server.dispatch.json.ComboTokenReqJson;
import emu.grasscutter.server.dispatch.json.ComboTokenResJson;
import emu.grasscutter.server.dispatch.json.LoginAccountRequestJson;
import emu.grasscutter.server.dispatch.json.LoginResultJson;
import emu.grasscutter.server.dispatch.json.LoginTokenRequestJson;
import emu.grasscutter.server.dispatch.json.ComboTokenReqJson.LoginTokenData;
import emu.grasscutter.utils.FileUtils;
import emu.grasscutter.utils.Utils;

import com.sun.net.httpserver.HttpServer;

KingRainbow44's avatar
KingRainbow44 committed
44
public final class DispatchServer {
Melledy's avatar
Melledy committed
45
46
	private final InetSocketAddress address;
	private final Gson gson;
47
	//private QueryCurrRegionHttpRsp currRegion;
Melledy's avatar
Melledy committed
48
49
	
	public String regionListBase64;
50
51
52
	public HashMap<String, RegionData> regions;
	public HashMap<InetSocketAddress, String> usersIngame;

Melledy's avatar
Melledy committed
53
54
	public static String query_region_list = "";
	public static String query_cur_region = "";
55

Melledy's avatar
Melledy committed
56
	public DispatchServer() {
57
58
		this.regions = new HashMap<String, RegionData>();
		this.usersIngame = new HashMap<InetSocketAddress, String>();
59
		this.address = new InetSocketAddress(Grasscutter.getConfig().getDispatchOptions().Ip, Grasscutter.getConfig().getDispatchOptions().Port);
Melledy's avatar
Melledy committed
60
61
62
63
64
65
66
67
68
69
70
71
72
73
		this.gson = new GsonBuilder().create();
		
		this.loadQueries();
		this.initRegion();
	}
	
	public InetSocketAddress getAddress() {
		return address;
	}
	
	public Gson getGsonFactory() {
		return gson;
	}

74
75
76
77
78
79
80
	public QueryCurrRegionHttpRsp getCurrRegion(InetSocketAddress address) {
		if(usersIngame.containsKey(address)) {
			return regions.get(usersIngame.get(address)).parsedRegionQuery;
		}

		Grasscutter.getLogger().error("User is not logged in to dispatch server. " + address.getAddress() + ":" + address.getPort());
		return null;
Melledy's avatar
Melledy committed
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
	}
	
	public void loadQueries() {
		File file;
		
		file = new File(Grasscutter.getConfig().DATA_FOLDER + "query_region_list.txt");
		if (file.exists()) {
			query_region_list = new String(FileUtils.read(file));
		} else {
			Grasscutter.getLogger().warn("query_region_list not found! Using default region list.");
		}
	
		file = new File(Grasscutter.getConfig().DATA_FOLDER + "query_cur_region.txt");
		if (file.exists()) {
			query_cur_region = new String(FileUtils.read(file));
		} else {
			Grasscutter.getLogger().warn("query_cur_region not found! Using default current region.");
		}
	}

	private void initRegion() {
		try {
			byte[] decoded = Base64.getDecoder().decode(query_region_list);
			QueryRegionListHttpRsp rl = QueryRegionListHttpRsp.parseFrom(decoded);
			
			byte[] decoded2 = Base64.getDecoder().decode(query_cur_region);
			QueryCurrRegionHttpRsp regionQuery = QueryCurrRegionHttpRsp.parseFrom(decoded2);
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
			List<RegionSimpleInfo> servers = new ArrayList<RegionSimpleInfo>();
			List<String> usedNames = new ArrayList<String>(); // List to check for potential naming conflicts
			if(Grasscutter.getConfig().RunMode.equalsIgnoreCase("HYBRID")) { // Automatically add the game server if in hybrid mode
				String defaultServerName = "os_usa";
				RegionSimpleInfo server = RegionSimpleInfo.newBuilder()
						.setName("os_usa")
						.setTitle(Grasscutter.getConfig().getGameServerOptions().Name)
						.setType("DEV_PUBLIC")
						.setDispatchUrl("https://" + (Grasscutter.getConfig().getDispatchOptions().PublicIp.isEmpty() ? Grasscutter.getConfig().getDispatchOptions().Ip : Grasscutter.getConfig().getDispatchOptions().PublicIp) + ":" + getAddress().getPort() + "/query_cur_region_" + defaultServerName)
						.build();
				usedNames.add(defaultServerName);
				servers.add(server);

				RegionInfo serverRegion = regionQuery.getRegionInfo().toBuilder()
						.setIp((Grasscutter.getConfig().getGameServerOptions().PublicIp.isEmpty() ? Grasscutter.getConfig().getGameServerOptions().Ip : Grasscutter.getConfig().getGameServerOptions().PublicIp))
						.setPort(Grasscutter.getConfig().getGameServerOptions().Port)
						.setSecretKey(ByteString.copyFrom(FileUtils.read(Grasscutter.getConfig().KEY_FOLDER + "dispatchSeed.bin")))
						.build();

				QueryCurrRegionHttpRsp parsedRegionQuery = regionQuery.toBuilder().setRegionInfo(serverRegion).build();
				regions.put(defaultServerName, new RegionData(parsedRegionQuery, Base64.getEncoder().encodeToString(parsedRegionQuery.toByteString().toByteArray())));

			} else {
				if(Grasscutter.getConfig().getDispatchOptions().getGameServers().length == 0) {
					Grasscutter.getLogger().error("Dispatch server has no game servers available. Exiting due to unplayable state.");
					System.exit(1);
				}
			}

			for (Config.DispatchServerOptions.RegionInfo regionInfo : Grasscutter.getConfig().getDispatchOptions().getGameServers()) {
				if(usedNames.contains(regionInfo.Name)) {
					Grasscutter.getLogger().error("Region name already in use.");
					continue;
				}
				RegionSimpleInfo server = RegionSimpleInfo.newBuilder()
						.setName(regionInfo.Name)
						.setTitle(regionInfo.Title)
						.setType("DEV_PUBLIC")
						.setDispatchUrl("https://" + (Grasscutter.getConfig().getDispatchOptions().PublicIp.isEmpty() ? Grasscutter.getConfig().getDispatchOptions().Ip : Grasscutter.getConfig().getDispatchOptions().PublicIp) + ":" + getAddress().getPort() + "/query_cur_region_" + regionInfo.Name)
						.build();
				usedNames.add(regionInfo.Name);
				servers.add(server);

				RegionInfo serverRegion = regionQuery.getRegionInfo().toBuilder()
						.setIp(regionInfo.Ip)
						.setPort(regionInfo.Port)
						.setSecretKey(ByteString.copyFrom(FileUtils.read(Grasscutter.getConfig().KEY_FOLDER + "dispatchSeed.bin")))
						.build();

				QueryCurrRegionHttpRsp parsedRegionQuery = regionQuery.toBuilder().setRegionInfo(serverRegion).build();
				regions.put(regionInfo.Name, new RegionData(parsedRegionQuery, Base64.getEncoder().encodeToString(parsedRegionQuery.toByteString().toByteArray())));
			}

Melledy's avatar
Melledy committed
162
			QueryRegionListHttpRsp regionList = QueryRegionListHttpRsp.newBuilder()
163
				.addAllServers(servers)
Melledy's avatar
Melledy committed
164
165
166
167
168
169
170
				.setClientSecretKey(rl.getClientSecretKey())
			    .setClientCustomConfigEncrypted(rl.getClientCustomConfigEncrypted())
			    .setEnableLoginPc(true)
				.build();

			this.regionListBase64 = Base64.getEncoder().encodeToString(regionList.toByteString().toByteArray());
		} catch (Exception e) {
KingRainbow44's avatar
KingRainbow44 committed
171
			Grasscutter.getLogger().error("Error while initializing region info!", e);
Melledy's avatar
Melledy committed
172
173
174
175
		}
	}

	public void start() throws Exception {
176
		HttpServer server;
177
		if(Grasscutter.getConfig().getDispatchOptions().UseSSL) {
178
179
180
			HttpsServer httpsServer;
			httpsServer = HttpsServer.create(getAddress(), 0);
			SSLContext sslContext = SSLContext.getInstance("TLS");
181
182
			try (FileInputStream fis = new FileInputStream(Grasscutter.getConfig().getDispatchOptions().KeystorePath)) {
				char[] keystorePassword = Grasscutter.getConfig().getDispatchOptions().KeystorePassword.toCharArray();
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
				KeyStore ks = KeyStore.getInstance("PKCS12");
				ks.load(fis, keystorePassword);
				KeyManagerFactory kmf = KeyManagerFactory.getInstance("SunX509");
				kmf.init(ks, keystorePassword);
				
				sslContext.init(kmf.getKeyManagers(), null, null);
				
				httpsServer.setHttpsConfigurator(new HttpsConfigurator(sslContext));
				server = httpsServer;
			} catch (Exception e) {
				Grasscutter.getLogger().error("No SSL cert found!");
				return;
			}
		} else {
			server = HttpServer.create(getAddress(), 0);
Melledy's avatar
Melledy committed
198
199
		}
		
KingRainbow44's avatar
KingRainbow44 committed
200
201
202
203
204
205
206
207
208
209
		server.createContext("/", t -> {
			//Create a response form the request query parameters
			String response = "Hello";
			//Set the response header status and length
			t.getResponseHeaders().put("Content-Type", Collections.singletonList("text/html; charset=UTF-8"));
			t.sendResponseHeaders(200, response.getBytes().length);
			//Write the response string
			OutputStream os = t.getResponseBody();
			os.write(response.getBytes());
			os.close();
Melledy's avatar
Melledy committed
210
211
212
		});
		
		// Dispatch
KingRainbow44's avatar
KingRainbow44 committed
213
214
215
216
217
218
219
220
221
222
223
224
		server.createContext("/query_region_list", t -> {
			// Log
			Grasscutter.getLogger().info("Client request: query_region_list");
			// Create a response form the request query parameters
			String response = regionListBase64;
			// Set the response header status and length
			t.getResponseHeaders().put("Content-Type", Collections.singletonList("text/html; charset=UTF-8"));
			t.sendResponseHeaders(200, response.getBytes().length);
			// Write the response string
			OutputStream os = t.getResponseBody();
			os.write(response.getBytes());
			os.close();
225
226
227

			if(usersIngame.containsKey(t.getRemoteAddress())) {
				usersIngame.remove(t.getRemoteAddress());
Melledy's avatar
Melledy committed
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

		for (String regionName : regions.keySet()) {
			server.createContext("/query_cur_region_" + regionName, t -> {
				String regionCurrentBase64 = regions.get(regionName).Base64;

				// Log
				Grasscutter.getLogger().info("Client request: query_cur_region_" + regionName);
				// Create a response form the request query parameters
				URI uri = t.getRequestURI();
				String response = "CAESGE5vdCBGb3VuZCB2ZXJzaW9uIGNvbmZpZw==";
				if (uri.getQuery() != null && uri.getQuery().length() > 0) {
					response = regionCurrentBase64;
				}
				// Set the response header status and length
				t.getResponseHeaders().put("Content-Type", Collections.singletonList("text/html; charset=UTF-8"));
				t.sendResponseHeaders(200, response.getBytes().length);
				// Write the response string
				OutputStream os = t.getResponseBody();
				os.write(response.getBytes());
				os.close();
				//Save region info to hashmap for user, this for getCurrRegion();
				usersIngame.put(t.getRemoteAddress(), regionName);
			});
		}

Melledy's avatar
Melledy committed
255
		// Login via account
KingRainbow44's avatar
KingRainbow44 committed
256
257
258
259
260
261
262
		server.createContext("/hk4e_global/mdk/shield/api/login", t -> {
			// Get post data
			LoginAccountRequestJson requestData = null;
			try {
				String body = Utils.toString(t.getRequestBody());
				requestData = getGsonFactory().fromJson(body, LoginAccountRequestJson.class);
			} catch (Exception e) {
Melledy's avatar
Melledy committed
263
264
				
			}
KingRainbow44's avatar
KingRainbow44 committed
265
266
267
268
269
270
271
272
273
			// Create response json
			if (requestData == null) {
				return;
			}
			LoginResultJson responseData = new LoginResultJson();
			
			// Login
			Account account = DatabaseHelper.getAccountByName(requestData.account);
			
274
			// Check if account exists, else create a new one.
275
276
			if (account == null) {
				// Account doesnt exist, so we can either auto create it if the config value is set
277
				if (Grasscutter.getConfig().getDispatchOptions().AutomaticallyCreateAccounts) {
278
279
280
281
282
283
284
285
286
287
288
					// This account has been created AUTOMATICALLY. There will be no permissions added.
					account = DatabaseHelper.createAccountWithId(requestData.account, 0);
					
					responseData.message = "OK";
					responseData.data.account.uid = account.getId();
					responseData.data.account.token = account.generateSessionKey();
					responseData.data.account.email = account.getEmail();
				} else {
					responseData.retcode = -201;
					responseData.message = "Username not found.";
				} 
KingRainbow44's avatar
KingRainbow44 committed
289
			} else {
290
				// Account was found, log the player in
KingRainbow44's avatar
KingRainbow44 committed
291
292
293
294
				responseData.message = "OK";
				responseData.data.account.uid = account.getId();
				responseData.data.account.token = account.generateSessionKey();
				responseData.data.account.email = account.getEmail();
KingRainbow44's avatar
KingRainbow44 committed
295
296
297
298
299
300
301
302
303
304
305
			}
			
			// Create a response
			String response = getGsonFactory().toJson(responseData);
			// Set the response header status and length
			t.getResponseHeaders().put("Content-Type", Collections.singletonList("application/json"));
			t.sendResponseHeaders(200, response.getBytes().length);
			// Write the response string
			OutputStream os = t.getResponseBody();
			os.write(response.getBytes());
			os.close();
Melledy's avatar
Melledy committed
306
307
		});
		// Login via token
KingRainbow44's avatar
KingRainbow44 committed
308
309
310
311
312
313
314
		server.createContext("/hk4e_global/mdk/shield/api/verify", t -> {
			// Get post data
			LoginTokenRequestJson requestData = null;
			try {
				String body = Utils.toString(t.getRequestBody());
				requestData = getGsonFactory().fromJson(body, LoginTokenRequestJson.class);
			} catch (Exception e) {
Melledy's avatar
Melledy committed
315
316
				
			}
KingRainbow44's avatar
KingRainbow44 committed
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
			// Create response json
			if (requestData == null) {
				return;
			}
			LoginResultJson responseData = new LoginResultJson();

			// Login
			Account account = DatabaseHelper.getAccountById(requestData.uid);
			
			// Test
			if (account == null || !account.getSessionKey().equals(requestData.token)) {
				responseData.retcode = -111;
				responseData.message = "Game account cache information error";
			} else {
				responseData.message = "OK";
				responseData.data.account.uid = requestData.uid;
				responseData.data.account.token = requestData.token;
				responseData.data.account.email = account.getEmail();
			}
			
			// Create a response
			String response = getGsonFactory().toJson(responseData);
			// Set the response header status and length
			t.getResponseHeaders().put("Content-Type", Collections.singletonList("application/json"));
			t.sendResponseHeaders(200, response.getBytes().length);
			// Write the response string
			OutputStream os = t.getResponseBody();
			os.write(response.getBytes());
			os.close();
Melledy's avatar
Melledy committed
346
347
		});
		// Exchange for combo token
KingRainbow44's avatar
KingRainbow44 committed
348
349
350
351
352
353
354
		server.createContext("/hk4e_global/combo/granter/login/v2/login", t -> {
			// Get post data
			ComboTokenReqJson requestData = null;
			try {
				String body = Utils.toString(t.getRequestBody());
				requestData = getGsonFactory().fromJson(body, ComboTokenReqJson.class);
			} catch (Exception e) {
Melledy's avatar
Melledy committed
355
356
				
			}
KingRainbow44's avatar
KingRainbow44 committed
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
			// Create response json
			if (requestData == null || requestData.data == null) {
				return;
			}
			LoginTokenData loginData = getGsonFactory().fromJson(requestData.data, LoginTokenData.class); // Get login data
			ComboTokenResJson responseData = new ComboTokenResJson();

			// Login
			Account account = DatabaseHelper.getAccountById(loginData.uid);
			
			// Test
			if (account == null || !account.getSessionKey().equals(loginData.token)) {
				responseData.retcode = -201;
				responseData.message = "Wrong session key.";
			} else {
				responseData.message = "OK";
				responseData.data.open_id = loginData.uid;
				responseData.data.combo_id = "157795300";
				responseData.data.combo_token = account.generateLoginToken();
			}
			
			// Create a response
			String response = getGsonFactory().toJson(responseData);
			// Set the response header status and length
			t.getResponseHeaders().put("Content-Type", Collections.singletonList("application/json"));
			t.sendResponseHeaders(200, response.getBytes().length);
			// Write the response string
			OutputStream os = t.getResponseBody();
			os.write(response.getBytes());
			os.close();
Melledy's avatar
Melledy committed
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
		});
		// Agreement and Protocol
		server.createContext( // hk4e-sdk-os.hoyoverse.com
				"/hk4e_global/mdk/agreement/api/getAgreementInfos", 
				new DispatchHttpJsonHandler("{\"retcode\":0,\"message\":\"OK\",\"data\":{\"marketing_agreements\":[]}}")
		);
		server.createContext( // hk4e-sdk-os.hoyoverse.com
				"/hk4e_global/combo/granter/api/compareProtocolVersion", 
				new DispatchHttpJsonHandler("{\"retcode\":0,\"message\":\"OK\",\"data\":{\"modified\":true,\"protocol\":{\"id\":0,\"app_id\":4,\"language\":\"en\",\"user_proto\":\"\",\"priv_proto\":\"\",\"major\":7,\"minimum\":0,\"create_time\":\"0\",\"teenager_proto\":\"\",\"third_proto\":\"\"}}}")
		);
		// Game data
		server.createContext( // hk4e-api-os.hoyoverse.com
				"/common/hk4e_global/announcement/api/getAlertPic", 
				new DispatchHttpJsonHandler("{\"retcode\":0,\"message\":\"OK\",\"data\":{\"total\":0,\"list\":[]}}")
		);
		server.createContext( // hk4e-api-os.hoyoverse.com
				"/common/hk4e_global/announcement/api/getAlertAnn",
				new DispatchHttpJsonHandler("{\"retcode\":0,\"message\":\"OK\",\"data\":{\"alert\":false,\"alert_id\":0,\"remind\":true}}")
		);
		server.createContext( // hk4e-api-os.hoyoverse.com
				"/common/hk4e_global/announcement/api/getAnnList", 
				new DispatchHttpJsonHandler("{\"retcode\":0,\"message\":\"OK\",\"data\":{\"list\":[],\"total\":0,\"type_list\":[],\"alert\":false,\"alert_id\":0,\"timezone\":0,\"t\":\"" + System.currentTimeMillis() + "\"}}")
		);
		server.createContext( // hk4e-api-os-static.hoyoverse.com
				"/common/hk4e_global/announcement/api/getAnnContent", 
				new DispatchHttpJsonHandler("{\"retcode\":0,\"message\":\"OK\",\"data\":{\"list\":[],\"total\":0}}")
		);
		server.createContext( // hk4e-sdk-os.hoyoverse.com
				"/hk4e_global/mdk/shopwindow/shopwindow/listPriceTier", 
				new DispatchHttpJsonHandler("{\"retcode\":0,\"message\":\"OK\",\"data\":{\"suggest_currency\":\"USD\",\"tiers\":[]}}")
		);
		// Captcha
		server.createContext( // api-account-os.hoyoverse.com
				"/account/risky/api/check", 
				new DispatchHttpJsonHandler("{\"retcode\":0,\"message\":\"OK\",\"data\":{\"id\":\"c8820f246a5241ab9973f71df3ddd791\",\"action\":\"\",\"geetest\":{\"challenge\":\"\",\"gt\":\"\",\"new_captcha\":0,\"success\":1}}}")
		);
		// Config	
		server.createContext( // sdk-os-static.hoyoverse.com
				"/combo/box/api/config/sdk/combo", 
				new DispatchHttpJsonHandler("{\"retcode\":0,\"message\":\"OK\",\"data\":{\"vals\":{\"disable_email_bind_skip\":\"false\",\"email_bind_remind_interval\":\"7\",\"email_bind_remind\":\"true\"}}}")
		);
		server.createContext( // hk4e-sdk-os-static.hoyoverse.com
				"/hk4e_global/combo/granter/api/getConfig", 
				new DispatchHttpJsonHandler("{\"retcode\":0,\"message\":\"OK\",\"data\":{\"protocol\":true,\"qr_enabled\":false,\"log_level\":\"INFO\",\"announce_url\":\"https://webstatic-sea.hoyoverse.com/hk4e/announcement/index.html?sdk_presentation_style=fullscreen\\u0026sdk_screen_transparent=true\\u0026game_biz=hk4e_global\\u0026auth_appid=announcement\\u0026game=hk4e#/\",\"push_alias_type\":2,\"disable_ysdk_guard\":false,\"enable_announce_pic_popup\":true}}")
		);
		server.createContext( // hk4e-sdk-os-static.hoyoverse.com
				"/hk4e_global/mdk/shield/api/loadConfig", 
				new DispatchHttpJsonHandler("{\"retcode\":0,\"message\":\"OK\",\"data\":{\"id\":6,\"game_key\":\"hk4e_global\",\"client\":\"PC\",\"identity\":\"I_IDENTITY\",\"guest\":false,\"ignore_versions\":\"\",\"scene\":\"S_NORMAL\",\"name\":\"原神海外\",\"disable_regist\":false,\"enable_email_captcha\":false,\"thirdparty\":[\"fb\",\"tw\"],\"disable_mmt\":false,\"server_guest\":false,\"thirdparty_ignore\":{\"tw\":\"\",\"fb\":\"\"},\"enable_ps_bind_account\":false,\"thirdparty_login_configs\":{\"tw\":{\"token_type\":\"TK_GAME_TOKEN\",\"game_token_expires_in\":604800},\"fb\":{\"token_type\":\"TK_GAME_TOKEN\",\"game_token_expires_in\":604800}}}}")
		);
		// Test api?
		server.createContext( // abtest-api-data-sg.hoyoverse.com
				"/data_abtest_api/config/experiment/list", 
				new DispatchHttpJsonHandler("{\"retcode\":0,\"success\":true,\"message\":\"\",\"data\":[{\"code\":1000,\"type\":2,\"config_id\":\"14\",\"period_id\":\"6036_99\",\"version\":\"1\",\"configs\":{\"cardType\":\"old\"}}]}")
		);
		// Log Server 
		server.createContext( // log-upload-os.mihoyo.com
				"/log/sdk/upload", 
				new DispatchHttpJsonHandler("{\"code\":0}")
		);
		server.createContext( // log-upload-os.mihoyo.com
				"/sdk/upload", 
				new DispatchHttpJsonHandler("{\"code\":0}")
		);
OtakuNekoP's avatar
OtakuNekoP committed
450
451
452
453
		server.createContext( // /perf/config/verify?device_id=xxx&platform=x&name=xxx
				"/perf/config/verify", 
				new DispatchHttpJsonHandler("{\"code\":0}")
		);
Melledy's avatar
Melledy committed
454
455
456
457
458
		// Start server
		server.start();
		Grasscutter.getLogger().info("Dispatch server started on port " + getAddress().getPort());
		
		// Logging servers
459
		HttpServer overseaLogServer = HttpServer.create(new InetSocketAddress(Grasscutter.getConfig().getDispatchOptions().Ip, Grasscutter.getConfig().getDispatchOptions().OverseaLogPort), 0);
Melledy's avatar
Melledy committed
460
461
462
463
464
465
466
		overseaLogServer.createContext( // overseauspider.yuanshen.com
				"/log", 
				new DispatchHttpJsonHandler("{\"code\":0}")
		);
		overseaLogServer.start();
		Grasscutter.getLogger().info("Log server (overseauspider) started on port " + 8888);
		
467
		HttpServer uploadLogServer = HttpServer.create(new InetSocketAddress(Grasscutter.getConfig().getDispatchOptions().Ip, Grasscutter.getConfig().getDispatchOptions().UploadLogPort), 0);
Melledy's avatar
Melledy committed
468
469
470
471
		uploadLogServer.createContext( // log-upload-os.mihoyo.com
				"/crash/dataUpload", 
				new DispatchHttpJsonHandler("{\"code\":0}")
		);
KingRainbow44's avatar
KingRainbow44 committed
472
473
474
475
476
477
478
479
480
481
		uploadLogServer.createContext("/gacha", t -> {
			//Create a response form the request query parameters
			String response = "<!doctype html><html lang=\"en\"><head><title>Gacha</title></head><body></body></html>";
			//Set the response header status and length
			t.getResponseHeaders().put("Content-Type", Collections.singletonList("text/html; charset=UTF-8"));
			t.sendResponseHeaders(200, response.getBytes().length);
			//Write the response string
			OutputStream os = t.getResponseBody();
			os.write(response.getBytes());
			os.close();
Melledy's avatar
Melledy committed
482
483
		});
		uploadLogServer.start();
484
		Grasscutter.getLogger().info("Log server (log-upload-os) started on port " + Grasscutter.getConfig().getDispatchOptions().UploadLogPort);
Melledy's avatar
Melledy committed
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
	}
	
	private Map<String, String> parseQueryString(String qs) {
	    Map<String, String> result = new HashMap<>();
	    if (qs == null)
	        return result;

	    int last = 0, next, l = qs.length();
	    while (last < l) {
	        next = qs.indexOf('&', last);
	        if (next == -1)
	            next = l;

	        if (next > last) {
	            int eqPos = qs.indexOf('=', last);
	            try {
	                if (eqPos < 0 || eqPos > next)
	                    result.put(URLDecoder.decode(qs.substring(last, next), "utf-8"), "");
	                else
	                    result.put(URLDecoder.decode(qs.substring(last, eqPos), "utf-8"), URLDecoder.decode(qs.substring(eqPos + 1, next), "utf-8"));
	            } catch (UnsupportedEncodingException e) {
	                throw new RuntimeException(e); // will never happen, utf-8 support is mandatory for java
	            }
	        }
	        last = next + 1;
	    }
	    return result;
	}
513
514
515
516
517
518
519
520
521
522
523

	public static class RegionData {

		QueryCurrRegionHttpRsp parsedRegionQuery;
		String Base64;

		public RegionData(QueryCurrRegionHttpRsp prq, String b64) {
			this.parsedRegionQuery = prq;
			this.Base64 = b64;
		}
	}
Melledy's avatar
Melledy committed
524
}