Added support for view-only desktop sharing links.
This commit is contained in:
parent
0a1109388d
commit
561ac6fb91
|
@ -453,12 +453,10 @@ function CreateDesktopMultiplexor(parent, domain, nodeid, func) {
|
||||||
//console.log('ViewerData', data.length, command, cmdsize);
|
//console.log('ViewerData', data.length, command, cmdsize);
|
||||||
switch (command) {
|
switch (command) {
|
||||||
case 1: // Key Events, forward to agent
|
case 1: // Key Events, forward to agent
|
||||||
//console.log('Viewer-Keys');
|
if (viewer.viewOnly == false) { obj.sendToAgent(data); }
|
||||||
obj.sendToAgent(data);
|
|
||||||
break;
|
break;
|
||||||
case 2: // Mouse events, forward to agent
|
case 2: // Mouse events, forward to agent
|
||||||
//console.log('Viewer-Mouse');
|
if (viewer.viewOnly == false) { obj.sendToAgent(data); }
|
||||||
obj.sendToAgent(data);
|
|
||||||
break;
|
break;
|
||||||
case 5: // Compression
|
case 5: // Compression
|
||||||
if (data.length < 10) return;
|
if (data.length < 10) return;
|
||||||
|
@ -514,15 +512,15 @@ function CreateDesktopMultiplexor(parent, domain, nodeid, func) {
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case 10: // CTRL-ALT-DEL, forward to agent
|
case 10: // CTRL-ALT-DEL, forward to agent
|
||||||
obj.sendToAgent(data);
|
if (viewer.viewOnly == false) { obj.sendToAgent(data); }
|
||||||
break;
|
break;
|
||||||
case 12: // SET DISPLAY, forward to agent
|
case 12: // SET DISPLAY, forward to agent
|
||||||
obj.sendToAgent(data);
|
if (viewer.viewOnly == false) { obj.sendToAgent(data); }
|
||||||
break;
|
break;
|
||||||
case 14: // Touch setup
|
case 14: // Touch setup
|
||||||
break;
|
break;
|
||||||
case 85: // Unicode Key Events, forward to agent
|
case 85: // Unicode Key Events, forward to agent
|
||||||
obj.sendToAgent(data);
|
if (viewer.viewOnly == false) { obj.sendToAgent(data); }
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
console.log('Un-handled viewer command: ' + command);
|
console.log('Un-handled viewer command: ' + command);
|
||||||
|
@ -868,6 +866,7 @@ function CreateMeshRelayEx2(parent, ws, req, domain, user, cookie) {
|
||||||
obj.user = user;
|
obj.user = user;
|
||||||
obj.ruserid = null;
|
obj.ruserid = null;
|
||||||
obj.req = req; // Used in multi-server.js
|
obj.req = req; // Used in multi-server.js
|
||||||
|
obj.viewOnly = ((cookie != null) && (cookie.vo == 1)); // set view only mode
|
||||||
|
|
||||||
// Setup subscription for desktop sharing public identifier
|
// Setup subscription for desktop sharing public identifier
|
||||||
// If the identifier is removed, drop the connection
|
// If the identifier is removed, drop the connection
|
||||||
|
|
|
@ -4845,7 +4845,9 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
|
||||||
expireTime = command.end * 1000;
|
expireTime = command.end * 1000;
|
||||||
}
|
}
|
||||||
|
|
||||||
const inviteCookie = parent.parent.encodeCookie({ a: 5, p: command.p, uid: user._id, gn: command.guestname, nid: node._id, cf: command.consent, start: startTime, expire: expireTime, pid: publicid }, parent.parent.invitationLinkEncryptionKey);
|
var cookie = { a: 5, p: command.p, uid: user._id, gn: command.guestname, nid: node._id, cf: command.consent, start: startTime, expire: expireTime, pid: publicid };
|
||||||
|
if (command.viewOnly === true) { cookie.vo = 1; }
|
||||||
|
const inviteCookie = parent.parent.encodeCookie(cookie, parent.parent.invitationLinkEncryptionKey);
|
||||||
if (inviteCookie == null) { if (command.responseid != null) { try { ws.send(JSON.stringify({ action: 'createDeviceShareLink', responseid: command.responseid, result: 'Unable to generate shareing cookie' })); } catch (ex) { } } return; }
|
if (inviteCookie == null) { if (command.responseid != null) { try { ws.send(JSON.stringify({ action: 'createDeviceShareLink', responseid: command.responseid, result: 'Unable to generate shareing cookie' })); } catch (ex) { } } return; }
|
||||||
command.start = startTime;
|
command.start = startTime;
|
||||||
command.expire = expireTime;
|
command.expire = expireTime;
|
||||||
|
@ -4863,7 +4865,9 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
|
||||||
try { ws.send(JSON.stringify(command)); } catch (ex) { }
|
try { ws.send(JSON.stringify(command)); } catch (ex) { }
|
||||||
|
|
||||||
// Create a device sharing database entry
|
// Create a device sharing database entry
|
||||||
parent.db.Set({ _id: 'deviceshare-' + publicid, type: 'deviceshare', nodeid: node._id, p: command.p, domain: node.domain, publicid: publicid, startTime: startTime, expireTime: expireTime, userid: user._id, guestName: command.guestname, consent: command.consent, url: url });
|
var shareEntry = { _id: 'deviceshare-' + publicid, type: 'deviceshare', nodeid: node._id, p: command.p, domain: node.domain, publicid: publicid, startTime: startTime, expireTime: expireTime, userid: user._id, guestName: command.guestname, consent: command.consent, url: url };
|
||||||
|
if (command.viewOnly === true) { shareEntry.viewOnly = true; }
|
||||||
|
parent.db.Set(shareEntry);
|
||||||
|
|
||||||
// Send out an event that we added a device share
|
// Send out an event that we added a device share
|
||||||
var targets = parent.CreateNodeDispatchTargets(node.meshid, node._id, ['server-users', user._id]);
|
var targets = parent.CreateNodeDispatchTargets(node.meshid, node._id, ['server-users', user._id]);
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -266,7 +266,7 @@ var CreateAgentRemoteDesktop = function (canvasid, scrolldiv) {
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case 88: // MNG_KVM_MOUSE_CURSOR
|
case 88: // MNG_KVM_MOUSE_CURSOR
|
||||||
if (cmdsize != 5) break;
|
if ((cmdsize != 5) || (obj.stopInput)) break;
|
||||||
var cursorNum = view[4];
|
var cursorNum = view[4];
|
||||||
if (cursorNum > mouseCursors.length) { cursorNum = 0; }
|
if (cursorNum > mouseCursors.length) { cursorNum = 0; }
|
||||||
xMouseCursorCurrent = mouseCursors[cursorNum];
|
xMouseCursorCurrent = mouseCursors[cursorNum];
|
||||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
|
@ -3148,6 +3148,7 @@
|
||||||
if (node == null) break;
|
if (node == null) break;
|
||||||
x += addHtmlValue("Device", node.name);
|
x += addHtmlValue("Device", node.name);
|
||||||
x += addHtmlValue("Guest Name", message.guestname);
|
x += addHtmlValue("Guest Name", message.guestname);
|
||||||
|
x += addHtmlValue("User Input", message.viewOnly ? "Not allowed, view only" : "Allowed");
|
||||||
x += addHtmlValue("Start Time", printDateTime(new Date(message.start)));
|
x += addHtmlValue("Start Time", printDateTime(new Date(message.start)));
|
||||||
x += addHtmlValue("Expire Time", printDateTime(new Date(message.expire)));
|
x += addHtmlValue("Expire Time", printDateTime(new Date(message.expire)));
|
||||||
var y = [];
|
var y = [];
|
||||||
|
@ -6195,6 +6196,7 @@
|
||||||
var dshare = deviceShares[i];
|
var dshare = deviceShares[i];
|
||||||
var trash = '<a href="' + dshare.url + '" rel="noreferrer noopener" target=_blank title="' + "Device Sharing Link" + '" style=cursor:pointer><img src=images/link2.png border=0 height=10 width=10></a> <a href=# onclick=\'return p30removeDeviceSharing(event,"' + encodeURIComponentEx(currentNode._id) + '","' + encodeURIComponentEx(dshare.publicid) + '","' + encodeURIComponentEx(dshare.guestName) + '")\' title="' + "Remove device sharing" + '" style=cursor:pointer><img src=images/trash.png border=0 height=10 width=10></a>';
|
var trash = '<a href="' + dshare.url + '" rel="noreferrer noopener" target=_blank title="' + "Device Sharing Link" + '" style=cursor:pointer><img src=images/link2.png border=0 height=10 width=10></a> <a href=# onclick=\'return p30removeDeviceSharing(event,"' + encodeURIComponentEx(currentNode._id) + '","' + encodeURIComponentEx(dshare.publicid) + '","' + encodeURIComponentEx(dshare.guestName) + '")\' title="' + "Remove device sharing" + '" style=cursor:pointer><img src=images/trash.png border=0 height=10 width=10></a>';
|
||||||
var details = format("{0}, {1} to {2}", ((dshare.p == 1)?"Terminal":"Desktop"), printFlexDateTime(new Date(dshare.startTime)), printFlexDateTime(new Date(dshare.expireTime)));
|
var details = format("{0}, {1} to {2}", ((dshare.p == 1)?"Terminal":"Desktop"), printFlexDateTime(new Date(dshare.startTime)), printFlexDateTime(new Date(dshare.expireTime)));
|
||||||
|
if (dshare.viewOnly === true) { details += ", View only"; }
|
||||||
if (dshare.consent != null) {
|
if (dshare.consent != null) {
|
||||||
if (dshare.consent == 0) { details += ", No Consent"; } else {
|
if (dshare.consent == 0) { details += ", No Consent"; } else {
|
||||||
if (((dshare.consent & 8) != 0) || ((dshare.consent & 16) != 0)) { details += ", Prompt for consent"; }
|
if (((dshare.consent & 8) != 0) || ((dshare.consent & 16) != 0)) { details += ", Prompt for consent"; }
|
||||||
|
@ -6368,8 +6370,7 @@
|
||||||
if (xxdialogMode) return;
|
if (xxdialogMode) return;
|
||||||
var y = '', x = "Creates a link that allows a guest without an account to remote control this device for a limited time." + '<br /><br />';
|
var y = '', x = "Creates a link that allows a guest without an account to remote control this device for a limited time." + '<br /><br />';
|
||||||
x += addHtmlValue("Guest Name", '<input id=d2inviteName style=width:250px maxlength=128 type=text onkeyup=showShareDeviceValidate() />');
|
x += addHtmlValue("Guest Name", '<input id=d2inviteName style=width:250px maxlength=128 type=text onkeyup=showShareDeviceValidate() />');
|
||||||
x += addHtmlValue("Type", '<select id=d2shareType style=float:right;width:250px onchange=showShareDeviceValidate()>' + ((currentNode.agent.caps & 1)?('<option value=2>' + "Desktop" + '</option>'):'') + ((currentNode.agent.caps & 2)?('<option value=1>' + "Terminal" + '</option>'):'') + '</select>');
|
x += addHtmlValue("Type", '<select id=d2shareType style=float:right;width:250px onchange=showShareDeviceValidate()>' + ((currentNode.agent.caps & 1)?('<option value=2>' + "Desktop" + '</option><option value=3>' + "Desktop, View only" + '</option>'):'') + ((currentNode.agent.caps & 2)?('<option value=1>' + "Terminal" + '</option>'):'') + '</select>');
|
||||||
|
|
||||||
var options = { 1 : "1 minute", 5 : "5 minutes", 10 : "10 minutes", 15 : "15 minutes", 30 : "30 minutes", 45 : "45 minutes", 60 : "60 minutes", 120 : "2 hours", 240 : "4 hours", 480 : "8 hours", 720 : "12 hours", 960 : "16 hours", 1440 : "24 hours", 2880 : "2 days", 5760 : "4 days" }
|
var options = { 1 : "1 minute", 5 : "5 minutes", 10 : "10 minutes", 15 : "15 minutes", 30 : "30 minutes", 45 : "45 minutes", 60 : "60 minutes", 120 : "2 hours", 240 : "4 hours", 480 : "8 hours", 720 : "12 hours", 960 : "16 hours", 1440 : "24 hours", 2880 : "2 days", 5760 : "4 days" }
|
||||||
for (var i in options) { y += '<option value=' + i + '>' + options[i] + '</option>'; }
|
for (var i in options) { y += '<option value=' + i + '>' + options[i] + '</option>'; }
|
||||||
x += addHtmlValue("Validity", '<select id=d2timeRange style=float:right;width:250px onchange=showShareDeviceValidate()><option value=0>' + "Starting now" + '</option><option value=1>' + "Time range" + '</option></select>');
|
x += addHtmlValue("Validity", '<select id=d2timeRange style=float:right;width:250px onchange=showShareDeviceValidate()><option value=0>' + "Starting now" + '</option><option value=1>' + "Time range" + '</option></select>');
|
||||||
|
@ -6391,22 +6392,21 @@
|
||||||
QV('d2modenow', Q('d2timeRange').value == 0);
|
QV('d2modenow', Q('d2timeRange').value == 0);
|
||||||
QV('d2moderange', Q('d2timeRange').value == 1);
|
QV('d2moderange', Q('d2timeRange').value == 1);
|
||||||
var ok = true;
|
var ok = true;
|
||||||
|
|
||||||
if (Q('d2inviteName').value.trim().length == 0) { ok = false; }
|
if (Q('d2inviteName').value.trim().length == 0) { ok = false; }
|
||||||
|
|
||||||
QE('idx_dlgOkButton', ok);
|
QE('idx_dlgOkButton', ok);
|
||||||
}
|
}
|
||||||
|
|
||||||
function showShareDeviceEx(b, tag) {
|
function showShareDeviceEx(b, tag) {
|
||||||
var consent = 0;
|
var consent = 0, p = parseInt(Q('d2shareType').value), viewOnly = false;
|
||||||
if (currentNode.agent.caps & 1) {
|
if (currentNode.agent.caps & 1) {
|
||||||
if (Q('d2shareType').value == 1) { if (Q('d2userConsent').value == 1) { consent = 18; } else { consent = 2; } } // Terminal Consent: 2 = Notify, 16 = Prompt
|
if (Q('d2shareType').value == 1) { if (Q('d2userConsent').value == 1) { consent = 18; } else { consent = 2; } } // Terminal Consent: 2 = Notify, 16 = Prompt
|
||||||
if (Q('d2shareType').value == 2) { if (Q('d2userConsent').value == 1) { consent = 73; } else { consent = 65; } } // Desktop Consent: 1 = Notify, 8 = Prompt, 64 = Privacy bar
|
if (Q('d2shareType').value > 1) { if (Q('d2userConsent').value == 1) { consent = 73; } else { consent = 65; } } // Desktop Consent: 1 = Notify, 8 = Prompt, 64 = Privacy bar
|
||||||
}
|
}
|
||||||
|
if (p == 3) { p = 2; viewOnly = true; }
|
||||||
if (Q('d2timeRange').value == 0) {
|
if (Q('d2timeRange').value == 0) {
|
||||||
meshserver.send({ action: 'createDeviceShareLink', nodeid: currentNode._id, guestname: Q('d2inviteName').value.trim(), p: parseInt(Q('d2shareType').value), expire: parseInt(Q('d2inviteExpire').value), consent: consent });
|
meshserver.send({ action: 'createDeviceShareLink', nodeid: currentNode._id, guestname: Q('d2inviteName').value.trim(), p: p, expire: parseInt(Q('d2inviteExpire').value), consent: consent, viewOnly: viewOnly });
|
||||||
} else {
|
} else {
|
||||||
meshserver.send({ action: 'createDeviceShareLink', nodeid: currentNode._id, guestname: Q('d2inviteName').value.trim(), p: parseInt(Q('d2shareType').value), start: Math.floor(tag.selectedDates[0].getTime() / 1000), end: Math.floor(tag.selectedDates[1].getTime() / 1000), consent: consent });
|
meshserver.send({ action: 'createDeviceShareLink', nodeid: currentNode._id, guestname: Q('d2inviteName').value.trim(), p: p, start: Math.floor(tag.selectedDates[0].getTime() / 1000), end: Math.floor(tag.selectedDates[1].getTime() / 1000), consent: consent, viewOnly: viewOnly });
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -59,7 +59,7 @@
|
||||||
<select id=termdisplays style="display:none" onchange=deskSetDisplay(event) onkeypress="return false" onkeydown="return false"></select>
|
<select id=termdisplays style="display:none" onchange=deskSetDisplay(event) onkeypress="return false" onkeydown="return false"></select>
|
||||||
<span id=DeskSaveImageButton title="Save a screenshot of the remote desktop"><img src='images/icon-camera.png' onclick=deskSaveImage() height=16 width=16 style=padding-top:2px /></span>
|
<span id=DeskSaveImageButton title="Save a screenshot of the remote desktop"><img src='images/icon-camera.png' onclick=deskSaveImage() height=16 width=16 style=padding-top:2px /></span>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div style="height:22px">
|
||||||
<select id="deskkeys">
|
<select id="deskkeys">
|
||||||
<option value=10>Ctrl+Alt+Del</option>
|
<option value=10>Ctrl+Alt+Del</option>
|
||||||
<option value=5>Win</option>
|
<option value=5>Win</option>
|
||||||
|
@ -165,6 +165,7 @@
|
||||||
var domain = '{{{domain}}}';
|
var domain = '{{{domain}}}';
|
||||||
var domainUrl = '{{{domainurl}}}';
|
var domainUrl = '{{{domainurl}}}';
|
||||||
var authCookie = '{{{authCookie}}}';
|
var authCookie = '{{{authCookie}}}';
|
||||||
|
var viewOnly = parseInt('{{{viewOnly}}}');
|
||||||
var urlargs = parseUriArgs();
|
var urlargs = parseUriArgs();
|
||||||
var debugmode = urlargs.debug;
|
var debugmode = urlargs.debug;
|
||||||
var attemptWebRTC = false;
|
var attemptWebRTC = false;
|
||||||
|
@ -180,8 +181,18 @@
|
||||||
document.onkeydown = ondockeydown;
|
document.onkeydown = ondockeydown;
|
||||||
document.onkeyup = ondockeyup;
|
document.onkeyup = ondockeyup;
|
||||||
setupDesktop();
|
setupDesktop();
|
||||||
|
|
||||||
|
// View only mode
|
||||||
|
if (viewOnly == 1) {
|
||||||
|
QV('deskkeys', false);
|
||||||
|
QV('DeskWD', false);
|
||||||
|
QV('DeskClip', false);
|
||||||
|
QV('DeskType', false);
|
||||||
|
QV('DeskControlSpan', false);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function isInputAllowed() { return (viewOnly != 1) && (Q('DeskControl').checked == true); }
|
||||||
function clearConsoleMsg() { QH('p11DeskConsoleMsg', ''); }
|
function clearConsoleMsg() { QH('p11DeskConsoleMsg', ''); }
|
||||||
|
|
||||||
// Toggle the web page to full screen
|
// Toggle the web page to full screen
|
||||||
|
@ -270,21 +281,20 @@
|
||||||
QV('d7amtkvm', intelAmtPresent && ((deskState == 0) || (desktop.contype == 2)));
|
QV('d7amtkvm', intelAmtPresent && ((deskState == 0) || (desktop.contype == 2)));
|
||||||
|
|
||||||
// Enable buttons
|
// Enable buttons
|
||||||
var inputAllowed = true; // TODO
|
|
||||||
QE('connectbutton1', agentPresent);
|
QE('connectbutton1', agentPresent);
|
||||||
QE('connectbutton1h', intelAmtPresent);
|
QE('connectbutton1h', intelAmtPresent);
|
||||||
//QV('DeskClip', agentPresent && ((desktop == null) || (desktop.contype != 2))); // Clipboard not supported on macOS
|
//QV('DeskClip', agentPresent && ((desktop == null) || (desktop.contype != 2))); // Clipboard not supported on macOS
|
||||||
QV('DeskClip', false); // Clipboard not supported on this page
|
QV('DeskClip', false); // Clipboard not supported on this page
|
||||||
QE('DeskClip', deskState == 3);
|
QE('DeskClip', deskState == 3);
|
||||||
QE('DeskType', deskState == 3);
|
QE('DeskType', deskState == 3);
|
||||||
QV('DeskWD', inputAllowed);
|
QV('DeskWD', viewOnly != 1);
|
||||||
QE('DeskWD', deskState == 3);
|
QE('DeskWD', deskState == 3);
|
||||||
QV('deskkeys', inputAllowed);
|
QV('deskkeys', viewOnly != 1);
|
||||||
QE('deskkeys', deskState == 3);
|
QE('deskkeys', deskState == 3);
|
||||||
|
|
||||||
// Display this only if we have Chat & Notify permissions
|
// Display this only if we have Chat & Notify permissions
|
||||||
QV('DeskSaveImageButton', (deskState == 3) && (Q('Desk')['toBlob'] != null));
|
QV('DeskSaveImageButton', (deskState == 3) && (Q('Desk')['toBlob'] != null));
|
||||||
QV('DeskControlSpan', inputAllowed)
|
QV('DeskControlSpan', viewOnly != 1);
|
||||||
QV('deskActionsBtn', (browserfullscreen == false));
|
QV('deskActionsBtn', (browserfullscreen == false));
|
||||||
QV('deskActionsSettings', (browserfullscreen == false));
|
QV('deskActionsSettings', (browserfullscreen == false));
|
||||||
Q('DeskControl').checked = true;
|
Q('DeskControl').checked = true;
|
||||||
|
@ -317,6 +327,7 @@
|
||||||
desktop = CreateAmtRedirect(CreateAmtRemoteDesktop('Desk'), authCookie);
|
desktop = CreateAmtRedirect(CreateAmtRemoteDesktop('Desk'), authCookie);
|
||||||
desktop.debugmode = debugmode;
|
desktop.debugmode = debugmode;
|
||||||
desktop.onStateChanged = onDesktopStateChange;
|
desktop.onStateChanged = onDesktopStateChange;
|
||||||
|
desktop.m.stopInput = (viewOnly == 1);
|
||||||
desktop.m.bpp = (desktopsettings.encoding == 1 || desktopsettings.encoding == 3) ? 1 : 2;
|
desktop.m.bpp = (desktopsettings.encoding == 1 || desktopsettings.encoding == 3) ? 1 : 2;
|
||||||
desktop.m.useZRLE = (desktopsettings.encoding < 3);
|
desktop.m.useZRLE = (desktopsettings.encoding < 3);
|
||||||
desktop.m.localKeyMap = desktopsettings.localkeymap;
|
desktop.m.localKeyMap = desktopsettings.localkeymap;
|
||||||
|
@ -398,6 +409,7 @@
|
||||||
} else if ((contype == null) || (contype == 1) || (contype == 3)) {
|
} else if ((contype == null) || (contype == 1) || (contype == 3)) {
|
||||||
// Setup the Mesh Agent remote desktop
|
// Setup the Mesh Agent remote desktop
|
||||||
desktop = CreateAgentRedirect(null, CreateAgentRemoteDesktop('Desk'), serverPublicNamePort, authCookie, null, domainUrl);
|
desktop = CreateAgentRedirect(null, CreateAgentRemoteDesktop('Desk'), serverPublicNamePort, authCookie, null, domainUrl);
|
||||||
|
desktop.m.stopInput = (viewOnly == 1);
|
||||||
desktop.m.mouseCursorActive(true);
|
desktop.m.mouseCursorActive(true);
|
||||||
desktop.debugmode = debugmode;
|
desktop.debugmode = debugmode;
|
||||||
desktop.m.debugmode = debugmode;
|
desktop.m.debugmode = debugmode;
|
||||||
|
@ -808,7 +820,7 @@
|
||||||
|
|
||||||
function ondockeypress(e) {
|
function ondockeypress(e) {
|
||||||
setSessionActivity();
|
setSessionActivity();
|
||||||
if (!xxdialogMode && desktop && Q('DeskControl').checked) {
|
if (!xxdialogMode && desktop && isInputAllowed()) {
|
||||||
// Check what keys we are allows to send
|
// Check what keys we are allows to send
|
||||||
/*
|
/*
|
||||||
if (currentNode != null) {
|
if (currentNode != null) {
|
||||||
|
@ -825,7 +837,7 @@
|
||||||
|
|
||||||
function ondockeydown(e) {
|
function ondockeydown(e) {
|
||||||
setSessionActivity();
|
setSessionActivity();
|
||||||
if (!xxdialogMode && desktop && Q('DeskControl').checked) {
|
if (!xxdialogMode && desktop && isInputAllowed()) {
|
||||||
// Check what keys we are allows to send
|
// Check what keys we are allows to send
|
||||||
/*
|
/*
|
||||||
if (currentNode != null) {
|
if (currentNode != null) {
|
||||||
|
@ -842,7 +854,7 @@
|
||||||
|
|
||||||
function ondockeyup(e) {
|
function ondockeyup(e) {
|
||||||
setSessionActivity();
|
setSessionActivity();
|
||||||
if (!xxdialogMode && desktop && Q('DeskControl').checked) {
|
if (!xxdialogMode && desktop && isInputAllowed()) {
|
||||||
// Check what keys we are allows to send
|
// Check what keys we are allows to send
|
||||||
/*
|
/*
|
||||||
if (currentNode != null) {
|
if (currentNode != null) {
|
||||||
|
@ -1100,17 +1112,17 @@
|
||||||
if (e.buttons != 1) return;
|
if (e.buttons != 1) return;
|
||||||
var t = Date.now();
|
var t = Date.now();
|
||||||
if (((t - dblClickDetectArgs.t) < 250) && (Math.abs(e.clientX - dblClickDetectArgs.x) < 2) && (Math.abs(e.clientY - dblClickDetectArgs.y) < 2)) {
|
if (((t - dblClickDetectArgs.t) < 250) && (Math.abs(e.clientX - dblClickDetectArgs.x) < 2) && (Math.abs(e.clientY - dblClickDetectArgs.y) < 2)) {
|
||||||
if (!xxdialogMode && desktop != null && Q('DeskControl').checked) { if ((webRtcDesktop != null) && (webRtcDesktop.softdesktop != null)) { webRtcDesktop.softdesktop.m.mousedblclick(e); desktop.m.sendKeepAlive(); } else { desktop.m.mousedblclick(e); } }
|
if (!xxdialogMode && desktop != null && isInputAllowed()) { if ((webRtcDesktop != null) && (webRtcDesktop.softdesktop != null)) { webRtcDesktop.softdesktop.m.mousedblclick(e); desktop.m.sendKeepAlive(); } else { desktop.m.mousedblclick(e); } }
|
||||||
}
|
}
|
||||||
dblClickDetectArgs.t = t;
|
dblClickDetectArgs.t = t;
|
||||||
dblClickDetectArgs.x = e.clientX;
|
dblClickDetectArgs.x = e.clientX;
|
||||||
dblClickDetectArgs.y = e.clientY;
|
dblClickDetectArgs.y = e.clientY;
|
||||||
}
|
}
|
||||||
|
|
||||||
function dmousedown(e) { setSessionActivity(); e.addx = Q('DeskParent').scrollLeft; e.addy = Q('DeskParent').scrollTop; if (!xxdialogMode && desktop != null && Q('DeskControl').checked) { if ((webRtcDesktop != null) && (webRtcDesktop.softdesktop != null)) { webRtcDesktop.softdesktop.m.mousedown(e); desktop.m.sendKeepAlive(); } else { desktop.m.mousedown(e); } } dblClickDetect(e); }
|
function dmousedown(e) { setSessionActivity(); e.addx = Q('DeskParent').scrollLeft; e.addy = Q('DeskParent').scrollTop; if (!xxdialogMode && desktop != null && isInputAllowed()) { if ((webRtcDesktop != null) && (webRtcDesktop.softdesktop != null)) { webRtcDesktop.softdesktop.m.mousedown(e); desktop.m.sendKeepAlive(); } else { desktop.m.mousedown(e); } } dblClickDetect(e); }
|
||||||
function dmouseup(e) { setSessionActivity(); e.addx = Q('DeskParent').scrollLeft; e.addy = Q('DeskParent').scrollTop; if (!xxdialogMode && desktop != null && Q('DeskControl').checked) if ((webRtcDesktop != null) && (webRtcDesktop.softdesktop != null)) { webRtcDesktop.softdesktop.m.mouseup(e); desktop.m.sendKeepAlive(); } else { desktop.m.mouseup(e); } }
|
function dmouseup(e) { setSessionActivity(); e.addx = Q('DeskParent').scrollLeft; e.addy = Q('DeskParent').scrollTop; if (!xxdialogMode && desktop != null && isInputAllowed()) if ((webRtcDesktop != null) && (webRtcDesktop.softdesktop != null)) { webRtcDesktop.softdesktop.m.mouseup(e); desktop.m.sendKeepAlive(); } else { desktop.m.mouseup(e); } }
|
||||||
function dmousemove(e) { setSessionActivity(); e.addx = Q('DeskParent').scrollLeft; e.addy = Q('DeskParent').scrollTop; if (!xxdialogMode && desktop != null && Q('DeskControl').checked) { if ((webRtcDesktop != null) && (webRtcDesktop.softdesktop != null)) { webRtcDesktop.softdesktop.m.mousemove(e); desktop.m.sendKeepAlive(); } else { desktop.m.mousemove(e); } } }
|
function dmousemove(e) { setSessionActivity(); e.addx = Q('DeskParent').scrollLeft; e.addy = Q('DeskParent').scrollTop; if (!xxdialogMode && desktop != null && isInputAllowed()) { if ((webRtcDesktop != null) && (webRtcDesktop.softdesktop != null)) { webRtcDesktop.softdesktop.m.mousemove(e); desktop.m.sendKeepAlive(); } else { desktop.m.mousemove(e); } } }
|
||||||
function dmousewheel(e) { setSessionActivity(); e.addx = Q('DeskParent').scrollLeft; e.addy = Q('DeskParent').scrollTop; if (!xxdialogMode && desktop != null && Q('DeskControl').checked) { if ((webRtcDesktop != null) && (webRtcDesktop.softdesktop != null)) { webRtcDesktop.softdesktop.m.mousewheel(e); desktop.m.sendKeepAlive(); } else { if (desktop.m.mousewheel) { desktop.m.mousewheel(e); } } haltEvent(e); return true; } return false; }
|
function dmousewheel(e) { setSessionActivity(); e.addx = Q('DeskParent').scrollLeft; e.addy = Q('DeskParent').scrollTop; if (!xxdialogMode && desktop != null && isInputAllowed()) { if ((webRtcDesktop != null) && (webRtcDesktop.softdesktop != null)) { webRtcDesktop.softdesktop.m.mousewheel(e); desktop.m.sendKeepAlive(); } else { if (desktop.m.mousewheel) { desktop.m.mousewheel(e); } } haltEvent(e); return true; } return false; }
|
||||||
function drotate(x) { if (!xxdialogMode && desktop != null) { desktop.m.setRotation(desktop.m.rotation + x); deskAdjust(); deskAdjust(); } }
|
function drotate(x) { if (!xxdialogMode && desktop != null) { desktop.m.setRotation(desktop.m.rotation + x); deskAdjust(); deskAdjust(); } }
|
||||||
function stopProcess(id, name) { setDialogMode(2, "Process Control", 3, stopProcessEx, format("Stop process #{0} \"{1}\"?", id, name), id); return false; }
|
function stopProcess(id, name) { setDialogMode(2, "Process Control", 3, stopProcessEx, format("Stop process #{0} \"{1}\"?", id, name), id); return false; }
|
||||||
function stopProcessEx(buttons, tag) { meshserver.send({ action: 'msg', type: 'pskill', nodeid: currentNode._id, value: tag }); setTimeout(refreshDeskTools, 300); }
|
function stopProcessEx(buttons, tag) { meshserver.send({ action: 'msg', type: 'pskill', nodeid: currentNode._id, value: tag }); setTimeout(refreshDeskTools, 300); }
|
||||||
|
|
|
@ -3056,13 +3056,13 @@ module.exports.CreateWebServer = function (parent, db, args, certificates) {
|
||||||
|
|
||||||
// Looks good, let's create the outbound session cookies.
|
// Looks good, let's create the outbound session cookies.
|
||||||
// Consent flags are 1 = Notify, 8 = Prompt, 64 = Privacy Bar.
|
// Consent flags are 1 = Notify, 8 = Prompt, 64 = Privacy Bar.
|
||||||
const authCookie = obj.parent.encodeCookie({ userid: c.uid, domainid: domain.id, nid: c.nid, ip: req.clientIp, p: 2, gn: c.gn, cf: 65 | c.cf, r: 8, expire: c.expire, pid: c.pid }, obj.parent.loginCookieEncryptionKey);
|
const authCookie = obj.parent.encodeCookie({ userid: c.uid, domainid: domain.id, nid: c.nid, ip: req.clientIp, p: 2, gn: c.gn, cf: 65 | c.cf, r: 8, expire: c.expire, pid: c.pid, vo: c.vo }, obj.parent.loginCookieEncryptionKey);
|
||||||
|
|
||||||
// Lets respond by sending out the desktop viewer.
|
// Lets respond by sending out the desktop viewer.
|
||||||
var httpsPort = ((obj.args.aliasport == null) ? obj.args.port : obj.args.aliasport); // Use HTTPS alias port is specified
|
var httpsPort = ((obj.args.aliasport == null) ? obj.args.port : obj.args.aliasport); // Use HTTPS alias port is specified
|
||||||
parent.debug('web', 'handleDesktopRequest: Sending guest desktop page for \"' + c.uid + '\", guest \"' + c.gn + '\".');
|
parent.debug('web', 'handleDesktopRequest: Sending guest desktop page for \"' + c.uid + '\", guest \"' + c.gn + '\".');
|
||||||
res.set({ 'Cache-Control': 'no-store' });
|
res.set({ 'Cache-Control': 'no-store' });
|
||||||
render(req, res, getRenderPage('desktop', req, domain), getRenderArgs({ authCookie: authCookie, authRelayCookie: '', domainurl: encodeURIComponent(domain.url).replace(/'/g, '%27'), nodeid: c.nid, serverDnsName: obj.getWebServerName(domain), serverRedirPort: args.redirport, serverPublicPort: httpsPort, expire: c.expire }, req, domain));
|
render(req, res, getRenderPage('desktop', req, domain), getRenderArgs({ authCookie: authCookie, authRelayCookie: '', domainurl: encodeURIComponent(domain.url).replace(/'/g, '%27'), nodeid: c.nid, serverDnsName: obj.getWebServerName(domain), serverRedirPort: args.redirport, serverPublicPort: httpsPort, expire: c.expire, viewOnly: (c.vo == 1) ? 1 : 0 }, req, domain));
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue