重写用户的 IIdentity 属性



我已经为我的 MVC 项目开发了一个简单的IIdentityIPrincipal,我想覆盖UserUser.Identity以返回具有正确类型的值

这是我的自定义标识:

public class MyIdentity : IIdentity
{
    public MyIdentity(string name, string authenticationType, bool isAuthenticated, Guid userId)
    {
        Name = name;
        AuthenticationType = authenticationType;
        IsAuthenticated = isAuthenticated;
        UserId = userId;
    }
    #region IIdentity
    public string Name { get; private set; }
    public string AuthenticationType { get; private set; }
    public bool IsAuthenticated { get; private set; }
    #endregion
    public Guid UserId { get; private set; }
}

这是我的自定义主体:

public class MyPrincipal : IPrincipal
{
    public MyPrincipal(IIdentity identity)
    {
        Identity = identity;
    }

    #region IPrincipal
    public bool IsInRole(string role)
    {
        throw new NotImplementedException();
    }
    public IIdentity Identity { get; private set; }
    #endregion
}

这是我的自定义控制器,我成功更新了 User 属性以返回我的自定义主体类型:

public abstract class BaseController : Controller
{
    protected new virtual MyPrincipal User
    {
        get { return HttpContext == null ? null : HttpContext.User as MyPrincipal; }
    }
}

如何以相同的方式让User.Identity返回我的自定义身份类型?

您可以在MyPrincipal类中显式实现IPrincipal,并添加自己的类型为 MyIdentityIdentity 属性。

public class MyPrincipal : IPrincipal 
{
    public MyPrincipal(MyIdentity identity)
    {
        Identity = identity;
    }
    public MyIdentity Identity {get; private set; }
    IIdentity IPrincipal.Identity { get { return this.Identity; } }
    public bool IsInRole(string role)
    {
        throw new NotImplementedException();
    }
}

你问的是没有显式强制转换就无法完成的事情

public class MyClass
{
    private SomeThing x;
    public ISomeThing X { get { return x; } }
}

当你打电话给MyClass.X时,你会得到一个ISomeThing,而不是一个SomeThing。你可以做一个明确的转换,但这有点笨拙。

MyClass myClass = new MyClass();
SomeThing someThing = (SomeThing)(myClass.X);

理想情况下,您为IPrincipal.Name存储的值将是唯一的。如果"jdoe"在应用程序中不是唯一的,则IPrincipal.Name属性最好存储用户 ID。在您的情况下,这似乎是一个 GUID。

相关内容

  • 没有找到相关文章

最新更新