mirror of
https://gitlab.com/crafty-controller/crafty-4.git
synced 2024-08-30 18:23:09 +00:00
2528c123f2
Checks when crafty starts for internet and a port forward for Crafty's https port. Checks on server launch for internet connection and for port forwarding for executed server.
322 lines
9.9 KiB
HTML
322 lines
9.9 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<!-- Required meta tags -->
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
{% block meta %}{% end %}
|
|
<title>{% block title %}{{ _('Default') }}{% end %}</title>
|
|
|
|
<!-- plugins:css -->
|
|
<link rel="stylesheet" href="/static/assets/vendors/mdi/css/materialdesignicons.min.css">
|
|
<link rel="stylesheet" href="/static/assets/vendors/flag-icon-css/css/flag-icon.min.css">
|
|
<link rel="stylesheet" href="/static/assets/vendors/ti-icons/css/themify-icons.css">
|
|
<link rel="stylesheet" href="/static/assets/vendors/typicons/typicons.css">
|
|
<link rel="stylesheet" href="/static/assets/vendors/fontawesome5/css/all.css">
|
|
<link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/v/bs4/dt-1.10.22/fh-3.1.7/r-2.2.6/sc-2.0.3/sp-1.2.2/datatables.min.css"/>
|
|
<link rel="stylesheet" href="/static/assets/vendors/css/vendor.bundle.base.css">
|
|
<link rel="stylesheet" href="/static/assets/css/crafty.css">
|
|
|
|
<!-- endinject -->
|
|
|
|
<!-- Plugin css for this page -->
|
|
<link rel="stylesheet" href="/static/assets/vendors/jvectormap/jquery-jvectormap.css">
|
|
<!-- End Plugin css for this page -->
|
|
|
|
<!-- Layout styles -->
|
|
<link rel="stylesheet" href="/static/assets/css/dark/style.css">
|
|
<!-- End Layout styles -->
|
|
|
|
<link rel="shortcut icon" href="/static/assets/images/favicon.png" />
|
|
<link rel="stylesheet" href="/static/assets/css/crafty.css">
|
|
</head>
|
|
|
|
<body class="dark-theme">
|
|
<div class="container-scroller">
|
|
<!-- partial:partials/_navbar.html -->
|
|
<nav class="navbar default-layout col-lg-12 col-12 p-0 fixed-top d-flex flex-row">
|
|
<div class="text-center navbar-brand-wrapper d-flex align-items-top justify-content-center">
|
|
<a class="navbar-brand brand-logo" href="/panel/dashboard">
|
|
<img src="/static/assets/images/logo_long.jpg" alt="logo" /> </a>
|
|
<a class="navbar-brand brand-logo-mini" href="/panel/dashboard">
|
|
<img src="/static/assets/images/logo_square.jpg" alt="logo" /> </a>
|
|
</div>
|
|
<div class="navbar-menu-wrapper d-flex align-items-center">
|
|
<button class="navbar-toggler navbar-toggler align-self-center" type="button" data-toggle="minimize">
|
|
<span class="mdi mdi-menu"></span>
|
|
</button>
|
|
|
|
{% include notify.html %}
|
|
|
|
<button class="navbar-toggler navbar-toggler-right d-lg-none align-self-center" type="button" data-toggle="offcanvas">
|
|
<span class="mdi mdi-menu"></span>
|
|
</button>
|
|
</div>
|
|
</nav>
|
|
|
|
{% include main_menu.html %}
|
|
|
|
<div class="main-panel">
|
|
|
|
<div class="warnings">
|
|
<noscript class="noscript-warning" style="padding: 20px; background-color: rgb(247, 151, 15);">
|
|
<div>{% raw translate('base', 'doesNotWorkWithoutJavascript') %}</div>
|
|
</noscript>
|
|
</div>
|
|
|
|
{% block content %}
|
|
{% end %}
|
|
|
|
{% include footer.html %}
|
|
|
|
</div>
|
|
<!-- main-panel ends -->
|
|
|
|
</div>
|
|
<!-- page-body-wrapper ends -->
|
|
</div>
|
|
|
|
|
|
<style>
|
|
.notifications {
|
|
position: fixed;
|
|
width: 200px;
|
|
top: 70px;
|
|
right: 0px;
|
|
}
|
|
.notification {
|
|
position: relative;
|
|
box-sizing: border-box;
|
|
padding: 0.5rem;
|
|
padding-left: 0.7rem;
|
|
width: 180px;
|
|
margin-left: 10px;
|
|
margin-right: 10px;
|
|
background: #282a40;
|
|
transition: right 0.75s, opacity 0.75s, top 0.75s;
|
|
right: -6rem;
|
|
opacity: 0.1;
|
|
margin-bottom: 1rem;
|
|
z-index: 999;
|
|
top: 0px;
|
|
}
|
|
.notification.active {
|
|
right: 0rem;
|
|
opacity: 1;
|
|
}
|
|
.notification.remove {
|
|
right: 0rem;
|
|
opacity: 0.1;
|
|
top: -2rem;
|
|
}
|
|
.notification p {
|
|
margin: 0px;
|
|
width: calc(160.8px - 16px);
|
|
z-index: inherit;
|
|
}
|
|
.notification span {
|
|
position: absolute;
|
|
right: 0.5rem;
|
|
top: 0.46rem;
|
|
cursor: pointer;
|
|
font-weight: bold;
|
|
line-height: 20px;
|
|
font-size: 22px;
|
|
user-select: none;
|
|
z-index: inherit;
|
|
}
|
|
</style>
|
|
<div class="notifications"></div>
|
|
|
|
|
|
<script src="/static/assets/vendors/js/vendor.bundle.base.js"></script>
|
|
<script src="/static/assets/js/shared/off-canvas.js"></script>
|
|
<script src="/static/assets/js/shared/hoverable-collapse.js"></script>
|
|
<script src="/static/assets/js/shared/misc.js"></script>
|
|
<script type="text/javascript" src="https://cdn.datatables.net/v/bs4/dt-1.10.22/fh-3.1.7/r-2.2.6/sc-2.0.3/sp-1.2.2/datatables.min.js"></script>
|
|
<script src="//cdnjs.cloudflare.com/ajax/libs/bootbox.js/5.4.0/bootbox.min.js"></script>
|
|
|
|
<script>
|
|
|
|
$.extend($.fn.dataTable.defaults, {
|
|
language: {% raw translate('datatables', 'i18n') %}
|
|
})
|
|
|
|
//used to get cookies from browser - this is part of tornados xsrf protection - it's for extra security
|
|
function getCookie(name) {
|
|
var r = document.cookie.match("\\b" + name + "=([^;]*)\\b");
|
|
return r ? r[1] : undefined;
|
|
}
|
|
|
|
// tool tips
|
|
$(function () {
|
|
$('[data-toggle="tooltip"]').tooltip()
|
|
})
|
|
|
|
// Notify
|
|
$(document).ready(function(){
|
|
$("#notificationDropdown").click(function(){
|
|
$.get("/ajax/announcements", function(data){
|
|
console.log(data);
|
|
bootbox.alert({
|
|
title: "Notifications",
|
|
message: data,
|
|
|
|
});
|
|
});
|
|
});
|
|
});
|
|
|
|
// {% if request.protocol == 'https' %}
|
|
let usingWebSockets = true;
|
|
|
|
let listenEvents = [];
|
|
|
|
try {
|
|
pageQueryParams = 'page_query_params=' + encodeURIComponent(location.search)
|
|
page = 'page=' + encodeURIComponent(location.pathname)
|
|
var wsInternal = new WebSocket('wss://' + location.host + '/ws?' + page + '&' + pageQueryParams);
|
|
wsInternal.onopen = function() {
|
|
console.log('opened WebSocket connection:', wsInternal)
|
|
};
|
|
wsInternal.onmessage = function (rawMessage) {
|
|
var message = JSON.parse(rawMessage.data);
|
|
|
|
console.log('got message: ', message)
|
|
|
|
listenEvents
|
|
.filter(listenedEvent => listenedEvent.event == message.event)
|
|
.forEach(listenedEvent => listenedEvent.callback(message.data))
|
|
};
|
|
wsInternal.onerror = function (errorEvent) {
|
|
console.error('WebSocket Error', errorEvent);
|
|
};
|
|
wsInternal.onclose = function (closeEvent) {
|
|
console.log('Closed WebSocket', closeEvent);
|
|
};
|
|
|
|
|
|
webSocket = {
|
|
on: function (event, callback) {
|
|
console.log('registered ' + event + ' event');
|
|
listenEvents.push({ event: event, callback: callback })
|
|
},
|
|
emit: function (event, data) {
|
|
var message = {
|
|
event: event,
|
|
data: data
|
|
}
|
|
|
|
wsInternal.send(JSON.stringify(message));
|
|
}
|
|
}
|
|
} catch (error) {
|
|
console.error('Error while making websocket helpers', error);
|
|
usingWebSockets = false;
|
|
}
|
|
// {% else %}
|
|
let usingWebSockets = false;
|
|
warn('WebSockets are not supported in Crafty if not using the https protocol')
|
|
var webSocket;
|
|
// {% end%}
|
|
|
|
if (webSocket) {
|
|
webSocket.on('send_start_error', function (start_error) {
|
|
var x = document.querySelector('.bootbox');
|
|
if(x){
|
|
x.remove()}
|
|
var x = document.querySelector('.modal-backdrop');
|
|
if(x){
|
|
x.remove()}
|
|
bootbox.alert({
|
|
message: start_error.error,
|
|
callback: function () {
|
|
location.reload();
|
|
}
|
|
})
|
|
});
|
|
}
|
|
|
|
|
|
function warn(message) {
|
|
var closeEl = document.createElement('span');
|
|
var strongEL = document.createElement('strong');
|
|
var msgEl = document.createElement('div');
|
|
|
|
closeEl.innerHTML = '×';
|
|
strongEL.textContent = 'Warning: ';
|
|
msgEl.append(strongEL, message);
|
|
|
|
|
|
closeEl.style.marginLeft = '15px';
|
|
closeEl.style.fontWeight = 'bold';
|
|
closeEl.style.float = 'right';
|
|
closeEl.style.fontSize = '22px';
|
|
closeEl.style.lineHeight = '20px';
|
|
closeEl.style.cursor = 'pointer';
|
|
|
|
closeEl.addEventListener('click', function () {this.parentElement.style.display='none';});
|
|
|
|
var parentEl = document.createElement('div');
|
|
|
|
parentEl.style.padding = '20px';
|
|
parentEl.style.backgroundColor = '#f7970f';
|
|
|
|
parentEl.appendChild(closeEl);
|
|
parentEl.appendChild(msgEl);
|
|
|
|
document.querySelector('.warnings').appendChild(parentEl);
|
|
}
|
|
|
|
function closeNotification(element) {
|
|
element.parentElement.classList.add('remove');
|
|
setTimeout(function () {
|
|
element.parentElement.remove();
|
|
}, 500);
|
|
}
|
|
|
|
function notify(message) {
|
|
console.log(`notify(${message}})`);
|
|
var paragraphEl = document.createElement('p');
|
|
var closeEl = document.createElement('span');
|
|
|
|
paragraphEl.textContent = message;
|
|
|
|
closeEl.innerHTML = '×';
|
|
closeEl.addEventListener('click', function () {closeNotification(this)});
|
|
|
|
var parentEl = document.createElement('div');
|
|
parentEl.appendChild(paragraphEl);
|
|
parentEl.appendChild(closeEl);
|
|
|
|
parentEl.classList.add('notification');
|
|
|
|
document.querySelector('.notifications').appendChild(parentEl);
|
|
|
|
|
|
setTimeout(function () {
|
|
parentEl.classList.add('active');
|
|
}, 200);
|
|
|
|
setTimeout(function (element) {
|
|
closeNotification(element);
|
|
}, 7500, closeEl);
|
|
|
|
`
|
|
<div class="notification">
|
|
<p>Hello, World! This text should overflow</p>
|
|
<span>×</span>
|
|
</div>
|
|
`
|
|
}
|
|
webSocket.on('notification', notify);
|
|
|
|
</script>
|
|
|
|
{% block js %}
|
|
<!-- Custom js for this page -->
|
|
<!-- End custom js for this page -->
|
|
{% end %}
|
|
|
|
</body>
|
|
</html> |