Commit d885e20e authored by Jérome Perrin's avatar Jérome Perrin

oauth_facebook_login: python3 compatibility

parent c3488a67
Pipeline #35174 failed with stage
in 0 seconds
......@@ -21,8 +21,8 @@ elif code is not None:
code,
"{0}/ERP5Site_callbackFacebookLogin".format(context.absolute_url()))
if response_dict is not None:
access_token = response_dict['access_token'].encode('utf-8')
hash_str = context.Base_getHMAC(access_token, access_token)
access_token = response_dict['access_token']
hash_str = context.Base_getHMAC(access_token.encode('utf-8'), access_token.encode('utf-8'))
context.setAuthCookie(response, '__ac_facebook_hash', hash_str)
# store timestamp in second since the epoch in UTC is enough
......
......@@ -218,11 +218,14 @@ def getFacebookUserEntry(token):
if facebook_entry is not None:
# sanitise value
for k in ('name', 'id'):
v = facebook_entry[k]
if six.PY2:
v = v.encode('utf-8')
try:
if k == 'id':
user_entry['reference'] = facebook_entry[k].encode('utf-8')
user_entry['reference'] = v
else:
user_entry[k] = facebook_entry[k].encode('utf-8')
user_entry[k] = v
except KeyError:
raise ValueError(facebook_entry)
return user_entry
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment