mirror of
https://github.com/Ylianst/MeshCentral.git
synced 2025-03-09 15:40:18 +00:00
Improved MSTSC.js support.
This commit is contained in:
parent
14c08ce461
commit
61582dbd17
13 changed files with 169 additions and 7400 deletions
193
public/mstsc/client.js
Normal file
193
public/mstsc/client.js
Normal file
|
@ -0,0 +1,193 @@
|
|||
/*
|
||||
* Copyright (c) 2015 Sylvain Peyrefitte
|
||||
*
|
||||
* This file is part of mstsc.js.
|
||||
*
|
||||
* mstsc.js is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program 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 General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
(function() {
|
||||
/**
|
||||
* Mouse button mapping
|
||||
* @param button {integer} client button number
|
||||
*/
|
||||
function mouseButtonMap(button) {
|
||||
switch(button) {
|
||||
case 0: return 1;
|
||||
case 2: return 2;
|
||||
default: return 0;
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* Mstsc client
|
||||
* Input client connection (mouse and keyboard)
|
||||
* bitmap processing
|
||||
* @param canvas {canvas} rendering element
|
||||
*/
|
||||
function Client(canvas) {
|
||||
this.canvas = canvas;
|
||||
// create renderer
|
||||
this.render = new Mstsc.Canvas.create(this.canvas);
|
||||
this.socket = null;
|
||||
this.activeSession = false;
|
||||
this.install();
|
||||
}
|
||||
|
||||
Client.prototype = {
|
||||
install : function () {
|
||||
var self = this;
|
||||
|
||||
// Bind mouse move event
|
||||
this.canvas.addEventListener('mousemove', function (e) {
|
||||
if (!self.socket || !self.activeSession) return;
|
||||
var rect = e.target.getBoundingClientRect();
|
||||
self.socket.send(JSON.stringify(['mouse', e.clientX - rect.left, e.clientY - rect.top, 0, false]));
|
||||
e.preventDefault();
|
||||
return false;
|
||||
});
|
||||
this.canvas.addEventListener('mousedown', function (e) {
|
||||
if (!self.socket || !self.activeSession) return;
|
||||
var rect = e.target.getBoundingClientRect();
|
||||
self.socket.send(JSON.stringify(['mouse', e.clientX - rect.left, e.clientY - rect.top, mouseButtonMap(e.button), true]));
|
||||
e.preventDefault();
|
||||
return false;
|
||||
});
|
||||
this.canvas.addEventListener('mouseup', function (e) {
|
||||
if (!self.socket || !self.activeSession) return;
|
||||
var rect = e.target.getBoundingClientRect();
|
||||
self.socket.send(JSON.stringify(['mouse', e.clientX - rect.left, e.clientY - rect.top, mouseButtonMap(e.button), false]));
|
||||
e.preventDefault();
|
||||
return false;
|
||||
});
|
||||
this.canvas.addEventListener('contextmenu', function (e) {
|
||||
if (!self.socket || !self.activeSession) return;
|
||||
var rect = e.target.getBoundingClientRect();
|
||||
self.socket.send(JSON.stringify(['mouse', e.clientX - rect.left, e.clientY - rect.top, mouseButtonMap(e.button), false]));
|
||||
e.preventDefault();
|
||||
return false;
|
||||
});
|
||||
this.canvas.addEventListener('DOMMouseScroll', function (e) {
|
||||
if (!self.socket || !self.activeSession) return;
|
||||
var isHorizontal = false;
|
||||
var delta = e.detail;
|
||||
var step = Math.round(Math.abs(delta) * 15 / 8);
|
||||
var rect = e.target.getBoundingClientRect();
|
||||
self.socket.send(JSON.stringify(['wheel', e.clientX - rect.left, e.clientY - rect.top, step, delta > 0, isHorizontal]));
|
||||
e.preventDefault();
|
||||
return false;
|
||||
});
|
||||
this.canvas.addEventListener('mousewheel', function (e) {
|
||||
if (!self.socket || !self.activeSession) return;
|
||||
var isHorizontal = Math.abs(e.deltaX) > Math.abs(e.deltaY);
|
||||
var delta = isHorizontal?e.deltaX:e.deltaY;
|
||||
var step = Math.round(Math.abs(delta) * 15 / 8);
|
||||
var rect = e.target.getBoundingClientRect();
|
||||
self.socket.send(JSON.stringify(['wheel', e.clientX - rect.left, e.clientY - rect.top, step, delta > 0, isHorizontal]));
|
||||
e.preventDefault();
|
||||
return false;
|
||||
});
|
||||
|
||||
// Bind keyboard event
|
||||
window.addEventListener('keydown', function (e) {
|
||||
if (!self.socket || !self.activeSession) return;
|
||||
self.socket.send(JSON.stringify(['scancode', Mstsc.scancode(e), true]));
|
||||
e.preventDefault();
|
||||
return false;
|
||||
});
|
||||
window.addEventListener('keyup', function (e) {
|
||||
if (!self.socket || !self.activeSession) return;
|
||||
self.socket.send(JSON.stringify(['scancode', Mstsc.scancode(e), false]));
|
||||
e.preventDefault();
|
||||
return false;
|
||||
});
|
||||
|
||||
return this;
|
||||
},
|
||||
/**
|
||||
* connect
|
||||
* @param ip {string} ip target for rdp
|
||||
* @param domain {string} microsoft domain
|
||||
* @param username {string} session username
|
||||
* @param password {string} session password
|
||||
* @param next {function} asynchrone end callback
|
||||
*/
|
||||
connect : function (ip, domain, username, password, next) {
|
||||
// Start connection
|
||||
var self = this;
|
||||
this.socket = new WebSocket("wss://" + window.location.host + "/mstsc/relay.ashx");
|
||||
this.socket.binaryType = 'arraybuffer';
|
||||
this.socket.onopen = function () {
|
||||
//console.log("WS-OPEN");
|
||||
self.socket.send(JSON.stringify(['infos', {
|
||||
ip: ip,
|
||||
port: 3389,
|
||||
screen: {
|
||||
width: self.canvas.width,
|
||||
height: self.canvas.height
|
||||
},
|
||||
domain: domain,
|
||||
username: username,
|
||||
password: password,
|
||||
locale: Mstsc.locale()
|
||||
}]));
|
||||
};
|
||||
this.socket.onmessage = function (evt) {
|
||||
if (typeof evt.data == 'string') {
|
||||
// This is a JSON text string, parse it.
|
||||
var msg = JSON.parse(evt.data);
|
||||
switch (msg[0]) {
|
||||
case 'rdp-connect': {
|
||||
//console.log('[mstsc.js] connected');
|
||||
self.activeSession = true;
|
||||
break;
|
||||
}
|
||||
case 'rdp-bitmap': {
|
||||
if (self.bitmapData == null) break;
|
||||
var bitmap = msg[1];
|
||||
bitmap.data = self.bitmapData; // Use the binary data that was sent earlier.
|
||||
delete self.bitmapData;
|
||||
//console.log('[mstsc.js] bitmap update bpp : ' + bitmap.bitsPerPixel);
|
||||
self.render.update(bitmap);
|
||||
break;
|
||||
}
|
||||
case 'rdp-close': {
|
||||
//console.log('[mstsc.js] close');
|
||||
self.activeSession = false;
|
||||
next(null);
|
||||
break;
|
||||
}
|
||||
case 'rdp-error': {
|
||||
var err = msg[1];
|
||||
console.log('[mstsc.js] error : ' + err.code + '(' + err.message + ')');
|
||||
self.activeSession = false;
|
||||
next(err);
|
||||
break;
|
||||
}
|
||||
}
|
||||
} else {
|
||||
// This is binary bitmap data, store it.
|
||||
self.bitmapData = evt.data;
|
||||
}
|
||||
};
|
||||
this.socket.onclose = function () {
|
||||
//console.log("WS-CLOSE");
|
||||
self.activeSession = false;
|
||||
next(null);
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
MstscClient = { create : function (canvas) { return new Client(canvas); } }
|
||||
})();
|
Loading…
Add table
Add a link
Reference in a new issue