1

私は現在(非常に単純化して)次のコードで傍受を行っています:

(下部の質問を参照)

私のインターセプター:

public interface IAuthorizationInterceptor : IInterceptor { }
public class AuthorizationInterceptor : IAuthorizationInterceptor
{


    public IParameter[] AttributeParameters { get; private set; }


    // This doesnt work currently... paramters has no values
    public AuthorizationInterceptor(IParameter[] parameters) {
        AttributeParameters = parameters;
    }

    public void Intercept(IInvocation invocation) {
        // I have also tried to get the attributes like this
        // which also returns nothing.
        var attr = invocation.Request.Method.GetCustomAttributes(true);


        try {
            BeforeInvoke(invocation);
        } catch (AccessViolationException ex) {

        } catch (Exception ex) {
            throw;
        }
        // Continue method and/or processing additional attributes
        invocation.Proceed();
        AfterInvoke(invocation);
    }


    protected void BeforeInvoke(IInvocation invocation) {

        // Enumerate parameters of method call
        foreach (var arg in invocation.Request.Arguments) {
            // Just a test to see if I can get arguments
        }

        //TODO: Replace with call to auth system code.
        bool isAuthorized = true;

        if (isAuthorized == true) {
            // Do stuff               
        }
        else {
            throw new AccessViolationException("Failed");
        }             
    }

    protected  void AfterInvoke(IInvocation invocation) {


    }
}

私の属性:

public class AuthorizeAttribute : InterceptAttribute
{
    public string[] AttributeParameters { get; private set; }

    public AuthorizeAttribute(params string[] parameters) {
        AttributeParameters = parameters;
    }

    public override IInterceptor CreateInterceptor(IProxyRequest request) {
        var param = new List<Parameter>();
        foreach(string p in AttributeParameters) {
            param.Add( new Parameter(p, p, false));
        }
        // Here I have tried passing ConstructorArgument(s) but the result
        // in the inteceptor constructor is the same. 
        return request.Context.Kernel.Get<IAuthorizationInterceptor>(param.ToArray());
    }
}

メソッドに適用:

[Authorize("test")]
public virtual Result<Vault> Vault(DateTime date, bool LiveMode = true, int? SnapshotId = null)
{
        ...
}

これは機能し、次のように属性を介して追加のパラメーターを渡すことができます。

[Authorize("test")]

属性でお気づきかもしれませんが、属性クラスでアクセスできる属性からいくつかのパラメーターを取得していますが、それらをインターセプターに渡すことができません。Kernel.Get<>() 呼び出しで ConstructorArgument を使用しようとしましたが、これはエラーをスローしませんが、AuthorizationInterceptor コンストラクターは ninject から値を取得しません。コード サンプルでわかるように、GetCustomAttributes() も試しましたが、これも何も返されません。このような他の同様の投稿 ( Ninject Interception 3.0 Interface proxy by method attributes ) を見ると、正しい方法のように見えますが、機能しません。何か案は?

4

1 に答える 1

1

インターセプターで初期化メソッドを作成することで、何かを機能させることができました。AuthorizationInterceptor の特定の実装に結び付けられるため、あまり好きではありませんが、仕事は完了します (くそー締め切りです 笑)。これを行うためのより良い方法があるかどうかはまだ知りたいので、誰かがこれを行うためのより良い方法を考え出すことを期待して、私自身の答えをマークするつもりはありません.

属性を次のように変更しました。

    public override IInterceptor CreateInterceptor(IProxyRequest request) {
        AuthorizationInterceptor attr = (AuthorizationInterceptor)request.Context.Kernel.Get<IAuthorizationInterceptor>();
        attr.Init(AttributeParameters);
        return attr;
    }

インターセプターで Init メソッドを作成しました。

    public void Init(params string[] parameters) {
        AttributeParameters = parameters;
    }
于 2013-08-21T14:42:31.360 に答える