DispatchServer.java 23.7 KB
Newer Older
Melledy's avatar
Melledy committed
1
2
3
4
5
6
package emu.grasscutter.server.dispatch;

import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
import com.google.protobuf.ByteString;
import com.sun.net.httpserver.HttpExchange;
Jaida Wu's avatar
Jaida Wu committed
7
import com.sun.net.httpserver.HttpServer;
Melledy's avatar
Melledy committed
8
9
10
import com.sun.net.httpserver.HttpsConfigurator;
import com.sun.net.httpserver.HttpsServer;

11
import emu.grasscutter.Config;
Melledy's avatar
Melledy committed
12
13
14
15
16
17
18
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;
Jaida Wu's avatar
Jaida Wu committed
19
import emu.grasscutter.server.dispatch.json.*;
Melledy's avatar
Melledy committed
20
import emu.grasscutter.server.dispatch.json.ComboTokenReqJson.LoginTokenData;
KingRainbow44's avatar
KingRainbow44 committed
21
22
import emu.grasscutter.server.event.dispatch.QueryAllRegionsEvent;
import emu.grasscutter.server.event.dispatch.QueryCurrentRegionEvent;
Melledy's avatar
Melledy committed
23
24
25
import emu.grasscutter.utils.FileUtils;
import emu.grasscutter.utils.Utils;

Jaida Wu's avatar
Jaida Wu committed
26
27
28
import javax.net.ssl.KeyManagerFactory;
import javax.net.ssl.SSLContext;
import java.io.*;
29
import java.net.BindException;
Jaida Wu's avatar
Jaida Wu committed
30
31
32
33
import java.net.InetSocketAddress;
import java.net.URI;
import java.net.URLDecoder;
import java.security.KeyStore;
34
import java.util.*;
Melledy's avatar
Melledy committed
35

KingRainbow44's avatar
KingRainbow44 committed
36
public final class DispatchServer {
Jaida Wu's avatar
Jaida Wu committed
37
38
	public static String query_region_list = "";
	public static String query_cur_region = "";
39

Melledy's avatar
Melledy committed
40
41
	private final InetSocketAddress address;
	private final Gson gson;
42
	private final String defaultServerName = "os_usa";
43

Melledy's avatar
Melledy committed
44
	public String regionListBase64;
45
	public HashMap<String, RegionData> regions;
46
	private HttpServer server;
47

Melledy's avatar
Melledy committed
48
	public DispatchServer() {
49
		this.regions = new HashMap<String, RegionData>();
50
51
		this.address = new InetSocketAddress(Grasscutter.getConfig().getDispatchOptions().Ip,
				Grasscutter.getConfig().getDispatchOptions().Port);
Melledy's avatar
Melledy committed
52
		this.gson = new GsonBuilder().create();
53

Melledy's avatar
Melledy committed
54
55
56
		this.loadQueries();
		this.initRegion();
	}
57

58
59
60
61
	public HttpServer getServer() {
		return server;
	}

Melledy's avatar
Melledy committed
62
63
64
	public InetSocketAddress getAddress() {
		return address;
	}
65

Melledy's avatar
Melledy committed
66
67
68
69
	public Gson getGsonFactory() {
		return gson;
	}

70
71
	public QueryCurrRegionHttpRsp getCurrRegion() {
		// Needs to be fixed by having the game servers connect to the dispatch server.
72
		if (Grasscutter.getConfig().RunMode.equalsIgnoreCase("HYBRID")) {
73
			return regions.get(defaultServerName).parsedRegionQuery;
74
75
		}

76
		Grasscutter.getLogger().warn("[Dispatch] Unsupported run mode for getCurrRegion()");
77
		return null;
Melledy's avatar
Melledy committed
78
	}
79

Melledy's avatar
Melledy committed
80
81
	public void loadQueries() {
		File file;
82

Melledy's avatar
Melledy committed
83
84
85
86
		file = new File(Grasscutter.getConfig().DATA_FOLDER + "query_region_list.txt");
		if (file.exists()) {
			query_region_list = new String(FileUtils.read(file));
		} else {
Jaida Wu's avatar
Jaida Wu committed
87
			Grasscutter.getLogger().warn("[Dispatch] query_region_list not found! Using default region list.");
Melledy's avatar
Melledy committed
88
		}
89

Melledy's avatar
Melledy committed
90
91
92
93
		file = new File(Grasscutter.getConfig().DATA_FOLDER + "query_cur_region.txt");
		if (file.exists()) {
			query_cur_region = new String(FileUtils.read(file));
		} else {
Jaida Wu's avatar
Jaida Wu committed
94
			Grasscutter.getLogger().warn("[Dispatch] query_cur_region not found! Using default current region.");
Melledy's avatar
Melledy committed
95
96
97
98
99
100
101
		}
	}

