How to trigger refresh/update of session if user info changed
I made a plugin to store some custom user info
My Current session settings are:
So whenever I update the user data, like approving the user data then the user wont see it reflected until the session token is refreshed after 1 day.
Currently the way I am handling it is by revoking all user sessions which is a sloppy approach as it signs out all the users.
Note : I am also using Secondary Storage(Redis)
Solution:Jump to solution
finally got it working
```ts
endpoints: {
approve_user: createAuthEndpoint(...
8 Replies
Is there a better way to handle this
you can call
getSession
with cookie cache disabled
this will refetch the session and updates the cache as wellBut I want to do on behalf of other users. Is that possible
If its not then the current I am thinking of it is to have a key in the redis database like
user:{id}:should_refresh
Looks like I want to have best of both worlds, but that might not be possible without some workaround the above one.
What do you think of this approach where we would explicitly set to refresh cookie when instructed to (via a entry redis that expires after a day when set)
or is they a better I can't think if right now
I implemented this but this is not updating user info
Is this because of usage of secondary storage which caches it for 1 dayIf you update the user on the table but not on the secondary storage Better Auth still wouldn't know to refetch from the secondary storage. The above code I suggested was for cookie cache not secondary storage cache.
If you can, use the built in
updateUser
functionality instead
which invalidates and update the cache properlyCan a admin use
updateUser
and then will the cache be refreshed (redis).
If not then I think that I should listing all the active sessions and update their in the cache as well. Did I get it correctly. This might be the only way forward currently as I can see
I saw this on the docs
Looks like in this example we can can update users role. I need to have this for my own plugin too. I also expect that this updates the secondary storage too.
This is my simple plugin
What about this
Seeing it from here.
https://github.com/better-auth/better-auth/blob/6b5c48b092b8760cb26701a30469fdce0d25c726/packages/better-auth/src/plugins/admin/admin.ts#L254
Should this work
Will test this out and update you
GitHub
better-auth/packages/better-auth/src/plugins/admin/admin.ts at 6b5c...
The most comprehensive authentication framework for TypeScript - better-auth/better-auth
Looks the
authClient.admin.setRole
is also not updating the cache. In that case I will write the login to do this myself.
I need this functionality as currently I have invalidate their sessions (forcing logout). I want to find a better way to do this.Solution
finally got it working