pep8 + debug line

pull/204/head
David Baker 2015-07-15 19:39:18 +01:00
parent 4da05fa0ae
commit 09489499e7
1 changed files with 8 additions and 6 deletions

View File

@ -57,16 +57,18 @@ class RegisterRestServlet(RestServlet):
yield run_on_reactor() yield run_on_reactor()
body = parse_request_allow_empty(request) body = parse_request_allow_empty(request)
# we do basic sanity checks here because the auth layerwill store these in sessions # we do basic sanity checks here because the auth
# layer will store these in sessions
if 'password' in body: if 'password' in body:
print "%r" % (body['password']) if ((not isinstance(body['password'], str) and
if (not isinstance(body['password'], str) and not isinstance(body['password'], unicode)) or
not isinstance(body['password'], unicode)) or len(body['password']) > 512: len(body['password']) > 512):
raise SynapseError(400, "Invalid password") raise SynapseError(400, "Invalid password")
if 'username' in body: if 'username' in body:
if (not isinstance(body['username'], str) and if ((not isinstance(body['username'], str) and
not isinstance(body['username'], unicode)) or len(body['username']) > 512: not isinstance(body['username'], unicode)) or
len(body['username']) > 512):
raise SynapseError(400, "Invalid username") raise SynapseError(400, "Invalid username")
desired_username = body['username'] desired_username = body['username']
yield self.registration_handler.check_username(desired_username) yield self.registration_handler.check_username(desired_username)