私は現在(非常に単純化して)次のコードで傍受を行っています:
(下部の質問を参照)
私のインターセプター:
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 ) を見ると、正しい方法のように見えますが、機能しません。何か案は?