	private void initRegion() {
		try {
			byte[] decoded = Base64.getDecoder().decode(query_region_list);
			QueryRegionListHttpRsp rl = QueryRegionListHttpRsp.parseFrom(decoded);
102

Melledy's avatar
Melledy committed
103
104
			byte[] decoded2 = Base64.getDecoder().decode(query_cur_region);
			QueryCurrRegionHttpRsp regionQuery = QueryCurrRegionHttpRsp.parseFrom(decoded2);
105

106
107
			List<RegionSimpleInfo> servers = new ArrayList<RegionSimpleInfo>();
			List<String> usedNames = new ArrayList<String>(); // List to check for potential naming conflicts
108
109
			if (Grasscutter.getConfig().RunMode.equalsIgnoreCase("HYBRID")) { // Automatically add the game server if in
																				// hybrid mode
110
111
112
113
				RegionSimpleInfo server = RegionSimpleInfo.newBuilder()
						.setName("os_usa")
						.setTitle(Grasscutter.getConfig().getGameServerOptions().Name)
						.setType("DEV_PUBLIC")
114
115
116
117
118
119
120
121
122
123
						.setDispatchUrl(
								"http" + (Grasscutter.getConfig().getDispatchOptions().FrontHTTPS ? "s" : "") + "://"
										+ (Grasscutter.getConfig().getDispatchOptions().PublicIp.isEmpty()
												? Grasscutter.getConfig().getDispatchOptions().Ip
												: Grasscutter.getConfig().getDispatchOptions().PublicIp)
										+ ":"
										+ (Grasscutter.getConfig().getDispatchOptions().PublicPort != 0
												? Grasscutter.getConfig().getDispatchOptions().PublicPort
												: Grasscutter.getConfig().getDispatchOptions().Port)
										+ "/query_cur_region_" + defaultServerName)
124
125
126
127
128
						.build();
				usedNames.add(defaultServerName);
				servers.add(server);

				RegionInfo serverRegion = regionQuery.getRegionInfo().toBuilder()
129
130
131
132
133
134
135
136
						.setIp((Grasscutter.getConfig().getGameServerOptions().PublicIp.isEmpty()
								? Grasscutter.getConfig().getGameServerOptions().Ip
								: Grasscutter.getConfig().getGameServerOptions().PublicIp))
						.setPort(Grasscutter.getConfig().getGameServerOptions().PublicPort != 0
								? Grasscutter.getConfig().getGameServerOptions().PublicPort
								: Grasscutter.getConfig().getGameServerOptions().Port)
						.setSecretKey(ByteString
								.copyFrom(FileUtils.read(Grasscutter.getConfig().KEY_FOLDER + "dispatchSeed.bin")))
137
138
139
						.build();

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

			} else {
144
145
146
				if (Grasscutter.getConfig().getDispatchOptions().getGameServers().length == 0) {
					Grasscutter.getLogger()
							.error("[Dispatch] There are no game servers available. Exiting due to unplayable state.");
147
148
149
150
					System.exit(1);
				}
			}

151
152
153
			for (Config.DispatchServerOptions.RegionInfo regionInfo : Grasscutter.getConfig().getDispatchOptions()
					.getGameServers()) {
				if (usedNames.contains(regionInfo.Name)) {
154
155
156
157
158
159
160
					Grasscutter.getLogger().error("Region name already in use.");
					continue;
				}
				RegionSimpleInfo server = RegionSimpleInfo.newBuilder()
						.setName(regionInfo.Name)
						.setTitle(regionInfo.Title)
						.setType("DEV_PUBLIC")
161
162
163
164
165
166
						.setDispatchUrl(
								"http" + (Grasscutter.getConfig().getDispatchOptions().FrontHTTPS ? "s" : "") + "://"
										+ (Grasscutter.getConfig().getDispatchOptions().PublicIp.isEmpty()
												? Grasscutter.getConfig().getDispatchOptions().Ip
												: Grasscutter.getConfig().getDispatchOptions().PublicIp)
										+ ":" + getAddress().getPort() + "/query_cur_region_" + regionInfo.Name)
167
168
169
170
171
172
173
						.build();
				usedNames.add(regionInfo.Name);
				servers.add(server);

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

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

Melledy's avatar
Melledy committed
183
			QueryRegionListHttpRsp regionList = QueryRegionListHttpRsp.newBuilder()
184
185
186
187
188
					.addAllServers(servers)
					.setClientSecretKey(rl.getClientSecretKey())
					.setClientCustomConfigEncrypted(rl.getClientCustomConfigEncrypted())
					.setEnableLoginPc(true)
					.build();
Melledy's avatar
Melledy committed
189
190
191

			this.regionListBase64 = Base64.getEncoder().encodeToString(regionList.toByteString().toByteArray());
		} catch (Exception e) {
192
			Grasscutter.getLogger().error("[Dispatch] Error while initializing region info!", e);
Melledy's avatar
Melledy committed
193
194
195
		}
	}

196
197
198
199
200
201
202
	private HttpServer safelyCreateServer(InetSocketAddress address) {
		try {
			return HttpServer.create(address, 0);
		} catch (BindException ignored) {
			Grasscutter.getLogger().error("Unable to bind to port: " + getAddress().getPort() + " (HTTP)");
		} catch (Exception exception) {
			Grasscutter.getLogger().error("Unable to start HTTP server.", exception);
203
204
		}
		return null;
205
	}
Melledy's avatar
Melledy committed
206
207

	public void start() throws Exception {
208
		if (Grasscutter.getConfig().getDispatchOptions().UseSSL) {
209
			HttpsServer httpsServer = HttpsServer.create(getAddress(), 0);
210
			SSLContext sslContext = SSLContext.getInstance("TLS");
211
212
			try (FileInputStream fis = new FileInputStream(Grasscutter.getConfig().getDispatchOptions().KeystorePath)) {
				char[] keystorePassword = Grasscutter.getConfig().getDispatchOptions().KeystorePassword.toCharArray();
213
				KeyManagerFactory _kmf;
214
215
216
217
				try {
					KeyStore ks = KeyStore.getInstance("PKCS12");
					ks.load(fis, keystorePassword);
					KeyManagerFactory kmf = KeyManagerFactory.getInstance("SunX509");
218
					_kmf = kmf;
219
					kmf.init(ks, keystorePassword);
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
				} catch (Exception originalEx) {
					try {
						// try to initialize kmf with the default password
						char[] defaultPassword = "123456".toCharArray();

						Grasscutter.getLogger()
								.warn("[Dispatch] Unable to load keystore. Trying default keystore password...");
						KeyStore ks = KeyStore.getInstance("PKCS12");
						ks.load(fis, defaultPassword);
						KeyManagerFactory kmf = KeyManagerFactory.getInstance("SunX509");
						kmf.init(ks, defaultPassword);
						_kmf = kmf;

						Grasscutter.getLogger().warn(
								"[Dispatch] The default keystore password was loaded successfully. Please consider setting the password in config.json.");
					} catch (Exception ignored) {
						Grasscutter.getLogger().warn("[Dispatch] Error while loading keystore!");

						// don't care about the exception for the "123456" default password attempt
						originalEx.printStackTrace();
						throw originalEx;
					}
242
				}
243

244
				sslContext.init(_kmf.getKeyManagers(), null, null);
245

246
247
				httpsServer.setHttpsConfigurator(new HttpsConfigurator(sslContext));
				server = httpsServer;
248
249
250
			} catch (BindException ignored) {
				Grasscutter.getLogger().error("Unable to bind to port: " + getAddress().getPort() + " (HTTPS)");
				server = this.safelyCreateServer(this.getAddress());
251
			} catch (Exception e) {
Jaida Wu's avatar
Jaida Wu committed
252
				Grasscutter.getLogger().warn("[Dispatch] No SSL cert found! Falling back to HTTP server.");
253
				Grasscutter.getConfig().getDispatchOptions().UseSSL = false;
254
				server = this.safelyCreateServer(this.getAddress());
255
256
			}
		} else {
257
			server = this.safelyCreateServer(this.getAddress());
Melledy's avatar
Melledy committed
258
		}
Jaida Wu's avatar
Jaida Wu committed
259

260
		if (server == null)
261
			throw new NullPointerException("An HTTP server was not created.");
Jaida Wu's avatar
Jaida Wu committed
262

Jaida Wu's avatar
Jaida Wu committed
263
		server.createContext("/", t -> responseHTML(t, "Hello"));
264

Melledy's avatar
Melledy committed
265
		// Dispatch
KingRainbow44's avatar
KingRainbow44 committed
266
267
		server.createContext("/query_region_list", t -> {
			// Log
268
269
			Grasscutter.getLogger()
					.info(String.format("[Dispatch] Client %s request: query_region_list", t.getRemoteAddress()));
Jaida Wu's avatar
Jaida Wu committed
270
271

			responseHTML(t, regionListBase64);
Melledy's avatar
Melledy committed
272
		});
273
274
275
276
277

		for (String regionName : regions.keySet()) {
			server.createContext("/query_cur_region_" + regionName, t -> {
				String regionCurrentBase64 = regions.get(regionName).Base64;
				// Log
278
279
				Grasscutter.getLogger().info(
						String.format("Client %s request: query_cur_region_%s", t.getRemoteAddress(), regionName));
280
281
282
283
284
285
				// 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;
				}
KingRainbow44's avatar
KingRainbow44 committed
286
287
288
289
290
				
				// Invoke event.
				QueryCurrentRegionEvent event = new QueryCurrentRegionEvent(response); event.call();
				// Respond with event result.
				responseHTML(t, event.getRegionInfo());
291
292
293
			});
		}

Melledy's avatar
Melledy committed
294
		// Login via account
KingRainbow44's avatar
KingRainbow44 committed
295
296
297
298
299
300
		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);
301
302
			} catch (Exception ignored) {
			}
