Compare commits
No commits in common. "ab70ed3414b5a1e6a7a3fcfeb091f2593fdb7dcf" and "918b2d74fa4408ca80e4ecd891d922f055864bc3" have entirely different histories.
ab70ed3414
...
918b2d74fa
9 changed files with 106 additions and 182 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -1,3 +1,2 @@
|
||||||
config.json
|
|
||||||
node_modules/
|
node_modules/
|
||||||
npm-debug.log
|
yarn.lock
|
4
.vscode/launch.json
vendored
4
.vscode/launch.json
vendored
|
@ -10,9 +10,7 @@
|
||||||
"<node_internals>/**"
|
"<node_internals>/**"
|
||||||
],
|
],
|
||||||
"program": "${workspaceFolder}/ninwa.js",
|
"program": "${workspaceFolder}/ninwa.js",
|
||||||
"args": [
|
"args": []
|
||||||
"example_config.json"
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
20
LICENSE.md
20
LICENSE.md
|
@ -1,20 +0,0 @@
|
||||||
# MIT License
|
|
||||||
**Copyright (c) 2022 Daniel Sommer \<daniel.sommer@velvettear.de\>**
|
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
|
||||||
in the Software without restriction, including without limitation the rights
|
|
||||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
||||||
copies of the Software, and to permit persons to whom the Software is furnished
|
|
||||||
to do so, subject to the following conditions:
|
|
||||||
|
|
||||||
The above copyright notice and this permission notice (including the next
|
|
||||||
paragraph) shall be included in all copies or substantial portions of the
|
|
||||||
Software.
|
|
||||||
|
|
||||||
**THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
||||||
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS
|
|
||||||
OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
||||||
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
|
|
||||||
OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.**
|
|
12
README.md
12
README.md
|
@ -46,17 +46,13 @@ node input watcher
|
||||||
- reload systemd-services
|
- reload systemd-services
|
||||||
`systemctl daemon-reload`
|
`systemctl daemon-reload`
|
||||||
|
|
||||||
- enable and start ninwa as a systemd-service
|
- enable and start the ninwa as a systemd-service
|
||||||
`systemctl enable --now ninwa`
|
`systemctl enable --now ninwa`
|
||||||
|
|
||||||
## configuration
|
## configuration
|
||||||
|
|
||||||
configuration is done entirely within the file `config.json`.
|
configuration is done entirely within the file `config.json`.
|
||||||
|
|
||||||
### server: [*object*]
|
|
||||||
- address: [*string*] server address to listen on (`0.0.0.0` to listen on all interfaces)
|
|
||||||
- port: [*number*] port to listen on
|
|
||||||
|
|
||||||
### log: [*object*]
|
### log: [*object*]
|
||||||
- level: [*string*] verbosity of the log; either `debug`, `info`, `warning` or `error`
|
- level: [*string*] verbosity of the log; either `debug`, `info`, `warning` or `error`
|
||||||
- timestamp: [*string*] format string for the timestamp; review [moment.js](https://momentjs.com/docs/#/displaying/format/) for further information
|
- timestamp: [*string*] format string for the timestamp; review [moment.js](https://momentjs.com/docs/#/displaying/format/) for further information
|
||||||
|
@ -82,9 +78,3 @@ configuration is done entirely within the file `config.json`.
|
||||||
- cmd: [*string*] command / path to script to execute
|
- cmd: [*string*] command / path to script to execute
|
||||||
- args: [*string-array*] arguments to pass to the executed command
|
- args: [*string-array*] arguments to pass to the executed command
|
||||||
- sudo: [*boolean*] use sudo to execute the command
|
- sudo: [*boolean*] use sudo to execute the command
|
||||||
|
|
||||||
**note:**
|
|
||||||
if you intend to use ninwa as a systemd-service with `sudo` make sure the configured user is allowed to execute the command without entering a password. **otherwise your service will just stop at the password prompt!**
|
|
||||||
|
|
||||||
- `sudo visudo`
|
|
||||||
- `username ALL=(ALL) NOPASSWD: command`
|
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
"timestamp": "DD.MM.YYYY HH:mm:ss:SS"
|
"timestamp": "DD.MM.YYYY HH:mm:ss:SS"
|
||||||
},
|
},
|
||||||
"combos": {
|
"combos": {
|
||||||
"timeout": 5000
|
"delay": 5000
|
||||||
},
|
},
|
||||||
"watchers": [
|
"watchers": [
|
||||||
{
|
{
|
||||||
|
@ -15,31 +15,25 @@
|
||||||
{
|
{
|
||||||
"key": "key_f1",
|
"key": "key_f1",
|
||||||
"combo": [
|
"combo": [
|
||||||
"key_f5"
|
"key_f2",
|
||||||
|
"key_f4"
|
||||||
],
|
],
|
||||||
"event": "EV_KEY",
|
"event": "EV_KEY",
|
||||||
"type": "keydown",
|
"type": "keydown",
|
||||||
|
"delay": 1000,
|
||||||
"command": "combo"
|
"command": "combo"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"key": "key_f1",
|
"key": "key_f1",
|
||||||
"combo": [
|
"combo": [
|
||||||
"key_f6"
|
"key_f1",
|
||||||
|
"key_f2"
|
||||||
],
|
],
|
||||||
"event": "EV_KEY",
|
"event": "EV_KEY",
|
||||||
"type": "keydown",
|
"type": "keydown",
|
||||||
|
"delay": 1000,
|
||||||
"command": "combo2"
|
"command": "combo2"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"key": "key_f2",
|
|
||||||
"combo": [
|
|
||||||
"key_f5",
|
|
||||||
"key_f6"
|
|
||||||
],
|
|
||||||
"event": "EV_KEY",
|
|
||||||
"type": "keydown",
|
|
||||||
"command": "combo3"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"key": "key_enter",
|
"key": "key_enter",
|
||||||
"type": "keydown",
|
"type": "keydown",
|
||||||
|
@ -79,14 +73,6 @@
|
||||||
],
|
],
|
||||||
"sudo": false
|
"sudo": false
|
||||||
},
|
},
|
||||||
"combo3": {
|
|
||||||
"cmd": "notify-send",
|
|
||||||
"args": [
|
|
||||||
"combo #3",
|
|
||||||
"third combo"
|
|
||||||
],
|
|
||||||
"sudo": false
|
|
||||||
},
|
|
||||||
"example": {
|
"example": {
|
||||||
"cmd": "notify-send",
|
"cmd": "notify-send",
|
||||||
"args": [
|
"args": [
|
||||||
|
@ -108,6 +94,7 @@
|
||||||
"args": [
|
"args": [
|
||||||
"https://velvettear.de"
|
"https://velvettear.de"
|
||||||
]
|
]
|
||||||
}
|
},
|
||||||
|
"sudo": false
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -1,4 +1,5 @@
|
||||||
const logger = require('./logger.js');
|
const comboConfig = require('../config.json').combos;
|
||||||
|
const commandConfig = require('../config.json').commands;
|
||||||
|
|
||||||
const LINE_START = 'Event: time';
|
const LINE_START = 'Event: time';
|
||||||
|
|
||||||
|
@ -12,21 +13,16 @@ class Keyfilter {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
this.actions = new Map();
|
this.actions = new Map();
|
||||||
this.registered = {
|
|
||||||
keys: [],
|
|
||||||
events: [],
|
|
||||||
types: []
|
|
||||||
}
|
|
||||||
for (let index = 0; index < config.length; index++) {
|
for (let index = 0; index < config.length; index++) {
|
||||||
this.registerAction(config[index]);
|
this.setAction(config[index]);
|
||||||
}
|
}
|
||||||
this.currentCombo = undefined;
|
this.currentCombo = undefined;
|
||||||
}
|
}
|
||||||
getCommand(command) {
|
getCommand(command) {
|
||||||
if (command === undefined || global.config?.commands === undefined) {
|
if (command === undefined || commandConfig === undefined) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
const result = global.config.commands[command];
|
const result = commandConfig[command];
|
||||||
if (result === undefined) {
|
if (result === undefined) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -56,17 +52,13 @@ class Keyfilter {
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
registerAction(config) {
|
setAction(config) {
|
||||||
let key = config.key.toUpperCase();
|
let key = config.key.toUpperCase();
|
||||||
if (config.combo !== undefined && config.combo.length > 0) {
|
if (config.combo !== undefined && config.combo.length > 0) {
|
||||||
const tmp = JSON.parse(JSON.stringify(config.combo));
|
const tmp = JSON.parse(JSON.stringify(config.combo));
|
||||||
tmp.unshift(config.key);
|
tmp.unshift(config.key);
|
||||||
key = tmp.toString().toUpperCase();
|
key = tmp.toString().toUpperCase();
|
||||||
}
|
}
|
||||||
if (Array.from(this.actions.keys()).includes(key)) {
|
|
||||||
logger.warn('skipping already registered key(s) \'' + key + '\'...');
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
this.actions.set(key,
|
this.actions.set(key,
|
||||||
{
|
{
|
||||||
type: this.getActionType(config.type),
|
type: this.getActionType(config.type),
|
||||||
|
@ -81,70 +73,57 @@ class Keyfilter {
|
||||||
}(),
|
}(),
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
const singleKeys = key.split(',');
|
|
||||||
for (let index = 0; index < singleKeys.length; index++) {
|
|
||||||
const singleKey = singleKeys[index];
|
|
||||||
if (!this.registered.keys.includes(singleKey)) {
|
|
||||||
this.registered.keys.push(singleKey);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (!this.registered.events.includes(this.actions.get(key).event)) {
|
|
||||||
this.registered.events.push(this.actions.get(key).event);
|
|
||||||
}
|
|
||||||
if (!this.registered.types.includes(this.actions.get(key).type.id)) {
|
|
||||||
this.registered.types.push(this.actions.get(key).type.id);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
filter(input) {
|
filter(input) {
|
||||||
if (input === undefined || input.length === 0) {
|
if (input === undefined || input.length === 0) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
const parsedEvent = this.parseLine(input);
|
input = input.toString();
|
||||||
if (this.parsedEventIsUnknown(parsedEvent)) {
|
let lines = input.split("\n");
|
||||||
return;
|
for (let index = 0; index < lines.length; index++) {
|
||||||
|
let line = lines[index];
|
||||||
|
if (line.length === 0) {
|
||||||
|
continue;
|
||||||
}
|
}
|
||||||
if (this.isPartOfCombo(parsedEvent)) {
|
if (!line.startsWith(LINE_START)) {
|
||||||
if (parsedEvent.ignore) {
|
continue;
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
return this.setComboResult(this.getFilterResult(parsedEvent.key, parsedEvent.type.action));
|
const parsedEvent = this.parseLine(line);
|
||||||
|
if (parsedEvent === undefined) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
for (let [key, event] of this.actions) {
|
||||||
|
if (this.currentCombo === undefined && !this.isParsedEventValid(key, event, parsedEvent)) {
|
||||||
|
continue;
|
||||||
}
|
}
|
||||||
if (this.isStartOfCombo(parsedEvent)) {
|
if (this.isStartOfCombo(parsedEvent)) {
|
||||||
return this.setComboResult(this.getFilterResult(parsedEvent.key, parsedEvent.type.action));
|
return this.setComboResult(this.getFilterResult(parsedEvent.key, parsedEvent.type.action));
|
||||||
}
|
}
|
||||||
for (let [key, event] of this.actions) {
|
if (this.isPartOfCombo(parsedEvent)) {
|
||||||
if (!this.parsedEventIsValid(key, event, parsedEvent)) {
|
if (parsedEvent.ignore) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
return this.setComboResult(this.getFilterResult(parsedEvent.key, parsedEvent.type.action));
|
||||||
|
}
|
||||||
|
if (!this.isParsedEventValid(key, event, parsedEvent)) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
const result = this.getFilterResult(parsedEvent.key, event.type.action, event.command);
|
|
||||||
if (this.shouldBeDelayed(event)) {
|
if (this.shouldBeDelayed(event)) {
|
||||||
|
const result = this.getFilterResult(parsedEvent.key, event.type.action, event.command);
|
||||||
result.delayed = true;
|
result.delayed = true;
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
event.captured = new Date().getTime();
|
event.captured = new Date().getTime();
|
||||||
return result;
|
return this.getFilterResult(parsedEvent.key, event.type.action, event.command);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
parsedEventIsUnknown(parsedEvent) {
|
|
||||||
return parsedEvent === undefined || !this.registered.keys.includes(parsedEvent.key) || !this.registered.events.includes(parsedEvent.event) || !this.registered.types.includes(parsedEvent.type.id);
|
|
||||||
}
|
}
|
||||||
parsedEventIsValid(key, value, parsed) {
|
isParsedEventValid(key, value, parsed) {
|
||||||
if (value.event !== parsed.event || value.type.id !== parsed.type.id) {
|
let keyCheck = key === parsed.key;
|
||||||
return false;
|
if (value.combo !== undefined && value.combo.length > 0) {
|
||||||
|
keyCheck = key.includes(parsed.key);
|
||||||
}
|
}
|
||||||
if (value.combo === undefined || value.combo.length === 0) {
|
return keyCheck && (value.event === undefined || value.event === parsed.event) && value.type.id === parsed.type.id;
|
||||||
return key === parsed.key;
|
|
||||||
}
|
|
||||||
if (this.currentCombo === undefined) {
|
|
||||||
return key.startsWith(parsed.key);
|
|
||||||
}
|
|
||||||
for (let index = 0; index < this.currentCombo.possibilities.length; index++) {
|
|
||||||
if (this.currentCombo.possibilities[index].combo[0].toUpperCase() === parsed.key) {
|
|
||||||
this.resetCurrentCombo();
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return false;
|
|
||||||
}
|
}
|
||||||
setComboResult(result) {
|
setComboResult(result) {
|
||||||
if (result === undefined || this.currentCombo === undefined) {
|
if (result === undefined || this.currentCombo === undefined) {
|
||||||
|
@ -172,9 +151,6 @@ class Keyfilter {
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
parseLine(line) {
|
parseLine(line) {
|
||||||
if (line === undefined || line.length === 0 || !line.startsWith(LINE_START)) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
try {
|
try {
|
||||||
const parts = line.split(',');
|
const parts = line.split(',');
|
||||||
const event = parts[1].substring(parts[1].indexOf('(') + 1, parts[1].lastIndexOf(')'));
|
const event = parts[1].substring(parts[1].indexOf('(') + 1, parts[1].lastIndexOf(')'));
|
||||||
|
@ -192,12 +168,15 @@ class Keyfilter {
|
||||||
return new Date().getTime() - event.captured < event.delay;
|
return new Date().getTime() - event.captured < event.delay;
|
||||||
}
|
}
|
||||||
isStartOfCombo(parsedEvent) {
|
isStartOfCombo(parsedEvent) {
|
||||||
|
if (this.currentCombo !== undefined) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
let possibilities = [];
|
let possibilities = [];
|
||||||
for (let [actionKey, actionEvent] of this.actions) {
|
for (let [actionKey, actionEvent] of this.actions) {
|
||||||
if (actionEvent.combo === undefined || actionEvent.combo.length === 0) {
|
if (actionEvent.combo === undefined || actionEvent.combo.length === 0) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
if (!actionKey.toUpperCase().startsWith(parsedEvent.key) || actionEvent.type.id !== parsedEvent.type.id || actionEvent.event !== parsedEvent.event) {
|
if (!actionKey.toUpperCase().startsWith(parsedEvent.key)) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
possibilities.push(JSON.parse(JSON.stringify(actionEvent)));
|
possibilities.push(JSON.parse(JSON.stringify(actionEvent)));
|
||||||
|
@ -213,18 +192,24 @@ class Keyfilter {
|
||||||
done: [parsedEvent.key],
|
done: [parsedEvent.key],
|
||||||
possibilities: possibilities
|
possibilities: possibilities
|
||||||
};
|
};
|
||||||
this.setComboTimeout();
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
isPartOfCombo(parsedEvent) {
|
isPartOfCombo(parsedEvent) {
|
||||||
|
if (this.hasComboTimedOut()) {
|
||||||
|
this.resetCurrentCombo();
|
||||||
|
}
|
||||||
if (this.currentCombo === undefined || this.currentCombo.type.id !== parsedEvent.type.id || this.currentCombo.event !== parsedEvent.event) {
|
if (this.currentCombo === undefined || this.currentCombo.type.id !== parsedEvent.type.id || this.currentCombo.event !== parsedEvent.event) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
// if (this.currentCombo.done.includes(parsedEvent.key)) {
|
||||||
|
// parsedEvent.ignore = true;
|
||||||
|
// return true;
|
||||||
|
// }
|
||||||
let possibilities = [];
|
let possibilities = [];
|
||||||
for (let index = 0; index < this.currentCombo.possibilities.length; index++) {
|
for (let index = 0; index < this.currentCombo.possibilities.length; index++) {
|
||||||
const possibility = this.currentCombo.possibilities[index];
|
const possibility = this.currentCombo.possibilities[index];
|
||||||
if (possibility.combo.length === 0) {
|
if (possibility.combo.length === 0) {
|
||||||
continue;
|
break;
|
||||||
}
|
}
|
||||||
if (possibility.combo[0].toUpperCase() !== parsedEvent.key) {
|
if (possibility.combo[0].toUpperCase() !== parsedEvent.key) {
|
||||||
continue;
|
continue;
|
||||||
|
@ -247,29 +232,17 @@ class Keyfilter {
|
||||||
tmp.done = this.currentCombo.done;
|
tmp.done = this.currentCombo.done;
|
||||||
this.currentCombo = tmp;
|
this.currentCombo = tmp;
|
||||||
}
|
}
|
||||||
this.setComboTimeout();
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
setComboTimeout() {
|
hasComboTimedOut() {
|
||||||
if (this.currentCombo === undefined || global.config?.combos?.timeout === undefined || isNaN(global.config?.combos?.timeout)) {
|
return false;
|
||||||
return;
|
return comboConfig !== undefined &&
|
||||||
}
|
comboConfig.delay !== undefined &&
|
||||||
this.clearComboTimeout();
|
this.currentCombo !== undefined &&
|
||||||
logger.debug('setting timeout for current combo to ' + parseInt(global.config.combos.timeout) + 'ms');
|
this.currentCombo.timestamp !== undefined &&
|
||||||
this.comboTimeout = setTimeout(() => {
|
new Date().getTime() - this.currentCombo.timestamp > comboConfig.delay;
|
||||||
this.resetCurrentCombo()
|
|
||||||
}, parseInt(global.config.combos.timeout));
|
|
||||||
}
|
|
||||||
clearComboTimeout() {
|
|
||||||
if (this.comboTimeout === undefined) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
logger.debug('clearing timeout for current combo');
|
|
||||||
clearTimeout(this.comboTimeout);
|
|
||||||
}
|
}
|
||||||
resetCurrentCombo() {
|
resetCurrentCombo() {
|
||||||
this.clearComboTimeout();
|
|
||||||
logger.debug('resetting current combo');
|
|
||||||
this.currentCombo = undefined;
|
this.currentCombo = undefined;
|
||||||
}
|
}
|
||||||
isValid() {
|
isValid() {
|
||||||
|
|
|
@ -62,13 +62,30 @@ class Watcher {
|
||||||
}
|
}
|
||||||
logger.debug('adding stdout listener to watcher \'' + this.device + '\'...');
|
logger.debug('adding stdout listener to watcher \'' + this.device + '\'...');
|
||||||
this.process.stdout.on('data', (data) => {
|
this.process.stdout.on('data', (data) => {
|
||||||
if (this.keyfilter === undefined) {
|
if (this.keyfilter == undefined) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
const lines = data.toString().split('\n');
|
let filtered = this.keyfilter.filter(data);
|
||||||
for (let index = 0; index < lines.length; index++) {
|
if (filtered === undefined) {
|
||||||
this.handleEvent(this.keyfilter.filter(lines[index]));
|
return;
|
||||||
}
|
}
|
||||||
|
logger.debug('handling captured \'' + filtered.type + '\' event for key \'' + filtered.key + '\' from watcher \'' + this.device + '\'...');
|
||||||
|
if (filtered.delayed) {
|
||||||
|
logger.debug('delaying captured event...');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (filtered.combo) {
|
||||||
|
if (!filtered.combo.finished) {
|
||||||
|
logger.debug('captured event is part of ' + filtered.combo.possibilities + ' possible combo(s) and not yet finished')
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
logger.debug('captured event finished combo \'' + filtered.combo.done.toString().toUpperCase()+ '\'');
|
||||||
|
}
|
||||||
|
this.keyfilter.resetCurrentCombo();
|
||||||
|
logger.info('executing command \'' + filtered.command.name + '\' registered for captured event...');
|
||||||
|
cli.execute(filtered.command.cmd, filtered.command.args, filtered.command.sudo)
|
||||||
|
.then(logger.info)
|
||||||
|
.catch(logger.error);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
addStdErrListener() {
|
addStdErrListener() {
|
||||||
|
@ -138,27 +155,5 @@ class Watcher {
|
||||||
.catch(reject);
|
.catch(reject);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
handleEvent(event) {
|
|
||||||
if (event === undefined) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
logger.debug('handling captured \'' + event.type + '\' event for key \'' + event.key + '\' from watcher \'' + this.device + '\'...');
|
|
||||||
if (event.delayed) {
|
|
||||||
logger.debug('delaying captured event...');
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
if (event.combo) {
|
|
||||||
if (!event.combo.finished) {
|
|
||||||
logger.debug('captured event is part of ' + event.combo.possibilities + ' possible combo(s) and not yet finished')
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
logger.debug('captured event finished combo \'' + event.combo.done.toString().toUpperCase() + '\'');
|
|
||||||
}
|
|
||||||
this.keyfilter.resetCurrentCombo();
|
|
||||||
logger.info('executing command \'' + event.command.name + '\' registered for captured event...');
|
|
||||||
cli.execute(event.command.cmd, event.command.args, event.command.sudo)
|
|
||||||
.then(logger.info)
|
|
||||||
.catch(logger.error);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
module.exports = Watcher;
|
module.exports = Watcher;
|
10
ninwa.js
10
ninwa.js
|
@ -5,22 +5,24 @@ const packageJSON = require('./package.json');
|
||||||
|
|
||||||
const INTERRUPTS = ['SIGINT', 'SIGTERM'];
|
const INTERRUPTS = ['SIGINT', 'SIGTERM'];
|
||||||
|
|
||||||
|
let config;
|
||||||
|
|
||||||
main();
|
main();
|
||||||
|
|
||||||
async function main() {
|
async function main() {
|
||||||
handleInterrupts();
|
handleInterrupts();
|
||||||
try {
|
try {
|
||||||
let configFile = await util.getFileInfo(process.argv[2] || __dirname + '/config.json');
|
let configFile = await util.getFileInfo(process.argv[2] || __dirname + '/config.json');
|
||||||
global.config = require(configFile.path);
|
config = require(configFile.path);
|
||||||
global.config.path = configFile.path;
|
config.path = config.path;
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
console.error(err);
|
console.error(err);
|
||||||
process.exit(1);
|
process.exit(1);
|
||||||
}
|
}
|
||||||
try {
|
try {
|
||||||
logger.initialize(global.config.log.level, global.config.log.timestamp);
|
logger.initialize(config.log.level, config.log.timestamp);
|
||||||
logger.info(packageJSON.name + ' ' + packageJSON.version + ' starting...');
|
logger.info(packageJSON.name + ' ' + packageJSON.version + ' starting...');
|
||||||
await watchers.initialize(global.config.watchers);
|
await watchers.initialize(config.watchers);
|
||||||
await watchers.start();
|
await watchers.start();
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
logger.error(err);
|
logger.error(err);
|
||||||
|
|
Loading…
Reference in a new issue