-
Notifications
You must be signed in to change notification settings - Fork 2.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: openid-connect plugin: Support extra session config options, remove unused option #12051
Conversation
I wasn't reading the right version of the code for the resty.session lib - sorry for the noise. cookie.lifetime is supported, and the cookie domain can be configured by setting the I think the session options could be improved in that plugin, but that's not a blocker for us anymore (for instance, to set a custom cookie name, i would need to set the |
@arthurdarcet |
afaics, you can't. You will need to write a custom plugin that can delegate to the openid-connect plugin after setting a few global vars that the underlying resty.session plugin will pick up. |
@arthurdarcet You mean i should custom plugin which is priority higher than openid-connect? And then i should set global vars that oidc-connect could read it? |
@mengxzh this isn't really a support forum. I meant that you need to write a custom plugin to replace the existing openid-connect plugin, but can do that with very little custom code by importing the existing plugin into your new plugin |
@arthurdarcet Why lift this limitaion as your code? As a custom config feature, it will be flexible. |
yes, feel free to open another PR to remove the additionalProps: false or to document all the possible options |
Thanks for your help :) |
Description
In the openid-connect plugin:
Needed because we need to change the cookie domain to set it to the base tld, and not the subdomain of the initial request, so that different product can share auth status.
Without that cookie_domain option, each subdomain needs to trigger an auth flow which are extra un-needed redirections for the user, and more importantly, if one subdomain is set to "unauth_action = pass", the user will be logged out on that domain until they explicitly log in even if they are actually already logged in on other subdomains.
Change is backward compatible because the allowed extra props allow the removed option to be still present.
Fixes
#12050
#12028
Checklist