21

以下に示すように、独自の実装を作成しIPrincipalます。IIdentity

[ComVisible(true)]
[Serializable]
public sealed class CustomIdentity : IIdentity {

    private readonly string _name;
    private readonly string _email;
    // and other stuffs

    public CustomIdentity(string name) {
        _name = name.Trim();
        if(string.IsNullOrWhiteSpace(name))
            return;
        _email = (connect to database and read email and other stuffs);
    }

    public string Name {
        get { return _name; }
    }

    public string Email {
        get { return _email; }
    }

    public string AuthenticationType {
        get { return "CustomIdentity"; }
    }

    public bool IsAuthenticated {
        get { return !string.IsNullOrWhiteSpace(_name); }
    }

}


[ComVisible(true)]
[Serializable]
public sealed class CustomPrincipal : IPrincipal {

    private readonly CustomIdentity _identity;

    public CustomPrincipal(CustomIdentity identity) {
        _identity = identity;
    }

    public bool IsInRole(string role) {
        return _identity != null && 
               _identity.IsAuthenticated &&
               !string.IsNullOrWhiteSpace(role) &&
               Roles.IsUserInRole(_identity.Name, role);
    }

    IIdentity IPrincipal.Identity {
        get { return _identity; }
    }

    public CustomIdentity Identity {
        get { return _identity; }
    }

}

また、私は を作成しHttpModule、そのAuthenticateRequestイベントでこれを行います:

    public void Init(HttpApplication context) {
        _application = context;
        _application.AuthenticateRequest += ApplicationAuthenticateRequest;
    }

    private void ApplicationAuthenticateRequest(object sender, EventArgs e) {
        var formsCookie = _application.Request.Cookies[FormsAuthentication.FormsCookieName];
        var identity = formsCookie != null
             ? new CustomIdentity(FormsAuthentication.Decrypt(formsCookie.Value).Name)
             : new CustomIdentity(string.Empty);
        var principal = new CustomPrincipal(identity);
        _application.Context.User = Thread.CurrentPrincipal = principal;
    }

また、私は自分自身を作成し​​、ControllerこれらWebViewPageが好きです:

public abstract class CustomController : Controller {
    public new CustomPrincipal User {
        get {
            var user = System.Web.HttpContext.Current.User as CustomPrincipal;
            return user;
        }
    }
}


public abstract class CustomWebViewPage<TModel> : WebViewPage<TModel> {
    public new CustomPrincipal User {
        get {
            // (Place number 1) here is the error I'm speaking about!!!
            var user = HttpContext.Current.User as CustomPrincipal;
            return user;
        }
    }
}

上記のコードに示されているように、すべてが正しいようです。しかし、ご覧のとおり、場所番号 1CustomPrincipalでは!にアクセスできません。RolePrincipalこの場所では、私は の代わりに を持っていることを意味しCustomPrincipalます。例えばHttpContext.Current.User​​は のRolePrincipal代わりに ですCustomPrincipal。しかし、RolePrincipal.IdentityプロパティはCustomIdentity!

4

1 に答える 1

20

あなたの間違いはここにあります:

_application.AuthenticateRequest += ApplicationAuthenticateRequest;

でメソッドを呼び出し、を に設定するHttpModule名前付きがあります。したがって、あなたはinを設定していて、それを in に設定していました。これは、設定の後にあることを意味するため、設定を上書きします。あなたの変更:RoleManagerModuleHttpApplication.PostAuthenticateRequestHttpContext.Current.UserRolePrincipalUserAuthenticateRequestRoleManagerModulePostAuthenticateRequestModule.Init

public void Init(HttpApplication context) {
    _application = context;
    // change just this line:
    _application.PostAuthenticateRequest += ApplicationAuthenticateRequest;
}

重要な更新:

この質問が機能しない場合は、現在の質問に応じて、スターターから再度質問されたこの質問を参照して、2番目の解決策を確認してください。

于 2012-05-24T18:45:35.143 に答える