当前用户

在Web应用程序中检索有关已登录用户的信息是很常见的. 当前用户是与Web应用程序中的当前请求相关的活动用户.

ICurrentUser

ICurrentUser 是主要的服务,用于获取有关当前活动的用户信息.

示例: 注入 ICurrentUser 到服务中:

  1. using System;
  2. using Volo.Abp.DependencyInjection;
  3. using Volo.Abp.Users;
  4. namespace AbpDemo
  5. {
  6. public class MyService : ITransientDependency
  7. {
  8. private readonly ICurrentUser _currentUser;
  9. public MyService(ICurrentUser currentUser)
  10. {
  11. _currentUser = currentUser;
  12. }
  13. public void Foo()
  14. {
  15. Guid? userId = _currentUser.Id;
  16. }
  17. }
  18. }

公共基类已经将此服务作为基本属性注入. 例如你可以直接在应用服务中使用 CurrentUser 属性:

  1. using System;
  2. using Volo.Abp.Application.Services;
  3. namespace AbpDemo
  4. {
  5. public class MyAppService : ApplicationService
  6. {
  7. public void Foo()
  8. {
  9. Guid? userId = CurrentUser.Id;
  10. }
  11. }
  12. }

属性

以下是 ICurrentUser 接口的基本属性:

  • IsAuthenticated 如果当前用户已登录(已认证),则返回 true. 如果用户尚未登录,则 IdUserName 将返回 null.
  • Id (Guid?): 当前用户的Id,如果用户未登录,返回 null.
  • UserName (string): 当前用户的用户名称. 如果用户未登录,返回 null.
  • TenantId (Guid?): 当前用户的租户Id. 对于多租户 应用程序很有用. 如果当前用户未分配给租户,返回 null.
  • Email (string): 当前用户的电子邮件地址. 如果当前用户尚未登录或未设置电子邮件地址,返回 null.
  • EmailVerified (bool): 如果当前用户的电子邮件地址已经过验证,返回 true.
  • PhoneNumber (string): 当前用户的电话号码. 如果当前用户尚未登录或未设置电话号码,返回 null.
  • PhoneNumberVerified (bool): 如果当前用户的电话号码已经过验证,返回 true.
  • Roles (string[]): 当前用户的角色. 返回当前用户角色名称的字符串数组.

Methods

ICurrentUser 是在 ICurrentPrincipalAccessor 上实现的(请参阅以下部分),并可以处理声明. 实际上所有上述属性都是从当前经过身份验证的用户的声明中检索的.

如果你有自定义声明或获取其他非常见声明类型, ICurrentUser 有一些直接使用声明的方法.

  • FindClaim: 获取给定名称的声明,如果未找到返回 null.
  • FindClaims: 获取具有给定名称的所有声明(允许具有相同名称的多个声明值).
  • GetAllClaims: 获取所有声明.
  • IsInRole: 一种检查当前用户是否在指定角色中的简化方法.

除了这些标准方法,还有一些扩展方法:

  • FindClaimValue: 获取具有给定名称的声明的值,如果未找到返回 null. 它有一个泛型重载将值强制转换为特定类型.
  • GetId: 返回当前用户的 Id. 如果当前用户没有登录它会抛出一个异常(而不是返回null). 仅在你确定用户已经在你的代码上下文中进行了身份验证时才使用此选项.

验证和授权

ICurrentUser 的工作方式与用户的身份验证或授权方式无关. 它可以与使用当前主体的任何身份验证系统无缝地配合使用(请参阅下面的部分).

ICurrentPrincipalAccessor

ICurrentPrincipalAccessor 是当需要当前用户的principle时使用的服务(由ABP框架和你的应用程序代码使用).

对于Web应用程序, 它获取当前 HttpContextUser 属性,对于非Web应用程序它将返回 Thread.CurrentPrincipal.

通常你不需要这种低级别的 ICurrentPrincipalAccessor 服务,直接使用上述的 ICurrentUser 即可.

基本用法

你可以注入 ICurrentPrincipalAccessor 并且使用 Principal 属性获取当前principal:

  1. public class MyService : ITransientDependency
  2. {
  3. private readonly ICurrentPrincipalAccessor _currentPrincipalAccessor;
  4. public MyService(ICurrentPrincipalAccessor currentPrincipalAccessor)
  5. {
  6. _currentPrincipalAccessor = currentPrincipalAccessor;
  7. }
  8. public void Foo()
  9. {
  10. var allClaims = _currentPrincipalAccessor.Principal.Claims.ToList();
  11. //...
  12. }
  13. }

更改当前Principle

除了某些高级场景外,你不需要设置或更改当前principle. 如果需要可以使用 ICurrentPrincipalAccessorChange 方法. 它接受一个 ClaimsPrinciple 对象并使其成为作用域的”当前”对象.

示例:

  1. public class MyAppService : ApplicationService
  2. {
  3. private readonly ICurrentPrincipalAccessor _currentPrincipalAccessor;
  4. public MyAppService(ICurrentPrincipalAccessor currentPrincipalAccessor)
  5. {
  6. _currentPrincipalAccessor = currentPrincipalAccessor;
  7. }
  8. public void Foo()
  9. {
  10. var newPrinciple = new ClaimsPrincipal(
  11. new ClaimsIdentity(
  12. new Claim[]
  13. {
  14. new Claim(AbpClaimTypes.UserId, Guid.NewGuid().ToString()),
  15. new Claim(AbpClaimTypes.UserName, "john"),
  16. new Claim("MyCustomCliam", "42")
  17. }
  18. )
  19. );
  20. using (_currentPrincipalAccessor.Change(newPrinciple))
  21. {
  22. var userName = CurrentUser.UserName; //returns "john"
  23. //...
  24. }
  25. }
  26. }

始终在 using 语句中使用 Change 方法,在 using 范围结束后它将恢复为原始值.

这可以是一种模拟用户登录的应用程序代码范围的方法,但是请尝试谨慎使用它.

AbpClaimTypes

AbpClaimTypes 是一个静态类它定义了标准声明的名称被ABP框架使用.

  • UserName, UserId, RoleEmail 属性的默认值是通常System.Security.Claims.ClaimTypes类设置的, 但你可以改变它们.

  • 其他属性,如 EmailVerified, PhoneNumber, TenantId …是由ABP框架通过尽可能遵循标准名称来定义的.

建议使用这个类的属性来代替声明名称的魔术字符串.