2018-08-14 12:11:49 +00:00
|
|
|
<!--
|
|
|
|
Copyright (C) 2012 by Jeremy P. White <jwhite@codeweavers.com>
|
|
|
|
|
|
|
|
This file is part of spice-html5.
|
|
|
|
|
|
|
|
spice-html5 is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
spice-html5 is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU Lesser General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public License
|
|
|
|
along with spice-html5. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
--------------------------------------------------
|
|
|
|
Spice Javascript client template.
|
|
|
|
Refer to main.js for more detailed information
|
|
|
|
--------------------------------------------------
|
|
|
|
|
|
|
|
-->
|
|
|
|
{% extends "console-base.html" %}
|
|
|
|
{% load i18n %}
|
|
|
|
{% load staticfiles %}
|
2020-03-16 13:59:45 +00:00
|
|
|
|
2018-08-14 12:11:49 +00:00
|
|
|
{% block head %}
|
2020-06-24 09:39:32 +00:00
|
|
|
<title>WebVirtCloud - Spice Client - Full</title>
|
|
|
|
<link rel="stylesheet" type="text/css" href="{% static "js/spice-html5/spice.css" %}" />
|
2018-08-14 12:11:49 +00:00
|
|
|
|
2020-06-24 09:39:32 +00:00
|
|
|
<!-- ES2015/ES6 modules polyfill -->
|
2020-06-26 13:31:41 +00:00
|
|
|
<script nomodule src='{% static "thirdparty/browser-es-module-loader/dist/browser-es-module-loader.js" %}'></script>
|
|
|
|
|
2018-08-14 12:11:49 +00:00
|
|
|
|
2020-06-24 09:39:32 +00:00
|
|
|
<script type="module" crossorigin="anonymous">
|
2018-08-14 12:11:49 +00:00
|
|
|
|
2020-06-24 09:39:32 +00:00
|
|
|
import * as SpiceHtml5 from '{% static "js/spice-html5/main.js" %}';
|
2018-08-14 12:11:49 +00:00
|
|
|
|
2020-06-24 09:39:32 +00:00
|
|
|
var host = null, port = null;
|
|
|
|
var sc;
|
2018-08-14 12:11:49 +00:00
|
|
|
|
2020-06-24 09:39:32 +00:00
|
|
|
function spice_error(e) {
|
|
|
|
disconnect();
|
|
|
|
}
|
2018-08-14 12:11:49 +00:00
|
|
|
|
2020-06-24 09:39:32 +00:00
|
|
|
function connect() {
|
|
|
|
var host, port, password, scheme = "ws://", uri;
|
2018-08-14 12:11:49 +00:00
|
|
|
|
2020-06-24 09:39:32 +00:00
|
|
|
host = document.getElementById("host").value;
|
|
|
|
port = document.getElementById("port").value;
|
|
|
|
password = document.getElementById("password").value;
|
|
|
|
|
|
|
|
if ((!host) || (!port)) {
|
2020-06-26 07:06:51 +00:00
|
|
|
console.log('{% trans "must set host and port" %}');
|
2020-06-24 09:39:32 +00:00
|
|
|
return;
|
2020-01-23 12:45:41 +00:00
|
|
|
}
|
2018-08-14 12:11:49 +00:00
|
|
|
|
2020-06-24 09:39:32 +00:00
|
|
|
if (sc) {
|
|
|
|
sc.stop();
|
2020-01-23 12:45:41 +00:00
|
|
|
}
|
2018-08-14 12:11:49 +00:00
|
|
|
|
2020-06-26 13:31:41 +00:00
|
|
|
// uri = scheme + host + ":" + port;
|
|
|
|
uri = scheme + "{{ ws_host }}:{{ ws_port }}{{ ws_path }}";
|
2018-08-14 12:11:49 +00:00
|
|
|
|
2020-06-24 09:39:32 +00:00
|
|
|
document.getElementById('connectButton').innerHTML = "Stop";
|
|
|
|
document.getElementById('connectButton').onclick = disconnect;
|
2018-08-14 12:11:49 +00:00
|
|
|
|
2020-06-24 09:39:32 +00:00
|
|
|
try {
|
|
|
|
sc = new SpiceHtml5.SpiceMainConn({
|
|
|
|
uri: uri, screen_id: "spice-screen", dump_id: "debug-div",
|
|
|
|
message_id: "message-div", password: password, onerror: spice_error, onagent: agent_connected
|
|
|
|
});
|
|
|
|
}
|
|
|
|
catch (e) {
|
|
|
|
alert(e.toString());
|
|
|
|
disconnect();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function disconnect() {
|
2020-06-26 07:06:51 +00:00
|
|
|
console.log(">>" + '{% trans "disconnect" %}');
|
2020-06-24 09:39:32 +00:00
|
|
|
if (sc) {
|
|
|
|
sc.stop();
|
|
|
|
}
|
|
|
|
document.getElementById('connectButton').innerHTML = "Start";
|
|
|
|
document.getElementById('connectButton').onclick = connect;
|
|
|
|
if (window.File && window.FileReader && window.FileList && window.Blob) {
|
|
|
|
var spice_xfer_area = document.getElementById('spice-xfer-area');
|
|
|
|
if (spice_xfer_area != null) {
|
|
|
|
document.getElementById('spice-area').removeChild(spice_xfer_area);
|
2018-08-14 12:11:49 +00:00
|
|
|
}
|
2020-06-24 09:39:32 +00:00
|
|
|
document.getElementById('spice-area').removeEventListener('dragover', SpiceHtml5.handle_file_dragover, false);
|
|
|
|
document.getElementById('spice-area').removeEventListener('drop', SpiceHtml5.handle_file_drop, false);
|
2020-01-23 12:45:41 +00:00
|
|
|
}
|
2020-06-26 07:06:51 +00:00
|
|
|
console.log("<<" + '{% trans "disconnect" %}');
|
2020-06-24 09:39:32 +00:00
|
|
|
}
|
2018-08-14 12:11:49 +00:00
|
|
|
|
2020-06-24 09:39:32 +00:00
|
|
|
function agent_connected(sc) {
|
|
|
|
window.addEventListener('resize', SpiceHtml5.handle_resize);
|
|
|
|
window.spice_connection = this;
|
2020-01-23 12:45:41 +00:00
|
|
|
|
2020-06-24 09:39:32 +00:00
|
|
|
SpiceHtml5.resize_helper(this);
|
2018-08-14 12:11:49 +00:00
|
|
|
|
2020-06-24 09:39:32 +00:00
|
|
|
if (window.File && window.FileReader && window.FileList && window.Blob) {
|
|
|
|
var spice_xfer_area = document.createElement("div");
|
|
|
|
spice_xfer_area.setAttribute('id', 'spice-xfer-area');
|
|
|
|
document.getElementById('spice-area').appendChild(spice_xfer_area);
|
|
|
|
document.getElementById('spice-area').addEventListener('dragover', SpiceHtml5.handle_file_dragover, false);
|
|
|
|
document.getElementById('spice-area').addEventListener('drop', SpiceHtml5.handle_file_drop, false);
|
2020-01-23 12:45:41 +00:00
|
|
|
}
|
2020-06-24 09:39:32 +00:00
|
|
|
else {
|
2020-06-26 07:06:51 +00:00
|
|
|
console.log('{% trans "File API is not supported" %}');
|
2020-06-24 09:39:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function toggle_console() {
|
|
|
|
var checkbox = document.getElementById('show_console');
|
|
|
|
var m = document.getElementById('message-div');
|
|
|
|
|
|
|
|
if (checkbox.checked) {
|
|
|
|
m.style.display = 'block';
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
m.style.display = 'none';
|
|
|
|
}
|
|
|
|
|
|
|
|
window.addEventListener('resize', SpiceHtml5.handle_resize);
|
|
|
|
if (sc) {
|
|
|
|
SpiceHtml5.resize_helper(sc);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* SPICE port event listeners
|
|
|
|
window.addEventListener('spice-port-data', function(event) {
|
|
|
|
// Here we convert data to text, but really we can obtain binary data also
|
|
|
|
var msg_text = arraybuffer_to_str(new Uint8Array(event.detail.data));
|
|
|
|
DEBUG > 0 && console.log('SPICE port', event.detail.channel.portName, 'message text:', msg_text);
|
|
|
|
});
|
|
|
|
|
|
|
|
window.addEventListener('spice-port-event', function(event) {
|
|
|
|
DEBUG > 0 && console.log('SPICE port', event.detail.channel.portName, 'event data:', event.detail.spiceEvent);
|
|
|
|
});
|
|
|
|
*/
|
|
|
|
|
|
|
|
function fullscreen() {
|
|
|
|
var screen = document.getElementById('spice-screen');
|
|
|
|
if (screen.requestFullscreen) {
|
2020-03-16 13:59:45 +00:00
|
|
|
screen.requestFullscreen();
|
2020-06-24 09:39:32 +00:00
|
|
|
} else if (screen.mozRequestFullScreen) {
|
2020-03-16 13:59:45 +00:00
|
|
|
screen.mozRequestFullScreen();
|
2020-06-24 09:39:32 +00:00
|
|
|
} else if (screen.webkitRequestFullscreen) {
|
2020-03-16 13:59:45 +00:00
|
|
|
screen.webkitRequestFullscreen();
|
2020-06-24 09:39:32 +00:00
|
|
|
} else if (screen.msRequestFullscreen) {
|
2020-03-16 13:59:45 +00:00
|
|
|
screen.msRequestFullscreen();
|
|
|
|
}
|
|
|
|
}
|
2020-06-24 09:39:32 +00:00
|
|
|
|
|
|
|
function sendctrlaltfn(f) {
|
|
|
|
SpiceHtml5.sendCtrlAltFN(sc, f);
|
|
|
|
return false;
|
|
|
|
}
|
2020-03-16 13:59:45 +00:00
|
|
|
/* SPICE port event listeners
|
|
|
|
window.addEventListener('spice-port-data', function(event) {
|
|
|
|
// Here we convert data to text, but really we can obtain binary data also
|
|
|
|
var msg_text = arraybuffer_to_str(new Uint8Array(event.detail.data));
|
|
|
|
DEBUG > 0 && console.log('SPICE port', event.detail.channel.portName, 'message text:', msg_text);
|
|
|
|
});
|
|
|
|
|
|
|
|
window.addEventListener('spice-port-event', function(event) {
|
|
|
|
DEBUG > 0 && console.log('SPICE port', event.detail.channel.portName, 'event data:', event.detail.spiceEvent);
|
|
|
|
});
|
|
|
|
*/
|
|
|
|
document.getElementById("fullscreen_button").addEventListener('click', fullscreen);
|
2020-06-24 09:39:32 +00:00
|
|
|
document.getElementById('ctrlaltdel').addEventListener('click', function () { sendCtrlAltDel(sc); });
|
|
|
|
document.getElementById('ctrlaltf1').addEventListener('click', function () { sendctrlaltfn(0) });
|
|
|
|
document.getElementById('ctrlaltf2').addEventListener('click', function () { sendctrlaltfn(1) });
|
|
|
|
document.getElementById('ctrlaltf3').addEventListener('click', function () { sendctrlaltfn(2) });
|
|
|
|
document.getElementById('ctrlaltf4').addEventListener('click', function () { sendctrlaltfn(3) });
|
|
|
|
document.getElementById('ctrlaltf5').addEventListener('click', function () { sendctrlaltfn(4) });
|
|
|
|
document.getElementById('ctrlaltf6').addEventListener('click', function () { sendctrlaltfn(5) });
|
|
|
|
document.getElementById('ctrlaltf7').addEventListener('click', function () { sendctrlaltfn(6) });
|
|
|
|
document.getElementById('ctrlaltf8').addEventListener('click', function () { sendctrlaltfn(7) });
|
|
|
|
document.getElementById('ctrlaltf9').addEventListener('click', function () { sendctrlaltfn(8) });
|
|
|
|
document.getElementById('ctrlaltf10').addEventListener('click', function () { sendctrlaltfn(9) });
|
|
|
|
document.getElementById('ctrlaltf11').addEventListener('click', function () { sendctrlaltfn(10) });
|
|
|
|
document.getElementById('ctrlaltf12').addEventListener('click', function () { sendctrlaltfn(11) });
|
2020-03-16 13:59:45 +00:00
|
|
|
|
|
|
|
document.getElementById('connectButton').onclick = connect;
|
|
|
|
document.getElementById('show_console').onchange = toggle_console;
|
|
|
|
</script>
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
2020-06-24 09:39:32 +00:00
|
|
|
<div id="login">
|
|
|
|
<span class="logo">SPICE</span>
|
2020-06-26 07:06:51 +00:00
|
|
|
<label for="host">{% trans 'Host' %}:</label>
|
|
|
|
<input type='text' id='host' value='{{ ws_host }}'>
|
|
|
|
<label for="port">{% trans 'Port' %}:</label>
|
|
|
|
<input type='text' id='port' value='{{ ws_port }}'>
|
|
|
|
<label for="password">{% trans 'Password' %}:</label>
|
|
|
|
<input type='password' id='password'>
|
|
|
|
<label for="show_console">{% trans 'Show console' %}</label>
|
|
|
|
<input type="checkbox" id="show_console" value="1" onchange="toggle_console()" checked>
|
2020-06-24 09:39:32 +00:00
|
|
|
<button id="connectButton">{% trans 'Start' %}</button>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id="spice-area">
|
|
|
|
<div id="spice-screen" class="spice-screen"></div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id="message-div" class="spice-message"></div>
|
|
|
|
|
|
|
|
<div id="debug-div">
|
2020-03-16 13:59:45 +00:00
|
|
|
<!-- If DUMPXXX is turned on, dumped images will go here -->
|
2020-06-24 09:39:32 +00:00
|
|
|
</div>
|
2020-03-16 13:59:45 +00:00
|
|
|
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block foot %}
|
|
|
|
|
2020-06-24 09:39:32 +00:00
|
|
|
{% endblock %}
|