mirror of
https://github.com/mofeng-git/One-KVM.git
synced 2025-12-12 01:00:29 +08:00
134 lines
4.4 KiB
JavaScript
134 lines
4.4 KiB
JavaScript
/*****************************************************************************
|
|
# #
|
|
# KVMD - The main Pi-KVM daemon. #
|
|
# #
|
|
# Copyright (C) 2018 Maxim Devaev <mdevaev@gmail.com> #
|
|
# #
|
|
# This program 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 <https://www.gnu.org/licenses/>. #
|
|
# #
|
|
*****************************************************************************/
|
|
|
|
|
|
function Keyboard() {
|
|
var self = this;
|
|
|
|
/************************************************************************/
|
|
|
|
var __ws = null;
|
|
var __online = true;
|
|
|
|
var __keypad = null;
|
|
var __use_release_hook = false;
|
|
|
|
var __init__ = function() {
|
|
__keypad = new Keypad("div#keyboard-window", __sendKey);
|
|
|
|
$("hid-keyboard-led").title = "Keyboard free";
|
|
|
|
$("keyboard-window").onkeydown = (event) => __keyboardHandler(event, true);
|
|
$("keyboard-window").onkeyup = (event) => __keyboardHandler(event, false);
|
|
$("keyboard-window").onfocus = __updateLeds;
|
|
$("keyboard-window").onblur = __updateLeds;
|
|
|
|
$("stream-window").onkeydown = (event) => __keyboardHandler(event, true);
|
|
$("stream-window").onkeyup = (event) => __keyboardHandler(event, false);
|
|
$("stream-window").onfocus = __updateLeds;
|
|
$("stream-window").onblur = __updateLeds;
|
|
|
|
window.addEventListener("focusin", __updateLeds);
|
|
window.addEventListener("focusout", __updateLeds);
|
|
|
|
if (tools.browser.is_mac) {
|
|
// https://bugs.chromium.org/p/chromium/issues/detail?id=28089
|
|
// https://bugzilla.mozilla.org/show_bug.cgi?id=1299553
|
|
tools.info("Keyboard: enabled Mac-CMD-Hook");
|
|
__use_release_hook = true;
|
|
}
|
|
};
|
|
|
|
/************************************************************************/
|
|
|
|
self.setSocket = function(ws) {
|
|
if (ws !== __ws) {
|
|
self.releaseAll();
|
|
__ws = ws;
|
|
}
|
|
__updateLeds();
|
|
};
|
|
|
|
self.setState = function(state) {
|
|
__online = state.online;
|
|
__updateLeds();
|
|
};
|
|
|
|
self.releaseAll = function() {
|
|
__keypad.releaseAll(__use_release_hook);
|
|
};
|
|
|
|
self.emit = function(code, state) {
|
|
__keyboardHandler({code: code}, state);
|
|
};
|
|
|
|
var __updateLeds = function() {
|
|
var is_captured = (
|
|
$("stream-window").classList.contains("window-active")
|
|
|| $("keyboard-window").classList.contains("window-active")
|
|
);
|
|
var led = "led-gray";
|
|
var title = "Keyboard free";
|
|
|
|
if (__ws) {
|
|
if (__online) {
|
|
if (is_captured) {
|
|
led = "led-green";
|
|
title = "Keyboard captured";
|
|
}
|
|
} else {
|
|
led = "led-yellow";
|
|
title = (is_captured ? "Keyboard captured, HID offline" : "Keyboard free, HID offline");
|
|
}
|
|
} else {
|
|
if (is_captured) {
|
|
title = "Keyboard captured, Pi-KVM offline";
|
|
}
|
|
}
|
|
$("hid-keyboard-led").className = led;
|
|
$("hid-keyboard-led").title = title;
|
|
};
|
|
|
|
var __keyboardHandler = function(event, state) {
|
|
if (event.preventDefault) {
|
|
event.preventDefault();
|
|
}
|
|
if (!event.repeat) {
|
|
// https://bugs.chromium.org/p/chromium/issues/detail?id=28089
|
|
// https://bugzilla.mozilla.org/show_bug.cgi?id=1299553
|
|
__keypad.emit(event.code, state, __use_release_hook);
|
|
}
|
|
};
|
|
|
|
var __sendKey = function(code, state) {
|
|
tools.debug("Keyboard: key", (state ? "pressed:" : "released:"), code);
|
|
if (__ws) {
|
|
__ws.send(JSON.stringify({
|
|
event_type: "key",
|
|
key: code,
|
|
state: state,
|
|
}));
|
|
}
|
|
};
|
|
|
|
__init__();
|
|
}
|