303

KingRainbow44's avatar
KingRainbow44 committed
304
305
306
307
308
			// Create response json
			if (requestData == null) {
				return;
			}
			LoginResultJson responseData = new LoginResultJson();
Jaida Wu's avatar
Jaida Wu committed
309

310
311
312
			Grasscutter.getLogger()
					.info(String.format("[Dispatch] Client %s is trying to log in", t.getRemoteAddress()));

KingRainbow44's avatar
KingRainbow44 committed
313
314
			// Login
			Account account = DatabaseHelper.getAccountByName(requestData.account);
315

316
			// Check if account exists, else create a new one.
317
			if (account == null) {
318
319
				// Account doesnt exist, so we can either auto create it if the config value is
				// set
320
				if (Grasscutter.getConfig().getDispatchOptions().AutomaticallyCreateAccounts) {
321
322
					// This account has been created AUTOMATICALLY. There will be no permissions
					// added.
323
					account = DatabaseHelper.createAccountWithId(requestData.account, 0);
Jaida Wu's avatar
Jaida Wu committed
324
325
326
327
328
329

					if (account != null) {
						responseData.message = "OK";
						responseData.data.account.uid = account.getId();
						responseData.data.account.token = account.generateSessionKey();
						responseData.data.account.email = account.getEmail();
Jaida Wu's avatar
Jaida Wu committed
330

331
332
333
						Grasscutter.getLogger()
								.info(String.format("[Dispatch] Client %s failed to log in: Account %s created",
										t.getRemoteAddress(), responseData.data.account.uid));
Jaida Wu's avatar
Jaida Wu committed
334
335
336
					} else {
						responseData.retcode = -201;
						responseData.message = "Username not found, create failed.";
Jaida Wu's avatar
Jaida Wu committed
337

338
339
						Grasscutter.getLogger().info(String.format(
								"[Dispatch] Client %s failed to log in: Account create failed", t.getRemoteAddress()));
Jaida Wu's avatar
Jaida Wu committed
340
					}
341
342
343
				} else {
					responseData.retcode = -201;
					responseData.message = "Username not found.";
Jaida Wu's avatar
Jaida Wu committed
344

345
346
347
					Grasscutter.getLogger().info(String
							.format("[Dispatch] Client %s failed to log in: Account no found", t.getRemoteAddress()));
				}
KingRainbow44's avatar
KingRainbow44 committed
348
			} else {
349
				// Account was found, log the player in
KingRainbow44's avatar
KingRainbow44 committed
350
351
352
353
				responseData.message = "OK";
				responseData.data.account.uid = account.getId();
				responseData.data.account.token = account.generateSessionKey();
				responseData.data.account.email = account.getEmail();
Jaida Wu's avatar
Jaida Wu committed
354

355
356
				Grasscutter.getLogger().info(String.format("[Dispatch] Client %s logged in as %s", t.getRemoteAddress(),
						responseData.data.account.uid));
KingRainbow44's avatar
KingRainbow44 committed
357
			}
