2017-01-24 22:57:08 +00:00
|
|
|
// Copyright (c) 2015 - 2017 Dane Everitt <dane@daneeveritt.com>
|
2017-01-15 23:52:22 +00:00
|
|
|
//
|
|
|
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
// of this software and associated documentation files (the "Software"), to deal
|
|
|
|
// in the Software without restriction, including without limitation the rights
|
|
|
|
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
// copies of the Software, and to permit persons to whom the Software is
|
|
|
|
// furnished to do so, subject to the following conditions:
|
|
|
|
//
|
|
|
|
// The above copyright notice and this permission notice shall be included in all
|
|
|
|
// copies or substantial portions of the Software.
|
|
|
|
//
|
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
// SOFTWARE.
|
2017-04-15 22:23:29 +00:00
|
|
|
$('#console-popout').on('click', function (event) {
|
|
|
|
event.preventDefault();
|
|
|
|
window.open($(this).attr('href'), 'Pterodactyl Console', 'width=800,height=400');
|
|
|
|
});
|
2017-01-26 23:44:28 +00:00
|
|
|
var Server = (function () {
|
2017-01-15 23:52:22 +00:00
|
|
|
|
2017-01-26 23:44:28 +00:00
|
|
|
function initSocket() {
|
|
|
|
if (typeof $.notifyDefaults !== 'function') {
|
|
|
|
console.error('Notify does not appear to be loaded.');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (typeof io !== 'function') {
|
|
|
|
console.error('Socket.io is reqired to use this panel.');
|
|
|
|
return;
|
2017-01-19 02:12:58 +00:00
|
|
|
}
|
|
|
|
|
2017-01-26 23:44:28 +00:00
|
|
|
$.notifyDefaults({
|
|
|
|
placement: {
|
|
|
|
from: 'bottom',
|
|
|
|
align: 'right'
|
|
|
|
},
|
|
|
|
newest_on_top: true,
|
|
|
|
delay: 2000,
|
2017-03-30 20:20:51 +00:00
|
|
|
offset: {
|
|
|
|
x: 20,
|
|
|
|
y: 60,
|
|
|
|
},
|
2017-01-26 23:44:28 +00:00
|
|
|
animate: {
|
2017-03-30 20:20:51 +00:00
|
|
|
enter: 'animated bounceInUp',
|
|
|
|
exit: 'animated bounceOutDown'
|
2017-01-26 23:44:28 +00:00
|
|
|
}
|
|
|
|
});
|
2017-01-19 02:12:58 +00:00
|
|
|
|
2017-01-26 23:44:28 +00:00
|
|
|
var notifySocketError = false;
|
2017-01-15 23:52:22 +00:00
|
|
|
|
2017-10-01 02:00:24 +00:00
|
|
|
window.Socket = io(Pterodactyl.node.scheme + '://' + Pterodactyl.node.fqdn + ':' + Pterodactyl.node.daemonListen + '/v1/ws/' + Pterodactyl.server.uuid, {
|
2017-01-26 23:44:28 +00:00
|
|
|
'query': 'token=' + Pterodactyl.server.daemonSecret,
|
|
|
|
});
|
|
|
|
|
2017-11-18 22:50:08 +00:00
|
|
|
Socket.on('error', function (err) {
|
|
|
|
if(typeof notifySocketError !== 'object') {
|
|
|
|
notifySocketError = $.notify({
|
|
|
|
message: 'There was an error attempting to establish a WebSocket connection to the Daemon. This panel will not work as expected.<br /><br />' + err,
|
|
|
|
}, {
|
|
|
|
type: 'danger',
|
|
|
|
delay: 0,
|
|
|
|
});
|
|
|
|
}
|
2017-12-15 03:05:26 +00:00
|
|
|
setStatusIcon(999);
|
2017-11-18 22:50:08 +00:00
|
|
|
});
|
|
|
|
|
2017-01-26 23:44:28 +00:00
|
|
|
Socket.io.on('connect_error', function (err) {
|
|
|
|
if(typeof notifySocketError !== 'object') {
|
|
|
|
notifySocketError = $.notify({
|
|
|
|
message: 'There was an error attempting to establish a WebSocket connection to the Daemon. This panel will not work as expected.<br /><br />' + err,
|
|
|
|
}, {
|
|
|
|
type: 'danger',
|
2017-03-30 20:20:51 +00:00
|
|
|
delay: 0,
|
2017-01-26 23:44:28 +00:00
|
|
|
});
|
|
|
|
}
|
2017-12-15 03:05:26 +00:00
|
|
|
setStatusIcon(999);
|
2017-01-26 23:44:28 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
// Connected to Socket Successfully
|
|
|
|
Socket.on('connect', function () {
|
|
|
|
if (notifySocketError !== false) {
|
|
|
|
notifySocketError.close();
|
|
|
|
notifySocketError = false;
|
|
|
|
}
|
|
|
|
});
|
2017-01-15 23:52:22 +00:00
|
|
|
|
2017-01-26 23:44:28 +00:00
|
|
|
Socket.on('initial status', function (data) {
|
|
|
|
setStatusIcon(data.status);
|
|
|
|
});
|
|
|
|
|
|
|
|
Socket.on('status', function (data) {
|
|
|
|
setStatusIcon(data.status);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function setStatusIcon(status) {
|
|
|
|
switch (status) {
|
|
|
|
case 0:
|
|
|
|
$('#server_status_icon').html('<i class="fa fa-circle text-danger"></i> Offline');
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
$('#server_status_icon').html('<i class="fa fa-circle text-success"></i> Online');
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
$('#server_status_icon').html('<i class="fa fa-circle text-warning"></i> Starting');
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
$('#server_status_icon').html('<i class="fa fa-circle text-warning"></i> Stopping');
|
|
|
|
break;
|
|
|
|
default:
|
2017-12-15 03:05:26 +00:00
|
|
|
$('#server_status_icon').html('<i class="fa fa-question-circle text-danger"></i> Connection Error');
|
2017-01-26 23:44:28 +00:00
|
|
|
break;
|
2017-01-19 02:12:58 +00:00
|
|
|
}
|
2017-01-26 23:44:28 +00:00
|
|
|
}
|
2017-01-15 23:52:22 +00:00
|
|
|
|
2017-01-26 23:44:28 +00:00
|
|
|
return {
|
|
|
|
init: function () {
|
|
|
|
initSocket();
|
|
|
|
},
|
|
|
|
|
|
|
|
setStatusIcon: setStatusIcon,
|
|
|
|
}
|
2017-01-15 23:52:22 +00:00
|
|
|
|
|
|
|
})();
|
|
|
|
|
2017-01-26 23:44:28 +00:00
|
|
|
Server.init();
|