Split keyboard and mouse permission (resolves #45)
This commit is contained in:
+3
-2
@@ -44,8 +44,9 @@ namespace crypto {
|
|||||||
input_controller = _input << 0, // Allow controller input
|
input_controller = _input << 0, // Allow controller input
|
||||||
input_touch = _input << 1, // Allow touch input
|
input_touch = _input << 1, // Allow touch input
|
||||||
input_pen = _input << 2, // Allow pen input
|
input_pen = _input << 2, // Allow pen input
|
||||||
input_kbdm = _input << 3, // Allow kbd/mouse input
|
input_mouse = _input << 3, // Allow mouse input
|
||||||
_all_inputs = input_controller | input_touch | input_pen | input_kbdm,
|
input_kbd = _input << 4, // Allow keyboard input
|
||||||
|
_all_inputs = input_controller | input_touch | input_pen | input_mouse | input_kbd,
|
||||||
|
|
||||||
_operation = _input << 8, // Operation permission group
|
_operation = _input << 8, // Operation permission group
|
||||||
clipboard_set = _operation << 0, // Allow set clipboard from client
|
clipboard_set = _operation << 0, // Allow set clipboard from client
|
||||||
|
|||||||
+6
-1
@@ -1657,10 +1657,15 @@ namespace input {
|
|||||||
case MOUSE_BUTTON_UP_EVENT_MAGIC_GEN5:
|
case MOUSE_BUTTON_UP_EVENT_MAGIC_GEN5:
|
||||||
case SCROLL_MAGIC_GEN5:
|
case SCROLL_MAGIC_GEN5:
|
||||||
case SS_HSCROLL_MAGIC:
|
case SS_HSCROLL_MAGIC:
|
||||||
|
if (!(permission & crypto::PERM::input_mouse)) {
|
||||||
|
return;
|
||||||
|
} else {
|
||||||
|
break;
|
||||||
|
}
|
||||||
case KEY_DOWN_EVENT_MAGIC:
|
case KEY_DOWN_EVENT_MAGIC:
|
||||||
case KEY_UP_EVENT_MAGIC:
|
case KEY_UP_EVENT_MAGIC:
|
||||||
case UTF8_TEXT_EVENT_MAGIC:
|
case UTF8_TEXT_EVENT_MAGIC:
|
||||||
if (!(permission & crypto::PERM::input_kbdm)) {
|
if (!(permission & crypto::PERM::input_kbd)) {
|
||||||
return;
|
return;
|
||||||
} else {
|
} else {
|
||||||
break;
|
break;
|
||||||
|
|||||||
@@ -165,8 +165,9 @@
|
|||||||
input_controller = _input << 0, // Allow controller input
|
input_controller = _input << 0, // Allow controller input
|
||||||
input_touch = _input << 1, // Allow touch input
|
input_touch = _input << 1, // Allow touch input
|
||||||
input_pen = _input << 2, // Allow pen input
|
input_pen = _input << 2, // Allow pen input
|
||||||
input_kbdm = _input << 3, // Allow kbd/mouse input
|
input_mouse = _input << 3, // Allow mouse input
|
||||||
_all_inputs = input_controller | input_touch | input_pen | input_kbdm,
|
input_kbd = _input << 4, // Allow keyboard input
|
||||||
|
_all_inputs = input_controller | input_touch | input_pen | input_mouse | input_kbd,
|
||||||
|
|
||||||
_operation = _input << 8, // Operation permission group
|
_operation = _input << 8, // Operation permission group
|
||||||
clipboard_set = _operation << 0, // Allow set clipboard from client
|
clipboard_set = _operation << 0, // Allow set clipboard from client
|
||||||
@@ -194,8 +195,9 @@
|
|||||||
input_controller: 0x00000100,
|
input_controller: 0x00000100,
|
||||||
input_touch: 0x00000200,
|
input_touch: 0x00000200,
|
||||||
input_pen: 0x00000400,
|
input_pen: 0x00000400,
|
||||||
input_kbdm: 0x00000800,
|
input_mouse: 0x00000800,
|
||||||
_all_inputs: 0x00000F00,
|
input_kbd: 0x00001000,
|
||||||
|
_all_inputs: 0x00001F00,
|
||||||
|
|
||||||
// Operation permission group
|
// Operation permission group
|
||||||
clipboard_set: 0x00010000,
|
clipboard_set: 0x00010000,
|
||||||
@@ -215,7 +217,7 @@
|
|||||||
// Special permissions
|
// Special permissions
|
||||||
_default: 0x03000000,
|
_default: 0x03000000,
|
||||||
_no: 0x00000000,
|
_no: 0x00000000,
|
||||||
_all: 0x071F0F00
|
_all: 0x071F1F00
|
||||||
};
|
};
|
||||||
|
|
||||||
const permissionGroups = [
|
const permissionGroups = [
|
||||||
@@ -248,7 +250,10 @@
|
|||||||
name: 'input_pen',
|
name: 'input_pen',
|
||||||
suppressed_by: []
|
suppressed_by: []
|
||||||
}, {
|
}, {
|
||||||
name: 'input_kbdm',
|
name: 'input_mouse',
|
||||||
|
suppressed_by: []
|
||||||
|
}, {
|
||||||
|
name: 'input_kbd',
|
||||||
suppressed_by: []
|
suppressed_by: []
|
||||||
}
|
}
|
||||||
] },
|
] },
|
||||||
|
|||||||
@@ -401,7 +401,8 @@
|
|||||||
"input_controller": "Controller Input",
|
"input_controller": "Controller Input",
|
||||||
"input_touch": "Touch Input",
|
"input_touch": "Touch Input",
|
||||||
"input_pen": "Pen Input",
|
"input_pen": "Pen Input",
|
||||||
"input_kbdm": "Keyboard & Mouse Input",
|
"input_mouse": "Mouse Input",
|
||||||
|
"input_kbd": "Keyboard Input",
|
||||||
"clipboard_set": "Clipboard Set",
|
"clipboard_set": "Clipboard Set",
|
||||||
"clipboard_read": "Clipboard Read",
|
"clipboard_read": "Clipboard Read",
|
||||||
"file_upload": "File Upload",
|
"file_upload": "File Upload",
|
||||||
|
|||||||
@@ -401,7 +401,8 @@
|
|||||||
"input_controller": "手柄输入",
|
"input_controller": "手柄输入",
|
||||||
"input_touch": "触摸输入",
|
"input_touch": "触摸输入",
|
||||||
"input_pen": "笔输入",
|
"input_pen": "笔输入",
|
||||||
"input_kbdm": "键鼠输入",
|
"input_mouse": "鼠标输入",
|
||||||
|
"input_kbd": "键盘输入",
|
||||||
"clipboard_set": "上传剪贴板",
|
"clipboard_set": "上传剪贴板",
|
||||||
"clipboard_read": "获取剪贴板",
|
"clipboard_read": "获取剪贴板",
|
||||||
"file_upload": "上传文件",
|
"file_upload": "上传文件",
|
||||||
|
|||||||
Reference in New Issue
Block a user