Jaida Wu's avatar
Jaida Wu committed
358

Jaida Wu's avatar
Jaida Wu committed
359
			responseJSON(t, responseData);
Melledy's avatar
Melledy committed
360
361
		});
		// Login via token
KingRainbow44's avatar
KingRainbow44 committed
362
363
364
365
366
367
		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);
368
369
			} catch (Exception ignored) {
			}
370

KingRainbow44's avatar
KingRainbow44 committed
371
372
373
374
375
			// Create response json
			if (requestData == null) {
				return;
			}
			LoginResultJson responseData = new LoginResultJson();
376
377
			Grasscutter.getLogger()
					.info(String.format("[Dispatch] Client %s is trying to log in via token", t.getRemoteAddress()));
KingRainbow44's avatar
KingRainbow44 committed
378
379
380

			// Login
			Account account = DatabaseHelper.getAccountById(requestData.uid);
381

KingRainbow44's avatar
KingRainbow44 committed
382
383
384
385
			// Test
			if (account == null || !account.getSessionKey().equals(requestData.token)) {
				responseData.retcode = -111;
				responseData.message = "Game account cache information error";
Jaida Wu's avatar
Jaida Wu committed
386

387
388
				Grasscutter.getLogger()
						.info(String.format("[Dispatch] Client %s failed to log in via token", t.getRemoteAddress()));
KingRainbow44's avatar
KingRainbow44 committed
389
390
391
392
393
			} else {
				responseData.message = "OK";
				responseData.data.account.uid = requestData.uid;
				responseData.data.account.token = requestData.token;
				responseData.data.account.email = account.getEmail();
Jaida Wu's avatar
Jaida Wu committed
394

395
396
				Grasscutter.getLogger().info(String.format("[Dispatch] Client %s logged in via token as %s",
						t.getRemoteAddress(), responseData.data.account.uid));
KingRainbow44's avatar
KingRainbow44 committed
397
			}
