覆盖User的Identity属性

时间:2012-11-20 14:55:22

标签: c# asp.net-mvc iidentity

我为我的MVC项目开发了一个简单的IIdentityIPrincipal,我想覆盖UserUser.Identity以返回正确类型的值< / p>

这是我的自定义身份:

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方式返回我的自定义标识类型?

2 个答案:

答案 0 :(得分:3)

您可以在IPrincipal课程中明确实施MyPrincipal,并添加Identity类型MyIdentity的{​​{1}}属性。

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();
    }
}

答案 1 :(得分:1)

如果没有明确的演员

,你会问一些无法完成的事情
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”在您的应用程序中不是唯一的,那么如果存储用户ID,则IPrincipal.Name属性会更好。在您的情况下,这似乎是一个GUID。