forked from PhilippvK/playforia-minigolf
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathParameters.java
More file actions
408 lines (345 loc) · 11.7 KB
/
Parameters.java
File metadata and controls
408 lines (345 loc) · 11.7 KB
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
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
package com.aapeli.client;
import com.aapeli.tools.Tools;
import java.awt.Desktop;
import java.io.IOException;
import java.net.URI;
import java.net.URISyntaxException;
import java.util.Map;
import org.moparforia.shared.Language;
public final class Parameters {
private static final String LOCALHOST = "127.0.0.1";
private String serverIp;
private Language language;
private String username;
private String session;
private String urlRegisterPage;
private String urlUserInfoPage;
private String urlTargetUserInfo;
private String urlUserListPage;
private String urlTargetUserList;
private int serverPort;
private int anInt1455;
private String[] aStringArray1456;
private String aString1457;
private boolean debug;
private Map<String, String> params;
public Parameters(Map<String, String> params) {
this.params = params;
this.anInt1455 = 0;
this.init();
}
public static boolean getBooleanValue(String key) {
if (key == null) {
return false;
}
return key.equalsIgnoreCase("true")
|| key.equalsIgnoreCase("t")
|| key.equalsIgnoreCase("yes")
|| key.equalsIgnoreCase("y")
|| key.equals("1")
|| key.equals("1.0")
|| key.equals("1,0");
}
public String getParameter(String key) {
String value = this.params.get(key);
if (value == null) {
value = this.params.get(key.toLowerCase());
}
if (value == null) {
value = this.params.get(key.toUpperCase());
}
if (value == null) {
return null;
} else {
value = value.trim();
return value.length() == 0 ? null : value;
}
}
public String getServerIp() {
return this.serverIp;
}
public int getServerPort() {
return this.serverPort;
}
public String getUsername() {
return this.username;
}
public Language getLanguage() {
return this.language;
}
public String getSession() {
return this.session;
}
public void removeSession() {
this.session = null;
}
public String getRegisterPage() {
return this.urlRegisterPage;
}
public boolean showPlayerCard(String var1) {
if (this.debug) {
System.out.println("Parameters.showPlayerCard(\"" + var1 + "\")");
}
try {
if (this.urlUserInfoPage == null) {
return false;
}
if (var1.charAt(0) == '~') {
return false;
}
String var2 = this.urlUserInfoPage.toLowerCase();
if (var2.startsWith("http:")) {
if (this.urlTargetUserInfo == null) {
return false;
}
this.showUri(this.toURI(this.urlUserInfoPage + var1), this.urlTargetUserInfo);
return true;
}
if (var2.startsWith("javascript:")) {
URI uri = this.toURI(this.urlUserInfoPage.replaceFirst("%n", var1));
if (uri == null) {
return false;
}
this.showUri(uri, this.urlTargetUserInfo);
return true;
}
} catch (Exception e) {
}
return false;
}
public void showPlayerList(String[] var1) {
this.showPlayerList(var1, null);
}
public void showPlayerList(String[] nicks, String var2) {
try {
if (nicks == null) {
if (this.debug) {
System.out.println("Parameters.showPlayerList(null,...)");
}
this.removePlayerList();
return;
}
if (this.debug) {
System.out.println("Parameters.showPlayerList(...): nicks.length=" + nicks.length);
}
if (this.method1675(nicks, var2)) {
return;
}
this.showPlayerList(nicks, null, var2);
this.aStringArray1456 = nicks;
this.aString1457 = var2;
this.anInt1455 = 1;
} catch (Exception e) {
}
}
public void showPlayerListWinners(boolean[] winners) {
try {
if (winners == null) {
if (this.debug) {
System.out.println("Parameters.showPlayerListWinners(null)");
}
this.removePlayerListWinners();
return;
}
if (this.debug) {
System.out.println("Parameters.showPlayerListWinners(...): winners.length=" + winners.length);
}
boolean winnerExists = false;
for (boolean winner : winners) {
if (winner) {
winnerExists = true;
}
}
if (!winnerExists) {
this.removePlayerListWinners();
return;
}
if (this.anInt1455 == 0) {
return;
}
this.showPlayerList(this.aStringArray1456, winners, this.aString1457);
this.anInt1455 = 2;
} catch (Exception e) {
}
}
public void removePlayerListWinners() {
this.showPlayerList(this.aStringArray1456, this.aString1457);
}
public void removePlayerList() {
try {
if (this.anInt1455 == 0) {
return;
}
this.showPlayerList(null, null, null);
this.anInt1455 = 0;
} catch (Exception e) {
}
}
public void destroy() {
this.serverIp = null;
this.language = null;
this.session = null;
this.urlRegisterPage = null;
this.urlUserInfoPage = null;
this.urlTargetUserInfo = null;
this.urlUserListPage = null;
this.urlTargetUserList = null;
this.aStringArray1456 = null;
this.aString1457 = null;
}
private void init() {
this.serverIp = this.getParamServer();
this.serverPort = this.getParamPort();
this.language = this.getParamLanguage();
this.session = this.getParameter("session");
this.urlRegisterPage = this.getParameter("registerpage");
this.urlUserInfoPage = this.getParameter("userinfopage");
this.urlTargetUserInfo = this.getParameter("userinfotarget");
this.urlUserListPage = this.getParameter("userlistpage");
this.urlTargetUserList = this.getParameter("userlisttarget");
this.username = this.getParameter("username");
this.debug = Tools.getBoolean(this.getParameter("verbose"));
}
private String getParamServer() {
try {
String server = this.getParameter("server");
int portIndex = server.lastIndexOf(':');
return server.substring(0, portIndex);
} catch (Exception e) {
return LOCALHOST;
}
}
private int getParamPort() {
try {
String server = this.getParameter("server");
int portIndex = server.lastIndexOf(':');
return Integer.parseInt(server.substring(portIndex + 1));
} catch (Exception e) {
try {
return Integer.parseInt(this.getParameter("port"));
} catch (Exception e2) {
return 4200;
}
}
}
private Language getParamLanguage() {
try {
String language = this.getParameter("language");
if (language != null) {
return Language.fromString(language);
}
} catch (Exception e) {
}
return null;
}
private URI toURI(String s) {
try {
return new URI(s);
} catch (URISyntaxException e) {
return null;
}
}
private void showPlayerList(String[] nicks, boolean[] winners, String subgame) {
if (this.debug) {
System.out.println("Parameters.showPlayerList(...): "
+ (nicks != null ? "nicks.length=" + nicks.length : "null")
+ ", "
+ (winners != null ? "winners.length=" + winners.length : "null"));
}
if (this.urlUserListPage != null) {
String result = null;
if (nicks != null) {
result = "";
int len = nicks.length;
for (int i = 0; i < len; ++i) {
result = result + nicks[i];
if (winners != null) {
result = result + (winners[i] ? "*" : "");
}
if (i < len - 1) {
result = result + ',';
}
}
result = this.htmlEncode(result);
}
String var8;
String var4 = this.urlUserListPage.toLowerCase();
if (var4.startsWith("http:")) {
if (this.urlTargetUserList != null) {
var8 = this.urlUserListPage;
if (result != null) {
var8 = var8 + result;
if (subgame != null) {
var8 = var8 + "&subgame=" + subgame;
}
}
this.showUri(this.toURI(var8), this.urlTargetUserList);
}
} else {
if (var4.startsWith("javascript:")) {
var8 = this.urlUserListPage;
var8 = var8.replaceFirst("%n", result != null ? result : "");
var8 = var8.replaceFirst("%s", subgame != null ? subgame : "");
URI uri = this.toURI(var8);
if (uri == null) {
return;
}
this.showUri(uri, this.urlTargetUserList);
}
}
}
}
private String htmlEncode(String s) {
int len = s.length();
StringBuffer result = new StringBuffer(len * 3);
for (int i = 0; i < len; ++i) {
char c = s.charAt(i);
if ((c < 65 || c > 90) && (c < 97 || c > 122) && (c < 48 || c > 57) && c != 45 && c != 126 && c != 44) {
String hex = Integer.toHexString(c & 255);
result.append('%');
if (hex.length() < 2) {
result.append(0);
}
result.append(hex);
} else {
result.append(c);
}
}
return result.toString();
}
private boolean method1675(String[] var1, String var2) {
if (this.anInt1455 != 1) {
return false;
} else if (var2 == null && this.aString1457 != null) {
return false;
} else if (var2 != null && this.aString1457 == null) {
return false;
} else if (var2 != null && this.aString1457 != null && !var2.equals(this.aString1457)) {
return false;
} else {
int var3 = var1.length;
if (var3 != this.aStringArray1456.length) {
return false;
} else {
for (int var4 = 0; var4 < var3; ++var4) {
if (!var1[var4].equals(this.aStringArray1456[var4])) {
return false;
}
}
return true;
}
}
}
private boolean showUri(URI uri, String target) {
if (uri == null) {
return false;
} else {
try {
Desktop.getDesktop().browse(uri);
} catch (IOException e) {
return false;
}
return true;
}
}
}