Jaida Wu's avatar
Jaida Wu committed
398

Jaida Wu's avatar
Jaida Wu committed
399
			responseJSON(t, responseData);
Melledy's avatar
Melledy committed
400
401
		});
		// Exchange for combo token
KingRainbow44's avatar
KingRainbow44 committed
402
403
404
405
406
407
		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);
408
409
			} catch (Exception ignored) {
			}
410

KingRainbow44's avatar
KingRainbow44 committed
411
412
413
414
			// Create response json
			if (requestData == null || requestData.data == null) {
				return;
			}
415
416
			LoginTokenData loginData = getGsonFactory().fromJson(requestData.data, LoginTokenData.class); // Get login
																											// data
KingRainbow44's avatar
KingRainbow44 committed
417
418
419
420
			ComboTokenResJson responseData = new ComboTokenResJson();

			// Login
			Account account = DatabaseHelper.getAccountById(loginData.uid);
421

KingRainbow44's avatar
KingRainbow44 committed
422
423
424
425
			// Test
			if (account == null || !account.getSessionKey().equals(loginData.token)) {
				responseData.retcode = -201;
				responseData.message = "Wrong session key.";
Jaida Wu's avatar
Jaida Wu committed
426

427
428
				Grasscutter.getLogger().info(
						String.format("[Dispatch] Client %s failed to exchange combo token", t.getRemoteAddress()));
KingRainbow44's avatar
KingRainbow44 committed
429
430
431
432
433
			} else {
				responseData.message = "OK";
				responseData.data.open_id = loginData.uid;
				responseData.data.combo_id = "157795300";
				responseData.data.combo_token = account.generateLoginToken();
Jaida Wu's avatar
Jaida Wu committed
434

435
436
				Grasscutter.getLogger().info(
						String.format("[Dispatch] Client %s succeed to exchange combo token", t.getRemoteAddress()));
KingRainbow44's avatar
KingRainbow44 committed
437
			}
