Enforce authentication by UUID. Untested as I ran out of time.

This commit is contained in:
Innovation 2024-03-29 10:14:17 -05:00
parent 0634e10109
commit 0bf03afb4f

View file

@ -218,7 +218,16 @@ def resetCyberwareMalfunction():
return 'Not Implemented', 501
def authenticate(uuid, endpoint):
return true
for c in cyberware: # UUID Match
if c['uuid'] == uuid:
requestedHardware = c
break
for e in requestedHardware['canSet']: # Endpoint match
if e == endpoint:
return True
return False
@app.route('/')
def uiindex():