forked from Alanaktion/MCHostPanel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
console.php
116 lines (105 loc) · 2.73 KB
/
console.php
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
<?php
require_once 'inc/lib.php';
session_start();
if (empty($_SESSION['user']) || !$user = user_info($_SESSION['user'])) {
// Not logged in, redirect to login page
header('Location: .');
exit('Not Authorized');
}
?><!doctype html>
<html>
<head>
<title>Console | MCHostPanel</title>
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/bootstrap-responsive.min.css">
<link rel="stylesheet" href="css/smooth.css" id="smooth-css">
<link rel="stylesheet" href="css/style.css">
<meta name="author" content="Alan Hardman <alan@phpizza.com>">
<style type="text/css">
form {
margin: 0;
}
</style>
<script src="js/jquery-1.7.2.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script type="text/javascript">
function refreshLog() {
updateStatus();
$.post('ajax.php', {
req: 'server_log'
}, function (data) {
if ($('#log').scrollTop() == $('#log')[0].scrollHeight) {
$('#log').html(data).scrollTop($('#log')[0].scrollHeight);
} else {
$('#log').html(data);
}
window.setTimeout(refreshLog, 1000);
});
}
function refreshLogOnce() {
$.post('ajax.php', {
req: 'server_log'
}, function (data) {
$('#log').html(data).scrollTop($('#log')[0].scrollHeight);
});
}
function updateStatus() {
$.post('ajax.php', {
req: 'server_running'
}, function (data) {
if (data) {
$('#cmd').prop('disabled', false);
} else {
$('#cmd').prop('disabled', true);
}
}, 'json');
}
$(document).ready(function () {
// Send commands with form onSubmit
$('#frm-cmd').submit(function () {
$.post('ajax.php', {
req: 'server_cmd',
cmd: $('#cmd').val()
}, function () {
$('#cmd').val('').prop('disabled', false).focus();
refreshLogOnce();
});
$('#cmd').prop('disabled', true);
return false;
});
// Fix sizing
$('#log').css('height', $(window).height() - 200 + 'px');
// Check if server is running
updateStatus();
// Initialize log
$.post('ajax.php', {
req: 'server_log'
}, function (data) {
$('#log').html(data).scrollTop($('#log')[0].scrollHeight);
window.setTimeout(refreshLog, 1000);
});
// Keep sizing correct
$(document).resize(function () {
$('#log').css('height', $(window).height() - 190 + 'px');
});
});
</script>
</head>
<body>
<?php require 'inc/top.php'; ?>
<div class="tab-content">
<div class="tab-pane active">
<?php if (!empty($user['ram'])) { ?>
<pre id="log" class="well well-small"></pre>
<form id="frm-cmd">
<input type="text" id="cmd" name="cmd" maxlength="250" autofocus>
</form>
<?php
} else {
echo '<p class="alert alert-info">Your account does not have a server.</p>';
}
?>
</div>
</div>
</body>
</html>