Jaida Wu's avatar
Jaida Wu committed
438

Jaida Wu's avatar
Jaida Wu committed
439
			responseJSON(t, responseData);
Melledy's avatar
Melledy committed
440
441
442
		});
		// Agreement and Protocol
		server.createContext( // hk4e-sdk-os.hoyoverse.com
443
444
445
				"/hk4e_global/mdk/agreement/api/getAgreementInfos",
				new DispatchHttpJsonHandler(
						"{\"retcode\":0,\"message\":\"OK\",\"data\":{\"marketing_agreements\":[]}}"));
Melledy's avatar
Melledy committed
446
		server.createContext( // hk4e-sdk-os.hoyoverse.com
447
448
449
				"/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\":\"\"}}}"));
Melledy's avatar
Melledy committed
450
451
		// Game data
		server.createContext( // hk4e-api-os.hoyoverse.com
452
453
				"/common/hk4e_global/announcement/api/getAlertPic",
				new DispatchHttpJsonHandler("{\"retcode\":0,\"message\":\"OK\",\"data\":{\"total\":0,\"list\":[]}}"));
Melledy's avatar
Melledy committed
454
455
		server.createContext( // hk4e-api-os.hoyoverse.com
				"/common/hk4e_global/announcement/api/getAlertAnn",
456
457
				new DispatchHttpJsonHandler(
						"{\"retcode\":0,\"message\":\"OK\",\"data\":{\"alert\":false,\"alert_id\":0,\"remind\":true}}"));
Melledy's avatar
Melledy committed
458
		server.createContext( // hk4e-api-os.hoyoverse.com
459
460
461
462
				"/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() + "\"}}"));
Melledy's avatar
Melledy committed
463
		server.createContext( // hk4e-api-os-static.hoyoverse.com
464
465
				"/common/hk4e_global/announcement/api/getAnnContent",
				new DispatchHttpJsonHandler("{\"retcode\":0,\"message\":\"OK\",\"data\":{\"list\":[],\"total\":0}}"));
Melledy's avatar
Melledy committed
466
		server.createContext( // hk4e-sdk-os.hoyoverse.com
467
468
469
				"/hk4e_global/mdk/shopwindow/shopwindow/listPriceTier",
				new DispatchHttpJsonHandler(
						"{\"retcode\":0,\"message\":\"OK\",\"data\":{\"suggest_currency\":\"USD\",\"tiers\":[]}}"));
Melledy's avatar
Melledy committed
470
471
		// Captcha
		server.createContext( // api-account-os.hoyoverse.com
472
473
474
475
				"/account/risky/api/check",
				new DispatchHttpJsonHandler(
						"{\"retcode\":0,\"message\":\"OK\",\"data\":{\"id\":\"c8820f246a5241ab9973f71df3ddd791\",\"action\":\"\",\"geetest\":{\"challenge\":\"\",\"gt\":\"\",\"new_captcha\":0,\"success\":1}}}"));
		// Config
Melledy's avatar
Melledy committed
476
		server.createContext( // sdk-os-static.hoyoverse.com
477
478
479
				"/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\"}}}"));
Melledy's avatar
Melledy committed
480
		server.createContext( // hk4e-sdk-os-static.hoyoverse.com
481
482
483
				"/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}}"));
Melledy's avatar
Melledy committed
484
		server.createContext( // hk4e-sdk-os-static.hoyoverse.com
485
486
487
				"/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}}}}"));
