-
Notifications
You must be signed in to change notification settings - Fork 92
/
Copy pathservers.js
667 lines (547 loc) · 16.7 KB
/
servers.js
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
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
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
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
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
/*
*
* Gameserver Tabs
*
*/
// Load server info into box
function server_tab_info(srvID)
{
if(srvID == "")
{
alert("No server ID given");
return false;
}
$.ajax({
url: ajaxURL,
data: 'a=server_info&id='+srvID,
success:function(html){
$('#panel_center').hide().html(html).fadeIn('fast');
}
});
}
// Load server settings tab
function server_tab_settings(srvID)
{
if(srvID == "")
{
alert("No server ID given");
return false;
}
$.ajax({
url: ajaxURL,
data: 'a=server_settings&id='+srvID,
success:function(html){
$('#panel_center').hide().html(html).fadeIn('fast');
}
});
}
// Load server files tab
function server_tab_files(srvID)
{
if(srvID == "")
{
alert("No server ID given");
return false;
}
$.ajax({
url: ajaxURL,
data: 'a=server_files&id='+srvID,
beforeSend:function(){
infobox('i','Loading ...');
},
success:function(html){
// Hide infobox
$('.infobox').hide();
$('#panel_center').hide().html(html).fadeIn('fast');
}
});
}
// Load server startup tab
function server_tab_startup(srvID)
{
if(srvID == "")
{
alert("No server ID given");
return false;
}
$.ajax({
url: ajaxURL,
data: 'a=server_startup&id='+srvID,
success:function(html){
$('#panel_center').hide().html(html).fadeIn('fast');
}
});
}
// Submit server settings tab
function srv_settings_save(serverID)
{
if(serverID == "")
{
alert("No server ID given!");
return false;
}
var srvr_desc = encodeURIComponent($('#srv_desc').val());
var userID = encodeURIComponent($('#userid').val());
var netID = encodeURIComponent($('#ip').val());
var updatecmd = encodeURIComponent($('#update_cmd').val());
var cmd = encodeURIComponent($('#cmd').val());
var startup = encodeURIComponent($('#startup_type').val());
var port = encodeURIComponent($('#port').val());
var workingDir = encodeURIComponent($('#working_dir').val());
var pidFile = encodeURIComponent($('#pid_file').val());
var maxpl = encodeURIComponent($('#maxplayers').val());
var hostn = encodeURIComponent($('#hostname').val());
var map = encodeURIComponent($('#map').val());
var rcon = encodeURIComponent($('#rcon').val());
var sv_passw = encodeURIComponent($('#sv_password').val());
var datastr = "&id="+serverID+"&srvdescr="+srvr_desc+"&userid="+userID+"&ip="+netID+"&port="+port+"&working_dir="+workingDir+"&pid_file="+pidFile+"&startup="+startup+"&update_cmd="+updatecmd+"&cmd="+cmd+"&maxplayers="+maxpl+"&hostname="+hostn+"&map="+map+"&rcon="+rcon+"&sv_password="+sv_passw;
// a=server_settings_save
$.ajax({
url: ajaxURL,
type: "POST",
data: 'a=server_actions&do=settings_save'+datastr,
success:function(html){
if(html == 'success') infobox('s','');
else infobox('f','Failed: '+html);
},
error:function(a,b,c){
infobox('f','Error: '+b+', '+c);
}
});
}
/*
*
* Startup Items / CMD Line Editor
*
*/
function server_save_startup(gameID)
{
if(gameID == "")
{
alert("No game ID provided!");
return false;
}
var data = "";
var sortList = $('#sort_list').val();
//var startType = $('#startup').val();
//var startType = $('input[name=startup]').val();
if($('#smp').is(':checked')) var startType = 'smp';
else var startType = 'str';
// Loop through all items and their values
$('input').each(function(index,value) {
var thisID = value.id;
var thisValue = encodeURIComponent(value.value);
// Update checkboxes
if($('#'+thisID).is(':checked'))
{
$('#'+thisID).val('1');
thisValue = '1';
}
data += "&"+thisID+"="+thisValue;
});
// a=server_startup_save
$.ajax({
url: ajaxURL,
data: "a=server_actions&do=startup_save&id="+gameID+data+"&start_type="+startType+"&sort_list="+sortList,
success:function(html){
if(html == 'success') infobox('s','');
else infobox('f','Failed: '+html);
},
error:function(a,b,c){
alert("Error: "+a+", b: "+b+", c: "+c);
}
});
}
// Add a startup item
function server_add_startup()
{
// Add + 1 to current num, store new
var newAmount = parseFloat($('#newitemnum').val()) + 1;
$('#newitemnum').val(newAmount);
$('#strtbl').append('<tbody id="sortitm_'+newAmount+'" class="sortable"><tr><td width="200"><div class="str_itm_ed"><input type="text" class="inputs" id="additm_'+newAmount+'" value="" /></div></td><td width="200"><div class="str_val_ed"><input type="text" class="inputs" id="addval_'+newAmount+'" value="" /></div></td><td width="120" style="cursor:default;"><input type="checkbox" id="addusred_'+newAmount+'" value="0" /></td></tr></tbody>');
}
// Delete a startup item
function server_del_startup(startID,serverID)
{
if(startID == "" || serverID == "")
{
alert("No startup ID or server ID provided!");
return false;
}
$.ajax({
url: ajaxURL,
data: "a=server_actions&do=startup_del_item&id="+startID+"&serverid="+serverID,
success:function(html){
if(html == 'success')
{
//infobox('s','');
$('#sortitm_'+startID).fadeOut('slow');
}
else
{
infobox('f','Failed: '+html);
}
},
error:function(a,b,c){
alert("Error: "+a+", b: "+b+", c: "+c);
}
});
}
// Confirm deleting a startup item
function server_confirm_del_startup(startID,serverID)
{
var answer = confirm("Are you sure?\n\nDelete this startup item?");
if(answer) server_del_startup(startID,serverID)
else return false;
}
/*
*
* Server Status Changes
*
*/
// Restart a gameserver
function server_restart(srvID)
{
if(srvID == "")
{
alert("No server ID given!");
return false;
}
// a=server_do_restart
$.ajax({
url: ajaxURL,
data: 'a=server_actions&do=restart&id='+srvID,
beforeSend:function(){
infobox('i','Restarting ...');
},
success:function(html){
if(html == 'success') infobox('s','');
else infobox('f','Failed: '+html);
// Refresh status
setTimeout("server_tab_info("+srvID+")",3000);
},
error:function(a,b,c){
infobox('f','Error: '+b+', '+c);
}
});
}
// Stop a gameserver
function server_stop(srvID)
{
if(srvID == "")
{
alert("No server ID given!");
return false;
}
$.ajax({
url: ajaxURL,
data: 'a=server_actions&do=stop&id='+srvID,
beforeSend:function(){
infobox('i','Stopping ...');
},
success:function(html){
if(html == 'success') infobox('s','');
else infobox('f','Failed: '+html);
// Refresh status
setTimeout("server_tab_info("+srvID+")",3000);
},
error:function(a,b,c){
infobox('f','Error: '+b+', '+c);
}
});
}
// Update a server
function server_update(srvID)
{
if(srvID == "")
{
alert("No server ID given!");
return false;
}
$.ajax({
url: ajaxURL,
data: 'a=server_actions&do=update&id='+srvID,
beforeSend:function(){
infobox('i','Starting update ...');
// Refresh status
setTimeout("server_tab_info("+srvID+")",2000);
},
success:function(html){
if(html == 'success') infobox('s','');
else infobox('f','Failed: '+html);
},
error:function(a,b,c){
infobox('f','Error: '+b+', '+c);
}
});
}
/*
*
* Server Creation
*
*/
// Create Form
function server_show_create()
{
$.ajax({
url: ajaxURL,
data: 'a=server_create_form',
success:function(html){
// Show modal with info
$("#modal").html(html).modal({overlayClose:true,opacity:70,overlayCss:{backgroundColor:"#000"},onClose: function (dialog) {
dialog.data.fadeOut('fast',function () { $.modal.close(); });
}});
}
});
}
// Create
function server_create()
{
var tplID = $('#create_tplid').val();
var netID = $('#create_network').val();
var ownerID = $('#create_owner').val();
var port = $('#create_port').val();
var descr = $('#create_desc').val();
$.ajax({
url: ajaxURL,
data: "a=server_actions&do=create&tplid="+tplID+"&netid="+netID+"&ownerid="+ownerID+"&port="+port+"&desc="+descr,
success:function(html){
if(html == 'success')
{
$.modal.close();
mainpage('servers','');
}
else
{
$('#create_info').hide().html('<b>Failed:</b> '+html).fadeIn();
}
},
error:function(a,b,c){
alert('Error: '+b+', '+c);
}
});
}
// Get default port for server creation
function server_getport()
{
//var gameID = $('#create_game').val();
var thisTplID = $('#create_tplid').val();
if(thisTplID == "")
{
$('#create_port').val('');
return false;
}
$.ajax({
url: ajaxURL,
data: 'a=server_actions&do=create_getport&tplid='+thisTplID,
success:function(html){
$('#create_port').val(html);
},
error:function(a,b,c){
infobox('f','Error: '+b+', '+c);
}
});
}
// Get all templates available for this chosen Network Server
function server_create_gettpls()
{
var netID = $('#create_network').val();
if(netID == "")
{
//alert("No network server selected!");
$('#create_port').val('');
$('#tpl_area').html('Select a Network Server first');
return false;
}
$.ajax({
url: ajaxURL,
data: 'a=server_actions&do=create_gettpls&netid='+netID,
beforeSend:function(){
$('#tpl_area').html('<i>Loading ...</i>');
},
success:function(html){
$('#tpl_area').html(html);
try {
$("body select").msDropDown();
} catch(e) {
alert(e.message);
}
},
error:function(a,b,c){
infobox('f','Error: '+b+', '+c);
}
});
}
// Get PID(s), CPU and Memory info for a server
function server_getinfo(srvID)
{
if(srvID == "")
{
alert("No server ID given!");
return false;
}
$.ajax({
url: ajaxURL,
data: 'a=server_actions&do=getinfo&id='+srvID,
dataType: 'json',
beforeSend:function(){
$('#gamecpu').html('<i>Connecting ...</i>');
},
success:function(html){
// Example: {"respid":"10562","ppid":"10569","cpid":"10574","cpu":"0.0","mem":"3.1"}
// Normal response
if(html.respid)
{
var srvResPID = html.respid;
var srvParentPID = html.ppid;
var srvCPU = html.cpu;
var srvMemory = html.mem;
if(html.cpid) var srvChildPID = ', Child PID: '+html.cpid;
else var srvChildPID = '';
$('#gamecpu').hide().html('<b>CPU:</b> '+srvCPU+'%, <b>Memory:</b> '+srvMemory+'%').fadeIn('fast');
$('#gamepids').hide().html('Restart PID: '+srvResPID+', Server PID: '+srvParentPID+srvChildPID).fadeIn('fast');
}
// Bash script error output
else if(html.error)
{
$('#gamecpu').html('Error: ('+html.error+')');
$('#gamepids').hide();
}
else
{
$('#gamecpu').html('Unable to get system info ('+html+')');
$('#gamepids').hide();
}
},
error:function(a,b,c){
$('#gamecpu').html('Unable to get system info: '+a+', b: '+b+', c: '+c);
$('#gamepids').hide();
}
});
}
// Confirm deleting a server
function confirm_server_delete(srvID)
{
if(srvID == "")
{
alert("No server ID given!");
return false;
}
var answer = confirm("Are you sure?\n\nDelete this server and ALL its files permanently?");
if(answer) server_delete(srvID);
else return false;
}
// Delete server
function server_delete(srvID)
{
if(srvID == "")
{
alert("No server ID given!");
return false;
}
$.ajax({
url: ajaxURL,
data: 'a=server_actions&do=delete&id='+srvID,
success:function(html){
if(html == 'success')
{
infobox('s','');
setTimeout("mainpage('servers','')",1000);
}
else
{
infobox('f','Error: '+html);
}
},
error:function(a,b,c){
infobox('f','Error: '+b+', '+c);
}
});
}
// Get server output
function server_getoutput(srvID)
{
if(srvID == "")
{
alert("No server ID given!");
return false;
}
$.ajax({
url: ajaxURL,
data: 'a=server_actions&do=getoutput&id='+srvID,
beforeSend:function(){
$('#srv_outputrow,#srv_sendrow').show();
$('#srv_outputbox').html('Loading ...');
$('#send_cmd').focus();
},
success:function(html){
// $('#box_servers_content').append(html);
$('#srv_outputbox').html(html);
$('#srv_outputbox').animate({scrollTop: $('#srv_outputbox').prop("scrollHeight")}, 300);
$('html,body').animate({scrollTop: $('html,body').prop("scrollHeight")}, 300);
},
error:function(a,b,c){
infobox('f','Error: '+b+', '+c);
}
});
}
// Send a command via GNU Screen
function server_send_screen_cmd(srvID)
{
if(srvID == "")
{
alert("No server ID given!");
return false;
}
var cmd = $('#send_cmd').val();
if(cmd == "") return false;
$.ajax({
url: ajaxURL,
data: 'a=server_actions&do=sendscreencmd&id='+srvID+'&cmd='+cmd,
beforeSend:function(){
infobox('i','Sending ...');
},
success:function(html){
if(html == 'success')
{
infobox('s','');
setTimeout("server_getoutput("+srvID+")", 1000);
}
else
{
infobox('f','Error: '+html);
}
},
error:function(a,b,c){
infobox('f','Error: '+b+', '+c);
}
});
}
// Multi server query (with JSON input)
function multi_query()
{
var jsonArr = JSON.parse($('#json_hid').val());
var rawJSON = $('#json_hid').val();
$.each(jsonArr, function() {
var srvID = this.id;
// console.log("Host: "+this.host);
$('#statustd_'+srvID).html('<i>Loading ...</i>');
});
$.ajax({
url: ajaxURL,
data: 'a=server_actions&do=multi_query_json&json='+rawJSON,
success:function(html){
//alert("HTML: "+html);
// $('body').append("HTML: "+html);
var resJSON = JSON.parse(html);
$.each(resJSON, function() {
var srvID = this.id;
var srvStatus = this.status;
$('#statustd_'+srvID).html(srvStatus);
});
},
error:function(a,b,c){
alert('Error: '+b+', '+c);
}
});
}