2020-05-24 11:08:49 +02:00
|
|
|
from flask import Response
|
|
|
|
from flask import Flask
|
|
|
|
from flask import render_template
|
2020-05-24 12:44:34 +02:00
|
|
|
from flask import request
|
2020-05-24 11:08:49 +02:00
|
|
|
import threading
|
|
|
|
import argparse
|
|
|
|
import datetime
|
|
|
|
import time
|
2020-05-24 12:44:34 +02:00
|
|
|
import json
|
|
|
|
|
|
|
|
from hidkeycodes import hidkeycodes
|
|
|
|
from jskeycodes import jskeycodes
|
|
|
|
|
2020-05-24 11:08:49 +02:00
|
|
|
|
|
|
|
lock = threading.Lock()
|
|
|
|
|
|
|
|
# initialize a flask object
|
|
|
|
app = Flask(__name__)
|
|
|
|
|
|
|
|
NULL = chr(0)
|
|
|
|
hiddev = None
|
|
|
|
|
2020-05-24 12:44:34 +02:00
|
|
|
def hid_init():
|
2020-05-24 13:09:20 +02:00
|
|
|
global hiddev
|
2020-05-24 11:08:49 +02:00
|
|
|
hiddev=open('/dev/hidg0', 'rb+')
|
|
|
|
|
2020-05-24 12:44:34 +02:00
|
|
|
def hid_write(data):
|
2020-05-24 11:08:49 +02:00
|
|
|
if hiddev is None:
|
|
|
|
return False
|
|
|
|
|
|
|
|
hiddev.write(data.encode())
|
|
|
|
hiddev.flush()
|
|
|
|
|
|
|
|
|
|
|
|
def send_key(hidkey, shift, alt, ctlr, superkey):
|
|
|
|
# TODO handle mod keys
|
2020-05-24 12:44:34 +02:00
|
|
|
hid_write(NULL*2+chr(hidkey)+NULL*5)
|
|
|
|
hid_write(NULL*8)
|
|
|
|
|
|
|
|
|
|
|
|
def get_hid_by_jscode(rawkeycode):
|
|
|
|
hidkeycode = None
|
|
|
|
hidkeyname = None
|
2020-05-24 11:08:49 +02:00
|
|
|
|
2020-05-24 12:44:34 +02:00
|
|
|
if rawkeycode in jskeycodes.values():
|
|
|
|
hidkeyname = list(jskeycodes.keys())[list(jskeycodes.values()).index(rawkeycode)]
|
|
|
|
if hidkeyname in hidkeycodes:
|
|
|
|
hidkeycode = hidkeycodes[hidkeyname]
|
|
|
|
else:
|
|
|
|
print("Code for key {} not found in HID mapping".format(hidkeyname))
|
|
|
|
else:
|
|
|
|
print("Javascript code for key {} not found".format(rawkeycode))
|
2020-05-24 11:08:49 +02:00
|
|
|
|
2020-05-24 12:44:34 +02:00
|
|
|
print ("JS key: {} HID key: {}({})".format(rawkeycode, hidkeyname, hidkeycode))
|
|
|
|
|
|
|
|
return hidkeycode
|
2020-05-24 11:08:49 +02:00
|
|
|
|
|
|
|
@app.route("/")
|
|
|
|
def index():
|
|
|
|
return render_template("hid.html")
|
|
|
|
|
|
|
|
|
|
|
|
@app.route("/hid/keyboard", methods=["POST"])
|
|
|
|
def keypress():
|
2020-05-24 12:44:34 +02:00
|
|
|
keyevent = json.loads(request.data)
|
|
|
|
print ("Raw data: {}".format(request.data))
|
|
|
|
|
|
|
|
rawkeycode = keyevent['code']
|
|
|
|
hidkeycode = get_hid_by_jscode(rawkeycode)
|
|
|
|
|
|
|
|
if hidkeycode is not None:
|
|
|
|
try:
|
|
|
|
send_key(
|
|
|
|
hidkeycode,
|
|
|
|
keyevent['shiftKey'],
|
|
|
|
keyevent['altKey'],
|
|
|
|
keyevent['ctrlKey'],
|
|
|
|
False)
|
|
|
|
except Exception as e:
|
|
|
|
print("Error sending HID message", e)
|
|
|
|
|
|
|
|
return Response("Press {}".format(hidkeycode), mimetype = "text/plain")
|
2020-05-24 11:08:49 +02:00
|
|
|
|
|
|
|
|
|
|
|
# check to see if this is the main thread of execution
|
|
|
|
if __name__ == '__main__':
|
2020-05-24 12:44:34 +02:00
|
|
|
# construct the argument parser and parse command line arguments
|
|
|
|
ap = argparse.ArgumentParser()
|
|
|
|
ap.add_argument("-i", "--ip", type=str, required=True,
|
|
|
|
help="ip address of the device")
|
|
|
|
ap.add_argument("-o", "--port", type=int, required=True,
|
|
|
|
help="ephemeral port number of the server (1024 to 65535)")
|
|
|
|
ap.add_argument("-f", "--frame-count", type=int, default=32,
|
|
|
|
help="# of frames used to construct the background model")
|
|
|
|
args = vars(ap.parse_args())
|
|
|
|
|
|
|
|
hid_init()
|
|
|
|
|
|
|
|
app.run(host=args["ip"], port=args["port"], debug=True,
|
|
|
|
threaded=True, use_reloader=False)
|
|
|
|
|
|
|
|
|
|
|
|
# Clean up
|
|
|
|
if hiddev is not None:
|
|
|
|
print("Closing hid")
|
|
|
|
hiddev.close()
|
2020-05-24 11:08:49 +02:00
|
|
|
|