Melledy's avatar
Melledy committed
488
489
		// Test api?
		server.createContext( // abtest-api-data-sg.hoyoverse.com
490
491
492
493
				"/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
Melledy's avatar
Melledy committed
494
		server.createContext( // log-upload-os.mihoyo.com
495
496
				"/log/sdk/upload",
				new DispatchHttpJsonHandler("{\"code\":0}"));
Melledy's avatar
Melledy committed
497
		server.createContext( // log-upload-os.mihoyo.com
498
499
				"/sdk/upload",
				new DispatchHttpJsonHandler("{\"code\":0}"));
OtakuNekoP's avatar
OtakuNekoP committed
500
		server.createContext( // /perf/config/verify?device_id=xxx&platform=x&name=xxx
501
502
503
				"/perf/config/verify",
				new DispatchHttpJsonHandler("{\"code\":0}"));

Melledy's avatar
Melledy committed
504
		// Logging servers
Jaida Wu's avatar
Jaida Wu committed
505
		server.createContext( // overseauspider.yuanshen.com
Jaida Wu's avatar
Jaida Wu committed
506
				"/log",
507
				new DispatchHttpJsonHandler("{\"code\":0}"));
Jaida Wu's avatar
Jaida Wu committed
508

Jaida Wu's avatar
Jaida Wu committed
509
		server.createContext( // log-upload-os.mihoyo.com
Jaida Wu's avatar
Jaida Wu committed
510
				"/crash/dataUpload",
511
512
513
				new DispatchHttpJsonHandler("{\"code\":0}"));
		server.createContext("/gacha", t -> responseHTML(t,
				"<!doctype html><html lang=\"en\"><head><title>Gacha</title></head><body></body></html>"));
514

Jaida Wu's avatar
Jaida Wu committed
515
516
		// Start server
		server.start();
Jaida Wu's avatar
Jaida Wu committed
517
		Grasscutter.getLogger().info("[Dispatch] Dispatch server started on port " + getAddress().getPort());
Melledy's avatar
Melledy committed
518
	}
Jaida Wu's avatar
Jaida Wu committed
519

Jaida Wu's avatar
Jaida Wu committed
520
	private void responseJSON(HttpExchange t, Object data) throws IOException {
Jaida Wu's avatar
Jaida Wu committed
521
522
523
524
525
526
527
528
529
530
531
		// Create a response
		String response = getGsonFactory().toJson(data);
		// 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();
	}

Jaida Wu's avatar
Jaida Wu committed
532
533
534
535
	private void responseHTML(HttpExchange t, String response) throws IOException {
		// 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);
536
		// Write the response string
Jaida Wu's avatar
Jaida Wu committed
537
538
539
		OutputStream os = t.getResponseBody();
		os.write(response.getBytes());
		os.close();
Melledy's avatar
Melledy committed
540
	}
541

Melledy's avatar
Melledy committed
542
	private Map<String, String> parseQueryString(String qs) {
Jaida Wu's avatar
Jaida Wu committed
543
		Map<String, String> result = new HashMap<>();
Jaida Wu's avatar
Jaida Wu committed
544
		if (qs == null) {
Jaida Wu's avatar
Jaida Wu committed
545
			return result;
Jaida Wu's avatar
Jaida Wu committed
546
		}
Jaida Wu's avatar
Jaida Wu committed
547
548
549
550

		int last = 0, next, l = qs.length();
		while (last < l) {
			next = qs.indexOf('&', last);
Jaida Wu's avatar
Jaida Wu committed
551
			if (next == -1) {
Jaida Wu's avatar
Jaida Wu committed
552
				next = l;
Jaida Wu's avatar
Jaida Wu committed
553
			}
Jaida Wu's avatar
Jaida Wu committed
554
555
556
557

			if (next > last) {
				int eqPos = qs.indexOf('=', last);
				try {
Jaida Wu's avatar
Jaida Wu committed
558
					if (eqPos < 0 || eqPos > next) {
Jaida Wu's avatar
Jaida Wu committed
559
						result.put(URLDecoder.decode(qs.substring(last, next), "utf-8"), "");
Jaida Wu's avatar
Jaida Wu committed
560
					} else {
561
562
						result.put(URLDecoder.decode(qs.substring(last, eqPos), "utf-8"),
								URLDecoder.decode(qs.substring(eqPos + 1, next), "utf-8"));
Jaida Wu's avatar
Jaida Wu committed
563
					}
Jaida Wu's avatar
Jaida Wu committed
564
565
566
567
568
569
570
				} catch (UnsupportedEncodingException e) {
					throw new RuntimeException(e); // will never happen, utf-8 support is mandatory for java
				}
			}
			last = next + 1;
		}
		return result;
Melledy's avatar
Melledy committed
571
	}
572
573
574
575
576
577
578
579
580
581
582

	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
583
}