def POST(self, device, status): hdrs = web.input() if(hdrs["secret"]!=config.get_pwd()): return "Wrong secret" global room web.header('Access-Control-Allow-Origin','*') web.header('Access-Control-Allow-Credentials', 'true') return room.setDevice(device, status)
def GET(self, device): print "Request for device " + device + " status" hdrs = web.input() if(hdrs["secret"]!=config.get_pwd()): return 401 global room web.header('Access-Control-Allow-Origin','*') web.header('Access-Control-Allow-Credentials', 'true') return room.getDevice(device)