Enforce authentication by UUID. Untested as I ran out of time.
This commit is contained in:
parent
0634e10109
commit
0bf03afb4f
|
@ -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():
|
||||
|
|
Loading…
Reference in a new issue