I need to log out all logged-in users upon execution of a background worker (HangfireBackgroundWorkerBase). Also, I need the action inserted in the security log against this to be 'Forced Logout' instead of 'Logout'. How can I do that?
-
ABP Framework version: v8.1
-
UI Type: MVC
-
Database System: EF Core (SQL Serve)
-
**Template Type: **: Application Template
-
**Tiered (for MVC) **: No
17 Answer(s)
-
0
hi
You can do that after enabling session management. You can remove all sessions, and then the user will log out.
see https://abp.io/docs/latest/modules/identity/session-management#how-it-works
Inject the
ISecurityLogManager
to add new logs.await _securityLogManager.SaveAsync(securityLog => { securityLog.Identity = "Test"; securityLog.Action = "Test-Action"; securityLog.UserName = "Test-User"; });
https://abp.io/docs/latest/modules/identity/session-management
https://abp.io/docs/latest/modules/account/session-management -
0
Hi. Thank you for your response, Maliming.
So after having session management enabled, how can I programmatically revoke user sessions? -
0
hi
how can I programmatically revoke user sessions?
There are few method to revoke session in
IdentitySessionManager
, You can inject it then call the revoke method.RevokeAsync(Guid id) RevokeAsync(string sessionId) RevokeAsync(IdentitySession session) RevokeAllAsync(Guid userId, Guid? exceptSessionId = null) RevokeAllAsync(Guid userId, string device, Guid? exceptSessionId = null)
-
0
Hi.
So what is meant by enabling session management in your first reply? I see the sessions are being handled by default in the application. -
0
Yes, it requires your abp packages >= 8.2
-
0
Hi,
So after revoking sessions, I need users to immediately be logged out from the system but I see the users are still able to use the system. How can I force the users to login again as soon as the sessions are revoked. -
0
hi
So after revoking sessions
How did you revoke sessions?
Do you have
app.UseDynamicClaims();
in all your backend apps?Thanks.
-
0
We have disabled the dynamic claims. Is it required to enable it to achieve the purpose?
-
0
hi
Yes. This session feature depends on the Dynamic Claims
-
0
I enabled the dynamic claims, and I am using RevokeAsync(IdentitySession session) to revoke the session of the user. But the problem still persists.
-
0
hi
Can you share the debug logs of all your apps?
https://abp.io/support/questions/8622/How-to-enable-Debug-logs-for-troubleshoot-problems
Thanks.
-
0
Hi. Is there an option to attach a text file?
-
0
-
0
hi
Please do that:
-
Remove
logst.txt
file of all websites -
Enable debug logs.
-
Run all of your apps.
-
Reproduce the problem
-
Share all
logs.txt
of all websites
-
-
0
hi
I can see the
session
all exist in the cache.Can you share your
revoke
code?Are you sue the sessions are revoked by
IdentitySessionManager
?You can enable the EF Core debug to see the revoke SQL. see https://abp.io/support/questions/8622/How-to-enable-Debug-logs-for-troubleshoot-problems
Thanks.
-
0
Hi, Maliming
I am using RevokeAsync(session) method of the IdentitySessionManager object as shown below. And yes, I am sure that sessions are revoked using this piece of code because no session is found in the sessions list of the user after running this piece of code. I also made sure via debugging this piece of code.var sessions = await _identitySessionManager.GetListAsync();
foreach (var _session in sessions)
{
await _identitySessionManager.RevokeAsync(_session);
}
await uow.SaveChangesAsync(); -
0
hi
Your project uses memory cache. Are the revoke code and your account on the same website?
Can you share a screenshot of your project structure?
Thanks.