]> git.proxmox.com Git - mirror_novnc.git/blame - app/ui.js
noVNC 1.0.0 beta
[mirror_novnc.git] / app / ui.js
CommitLineData
15046f00
JM
1/*
2 * noVNC: HTML5 VNC client
d58f8b51 3 * Copyright (C) 2012 Joel Martin
777cb7a0 4 * Copyright (C) 2016 Samuel Mannehed for Cendio AB
6cba147d 5 * Copyright (C) 2016 Pierre Ossman for Cendio AB
1d728ace 6 * Licensed under MPL 2.0 (see LICENSE.txt)
15046f00
JM
7 *
8 * See README.md for usage and integration instructions.
9 */
43cf7bd8 10
6d6f0db0 11import * as Log from '../core/util/logging.js';
7279364c 12import _, { l10n } from './localization.js';
59ef2916 13import { isTouchDevice } from '../core/util/browser.js';
6d6f0db0 14import { setCapture, getPointerEvent } from '../core/util/events.js';
3ae0bb09
SR
15import KeyTable from "../core/input/keysym.js";
16import keysyms from "../core/input/keysymdef.js";
867daa98 17import Keyboard from "../core/input/keyboard.js";
3ae0bb09
SR
18import RFB from "../core/rfb.js";
19import Display from "../core/display.js";
6d6f0db0 20import * as WebUtil from "./webutil.js";
bbbf42bb 21
858ea4a7 22var UI = {
6d6f0db0
SR
23
24 connected: false,
25 desktopName: "",
26
6d6f0db0
SR
27 statusTimeout: null,
28 hideKeyboardTimeout: null,
29 idleControlbarTimeout: null,
30 closeControlbarTimeout: null,
31
32 controlbarGrabbed: false,
33 controlbarDrag: false,
34 controlbarMouseDownClientY: 0,
35 controlbarMouseDownOffsetY: 0,
36
37 isSafari: false,
6d6f0db0
SR
38 lastKeyboardinput: null,
39 defaultKeyboardinputLen: 100,
40
41 inhibit_reconnect: true,
42 reconnect_callback: null,
43 reconnect_password: null,
44
45 prime: function(callback) {
46 if (document.readyState === "interactive" || document.readyState === "complete") {
47 UI.load(callback);
48 } else {
49 document.addEventListener('DOMContentLoaded', UI.load.bind(UI, callback));
50 }
51 },
529c64e1 52
6d6f0db0
SR
53 // Setup rfb object, load settings from browser storage, then call
54 // UI.init to setup the UI/menus
55 load: function(callback) {
56 WebUtil.initSettings(UI.start, callback);
57 },
529c64e1 58
6d6f0db0
SR
59 // Render default UI and initialize settings menu
60 start: function(callback) {
044d54ed 61
6d6f0db0
SR
62 // Setup global variables first
63 UI.isSafari = (navigator.userAgent.indexOf('Safari') !== -1 &&
64 navigator.userAgent.indexOf('Chrome') === -1);
bbbf42bb 65
6d6f0db0 66 UI.initSettings();
0f6af1e3 67
6d6f0db0
SR
68 // Translate the DOM
69 l10n.translateDOM();
0f6af1e3 70
6d6f0db0
SR
71 // Adapt the interface for touch screen devices
72 if (isTouchDevice) {
73 document.documentElement.classList.add("noVNC_touch");
74 // Remove the address bar
75 setTimeout(function() { window.scrollTo(0, 1); }, 100);
76 }
0f6af1e3 77
6d6f0db0
SR
78 // Restore control bar position
79 if (WebUtil.readSetting('controlbar_pos') === 'right') {
80 UI.toggleControlbarSide();
81 }
edffd9e2 82
6d6f0db0 83 UI.initFullscreen();
0f6af1e3 84
6d6f0db0 85 // Setup event handlers
6d6f0db0
SR
86 UI.addControlbarHandlers();
87 UI.addTouchSpecificHandlers();
88 UI.addExtraKeysHandlers();
cd523e8f 89 UI.addMachineHandlers();
6d6f0db0
SR
90 UI.addConnectionControlHandlers();
91 UI.addClipboardHandlers();
92 UI.addSettingsHandlers();
93 document.getElementById("noVNC_status")
94 .addEventListener('click', UI.hideStatus);
cf348b78 95
55988e7a
PO
96 // Bootstrap fallback input handler
97 UI.keyboardinputReset();
98
6d6f0db0 99 UI.openControlbar();
b3d91b78 100
ee5cae9f 101 UI.updateVisualState('init');
b3c932c3 102
e25f9c40 103 document.documentElement.classList.remove("noVNC_loading");
0f6af1e3 104
6d6f0db0
SR
105 var autoconnect = WebUtil.getConfigVar('autoconnect', false);
106 if (autoconnect === 'true' || autoconnect == '1') {
107 autoconnect = true;
108 UI.connect();
109 } else {
110 autoconnect = false;
067accb8
GK
111 // Show the connect panel on first load unless autoconnecting
112 UI.openConnectPanel();
6d6f0db0 113 }
0f6af1e3 114
6d6f0db0
SR
115 if (typeof callback === "function") {
116 callback(UI.rfb);
117 }
118 },
119
120 initFullscreen: function() {
121 // Only show the button if fullscreen is properly supported
122 // * Safari doesn't support alphanumerical input while in fullscreen
123 if (!UI.isSafari &&
124 (document.documentElement.requestFullscreen ||
125 document.documentElement.mozRequestFullScreen ||
126 document.documentElement.webkitRequestFullscreen ||
127 document.body.msRequestFullscreen)) {
128 document.getElementById('noVNC_fullscreen_button')
129 .classList.remove("noVNC_hidden");
130 UI.addFullscreenHandlers();
131 }
132 },
0f6af1e3 133
6d6f0db0
SR
134 initSettings: function() {
135 var i;
0f6af1e3 136
6d6f0db0
SR
137 // Logging selection dropdown
138 var llevels = ['error', 'warn', 'info', 'debug'];
139 for (i = 0; i < llevels.length; i += 1) {
140 UI.addOption(document.getElementById('noVNC_setting_logging'),llevels[i], llevels[i]);
141 }
b3d91b78 142
6d6f0db0
SR
143 // Settings with immediate effects
144 UI.initSetting('logging', 'warn');
145 UI.updateLogging();
bbbf42bb 146
6d6f0db0
SR
147 // if port == 80 (or 443) then it won't be present and should be
148 // set manually
149 var port = window.location.port;
150 if (!port) {
151 if (window.location.protocol.substring(0,5) == 'https') {
152 port = 443;
bbbf42bb 153 }
6d6f0db0
SR
154 else if (window.location.protocol.substring(0,4) == 'http') {
155 port = 80;
bbbf42bb 156 }
6d6f0db0 157 }
bbbf42bb 158
6d6f0db0
SR
159 /* Populate the controls if defaults are provided in the URL */
160 UI.initSetting('host', window.location.hostname);
161 UI.initSetting('port', port);
162 UI.initSetting('encrypt', (window.location.protocol === "https:"));
a49ade5f 163 UI.initSetting('view_clip', false);
6d6f0db0
SR
164 UI.initSetting('resize', 'off');
165 UI.initSetting('shared', true);
166 UI.initSetting('view_only', false);
167 UI.initSetting('path', 'websockify');
168 UI.initSetting('repeaterID', '');
169 UI.initSetting('reconnect', false);
170 UI.initSetting('reconnect_delay', 5000);
171
172 UI.setupSettingLabels();
173 },
174 // Adds a link to the label elements on the corresponding input elements
175 setupSettingLabels: function() {
176 var labels = document.getElementsByTagName('LABEL');
177 for (var i = 0; i < labels.length; i++) {
178 var htmlFor = labels[i].htmlFor;
179 if (htmlFor != '') {
180 var elem = document.getElementById(htmlFor);
181 if (elem) elem.label = labels[i];
182 } else {
183 // If 'for' isn't set, use the first input element child
184 var children = labels[i].children;
185 for (var j = 0; j < children.length; j++) {
186 if (children[j].form !== undefined) {
187 children[j].label = labels[i];
188 break;
24584cca
SM
189 }
190 }
191 }
6d6f0db0
SR
192 }
193 },
59387b34 194
6d6f0db0
SR
195/* ------^-------
196* /INIT
197* ==============
198* EVENT HANDLERS
199* ------v------*/
200
6d6f0db0
SR
201 addControlbarHandlers: function() {
202 document.getElementById("noVNC_control_bar")
203 .addEventListener('mousemove', UI.activateControlbar);
204 document.getElementById("noVNC_control_bar")
205 .addEventListener('mouseup', UI.activateControlbar);
206 document.getElementById("noVNC_control_bar")
207 .addEventListener('mousedown', UI.activateControlbar);
208 document.getElementById("noVNC_control_bar")
06fe4a3e 209 .addEventListener('keydown', UI.activateControlbar);
6d6f0db0
SR
210
211 document.getElementById("noVNC_control_bar")
212 .addEventListener('mousedown', UI.keepControlbar);
213 document.getElementById("noVNC_control_bar")
06fe4a3e 214 .addEventListener('keydown', UI.keepControlbar);
6d6f0db0
SR
215
216 document.getElementById("noVNC_view_drag_button")
217 .addEventListener('click', UI.toggleViewDrag);
218
219 document.getElementById("noVNC_control_bar_handle")
220 .addEventListener('mousedown', UI.controlbarHandleMouseDown);
221 document.getElementById("noVNC_control_bar_handle")
222 .addEventListener('mouseup', UI.controlbarHandleMouseUp);
223 document.getElementById("noVNC_control_bar_handle")
224 .addEventListener('mousemove', UI.dragControlbarHandle);
225 // resize events aren't available for elements
226 window.addEventListener('resize', UI.updateControlbarHandle);
227
228 var exps = document.getElementsByClassName("noVNC_expander");
229 for (var i = 0;i < exps.length;i++) {
230 exps[i].addEventListener('click', UI.toggleExpander);
231 }
232 },
233
234 addTouchSpecificHandlers: function() {
235 document.getElementById("noVNC_mouse_button0")
236 .addEventListener('click', function () { UI.setMouseButton(1); });
237 document.getElementById("noVNC_mouse_button1")
238 .addEventListener('click', function () { UI.setMouseButton(2); });
239 document.getElementById("noVNC_mouse_button2")
240 .addEventListener('click', function () { UI.setMouseButton(4); });
241 document.getElementById("noVNC_mouse_button4")
242 .addEventListener('click', function () { UI.setMouseButton(0); });
243 document.getElementById("noVNC_keyboard_button")
244 .addEventListener('click', UI.toggleVirtualKeyboard);
245
747b4623
PO
246 UI.touchKeyboard = new Keyboard(document.getElementById('noVNC_keyboardinput'));
247 UI.touchKeyboard.onkeyevent = UI.keyEvent;
867daa98 248 UI.touchKeyboard.grab();
6d6f0db0
SR
249 document.getElementById("noVNC_keyboardinput")
250 .addEventListener('input', UI.keyInput);
251 document.getElementById("noVNC_keyboardinput")
252 .addEventListener('focus', UI.onfocusVirtualKeyboard);
253 document.getElementById("noVNC_keyboardinput")
254 .addEventListener('blur', UI.onblurVirtualKeyboard);
255 document.getElementById("noVNC_keyboardinput")
256 .addEventListener('submit', function () { return false; });
257
258 document.documentElement
259 .addEventListener('mousedown', UI.keepVirtualKeyboard, true);
260
261 document.getElementById("noVNC_control_bar")
262 .addEventListener('touchstart', UI.activateControlbar);
263 document.getElementById("noVNC_control_bar")
264 .addEventListener('touchmove', UI.activateControlbar);
265 document.getElementById("noVNC_control_bar")
266 .addEventListener('touchend', UI.activateControlbar);
267 document.getElementById("noVNC_control_bar")
268 .addEventListener('input', UI.activateControlbar);
269
270 document.getElementById("noVNC_control_bar")
271 .addEventListener('touchstart', UI.keepControlbar);
272 document.getElementById("noVNC_control_bar")
273 .addEventListener('input', UI.keepControlbar);
274
275 document.getElementById("noVNC_control_bar_handle")
276 .addEventListener('touchstart', UI.controlbarHandleMouseDown);
277 document.getElementById("noVNC_control_bar_handle")
278 .addEventListener('touchend', UI.controlbarHandleMouseUp);
279 document.getElementById("noVNC_control_bar_handle")
280 .addEventListener('touchmove', UI.dragControlbarHandle);
6d6f0db0
SR
281 },
282
283 addExtraKeysHandlers: function() {
284 document.getElementById("noVNC_toggle_extra_keys_button")
285 .addEventListener('click', UI.toggleExtraKeys);
286 document.getElementById("noVNC_toggle_ctrl_button")
287 .addEventListener('click', UI.toggleCtrl);
288 document.getElementById("noVNC_toggle_alt_button")
289 .addEventListener('click', UI.toggleAlt);
290 document.getElementById("noVNC_send_tab_button")
291 .addEventListener('click', UI.sendTab);
292 document.getElementById("noVNC_send_esc_button")
293 .addEventListener('click', UI.sendEsc);
294 document.getElementById("noVNC_send_ctrl_alt_del_button")
295 .addEventListener('click', UI.sendCtrlAltDel);
296 },
297
cd523e8f
PO
298 addMachineHandlers: function() {
299 document.getElementById("noVNC_shutdown_button")
300 .addEventListener('click', function() { UI.rfb.machineShutdown(); });
301 document.getElementById("noVNC_reboot_button")
302 .addEventListener('click', function() { UI.rfb.machineReboot(); });
303 document.getElementById("noVNC_reset_button")
304 .addEventListener('click', function() { UI.rfb.machineReset(); });
305 document.getElementById("noVNC_power_button")
306 .addEventListener('click', UI.togglePowerPanel);
6d6f0db0
SR
307 },
308
309 addConnectionControlHandlers: function() {
310 document.getElementById("noVNC_disconnect_button")
311 .addEventListener('click', UI.disconnect);
312 document.getElementById("noVNC_connect_button")
313 .addEventListener('click', UI.connect);
314 document.getElementById("noVNC_cancel_reconnect_button")
315 .addEventListener('click', UI.cancelReconnect);
316
317 document.getElementById("noVNC_password_button")
318 .addEventListener('click', UI.setPassword);
319 },
320
321 addClipboardHandlers: function() {
322 document.getElementById("noVNC_clipboard_button")
323 .addEventListener('click', UI.toggleClipboardPanel);
6d6f0db0
SR
324 document.getElementById("noVNC_clipboard_text")
325 .addEventListener('change', UI.clipboardSend);
326 document.getElementById("noVNC_clipboard_clear_button")
327 .addEventListener('click', UI.clipboardClear);
328 },
329
330 // Add a call to save settings when the element changes,
331 // unless the optional parameter changeFunc is used instead.
332 addSettingChangeHandler: function(name, changeFunc) {
333 var settingElem = document.getElementById("noVNC_setting_" + name);
334 if (changeFunc === undefined) {
335 changeFunc = function () { UI.saveSetting(name); };
336 }
337 settingElem.addEventListener('change', changeFunc);
338 },
339
340 addSettingsHandlers: function() {
341 document.getElementById("noVNC_settings_button")
342 .addEventListener('click', UI.toggleSettingsPanel);
343
344 UI.addSettingChangeHandler('encrypt');
6d6f0db0
SR
345 UI.addSettingChangeHandler('resize');
346 UI.addSettingChangeHandler('resize', UI.enableDisableViewClip);
347 UI.addSettingChangeHandler('resize', UI.applyResizeMode);
a49ade5f
SM
348 UI.addSettingChangeHandler('view_clip');
349 UI.addSettingChangeHandler('view_clip', UI.updateViewClip);
6d6f0db0
SR
350 UI.addSettingChangeHandler('shared');
351 UI.addSettingChangeHandler('view_only');
352 UI.addSettingChangeHandler('view_only', UI.updateViewOnly);
353 UI.addSettingChangeHandler('host');
354 UI.addSettingChangeHandler('port');
355 UI.addSettingChangeHandler('path');
356 UI.addSettingChangeHandler('repeaterID');
357 UI.addSettingChangeHandler('logging');
358 UI.addSettingChangeHandler('logging', UI.updateLogging);
359 UI.addSettingChangeHandler('reconnect');
360 UI.addSettingChangeHandler('reconnect_delay');
361 },
362
363 addFullscreenHandlers: function() {
364 document.getElementById("noVNC_fullscreen_button")
365 .addEventListener('click', UI.toggleFullscreen);
366
367 window.addEventListener('fullscreenchange', UI.updateFullscreenButton);
368 window.addEventListener('mozfullscreenchange', UI.updateFullscreenButton);
369 window.addEventListener('webkitfullscreenchange', UI.updateFullscreenButton);
370 window.addEventListener('msfullscreenchange', UI.updateFullscreenButton);
371 },
0f6af1e3 372
95dd6001 373/* ------^-------
59387b34 374 * /EVENT HANDLERS
95dd6001 375 * ==============
376 * VISUAL
377 * ------v------*/
58ded70d 378
ee5cae9f
SM
379 // Disable/enable controls depending on connection state
380 updateVisualState: function(state) {
6d6f0db0
SR
381
382 document.documentElement.classList.remove("noVNC_connecting");
383 document.documentElement.classList.remove("noVNC_connected");
384 document.documentElement.classList.remove("noVNC_disconnecting");
385 document.documentElement.classList.remove("noVNC_reconnecting");
386
ee5cae9f
SM
387 let transition_elem = document.getElementById("noVNC_transition_text");
388 switch (state) {
389 case 'init':
390 break;
6d6f0db0 391 case 'connecting':
ee5cae9f 392 transition_elem.textContent = _("Connecting...");
6d6f0db0
SR
393 document.documentElement.classList.add("noVNC_connecting");
394 break;
395 case 'connected':
6d6f0db0 396 document.documentElement.classList.add("noVNC_connected");
6d6f0db0
SR
397 break;
398 case 'disconnecting':
ee5cae9f 399 transition_elem.textContent = _("Disconnecting...");
6d6f0db0
SR
400 document.documentElement.classList.add("noVNC_disconnecting");
401 break;
402 case 'disconnected':
6d6f0db0 403 break;
ee5cae9f
SM
404 case 'reconnecting':
405 transition_elem.textContent = _("Reconnecting...");
406 document.documentElement.classList.add("noVNC_reconnecting");
6d6f0db0 407 break;
6d6f0db0 408 default:
ee5cae9f 409 Log.Error("Invalid visual state: " + state);
2592c243 410 UI.showStatus(_("Internal error"), 'error');
ee5cae9f 411 return;
6d6f0db0 412 }
8d710e8b 413
6d6f0db0 414 UI.enableDisableViewClip();
fdedbafb 415
6d6f0db0
SR
416 if (UI.connected) {
417 UI.disableSetting('encrypt');
6d6f0db0
SR
418 UI.disableSetting('shared');
419 UI.disableSetting('host');
420 UI.disableSetting('port');
421 UI.disableSetting('path');
422 UI.disableSetting('repeaterID');
6d6f0db0
SR
423 UI.setMouseButton(1);
424
425 // Hide the controlbar after 2 seconds
426 UI.closeControlbarTimeout = setTimeout(UI.closeControlbar, 2000);
427 } else {
428 UI.enableSetting('encrypt');
6d6f0db0
SR
429 UI.enableSetting('shared');
430 UI.enableSetting('host');
431 UI.enableSetting('port');
432 UI.enableSetting('path');
433 UI.enableSetting('repeaterID');
cd523e8f 434 UI.updatePowerButton();
6d6f0db0
SR
435 UI.keepControlbar();
436 }
fdedbafb 437
6d6f0db0
SR
438 // State change disables viewport dragging.
439 // It is enabled (toggled) by direct click on the button
440 UI.setViewDrag(false);
fdedbafb 441
6d6f0db0
SR
442 // State change also closes the password dialog
443 document.getElementById('noVNC_password_dlg')
444 .classList.remove('noVNC_open');
6d6f0db0 445 },
29475d77 446
6d6f0db0
SR
447 showStatus: function(text, status_type, time) {
448 var statusElem = document.getElementById('noVNC_status');
8a7ec6ea 449
6d6f0db0 450 clearTimeout(UI.statusTimeout);
29475d77 451
6d6f0db0
SR
452 if (typeof status_type === 'undefined') {
453 status_type = 'normal';
454 }
4e471b5b 455
d623a029
SM
456 // Don't overwrite more severe visible statuses and never
457 // errors. Only shows the first error.
458 let visible_status_type = 'none';
459 if (statusElem.classList.contains("noVNC_open")) {
460 if (statusElem.classList.contains("noVNC_status_error")) {
461 visible_status_type = 'error';
462 } else if (statusElem.classList.contains("noVNC_status_warn")) {
463 visible_status_type = 'warn';
464 } else {
465 visible_status_type = 'normal';
466 }
467 }
468 if (visible_status_type === 'error' ||
469 (visible_status_type === 'warn' && status_type === 'normal')) {
470 return;
471 }
6d6f0db0
SR
472
473 switch (status_type) {
d623a029
SM
474 case 'error':
475 statusElem.classList.remove("noVNC_status_warn");
476 statusElem.classList.remove("noVNC_status_normal");
477 statusElem.classList.add("noVNC_status_error");
478 break;
6d6f0db0
SR
479 case 'warning':
480 case 'warn':
d623a029
SM
481 statusElem.classList.remove("noVNC_status_error");
482 statusElem.classList.remove("noVNC_status_normal");
6d6f0db0
SR
483 statusElem.classList.add("noVNC_status_warn");
484 break;
6d6f0db0
SR
485 case 'normal':
486 case 'info':
487 default:
d623a029
SM
488 statusElem.classList.remove("noVNC_status_error");
489 statusElem.classList.remove("noVNC_status_warn");
6d6f0db0
SR
490 statusElem.classList.add("noVNC_status_normal");
491 break;
492 }
8d7708c8 493
6d6f0db0
SR
494 statusElem.textContent = text;
495 statusElem.classList.add("noVNC_open");
8d7708c8 496
6d6f0db0
SR
497 // If no time was specified, show the status for 1.5 seconds
498 if (typeof time === 'undefined') {
499 time = 1500;
500 }
8d7708c8 501
6d6f0db0
SR
502 // Error messages do not timeout
503 if (status_type !== 'error') {
504 UI.statusTimeout = window.setTimeout(UI.hideStatus, time);
505 }
506 },
507
508 hideStatus: function() {
509 clearTimeout(UI.statusTimeout);
510 document.getElementById('noVNC_status').classList.remove("noVNC_open");
511 },
512
6d6f0db0
SR
513 activateControlbar: function(event) {
514 clearTimeout(UI.idleControlbarTimeout);
515 // We manipulate the anchor instead of the actual control
516 // bar in order to avoid creating new a stacking group
517 document.getElementById('noVNC_control_bar_anchor')
518 .classList.remove("noVNC_idle");
519 UI.idleControlbarTimeout = window.setTimeout(UI.idleControlbar, 2000);
520 },
521
522 idleControlbar: function() {
523 document.getElementById('noVNC_control_bar_anchor')
524 .classList.add("noVNC_idle");
525 },
526
527 keepControlbar: function() {
528 clearTimeout(UI.closeControlbarTimeout);
529 },
530
531 openControlbar: function() {
532 document.getElementById('noVNC_control_bar')
533 .classList.add("noVNC_open");
534 },
535
536 closeControlbar: function() {
537 UI.closeAllPanels();
538 document.getElementById('noVNC_control_bar')
539 .classList.remove("noVNC_open");
540 },
541
542 toggleControlbar: function() {
543 if (document.getElementById('noVNC_control_bar')
544 .classList.contains("noVNC_open")) {
545 UI.closeControlbar();
546 } else {
547 UI.openControlbar();
548 }
549 },
550
551 toggleControlbarSide: function () {
552 // Temporarily disable animation to avoid weird movement
553 var bar = document.getElementById('noVNC_control_bar');
554 bar.style.transitionDuration = '0s';
555 bar.addEventListener('transitionend', function () { this.style.transitionDuration = ""; });
556
557 var anchor = document.getElementById('noVNC_control_bar_anchor');
558 if (anchor.classList.contains("noVNC_right")) {
559 WebUtil.writeSetting('controlbar_pos', 'left');
560 anchor.classList.remove("noVNC_right");
561 } else {
562 WebUtil.writeSetting('controlbar_pos', 'right');
563 anchor.classList.add("noVNC_right");
564 }
ca5c74ad 565
6d6f0db0
SR
566 // Consider this a movement of the handle
567 UI.controlbarDrag = true;
568 },
4e471b5b 569
bbc1648c
SM
570 showControlbarHint: function (show) {
571 var hint = document.getElementById('noVNC_control_bar_hint');
572 if (show) {
573 hint.classList.add("noVNC_active");
574 } else {
575 hint.classList.remove("noVNC_active");
576 }
577 },
578
6d6f0db0
SR
579 dragControlbarHandle: function (e) {
580 if (!UI.controlbarGrabbed) return;
38323d4d 581
6d6f0db0 582 var ptr = getPointerEvent(e);
8ee432f1 583
6d6f0db0
SR
584 var anchor = document.getElementById('noVNC_control_bar_anchor');
585 if (ptr.clientX < (window.innerWidth * 0.1)) {
cf348b78 586 if (anchor.classList.contains("noVNC_right")) {
6d6f0db0 587 UI.toggleControlbarSide();
8ee432f1 588 }
6d6f0db0
SR
589 } else if (ptr.clientX > (window.innerWidth * 0.9)) {
590 if (!anchor.classList.contains("noVNC_right")) {
591 UI.toggleControlbarSide();
04b399e2 592 }
6d6f0db0 593 }
04b399e2 594
6d6f0db0
SR
595 if (!UI.controlbarDrag) {
596 // The goal is to trigger on a certain physical width, the
597 // devicePixelRatio brings us a bit closer but is not optimal.
598 var dragThreshold = 10 * (window.devicePixelRatio || 1);
599 var dragDistance = Math.abs(ptr.clientY - UI.controlbarMouseDownClientY);
04b399e2 600
6d6f0db0 601 if (dragDistance < dragThreshold) return;
04b399e2 602
6d6f0db0
SR
603 UI.controlbarDrag = true;
604 }
f75e4d3c 605
6d6f0db0 606 var eventY = ptr.clientY - UI.controlbarMouseDownOffsetY;
04b399e2 607
6d6f0db0 608 UI.moveControlbarHandle(eventY);
59cd99bc 609
6d6f0db0
SR
610 e.preventDefault();
611 e.stopPropagation();
612 UI.keepControlbar();
613 UI.activateControlbar();
614 },
04b399e2 615
6d6f0db0
SR
616 // Move the handle but don't allow any position outside the bounds
617 moveControlbarHandle: function (viewportRelativeY) {
618 var handle = document.getElementById("noVNC_control_bar_handle");
619 var handleHeight = handle.getBoundingClientRect().height;
620 var controlbarBounds = document.getElementById("noVNC_control_bar")
621 .getBoundingClientRect();
622 var margin = 10;
04b399e2 623
6d6f0db0
SR
624 // These heights need to be non-zero for the below logic to work
625 if (handleHeight === 0 || controlbarBounds.height === 0) {
626 return;
627 }
04b399e2 628
6d6f0db0 629 var newY = viewportRelativeY;
04b399e2 630
6d6f0db0
SR
631 // Check if the coordinates are outside the control bar
632 if (newY < controlbarBounds.top + margin) {
633 // Force coordinates to be below the top of the control bar
634 newY = controlbarBounds.top + margin;
04b399e2 635
6d6f0db0
SR
636 } else if (newY > controlbarBounds.top +
637 controlbarBounds.height - handleHeight - margin) {
638 // Force coordinates to be above the bottom of the control bar
639 newY = controlbarBounds.top +
640 controlbarBounds.height - handleHeight - margin;
641 }
04b399e2 642
6d6f0db0
SR
643 // Corner case: control bar too small for stable position
644 if (controlbarBounds.height < (handleHeight + margin * 2)) {
645 newY = controlbarBounds.top +
646 (controlbarBounds.height - handleHeight) / 2;
647 }
04b399e2 648
6d6f0db0
SR
649 // The transform needs coordinates that are relative to the parent
650 var parentRelativeY = newY - controlbarBounds.top;
651 handle.style.transform = "translateY(" + parentRelativeY + "px)";
652 },
653
654 updateControlbarHandle: function () {
655 // Since the control bar is fixed on the viewport and not the page,
656 // the move function expects coordinates relative the the viewport.
657 var handle = document.getElementById("noVNC_control_bar_handle");
658 var handleBounds = handle.getBoundingClientRect();
659 UI.moveControlbarHandle(handleBounds.top);
660 },
661
662 controlbarHandleMouseUp: function(e) {
663 if ((e.type == "mouseup") && (e.button != 0)) return;
664
665 // mouseup and mousedown on the same place toggles the controlbar
666 if (UI.controlbarGrabbed && !UI.controlbarDrag) {
667 UI.toggleControlbar();
04b399e2
SM
668 e.preventDefault();
669 e.stopPropagation();
de315d62
PO
670 UI.keepControlbar();
671 UI.activateControlbar();
6d6f0db0
SR
672 }
673 UI.controlbarGrabbed = false;
bbc1648c 674 UI.showControlbarHint(false);
6d6f0db0
SR
675 },
676
677 controlbarHandleMouseDown: function(e) {
678 if ((e.type == "mousedown") && (e.button != 0)) return;
679
680 var ptr = getPointerEvent(e);
681
682 var handle = document.getElementById("noVNC_control_bar_handle");
683 var bounds = handle.getBoundingClientRect();
684
333ad45c
SM
685 // Touch events have implicit capture
686 if (e.type === "mousedown") {
687 setCapture(handle);
688 }
689
6d6f0db0
SR
690 UI.controlbarGrabbed = true;
691 UI.controlbarDrag = false;
692
bbc1648c
SM
693 UI.showControlbarHint(true);
694
6d6f0db0
SR
695 UI.controlbarMouseDownClientY = ptr.clientY;
696 UI.controlbarMouseDownOffsetY = ptr.clientY - bounds.top;
697 e.preventDefault();
698 e.stopPropagation();
699 UI.keepControlbar();
700 UI.activateControlbar();
701 },
702
703 toggleExpander: function(e) {
704 if (this.classList.contains("noVNC_open")) {
705 this.classList.remove("noVNC_open");
706 } else {
707 this.classList.add("noVNC_open");
708 }
709 },
575f6983 710
95dd6001 711/* ------^-------
712 * /VISUAL
713 * ==============
714 * SETTINGS
715 * ------v------*/
716
6d6f0db0
SR
717 // Initial page load read/initialization of settings
718 initSetting: function(name, defVal) {
719 // Check Query string followed by cookie
720 var val = WebUtil.getConfigVar(name);
721 if (val === null) {
722 val = WebUtil.readSetting(name, defVal);
723 }
724 UI.updateSetting(name, val);
725 return val;
726 },
bbbf42bb 727
6d6f0db0
SR
728 // Update cookie and form control setting. If value is not set, then
729 // updates from control to current cookie setting.
730 updateSetting: function(name, value) {
bbbf42bb 731
6d6f0db0
SR
732 // Save the cookie for this session
733 if (typeof value !== 'undefined') {
734 WebUtil.writeSetting(name, value);
735 }
bbbf42bb 736
6d6f0db0
SR
737 // Update the settings control
738 value = UI.getSetting(name);
bbbf42bb 739
6d6f0db0
SR
740 var ctrl = document.getElementById('noVNC_setting_' + name);
741 if (ctrl.type === 'checkbox') {
742 ctrl.checked = value;
bbbf42bb 743
6d6f0db0
SR
744 } else if (typeof ctrl.options !== 'undefined') {
745 for (var i = 0; i < ctrl.options.length; i += 1) {
746 if (ctrl.options[i].value === value) {
747 ctrl.selectedIndex = i;
748 break;
bbbf42bb 749 }
bbbf42bb 750 }
6d6f0db0
SR
751 } else {
752 /*Weird IE9 error leads to 'null' appearring
753 in textboxes instead of ''.*/
754 if (value === null) {
755 value = "";
bbbf42bb 756 }
6d6f0db0
SR
757 ctrl.value = value;
758 }
759 },
760
761 // Save control setting to cookie
762 saveSetting: function(name) {
763 var val, ctrl = document.getElementById('noVNC_setting_' + name);
764 if (ctrl.type === 'checkbox') {
765 val = ctrl.checked;
766 } else if (typeof ctrl.options !== 'undefined') {
767 val = ctrl.options[ctrl.selectedIndex].value;
768 } else {
769 val = ctrl.value;
770 }
771 WebUtil.writeSetting(name, val);
772 //Log.Debug("Setting saved '" + name + "=" + val + "'");
773 return val;
774 },
775
776 // Read form control compatible setting from cookie
777 getSetting: function(name) {
778 var ctrl = document.getElementById('noVNC_setting_' + name);
779 var val = WebUtil.readSetting(name);
780 if (typeof val !== 'undefined' && val !== null && ctrl.type === 'checkbox') {
781 if (val.toString().toLowerCase() in {'0':1, 'no':1, 'false':1}) {
782 val = false;
783 } else {
784 val = true;
bbbf42bb 785 }
6d6f0db0
SR
786 }
787 return val;
788 },
789
790 // These helpers compensate for the lack of parent-selectors and
791 // previous-sibling-selectors in CSS which are needed when we want to
792 // disable the labels that belong to disabled input elements.
793 disableSetting: function(name) {
794 var ctrl = document.getElementById('noVNC_setting_' + name);
795 ctrl.disabled = true;
796 ctrl.label.classList.add('noVNC_disabled');
797 },
798
799 enableSetting: function(name) {
800 var ctrl = document.getElementById('noVNC_setting_' + name);
801 ctrl.disabled = false;
802 ctrl.label.classList.remove('noVNC_disabled');
803 },
24584cca 804
ed8cbe4e
PO
805/* ------^-------
806 * /SETTINGS
807 * ==============
808 * PANELS
809 * ------v------*/
810
6d6f0db0
SR
811 closeAllPanels: function() {
812 UI.closeSettingsPanel();
cd523e8f 813 UI.closePowerPanel();
6d6f0db0
SR
814 UI.closeClipboardPanel();
815 UI.closeExtraKeys();
816 },
ed8cbe4e
PO
817
818/* ------^-------
819 * /PANELS
820 * ==============
821 * SETTINGS (panel)
822 * ------v------*/
823
6d6f0db0
SR
824 openSettingsPanel: function() {
825 UI.closeAllPanels();
826 UI.openControlbar();
827
828 // Refresh UI elements from saved cookies
829 UI.updateSetting('encrypt');
a49ade5f 830 UI.updateSetting('view_clip');
6d6f0db0
SR
831 UI.updateSetting('resize');
832 UI.updateSetting('shared');
833 UI.updateSetting('view_only');
834 UI.updateSetting('path');
835 UI.updateSetting('repeaterID');
836 UI.updateSetting('logging');
837 UI.updateSetting('reconnect');
838 UI.updateSetting('reconnect_delay');
839
840 document.getElementById('noVNC_settings')
841 .classList.add("noVNC_open");
842 document.getElementById('noVNC_settings_button')
843 .classList.add("noVNC_selected");
844 },
845
846 closeSettingsPanel: function() {
847 document.getElementById('noVNC_settings')
848 .classList.remove("noVNC_open");
849 document.getElementById('noVNC_settings_button')
850 .classList.remove("noVNC_selected");
851 },
852
853 toggleSettingsPanel: function() {
854 if (document.getElementById('noVNC_settings')
855 .classList.contains("noVNC_open")) {
856 UI.closeSettingsPanel();
857 } else {
858 UI.openSettingsPanel();
859 }
860 },
bbbf42bb 861
95dd6001 862/* ------^-------
863 * /SETTINGS
864 * ==============
cd523e8f 865 * POWER
95dd6001 866 * ------v------*/
867
cd523e8f 868 openPowerPanel: function() {
6d6f0db0
SR
869 UI.closeAllPanels();
870 UI.openControlbar();
871
cd523e8f 872 document.getElementById('noVNC_power')
6d6f0db0 873 .classList.add("noVNC_open");
cd523e8f 874 document.getElementById('noVNC_power_button')
6d6f0db0
SR
875 .classList.add("noVNC_selected");
876 },
877
cd523e8f
PO
878 closePowerPanel: function() {
879 document.getElementById('noVNC_power')
6d6f0db0 880 .classList.remove("noVNC_open");
cd523e8f 881 document.getElementById('noVNC_power_button')
6d6f0db0
SR
882 .classList.remove("noVNC_selected");
883 },
884
cd523e8f
PO
885 togglePowerPanel: function() {
886 if (document.getElementById('noVNC_power')
6d6f0db0 887 .classList.contains("noVNC_open")) {
cd523e8f 888 UI.closePowerPanel();
6d6f0db0 889 } else {
cd523e8f 890 UI.openPowerPanel();
6d6f0db0
SR
891 }
892 },
ed8cbe4e 893
cd523e8f
PO
894 // Disable/enable power button
895 updatePowerButton: function() {
896 if (UI.connected &&
747b4623
PO
897 UI.rfb.capabilities.power &&
898 !UI.rfb.viewOnly) {
cd523e8f 899 document.getElementById('noVNC_power_button')
6d6f0db0
SR
900 .classList.remove("noVNC_hidden");
901 } else {
cd523e8f 902 document.getElementById('noVNC_power_button')
6d6f0db0 903 .classList.add("noVNC_hidden");
cd523e8f
PO
904 // Close power panel if open
905 UI.closePowerPanel();
6d6f0db0
SR
906 }
907 },
bbbf42bb 908
95dd6001 909/* ------^-------
cd523e8f 910 * /POWER
95dd6001 911 * ==============
912 * CLIPBOARD
913 * ------v------*/
f8b399d7 914
6d6f0db0
SR
915 openClipboardPanel: function() {
916 UI.closeAllPanels();
917 UI.openControlbar();
918
919 document.getElementById('noVNC_clipboard')
920 .classList.add("noVNC_open");
921 document.getElementById('noVNC_clipboard_button')
922 .classList.add("noVNC_selected");
923 },
924
925 closeClipboardPanel: function() {
926 document.getElementById('noVNC_clipboard')
927 .classList.remove("noVNC_open");
928 document.getElementById('noVNC_clipboard_button')
929 .classList.remove("noVNC_selected");
930 },
931
932 toggleClipboardPanel: function() {
933 if (document.getElementById('noVNC_clipboard')
934 .classList.contains("noVNC_open")) {
935 UI.closeClipboardPanel();
936 } else {
937 UI.openClipboardPanel();
938 }
939 },
940
e89eef94
PO
941 clipboardReceive: function(e) {
942 Log.Debug(">> UI.clipboardReceive: " + e.detail.text.substr(0,40) + "...");
943 document.getElementById('noVNC_clipboard_text').value = e.detail.text;
6d6f0db0
SR
944 Log.Debug("<< UI.clipboardReceive");
945 },
946
947 clipboardClear: function() {
948 document.getElementById('noVNC_clipboard_text').value = "";
949 UI.rfb.clipboardPasteFrom("");
950 },
951
952 clipboardSend: function() {
953 var text = document.getElementById('noVNC_clipboard_text').value;
954 Log.Debug(">> UI.clipboardSend: " + text.substr(0,40) + "...");
955 UI.rfb.clipboardPasteFrom(text);
956 Log.Debug("<< UI.clipboardSend");
957 },
95dd6001 958
959/* ------^-------
960 * /CLIPBOARD
961 * ==============
962 * CONNECTION
963 * ------v------*/
964
6d6f0db0
SR
965 openConnectPanel: function() {
966 document.getElementById('noVNC_connect_dlg')
967 .classList.add("noVNC_open");
968 },
b3c932c3 969
6d6f0db0
SR
970 closeConnectPanel: function() {
971 document.getElementById('noVNC_connect_dlg')
972 .classList.remove("noVNC_open");
973 },
b3c932c3 974
6d6f0db0 975 connect: function(event, password) {
a4822c3a
SM
976
977 // Ignore when rfb already exists
978 if (typeof UI.rfb !== 'undefined') {
979 return;
980 }
981
6d6f0db0
SR
982 var host = UI.getSetting('host');
983 var port = UI.getSetting('port');
984 var path = UI.getSetting('path');
c55f05f6 985
6d6f0db0
SR
986 if (typeof password === 'undefined') {
987 password = WebUtil.getConfigVar('password');
2e735160 988 UI.reconnect_password = password;
6d6f0db0 989 }
044d54ed 990
6d6f0db0
SR
991 if (password === null) {
992 password = undefined;
993 }
512d3605 994
d623a029
SM
995 UI.hideStatus();
996
d593483e 997 if (!host) {
8317524c
SM
998 Log.Error("Can't connect when host is: " + host);
999 UI.showStatus(_("Must set host"), 'error');
6d6f0db0
SR
1000 return;
1001 }
53fc7392 1002
6d6f0db0
SR
1003 UI.closeAllPanels();
1004 UI.closeConnectPanel();
4102b71c 1005
f3763a01
SM
1006 UI.updateVisualState('connecting');
1007
5b4e5d01
PO
1008 var url;
1009
1010 url = UI.getSetting('encrypt') ? 'wss' : 'ws';
1011
1012 url += '://' + host;
1013 if(port) {
1014 url += ':' + port;
1015 }
1016 url += '/' + path;
1017
9b84f516 1018 UI.rfb = new RFB(document.getElementById('noVNC_container'), url,
2f4516f2
PO
1019 { shared: UI.getSetting('shared'),
1020 repeaterID: UI.getSetting('repeaterID'),
1021 credentials: { password: password } });
ee5cae9f 1022 UI.rfb.addEventListener("connect", UI.connectFinished);
e89eef94
PO
1023 UI.rfb.addEventListener("disconnect", UI.disconnectFinished);
1024 UI.rfb.addEventListener("credentialsrequired", UI.credentials);
d472f3f1 1025 UI.rfb.addEventListener("securityfailure", UI.securityFailed);
9b84f516 1026 UI.rfb.addEventListener("capabilities", function () { UI.updatePowerButton(); });
e89eef94
PO
1027 UI.rfb.addEventListener("clipboard", UI.clipboardReceive);
1028 UI.rfb.addEventListener("bell", UI.bell);
e89eef94 1029 UI.rfb.addEventListener("desktopname", UI.updateDesktopName);
9b84f516
PO
1030 UI.rfb.clipViewport = UI.getSetting('view_clip');
1031 UI.rfb.scaleViewport = UI.getSetting('resize') === 'scale';
1032 UI.rfb.resizeSession = UI.getSetting('resize') === 'remote';
37c60935 1033
f3763a01 1034 UI.updateViewOnly(); // requires UI.rfb
6d6f0db0 1035 },
5299db1a 1036
6d6f0db0
SR
1037 disconnect: function() {
1038 UI.closeAllPanels();
1039 UI.rfb.disconnect();
8e0f0088 1040
ee5cae9f
SM
1041 UI.connected = false;
1042
6d6f0db0
SR
1043 // Disable automatic reconnecting
1044 UI.inhibit_reconnect = true;
044d54ed 1045
ee5cae9f
SM
1046 UI.updateVisualState('disconnecting');
1047
6d6f0db0
SR
1048 // Don't display the connection settings until we're actually disconnected
1049 },
bbbf42bb 1050
6d6f0db0
SR
1051 reconnect: function() {
1052 UI.reconnect_callback = null;
044d54ed 1053
6d6f0db0
SR
1054 // if reconnect has been disabled in the meantime, do nothing.
1055 if (UI.inhibit_reconnect) {
1056 return;
1057 }
044d54ed 1058
6d6f0db0
SR
1059 UI.connect(null, UI.reconnect_password);
1060 },
044d54ed 1061
68958038
SM
1062 cancelReconnect: function() {
1063 if (UI.reconnect_callback !== null) {
1064 clearTimeout(UI.reconnect_callback);
1065 UI.reconnect_callback = null;
1066 }
1067
1068 UI.updateVisualState('disconnected');
1069
1070 UI.openControlbar();
1071 UI.openConnectPanel();
1072 },
1073
ee5cae9f
SM
1074 connectFinished: function (e) {
1075 UI.connected = true;
1076 UI.inhibit_reconnect = false;
ee5cae9f
SM
1077
1078 let msg;
1079 if (UI.getSetting('encrypt')) {
1080 msg = _("Connected (encrypted) to ") + UI.desktopName;
1081 } else {
1082 msg = _("Connected (unencrypted) to ") + UI.desktopName;
1083 }
1084 UI.showStatus(msg);
1085 UI.updateVisualState('connected');
1086
1087 // Do this last because it can only be used on rendered elements
9b84f516 1088 UI.rfb.focus();
ee5cae9f
SM
1089 },
1090
e89eef94 1091 disconnectFinished: function (e) {
7f1049c0
SM
1092 let wasConnected = UI.connected;
1093
ee5cae9f
SM
1094 // This variable is ideally set when disconnection starts, but
1095 // when the disconnection isn't clean or if it is initiated by
1096 // the server, we need to do it here as well since
1097 // UI.disconnect() won't be used in those cases.
1098 UI.connected = false;
1099
d1aeb435
PO
1100 UI.rfb = undefined;
1101
d472f3f1 1102 if (!e.detail.clean) {
ee5cae9f 1103 UI.updateVisualState('disconnected');
7f1049c0
SM
1104 if (wasConnected) {
1105 UI.showStatus(_("Something went wrong, connection is closed"),
1106 'error');
1107 } else {
1108 UI.showStatus(_("Failed to connect to server"), 'error');
1109 }
6d6f0db0 1110 } else if (UI.getSetting('reconnect', false) === true && !UI.inhibit_reconnect) {
ee5cae9f 1111 UI.updateVisualState('reconnecting');
044d54ed 1112
6d6f0db0
SR
1113 var delay = parseInt(UI.getSetting('reconnect_delay'));
1114 UI.reconnect_callback = setTimeout(UI.reconnect, delay);
1115 return;
ee5cae9f
SM
1116 } else {
1117 UI.updateVisualState('disconnected');
1118 UI.showStatus(_("Disconnected"), 'normal');
6d6f0db0 1119 }
044d54ed 1120
6d6f0db0
SR
1121 UI.openControlbar();
1122 UI.openConnectPanel();
1123 },
044d54ed 1124
d472f3f1
SM
1125 securityFailed: function (e) {
1126 let msg = "";
1127 // On security failures we might get a string with a reason
1128 // directly from the server. Note that we can't control if
1129 // this string is translated or not.
1130 if ('reason' in e.detail) {
1131 msg = _("New connection has been rejected with reason: ") +
1132 e.detail.reason;
1133 } else {
1134 msg = _("New connection has been rejected");
6d6f0db0 1135 }
d472f3f1 1136 UI.showStatus(msg, 'error');
6d6f0db0 1137 },
3bb12056 1138
7d714b15
SM
1139/* ------^-------
1140 * /CONNECTION
1141 * ==============
1142 * PASSWORD
1143 * ------v------*/
1144
e89eef94 1145 credentials: function(e) {
430f00d6 1146 // FIXME: handle more types
6d6f0db0
SR
1147 document.getElementById('noVNC_password_dlg')
1148 .classList.add('noVNC_open');
7d714b15 1149
6d6f0db0
SR
1150 setTimeout(function () {
1151 document.getElementById('noVNC_password_input').focus();
1152 }, 100);
7d714b15 1153
8317524c
SM
1154 Log.Warn("Server asked for a password");
1155 UI.showStatus(_("Password is required"), "warning");
6d6f0db0
SR
1156 },
1157
1158 setPassword: function(e) {
a80b5fda
PO
1159 // Prevent actually submitting the form
1160 e.preventDefault();
1161
c23665dd
SM
1162 var inputElem = document.getElementById('noVNC_password_input');
1163 var password = inputElem.value;
1164 // Clear the input after reading the password
1165 inputElem.value = "";
430f00d6 1166 UI.rfb.sendCredentials({ password: password });
6d6f0db0
SR
1167 UI.reconnect_password = password;
1168 document.getElementById('noVNC_password_dlg')
1169 .classList.remove('noVNC_open');
6d6f0db0 1170 },
58ded70d 1171
95dd6001 1172/* ------^-------
7d714b15 1173 * /PASSWORD
95dd6001 1174 * ==============
1175 * FULLSCREEN
1176 * ------v------*/
1177
6d6f0db0
SR
1178 toggleFullscreen: function() {
1179 if (document.fullscreenElement || // alternative standard method
1180 document.mozFullScreenElement || // currently working methods
1181 document.webkitFullscreenElement ||
1182 document.msFullscreenElement) {
1183 if (document.exitFullscreen) {
1184 document.exitFullscreen();
1185 } else if (document.mozCancelFullScreen) {
1186 document.mozCancelFullScreen();
1187 } else if (document.webkitExitFullscreen) {
1188 document.webkitExitFullscreen();
1189 } else if (document.msExitFullscreen) {
1190 document.msExitFullscreen();
1191 }
1192 } else {
1193 if (document.documentElement.requestFullscreen) {
1194 document.documentElement.requestFullscreen();
1195 } else if (document.documentElement.mozRequestFullScreen) {
1196 document.documentElement.mozRequestFullScreen();
1197 } else if (document.documentElement.webkitRequestFullscreen) {
1198 document.documentElement.webkitRequestFullscreen(Element.ALLOW_KEYBOARD_INPUT);
1199 } else if (document.body.msRequestFullscreen) {
1200 document.body.msRequestFullscreen();
7d1dc09a 1201 }
6d6f0db0
SR
1202 }
1203 UI.enableDisableViewClip();
1204 UI.updateFullscreenButton();
1205 },
1206
1207 updateFullscreenButton: function() {
1208 if (document.fullscreenElement || // alternative standard method
1209 document.mozFullScreenElement || // currently working methods
1210 document.webkitFullscreenElement ||
1211 document.msFullscreenElement ) {
1212 document.getElementById('noVNC_fullscreen_button')
1213 .classList.add("noVNC_selected");
1214 } else {
1215 document.getElementById('noVNC_fullscreen_button')
1216 .classList.remove("noVNC_selected");
1217 }
1218 },
7d1dc09a 1219
95dd6001 1220/* ------^-------
1221 * /FULLSCREEN
1222 * ==============
1223 * RESIZE
1224 * ------v------*/
777cb7a0 1225
6d6f0db0
SR
1226 // Apply remote resizing or local scaling
1227 applyResizeMode: function() {
1228 if (!UI.rfb) return;
58ded70d 1229
9b84f516
PO
1230 UI.rfb.scaleViewport = UI.getSetting('resize') === 'scale';
1231 UI.rfb.resizeSession = UI.getSetting('resize') === 'remote';
6d6f0db0 1232 },
bbbf42bb 1233
95dd6001 1234/* ------^-------
1235 * /RESIZE
1236 * ==============
a49ade5f 1237 * VIEW CLIPPING
95dd6001 1238 * ------v------*/
1239
a49ade5f 1240 // Update parameters that depend on the viewport clip setting
6d6f0db0
SR
1241 updateViewClip: function() {
1242 if (!UI.rfb) return;
1243
0460e5fd 1244 var cur_clip = UI.rfb.clipViewport;
a49ade5f 1245 var new_clip = UI.getSetting('view_clip');
6d6f0db0 1246
9b84f516 1247 if (isTouchDevice) {
6d6f0db0
SR
1248 // Touch devices usually have shit scrollbars
1249 new_clip = true;
1250 }
5f38376a 1251
6d6f0db0 1252 if (cur_clip !== new_clip) {
0460e5fd 1253 UI.rfb.clipViewport = new_clip;
6d6f0db0 1254 }
8e0f0088 1255
6d6f0db0
SR
1256 // Changing the viewport may change the state of
1257 // the dragging button
1258 UI.updateViewDrag();
1259 },
1260
a49ade5f 1261 // Handle special cases where viewport clipping is forced on/off or locked
6d6f0db0
SR
1262 enableDisableViewClip: function() {
1263 var resizeSetting = UI.getSetting('resize');
1264 // Disable clipping if we are scaling, connected or on touch
002907d2 1265 if (resizeSetting === 'scale' ||
6d6f0db0 1266 isTouchDevice) {
a49ade5f 1267 UI.disableSetting('view_clip');
6d6f0db0 1268 } else {
a49ade5f 1269 UI.enableSetting('view_clip');
6d6f0db0
SR
1270 }
1271 },
30bfff81 1272
95dd6001 1273/* ------^-------
a49ade5f 1274 * /VIEW CLIPPING
95dd6001 1275 * ==============
1276 * VIEWDRAG
1277 * ------v------*/
1278
6d6f0db0
SR
1279 toggleViewDrag: function() {
1280 if (!UI.rfb) return;
bbbf42bb 1281
0460e5fd 1282 var drag = UI.rfb.dragViewport;
6d6f0db0
SR
1283 UI.setViewDrag(!drag);
1284 },
f0d9ab96 1285
6d6f0db0
SR
1286 // Set the view drag mode which moves the viewport on mouse drags
1287 setViewDrag: function(drag) {
1288 if (!UI.rfb) return;
f0d9ab96 1289
0460e5fd 1290 UI.rfb.dragViewport = drag;
f0d9ab96 1291
6d6f0db0
SR
1292 UI.updateViewDrag();
1293 },
f0d9ab96 1294
6d6f0db0 1295 updateViewDrag: function() {
6d6f0db0 1296 if (!UI.connected) return;
6244e383 1297
6d6f0db0 1298 var viewDragButton = document.getElementById('noVNC_view_drag_button');
29a0e6a8 1299
9b84f516
PO
1300 if (!UI.rfb.clipViewport && UI.rfb.dragViewport) {
1301 // We are no longer clipping the viewport. Make sure
1302 // viewport drag isn't active when it can't be used.
0460e5fd 1303 UI.rfb.dragViewport = false;
6d6f0db0
SR
1304 }
1305
0460e5fd 1306 if (UI.rfb.dragViewport) {
6d6f0db0
SR
1307 viewDragButton.classList.add("noVNC_selected");
1308 } else {
1309 viewDragButton.classList.remove("noVNC_selected");
1310 }
1311
1312 // Different behaviour for touch vs non-touch
1313 // The button is disabled instead of hidden on touch devices
1314 if (isTouchDevice) {
1315 viewDragButton.classList.remove("noVNC_hidden");
6244e383 1316
9b84f516 1317 if (UI.rfb.clipViewport) {
6d6f0db0 1318 viewDragButton.disabled = false;
31ddaa1c 1319 } else {
6d6f0db0 1320 viewDragButton.disabled = true;
6244e383 1321 }
6d6f0db0
SR
1322 } else {
1323 viewDragButton.disabled = false;
31ddaa1c 1324
9b84f516 1325 if (UI.rfb.clipViewport) {
6244e383 1326 viewDragButton.classList.remove("noVNC_hidden");
6244e383 1327 } else {
6d6f0db0 1328 viewDragButton.classList.add("noVNC_hidden");
f8b399d7 1329 }
6d6f0db0
SR
1330 }
1331 },
f8b399d7 1332
95dd6001 1333/* ------^-------
1334 * /VIEWDRAG
1335 * ==============
1336 * KEYBOARD
1337 * ------v------*/
fdf21468 1338
6d6f0db0
SR
1339 showVirtualKeyboard: function() {
1340 if (!isTouchDevice) return;
4b30f9ce 1341
6d6f0db0 1342 var input = document.getElementById('noVNC_keyboardinput');
4b30f9ce 1343
6d6f0db0 1344 if (document.activeElement == input) return;
4b30f9ce 1345
6d6f0db0 1346 input.focus();
4b30f9ce 1347
6d6f0db0
SR
1348 try {
1349 var l = input.value.length;
1350 // Move the caret to the end
1351 input.setSelectionRange(l, l);
1352 } catch (err) {} // setSelectionRange is undefined in Google Chrome
1353 },
4b30f9ce 1354
6d6f0db0
SR
1355 hideVirtualKeyboard: function() {
1356 if (!isTouchDevice) return;
4b30f9ce 1357
6d6f0db0 1358 var input = document.getElementById('noVNC_keyboardinput');
4b30f9ce 1359
6d6f0db0 1360 if (document.activeElement != input) return;
4b30f9ce 1361
6d6f0db0
SR
1362 input.blur();
1363 },
4b30f9ce 1364
6d6f0db0
SR
1365 toggleVirtualKeyboard: function () {
1366 if (document.getElementById('noVNC_keyboard_button')
1367 .classList.contains("noVNC_selected")) {
1368 UI.hideVirtualKeyboard();
1369 } else {
1370 UI.showVirtualKeyboard();
1371 }
1372 },
bbbf42bb 1373
6d6f0db0
SR
1374 onfocusVirtualKeyboard: function(event) {
1375 document.getElementById('noVNC_keyboard_button')
1376 .classList.add("noVNC_selected");
1d6ff4a3 1377 if (UI.rfb) {
b8dfb983 1378 UI.rfb.focusOnClick = false;
1d6ff4a3 1379 }
6d6f0db0 1380 },
fdf21468 1381
6d6f0db0
SR
1382 onblurVirtualKeyboard: function(event) {
1383 document.getElementById('noVNC_keyboard_button')
1384 .classList.remove("noVNC_selected");
1d6ff4a3 1385 if (UI.rfb) {
b8dfb983 1386 UI.rfb.focusOnClick = true;
1d6ff4a3 1387 }
6d6f0db0 1388 },
ffcadf95 1389
6d6f0db0
SR
1390 keepVirtualKeyboard: function(event) {
1391 var input = document.getElementById('noVNC_keyboardinput');
ffcadf95 1392
6d6f0db0
SR
1393 // Only prevent focus change if the virtual keyboard is active
1394 if (document.activeElement != input) {
1395 return;
1396 }
ffcadf95 1397
6d6f0db0
SR
1398 // Only allow focus to move to other elements that need
1399 // focus to function properly
1400 if (event.target.form !== undefined) {
1401 switch (event.target.type) {
1402 case 'text':
1403 case 'email':
1404 case 'search':
1405 case 'password':
1406 case 'tel':
1407 case 'url':
1408 case 'textarea':
1409 case 'select-one':
1410 case 'select-multiple':
1411 return;
ffcadf95 1412 }
6d6f0db0 1413 }
ffcadf95 1414
1d6ff4a3 1415 event.preventDefault();
6d6f0db0 1416 },
bbbf42bb 1417
6d6f0db0
SR
1418 keyboardinputReset: function() {
1419 var kbi = document.getElementById('noVNC_keyboardinput');
1420 kbi.value = new Array(UI.defaultKeyboardinputLen).join("_");
1421 UI.lastKeyboardinput = kbi.value;
1422 },
bbbf42bb 1423
867daa98
PO
1424 keyEvent: function (keysym, code, down) {
1425 if (!UI.rfb) return;
1426
1427 UI.rfb.sendKey(keysym, code, down);
1428 },
1429
6d6f0db0
SR
1430 // When normal keyboard events are left uncought, use the input events from
1431 // the keyboardinput element instead and generate the corresponding key events.
1432 // This code is required since some browsers on Android are inconsistent in
1433 // sending keyCodes in the normal keyboard events when using on screen keyboards.
1434 keyInput: function(event) {
3b8ec46f 1435
6d6f0db0 1436 if (!UI.rfb) return;
3b8ec46f 1437
6d6f0db0 1438 var newValue = event.target.value;
1138bdd4 1439
6d6f0db0
SR
1440 if (!UI.lastKeyboardinput) {
1441 UI.keyboardinputReset();
1442 }
1443 var oldValue = UI.lastKeyboardinput;
bbbf42bb 1444
6d6f0db0
SR
1445 var newLen;
1446 try {
1447 // Try to check caret position since whitespace at the end
1448 // will not be considered by value.length in some browsers
1449 newLen = Math.max(event.target.selectionStart, newValue.length);
1450 } catch (err) {
1451 // selectionStart is undefined in Google Chrome
1452 newLen = newValue.length;
1453 }
1454 var oldLen = oldValue.length;
1455
1456 var backspaces;
1457 var inputs = newLen - oldLen;
1458 if (inputs < 0) {
1459 backspaces = -inputs;
1460 } else {
1461 backspaces = 0;
1462 }
8e0f0088 1463
6d6f0db0
SR
1464 // Compare the old string with the new to account for
1465 // text-corrections or other input that modify existing text
1466 var i;
1467 for (i = 0; i < Math.min(oldLen, newLen); i++) {
1468 if (newValue.charAt(i) != oldValue.charAt(i)) {
1469 inputs = newLen - i;
1470 backspaces = oldLen - i;
1471 break;
bbbf42bb 1472 }
6d6f0db0 1473 }
bbbf42bb 1474
6d6f0db0
SR
1475 // Send the key events
1476 for (i = 0; i < backspaces; i++) {
94f5cf05 1477 UI.rfb.sendKey(KeyTable.XK_BackSpace, "Backspace");
6d6f0db0
SR
1478 }
1479 for (i = newLen - inputs; i < newLen; i++) {
524d67f2 1480 UI.rfb.sendKey(keysyms.lookup(newValue.charCodeAt(i)));
6d6f0db0 1481 }
bbbf42bb 1482
6d6f0db0
SR
1483 // Control the text content length in the keyboardinput element
1484 if (newLen > 2 * UI.defaultKeyboardinputLen) {
1485 UI.keyboardinputReset();
1486 } else if (newLen < 1) {
1487 // There always have to be some text in the keyboardinput
1488 // element with which backspace can interact.
1489 UI.keyboardinputReset();
1490 // This sometimes causes the keyboard to disappear for a second
1491 // but it is required for the android keyboard to recognize that
1492 // text has been added to the field
1493 event.target.blur();
1494 // This has to be ran outside of the input handler in order to work
1495 setTimeout(event.target.focus.bind(event.target), 0);
1496 } else {
1497 UI.lastKeyboardinput = newValue;
1498 }
1499 },
bbbf42bb 1500
4b30f9ce
SM
1501/* ------^-------
1502 * /KEYBOARD
1503 * ==============
1504 * EXTRA KEYS
1505 * ------v------*/
1506
6d6f0db0
SR
1507 openExtraKeys: function() {
1508 UI.closeAllPanels();
1509 UI.openControlbar();
1510
1511 document.getElementById('noVNC_modifiers')
1512 .classList.add("noVNC_open");
1513 document.getElementById('noVNC_toggle_extra_keys_button')
1514 .classList.add("noVNC_selected");
1515 },
1516
1517 closeExtraKeys: function() {
1518 document.getElementById('noVNC_modifiers')
1519 .classList.remove("noVNC_open");
1520 document.getElementById('noVNC_toggle_extra_keys_button')
1521 .classList.remove("noVNC_selected");
1522 },
1523
1524 toggleExtraKeys: function() {
1525 if(document.getElementById('noVNC_modifiers')
1526 .classList.contains("noVNC_open")) {
1527 UI.closeExtraKeys();
1528 } else {
1529 UI.openExtraKeys();
1530 }
1531 },
1532
1533 sendEsc: function() {
94f5cf05 1534 UI.rfb.sendKey(KeyTable.XK_Escape, "Escape");
6d6f0db0
SR
1535 },
1536
1537 sendTab: function() {
1538 UI.rfb.sendKey(KeyTable.XK_Tab);
1539 },
1540
1541 toggleCtrl: function() {
1542 var btn = document.getElementById('noVNC_toggle_ctrl_button');
1543 if (btn.classList.contains("noVNC_selected")) {
94f5cf05 1544 UI.rfb.sendKey(KeyTable.XK_Control_L, "ControlLeft", false);
6d6f0db0
SR
1545 btn.classList.remove("noVNC_selected");
1546 } else {
94f5cf05 1547 UI.rfb.sendKey(KeyTable.XK_Control_L, "ControlLeft", true);
6d6f0db0
SR
1548 btn.classList.add("noVNC_selected");
1549 }
1550 },
1551
1552 toggleAlt: function() {
1553 var btn = document.getElementById('noVNC_toggle_alt_button');
1554 if (btn.classList.contains("noVNC_selected")) {
94f5cf05 1555 UI.rfb.sendKey(KeyTable.XK_Alt_L, "AltLeft", false);
6d6f0db0
SR
1556 btn.classList.remove("noVNC_selected");
1557 } else {
94f5cf05 1558 UI.rfb.sendKey(KeyTable.XK_Alt_L, "AltLeft", true);
6d6f0db0
SR
1559 btn.classList.add("noVNC_selected");
1560 }
1561 },
bbbf42bb 1562
6d6f0db0
SR
1563 sendCtrlAltDel: function() {
1564 UI.rfb.sendCtrlAltDel();
1565 },
bbbf42bb 1566
95dd6001 1567/* ------^-------
4b30f9ce 1568 * /EXTRA KEYS
95dd6001 1569 * ==============
1570 * MISC
1571 * ------v------*/
1572
6d6f0db0 1573 setMouseButton: function(num) {
747b4623 1574 var view_only = UI.rfb.viewOnly;
6d6f0db0 1575 if (UI.rfb && !view_only) {
747b4623 1576 UI.rfb.touchButton = num;
6d6f0db0 1577 }
95dd6001 1578
6d6f0db0
SR
1579 var blist = [0, 1,2,4];
1580 for (var b = 0; b < blist.length; b++) {
1581 var button = document.getElementById('noVNC_mouse_button' +
1582 blist[b]);
1583 if (blist[b] === num && !view_only) {
1584 button.classList.remove("noVNC_hidden");
1585 } else {
1586 button.classList.add("noVNC_hidden");
ceb847b0 1587 }
6d6f0db0
SR
1588 }
1589 },
ef1e8bab 1590
6d6f0db0 1591 updateViewOnly: function() {
e6a8eb15 1592 if (!UI.rfb) return;
747b4623 1593 UI.rfb.viewOnly = UI.getSetting('view_only');
f3763a01
SM
1594
1595 // Hide input related buttons in view only mode
1596 if (UI.rfb.viewOnly) {
1597 document.getElementById('noVNC_keyboard_button')
1598 .classList.add('noVNC_hidden');
1599 document.getElementById('noVNC_toggle_extra_keys_button')
1600 .classList.add('noVNC_hidden');
1601 } else {
1602 document.getElementById('noVNC_keyboard_button')
1603 .classList.remove('noVNC_hidden');
1604 document.getElementById('noVNC_toggle_extra_keys_button')
1605 .classList.remove('noVNC_hidden');
1606 }
61f93180 1607 UI.setMouseButton(1); //has it's own logic for hiding/showing
6d6f0db0
SR
1608 },
1609
1610 updateLogging: function() {
1611 WebUtil.init_logging(UI.getSetting('logging'));
1612 },
1613
e89eef94
PO
1614 updateDesktopName: function(e) {
1615 UI.desktopName = e.detail.name;
6d6f0db0 1616 // Display the desktop name in the document title
e89eef94 1617 document.title = e.detail.name + " - noVNC";
6d6f0db0
SR
1618 },
1619
e89eef94 1620 bell: function(e) {
6d6f0db0 1621 if (WebUtil.getConfigVar('bell', 'on') === 'on') {
a342ed70
SM
1622 var promise = document.getElementById('noVNC_bell').play();
1623 // The standards disagree on the return value here
1624 if (promise) {
1625 promise.catch(function(e) {
d4fc89d8
SM
1626 if (e.name === "NotAllowedError") {
1627 // Ignore when the browser doesn't let us play audio.
1628 // It is common that the browsers require audio to be
1629 // initiated from a user action.
1630 } else {
1631 Log.Error("Unable to play bell: " + e);
1632 }
1633 });
a342ed70 1634 }
6d6f0db0
SR
1635 }
1636 },
63bf2ba5 1637
6d6f0db0
SR
1638 //Helper to add options to dropdown.
1639 addOption: function(selectbox, text, value) {
1640 var optn = document.createElement("OPTION");
1641 optn.text = text;
1642 optn.value = value;
1643 selectbox.options.add(optn);
1644 },
bbbf42bb 1645
95dd6001 1646/* ------^-------
1647 * /MISC
1648 * ==============
1649 */
6d6f0db0
SR
1650};
1651
1652// Set up translations
690d07ba 1653var LINGUAS = ["de", "el", "es", "nl", "pl", "sv", "tr", "zh"];
6d6f0db0
SR
1654l10n.setup(LINGUAS);
1655if (l10n.language !== "en" && l10n.dictionary === undefined) {
1656 WebUtil.fetchJSON('app/locale/' + l10n.language + '.json', function (translations) {
1657 l10n.dictionary = translations;
1658
1659 // wait for translations to load before loading the UI
1660 UI.prime();
1661 }, function (err) {
adfc9d3f 1662 throw err;
6d6f0db0
SR
1663 });
1664} else {
1665 UI.prime();
1666}
1667
3ae0bb09 1668export default UI;