update buckler middleware

This commit is contained in:
iou1name 2020-11-12 13:17:15 -05:00
parent 4571305778
commit 70e5b4ec6f
2 changed files with 5 additions and 4 deletions

View File

@ -24,8 +24,7 @@ async def buckler_session(request, handler):
'app_id': config.buckler['app_id'], 'app_id': config.buckler['app_id'],
'app_key': config.buckler['app_key'], 'app_key': config.buckler['app_key'],
'userid': user_id, 'userid': user_id,
'session': user_sid 'session': user_sid }
}
async with aiohttp.ClientSession() as session: async with aiohttp.ClientSession() as session:
async with session.get(url, params=params) as resp: async with session.get(url, params=params) as resp:
data = await resp.json() data = await resp.json()
@ -34,6 +33,7 @@ async def buckler_session(request, handler):
resp.set_cookie( resp.set_cookie(
'redirect', 'redirect',
request.url, request.url,
domain=config.server_domain,
secure=True, secure=True,
httponly=True) httponly=True)
#samesite='strict') #samesite='strict')
@ -55,6 +55,7 @@ async def buckler_session(request, handler):
resp.set_cookie( resp.set_cookie(
'userid', 'userid',
user_id, user_id,
domain=config.server_domain,
max_age=30*24*60*60, max_age=30*24*60*60,
secure=True, secure=True,
httponly=True) httponly=True)
@ -62,6 +63,7 @@ async def buckler_session(request, handler):
resp.set_cookie( resp.set_cookie(
'session', 'session',
user_sid, user_sid,
domain=config.server_domain,
max_age=30*24*60*60, max_age=30*24*60*60,
secure=True, secure=True,
httponly=True) httponly=True)

View File

@ -3,11 +3,10 @@
Configuration settings for the Juice IOT hub server. Configuration settings for the Juice IOT hub server.
`url_prefix` is the root path you wish app to reside at `url_prefix` is the root path you wish app to reside at
eg. https://example.com/juice. eg. https://example.com/juice.
`registration_open` whether or not new accounts may be registered.
`buckler` specifies settings pertaining to the Buckler server. `buckler` specifies settings pertaining to the Buckler server.
""" """
server_domain = 'steelbea.me'
url_prefix = '/juice' url_prefix = '/juice'
registration_open = True
buckler = { buckler = {
'url': "http://127.0.0.1:5400/buckler", 'url': "http://127.0.0.1:5400/buckler",
'app_id': 2, 'app_id': 2,